diff --git a/.cypress/integration/9_integrations.spec.js b/.cypress/integration/9_integrations.spec.js new file mode 100644 index 000000000..6a6ad2fd5 --- /dev/null +++ b/.cypress/integration/9_integrations.spec.js @@ -0,0 +1,114 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +/// + +import { + TEST_INTEGRATION_INSTANCE, TEST_SAMPLE_INSTANCE, +} from '../utils/constants'; + +let testInstanceSuffix = (Math.random() + 1).toString(36).substring(7); +let testInstance = `${TEST_INTEGRATION_INSTANCE}_${testInstanceSuffix}`; + +const moveToIntegrationsHome = () => { + cy.visit(`${Cypress.env('opensearchDashboards')}/app/integrations#/available`); +}; + +const moveToAvailableNginxIntegration = () => { + cy.visit(`${Cypress.env('opensearchDashboards')}/app/integrations#/available/nginx`); +}; + +const moveToAddedIntegrations = () => { + cy.visit(`${Cypress.env('opensearchDashboards')}/app/integrations#/installed`); +}; + +const createSamples = () => { + moveToAvailableNginxIntegration(); + cy.get('[data-test-subj="try-it-button"]').click(); + cy.get('.euiToastHeader__title').should('contain', 'successfully'); +} + + +describe('Basic sanity test for integrations plugin', () => { + it('Navigates to integrations plugin and expects the correct header', () => { + moveToIntegrationsHome(); + cy.get('[data-test-subj="integrations-header"]').should('exist'); + }); + + it('Navigates to integrations plugin and tests that clicking the nginx cards navigates to the nginx page', () => { + moveToIntegrationsHome(); + cy.get('[data-test-subj="integration_card_nginx"]').click(); + cy.url().should('include', '/available/nginx') + }) + + it('Navigates to nginx page and asserts the page to be as expected', () => { + moveToAvailableNginxIntegration(); + cy.get('[data-test-subj="nginx-overview"]').should('exist') + cy.get('[data-test-subj="nginx-details"]').should('exist') + cy.get('[data-test-subj="nginx-screenshots"]').should('exist') + cy.get('[data-test-subj="nginx-assets"]').should('exist') + cy.get('[data-test-subj="fields"]').click(); + cy.get('[data-test-subj="nginx-fields"]').should('exist') + }) +}); + +describe('Tests the add nginx integration instance flow', () => { + it('Navigates to nginx page and triggers the adds the instance flow', () => { + createSamples(); + moveToAvailableNginxIntegration(); + cy.get('[data-test-subj="add-integration-button"]').click(); + cy.get('[data-test-subj="new-instance-name"]').should('have.value', 'nginx'); + cy.get('[data-test-subj="createInstanceButton"]').should('be.disabled') + cy.get('[data-test-subj="addIntegrationFlyoutTitle"]').should('exist') + // validates the created sample index + cy.get('[data-test-subj="data-source-name"]').type('ss4o_logs-nginx-sample-sample'); + cy.get('[data-test-subj="validateIndex"]').click() + cy.get('[data-test-subj="new-instance-name"]').type(testInstance.substring(5)); + cy.get('[data-test-subj="createInstanceButton"]').click(); + cy.get('.euiToastHeader__title').should('contain', 'successfully'); + }) + + it('Navigates to installed integrations page and verifies that nginx-test exists', () => { + moveToAddedIntegrations(); + cy.contains(testInstance).should('exist'); + cy.get(`[data-test-subj="${testInstance}IntegrationLink"]`).click(); + }) + + it('Navigates to added integrations page and verifies that nginx-test exists and linked asset works as expected', () => { + moveToAddedIntegrations(); + cy.contains(TEST_INTEGRATION_INSTANCE).should('exist'); + cy.get(`[data-test-subj="${testInstance}IntegrationLink"]`).click(); + cy.get(`[data-test-subj="IntegrationAssetLink"]`).click(); + cy.url().should('include', '/dashboards#/') + }) + + it('Navigates to installed nginx-test instance page and deletes it', () => { + moveToAddedIntegrations(); + cy.contains(testInstance).should('exist'); + cy.get(`[data-test-subj="${testInstance}IntegrationLink"]`).click(); + cy.get('[data-test-subj="deleteInstanceButton"]').click(); + + cy.get('button[data-test-subj="popoverModal__deleteButton"]').should('be.disabled'); + + cy.get('input.euiFieldText[placeholder="delete"]').focus().type('delete', { + delay: 50, + }); + cy.get('button[data-test-subj="popoverModal__deleteButton"]').should('not.be.disabled'); + cy.get('button[data-test-subj="popoverModal__deleteButton"]').click(); + cy.get('.euiToastHeader__title').should('contain', 'successfully'); + }) +}); + +describe('Tests the add nginx integration instance flow', () => { + it('Navigates to nginx page and triggers the try it flow', () => { + moveToAvailableNginxIntegration(); + cy.get('[data-test-subj="try-it-button"]').click(); + cy.get('.euiToastHeader__title').should('contain', 'successfully'); + moveToAddedIntegrations(); + cy.contains(TEST_SAMPLE_INSTANCE).should('exist'); + }) +}); + + diff --git a/.cypress/utils/constants.js b/.cypress/utils/constants.js index 534035f63..2244ac178 100644 --- a/.cypress/utils/constants.js +++ b/.cypress/utils/constants.js @@ -73,6 +73,8 @@ export const setTimeFilter = (setEndTime = false, refresh = true) => { // notebooks export const TEST_NOTEBOOK = 'Test Notebook'; +export const TEST_INTEGRATION_INSTANCE = 'nginx-test'; +export const TEST_SAMPLE_INSTANCE = 'nginx-sample'; export const SAMPLE_URL = 'https://github.com/opensearch-project/sql/tree/main/sql-jdbc'; export const NOTEBOOK_TEXT = 'Use Notebooks to interactively and collaboratively develop rich reports backed by live data. Common use cases for notebooks includes creating postmortem reports, designing run books, building live infrastructure reports, or even documentation.'; export const OPENSEARCH_URL = 'https://opensearch.org/docs/latest/observability-plugin/notebooks/'; diff --git a/.eslintrc.js b/.eslintrc.js index f8dd0a681..35fde0175 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -3,6 +3,11 @@ * SPDX-License-Identifier: Apache-2.0 */ +const LICENSE_HEADER = `/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */`; + module.exports = { root: true, extends: [ @@ -15,6 +20,12 @@ module.exports = { files: ['**/*.{js,ts,tsx}'], rules: { 'no-console': 0, + '@osd/eslint/require-license-header': [ + 'error', + { + licenses: [LICENSE_HEADER], + }, + ], }, }, ], diff --git a/.husky/_/husky.sh b/.husky/_/husky.sh new file mode 100644 index 000000000..ca2720e08 --- /dev/null +++ b/.husky/_/husky.sh @@ -0,0 +1,30 @@ +#!/bin/sh +if [ -z "$husky_skip_init" ]; then + debug () { + [ "$HUSKY_DEBUG" = "1" ] && echo "husky (debug) - $1" + } + + readonly hook_name="$(basename "$0")" + debug "starting $hook_name..." + + if [ "$HUSKY" = "0" ]; then + debug "HUSKY env variable is set to 0, skipping hook" + exit 0 + fi + + if [ -f ~/.huskyrc ]; then + debug "sourcing ~/.huskyrc" + . ~/.huskyrc + fi + + export readonly husky_skip_init=1 + sh -e "$0" "$@" + exitCode="$?" + + if [ $exitCode != 0 ]; then + echo "husky - $hook_name hook exited with code $exitCode (error)" + exit $exitCode + fi + + exit 0 +fi diff --git a/common/constants/custom_panels.ts b/common/constants/custom_panels.ts index 555f778b1..ae228c179 100644 --- a/common/constants/custom_panels.ts +++ b/common/constants/custom_panels.ts @@ -8,7 +8,8 @@ import { v4 as uuidv4 } from 'uuid'; export const CUSTOM_PANELS_API_PREFIX = '/api/observability/operational_panels'; export const CUSTOM_PANELS_DOCUMENTATION_URL = 'https://opensearch.org/docs/latest/observability-plugin/operational-panels/'; -export const CREATE_PANEL_MESSAGE = 'Enter a name to describe the purpose of this Observability Dashboard.'; +export const CREATE_PANEL_MESSAGE = + 'Enter a name to describe the purpose of this Observability Dashboard.'; export const CUSTOM_PANELS_SAVED_OBJECT_TYPE = 'observability-panel'; diff --git a/common/constants/integrations.ts b/common/constants/integrations.ts new file mode 100644 index 000000000..9c8ca0299 --- /dev/null +++ b/common/constants/integrations.ts @@ -0,0 +1,11 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +export const OPENSEARCH_DOCUMENTATION_URL = 'https://opensearch.org/docs/latest/integrations/index'; +export const ASSET_FILTER_OPTIONS = ['index-pattern', 'search', 'visualization', 'dashboard']; +// TODO get this list dynamically from the API +export const INTEGRATION_TEMPLATE_OPTIONS = ['nginx']; +// TODO get this list dynamically from the API +export const INTEGRATION_CATEOGRY_OPTIONS = ['communication', 'http', 'cloud', 'container', 'logs']; diff --git a/common/constants/shared.ts b/common/constants/shared.ts index e42bd11c6..2d10c08e2 100644 --- a/common/constants/shared.ts +++ b/common/constants/shared.ts @@ -13,6 +13,7 @@ export const DSL_SEARCH = '/search'; export const DSL_CAT = '/cat.indices'; export const DSL_MAPPING = '/indices.getFieldMapping'; export const OBSERVABILITY_BASE = '/api/observability'; +export const INTEGRATIONS_BASE = '/api/integrations'; export const EVENT_ANALYTICS = '/event_analytics'; export const SAVED_OBJECTS = '/saved_objects'; export const SAVED_QUERY = '/query'; @@ -51,6 +52,10 @@ export const observabilityPanelsID = 'observability-dashboards'; export const observabilityPanelsTitle = 'Dashboards'; export const observabilityPanelsPluginOrder = 5095; +export const observabilityIntegrationsID = 'integrations'; +export const observabilityIntegrationsTitle = 'Integrations'; +export const observabilityIntegrationsPluginOrder = 9020; + // Shared Constants export const SQL_DOCUMENTATION_URL = 'https://opensearch.org/docs/latest/search-plugins/sql/index/'; export const PPL_DOCUMENTATION_URL = @@ -69,6 +74,7 @@ export const PPL_NEWLINE_REGEX = /[\n\r]+/g; // Observability plugin URI const BASE_OBSERVABILITY_URI = '/_plugins/_observability'; +const BASE_INTEGRATIONS_URI = '/_plugins/_integrations'; // Used later in front-end for routing export const OPENSEARCH_PANELS_API = { OBJECT: `${BASE_OBSERVABILITY_URI}/object`, }; diff --git a/package.json b/package.json index 8bddad559..98a52fbf6 100644 --- a/package.json +++ b/package.json @@ -19,26 +19,33 @@ "@reduxjs/toolkit": "^1.6.1", "ag-grid-community": "^27.3.0", "ag-grid-react": "^27.3.0", + "ajv": "^8.11.0", "antlr4": "4.8.0", "antlr4ts": "^0.5.0-alpha.4", + "mime": "^3.0.0", "performance-now": "^2.1.0", "plotly.js-dist": "^2.2.0", "postinstall": "^0.7.4", "react-graph-vis": "^1.0.5", "react-paginate": "^8.1.3", "react-plotly.js": "^2.5.1", - "redux-persist": "^6.0.0" + "redux-persist": "^6.0.0", + "sanitize-filename": "^1.6.3" }, "devDependencies": { "@cypress/skip-test": "^2.6.1", "@types/enzyme-adapter-react-16": "^1.0.6", + "@types/mime": "^3.0.1", "@types/react-plotly.js": "^2.5.0", "@types/react-test-renderer": "^16.9.1", + "@types/sanitize-filename": "^1.6.3", "antlr4ts-cli": "^0.5.0-alpha.4", "cypress": "^6.0.0", "cypress-watch-and-reload": "^1.10.6", "eslint": "^6.8.0", "jest-dom": "^4.0.0", + "lint-staged": "^13.1.0", + "mock-fs": "^4.12.0", "ts-jest": "^29.1.0" }, "resolutions": { diff --git a/public/components/app.tsx b/public/components/app.tsx index 18066f328..ac3fa5772 100644 --- a/public/components/app.tsx +++ b/public/components/app.tsx @@ -12,6 +12,7 @@ import { observabilityID, observabilityTitle } from '../../common/constants/shar import { store } from '../framework/redux/store'; import { AppPluginStartDependencies } from '../types'; import { Home as ApplicationAnalyticsHome } from './application_analytics/home'; +import { Home as IntegrationsHome } from './integrations/home'; import { MetricsListener } from './common/metrics_listener'; import { Home as CustomPanelsHome } from './custom_panels/home'; import { EventAnalytics } from './event_analytics'; @@ -42,6 +43,7 @@ const pages = { traces: TraceAnalyticsHome, notebooks: NotebooksHome, dashboards: CustomPanelsHome, + integrations: IntegrationsHome, }; export const App = ({ diff --git a/public/components/integrations/components/__tests__/__snapshots__/added_integration.test.tsx.snap b/public/components/integrations/components/__tests__/__snapshots__/added_integration.test.tsx.snap new file mode 100644 index 000000000..8c8ad5073 --- /dev/null +++ b/public/components/integrations/components/__tests__/__snapshots__/added_integration.test.tsx.snap @@ -0,0 +1,1100 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Added Integration View Test Renders added integration view using dummy data 1`] = ` + + +
+ +
+ +
+ + +
+ +
+ + +
+ +
+ +
+ +
+ +
+ +

+ +

+
+ +
+ +
+ +
+ +
+ + + + + +
+
+ +
+ Critical +
+
+
+
+
+
+
+
+
+
+ +
+ + + +
+
+
+
+
+
+ +
+
+ +
+ + +
+ + +
+ + Assets List + +
+
+
+ +
+ + +
+ + +
+ +
+ + + +
+
+ + + + +
+ + + + + +
+
+
+
+
+
+
+
+
+ +
+ + +
+ + + Type + + } + closePopover={[Function]} + display="inlineBlock" + hasArrow={true} + id="field_value_selection_0" + isOpen={false} + ownFocus={true} + panelClassName="euiFilterGroup__popoverPanel" + panelPaddingSize="none" + > +
+
+ + + + + +
+
+
+
+
+
+
+
+
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+ + +
+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + Name + + + + + + + + + + + + Type + + + + + +
+
+ + No items found + +
+
+
+
+
+ +
+ +
+ + +
+ +
+ +
+ + +`; diff --git a/public/components/integrations/components/__tests__/__snapshots__/added_integration_flyout.test.tsx.snap b/public/components/integrations/components/__tests__/__snapshots__/added_integration_flyout.test.tsx.snap new file mode 100644 index 000000000..9ae4ce75e --- /dev/null +++ b/public/components/integrations/components/__tests__/__snapshots__/added_integration_flyout.test.tsx.snap @@ -0,0 +1,2029 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Add Integration Flyout Test Renders add integration flyout with dummy integration name 1`] = ` + + + + + +
+ } + onActivation={[Function]} + onDeactivation={[Function]} + persistentFocus={false} + returnFocus={[Function]} + shards={Array []} + sideCar={ + Object { + "assignMedium": [Function], + "assignSyncMedium": [Function], + "options": Object { + "async": true, + "ssr": false, + }, + "read": [Function], + "useMedium": [Function], + } + } + > + + +
+ } + onActivation={[Function]} + onDeactivation={[Function]} + persistentFocus={false} + returnFocus={[Function]} + shards={Array []} + > + + +
+ } + onActivation={[Function]} + onDeactivation={[Function]} + persistentFocus={false} + returnFocus={[Function]} + shards={Array []} + /> + + + + +
+ +
+ + + + + + +
+ +

+ Add Integration +

+
+
+
+ +
+ + +
+ +
+ +
+ + + + + +
+
+ +
+ + + + + +
+
+
+
+
+
+
+ +
+ +
+ + + + + + + + + + + + + + + + + +`; diff --git a/public/components/integrations/components/__tests__/__snapshots__/added_integration_table.test.tsx.snap b/public/components/integrations/components/__tests__/__snapshots__/added_integration_table.test.tsx.snap new file mode 100644 index 000000000..72cbd8716 --- /dev/null +++ b/public/components/integrations/components/__tests__/__snapshots__/added_integration_table.test.tsx.snap @@ -0,0 +1,1606 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Added Integration Table View Test Renders added integration table view using dummy data 1`] = ` + + + +
+ +
+ + +
+ +
+ + + +
+
+ + + + +
+ + + + + +
+
+
+
+
+
+
+
+
+ +
+ + +
+ + + Type + + } + closePopover={[Function]} + display="inlineBlock" + hasArrow={true} + id="field_value_selection_0" + isOpen={false} + ownFocus={true} + panelClassName="euiFilterGroup__popoverPanel" + panelPaddingSize="none" + > +
+
+ + + + + +
+
+
+
+
+
+
+
+
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+ + +
+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + Asset name + + + + + + + + + + + + Source + + + + + + + + + + + + Date Added + + + + + + + + + + + + Actions + + + + + +
+
+ Asset name +
+
+ + + nginx + + +
+
+
+ Source +
+
+ + + nginx + + +
+
+
+ Date Added +
+
+ +
+ 2023-06-15T16:28:36.370Z +
+
+
+
+
+ Actions +
+
+ + + + + +
+
+
+
+ +
+ +
+ + + +
+ +
+ + + : + 10 + + } + closePopover={[Function]} + display="inlineBlock" + hasArrow={true} + isOpen={false} + ownFocus={true} + panelPaddingSize="none" + > +
+
+ + + +
+
+
+
+
+ +
+ + + +
+
+
+
+
+
+ +
+ +
+ +
+ + + +`; diff --git a/public/components/integrations/components/__tests__/__snapshots__/available_integration_card_view.test.tsx.snap b/public/components/integrations/components/__tests__/__snapshots__/available_integration_card_view.test.tsx.snap new file mode 100644 index 000000000..9f6372b91 --- /dev/null +++ b/public/components/integrations/components/__tests__/__snapshots__/available_integration_card_view.test.tsx.snap @@ -0,0 +1,438 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Available Integration Card View Test Renders nginx integration card view using dummy data 1`] = ` + + +
+ +
+ +
+ + +
+
+ + + + +
+ + + + + +
+
+
+
+
+
+
+
+ +
+ + +
+ +
+ + + Text align + + +
+ + + + + + + + + + +
+
+
+
+
+
+ + +
+ +
+ + +`; diff --git a/public/components/integrations/components/__tests__/__snapshots__/available_integration_table_view.test.tsx.snap b/public/components/integrations/components/__tests__/__snapshots__/available_integration_table_view.test.tsx.snap new file mode 100644 index 000000000..2406957a3 --- /dev/null +++ b/public/components/integrations/components/__tests__/__snapshots__/available_integration_table_view.test.tsx.snap @@ -0,0 +1,1578 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Available Integration Table View Test Renders nginx integration table view using dummy data 1`] = ` + + + +
+ +
+ + + + + + + , + } + } + tableLayout="auto" + > +
+ + + + + + + } + > + +
+ +
+ + + +
+
+ + + + +
+ + + + + +
+
+
+
+
+
+
+
+
+ +
+ +
+ +
+ + +
+ +
+ + + Text align + + +
+ + + + + + + + + + +
+
+
+
+
+
+ +
+ +
+ + + +
+ + +
+
+ +
+ +
+ +
+ + +
+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + Name + + + + + + + + + + + + Description + + + + + + + + + + + + Categories + + + + + +
+
+ Name +
+ +
+
+ Description +
+
+ +
+ Nginx HTTP server collector +
+
+
+
+
+ Categories +
+
+ +
+ + + + + + + communication + + + + + + + + + + + + + http + + + + + + + + + + + + + logs + + + + + + +
+
+
+
+
+
+ +
+ +
+ + + +
+ +
+ + + : + 10 + + } + closePopover={[Function]} + display="inlineBlock" + hasArrow={true} + isOpen={false} + ownFocus={true} + panelPaddingSize="none" + > +
+
+ + + +
+
+
+
+
+ +
+ + + +
+
+
+
+
+
+ +
+ +
+ +
+ + + +`; diff --git a/public/components/integrations/components/__tests__/__snapshots__/integration_details.test.tsx.snap b/public/components/integrations/components/__tests__/__snapshots__/integration_details.test.tsx.snap new file mode 100644 index 000000000..c54266f2a --- /dev/null +++ b/public/components/integrations/components/__tests__/__snapshots__/integration_details.test.tsx.snap @@ -0,0 +1,42 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Available Integration Table View Test Renders nginx integration table view using dummy data 1`] = ` + +
+ + +
+ + Details + +
+
+
+ +
+ + +
+ Nginx HTTP server collector +
+
+
+ +`; diff --git a/public/components/integrations/components/__tests__/__snapshots__/integration_fields.test.tsx.snap b/public/components/integrations/components/__tests__/__snapshots__/integration_fields.test.tsx.snap new file mode 100644 index 000000000..f54fb131c --- /dev/null +++ b/public/components/integrations/components/__tests__/__snapshots__/integration_fields.test.tsx.snap @@ -0,0 +1,502 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Available Integration Table View Test Renders nginx integration table view using dummy data 1`] = ` + +
+ + +
+ + Fields + +
+
+
+ +
+ + +
+ + +
+ +
+ + + +
+
+ + + + +
+ + + + + +
+
+
+
+
+
+
+
+
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+ + +
+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + Name + + + + + + + + + + + + Type + + + + + + + + + + + + Category + + + + + +
+
+ + No items found + +
+
+
+
+
+ +
+ +
+ +`; diff --git a/public/components/integrations/components/__tests__/__snapshots__/integration_header.test.tsx.snap b/public/components/integrations/components/__tests__/__snapshots__/integration_header.test.tsx.snap new file mode 100644 index 000000000..bc992fa2d --- /dev/null +++ b/public/components/integrations/components/__tests__/__snapshots__/integration_header.test.tsx.snap @@ -0,0 +1,165 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Integration Header Test Renders integration header as expected 1`] = ` + +
+ +
+ +
+ +

+ Integrations +

+
+
+
+
+
+ +
+ + +
+ +
+ View or add available integrations to use pre-canned assets immediately in your OpenSearch setup. + + + + Learn more + + + + + + + +
+
+
+
+ +
+ + +
+ + + + + + +
+
+ +
+ +
+ +`; diff --git a/public/components/integrations/components/__tests__/added_integration.test.tsx b/public/components/integrations/components/__tests__/added_integration.test.tsx new file mode 100644 index 000000000..e644cb7d2 --- /dev/null +++ b/public/components/integrations/components/__tests__/added_integration.test.tsx @@ -0,0 +1,43 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { configure, mount } from 'enzyme'; +import Adapter from 'enzyme-adapter-react-16'; +import { waitFor } from '@testing-library/react'; +import { AddedIntegration } from '../added_integration'; +import { addedIntegrationData, testIntegrationInstanceData } from './testing_constants'; +import React from 'react'; + +describe('Added Integration View Test', () => { + configure({ adapter: new Adapter() }); + let mockChrome: any; + let mockHttp: any; + const instanceId: string = '6b3b8010-015a-11ee-8bf8-9f447e9961b0'; + + beforeEach(() => { + // Create mock instances for each test + mockChrome = { + setBreadcrumbs: jest.fn(), + }; + mockHttp = { + get: jest.fn().mockResolvedValue({ data: testIntegrationInstanceData }), + }; + }); + + it('Renders added integration view using dummy data', async () => { + const wrapper = mount( + + ); + + await waitFor(() => { + expect(wrapper).toMatchSnapshot(); + }); + }); +}); diff --git a/public/components/integrations/components/__tests__/added_integration_flyout.test.tsx b/public/components/integrations/components/__tests__/added_integration_flyout.test.tsx new file mode 100644 index 000000000..7f5280652 --- /dev/null +++ b/public/components/integrations/components/__tests__/added_integration_flyout.test.tsx @@ -0,0 +1,24 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { configure, mount } from 'enzyme'; +import Adapter from 'enzyme-adapter-react-16'; +import { waitFor } from '@testing-library/react'; +import { AddIntegrationFlyout } from '../add_integration_flyout'; +import React from 'react'; + +describe('Add Integration Flyout Test', () => { + configure({ adapter: new Adapter() }); + + it('Renders add integration flyout with dummy integration name', async () => { + const wrapper = mount( + + ); + + await waitFor(() => { + expect(wrapper).toMatchSnapshot(); + }); + }); +}); diff --git a/public/components/integrations/components/__tests__/added_integration_table.test.tsx b/public/components/integrations/components/__tests__/added_integration_table.test.tsx new file mode 100644 index 000000000..95e9c2bd1 --- /dev/null +++ b/public/components/integrations/components/__tests__/added_integration_table.test.tsx @@ -0,0 +1,23 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { configure, mount } from 'enzyme'; +import Adapter from 'enzyme-adapter-react-16'; +import { waitFor } from '@testing-library/react'; +import { AddedIntegrationsTable } from '../added_integration_table'; +import { addedIntegrationData } from './testing_constants'; +import React from 'react'; + +describe('Added Integration Table View Test', () => { + configure({ adapter: new Adapter() }); + + it('Renders added integration table view using dummy data', async () => { + const wrapper = mount(); + + await waitFor(() => { + expect(wrapper).toMatchSnapshot(); + }); + }); +}); diff --git a/public/components/integrations/components/__tests__/available_integration_card_view.test.tsx b/public/components/integrations/components/__tests__/available_integration_card_view.test.tsx new file mode 100644 index 000000000..061752895 --- /dev/null +++ b/public/components/integrations/components/__tests__/available_integration_card_view.test.tsx @@ -0,0 +1,23 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { configure, mount } from 'enzyme'; +import Adapter from 'enzyme-adapter-react-16'; +import { waitFor } from '@testing-library/react'; +import { AvailableIntegrationsCardView } from '../available_integration_card_view'; +import { availableCardViewData } from './testing_constants'; +import React from 'react'; + +describe('Available Integration Card View Test', () => { + configure({ adapter: new Adapter() }); + + it('Renders nginx integration card view using dummy data', async () => { + const wrapper = mount(); + + await waitFor(() => { + expect(wrapper).toMatchSnapshot(); + }); + }); +}); diff --git a/public/components/integrations/components/__tests__/available_integration_table_view.test.tsx b/public/components/integrations/components/__tests__/available_integration_table_view.test.tsx new file mode 100644 index 000000000..e865beb76 --- /dev/null +++ b/public/components/integrations/components/__tests__/available_integration_table_view.test.tsx @@ -0,0 +1,23 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { configure, mount } from 'enzyme'; +import Adapter from 'enzyme-adapter-react-16'; +import { waitFor } from '@testing-library/react'; +import { AvailableIntegrationsTable } from '../available_integration_table'; +import { availableTableViewData } from './testing_constants'; +import React from 'react'; + +describe('Available Integration Table View Test', () => { + configure({ adapter: new Adapter() }); + + it('Renders nginx integration table view using dummy data', async () => { + const wrapper = mount(); + + await waitFor(() => { + expect(wrapper).toMatchSnapshot(); + }); + }); +}); diff --git a/public/components/integrations/components/__tests__/integration_details.test.tsx b/public/components/integrations/components/__tests__/integration_details.test.tsx new file mode 100644 index 000000000..91808953d --- /dev/null +++ b/public/components/integrations/components/__tests__/integration_details.test.tsx @@ -0,0 +1,22 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { configure, mount } from 'enzyme'; +import Adapter from 'enzyme-adapter-react-16'; +import { waitFor } from '@testing-library/react'; +import { IntegrationDetails } from '../integration_details_panel'; +import { nginxIntegrationData } from './testing_constants'; + +describe('Available Integration Table View Test', () => { + configure({ adapter: new Adapter() }); + + it('Renders nginx integration table view using dummy data', async () => { + const wrapper = mount(IntegrationDetails(nginxIntegrationData)); + + await waitFor(() => { + expect(wrapper).toMatchSnapshot(); + }); + }); +}); diff --git a/public/components/integrations/components/__tests__/integration_fields.test.tsx b/public/components/integrations/components/__tests__/integration_fields.test.tsx new file mode 100644 index 000000000..93582d963 --- /dev/null +++ b/public/components/integrations/components/__tests__/integration_fields.test.tsx @@ -0,0 +1,22 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { configure, mount } from 'enzyme'; +import Adapter from 'enzyme-adapter-react-16'; +import { waitFor } from '@testing-library/react'; +import { IntegrationFields } from '../integration_fields_panel'; +import { nginxIntegrationData } from './testing_constants'; + +describe('Available Integration Table View Test', () => { + configure({ adapter: new Adapter() }); + + it('Renders nginx integration table view using dummy data', async () => { + const wrapper = mount(IntegrationFields(nginxIntegrationData)); + + await waitFor(() => { + expect(wrapper).toMatchSnapshot(); + }); + }); +}); diff --git a/public/components/integrations/components/__tests__/integration_header.test.tsx b/public/components/integrations/components/__tests__/integration_header.test.tsx new file mode 100644 index 000000000..6bbd44e4f --- /dev/null +++ b/public/components/integrations/components/__tests__/integration_header.test.tsx @@ -0,0 +1,22 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { configure, mount } from 'enzyme'; +import Adapter from 'enzyme-adapter-react-16'; +import React from 'react'; +import { waitFor } from '@testing-library/react'; +import { IntegrationHeader } from '../integration_header'; + +describe('Integration Header Test', () => { + configure({ adapter: new Adapter() }); + + it('Renders integration header as expected', async () => { + const wrapper = mount(); + + await waitFor(() => { + expect(wrapper).toMatchSnapshot(); + }); + }); +}); diff --git a/public/components/integrations/components/__tests__/mapping_validation.test.ts b/public/components/integrations/components/__tests__/mapping_validation.test.ts new file mode 100644 index 000000000..4a02058cf --- /dev/null +++ b/public/components/integrations/components/__tests__/mapping_validation.test.ts @@ -0,0 +1,176 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { + doTypeValidation, + doNestedPropertyValidation, + doPropertyValidation, +} from '../add_integration_flyout'; + +describe('Validation', () => { + describe('doTypeValidation', () => { + it('should return true if required type is not specified', () => { + const toCheck = { type: 'string' }; + const required = {}; + + const result = doTypeValidation(toCheck, required); + + expect(result).toBe(true); + }); + + it('should return true if types match', () => { + const toCheck = { type: 'string' }; + const required = { type: 'string' }; + + const result = doTypeValidation(toCheck, required); + + expect(result).toBe(true); + }); + + it('should return true if object has properties', () => { + const toCheck = { properties: { prop1: { type: 'string' } } }; + const required = { type: 'object' }; + + const result = doTypeValidation(toCheck, required); + + expect(result).toBe(true); + }); + + it('should return false if types do not match', () => { + const toCheck = { type: 'string' }; + const required = { type: 'number' }; + + const result = doTypeValidation(toCheck, required); + + expect(result).toBe(false); + }); + }); + + describe('doNestedPropertyValidation', () => { + it('should return true if type validation passes and no properties are required', () => { + const toCheck = { type: 'string' }; + const required = { type: 'string' }; + + const result = doNestedPropertyValidation(toCheck, required); + + expect(result).toBe(true); + }); + + it('should return false if type validation fails', () => { + const toCheck = { type: 'string' }; + const required = { type: 'number' }; + + const result = doNestedPropertyValidation(toCheck, required); + + expect(result).toBe(false); + }); + + it('should return false if a required property is missing', () => { + const toCheck = { type: 'object', properties: { prop1: { type: 'string' } } }; + const required = { + type: 'object', + properties: { prop1: { type: 'string' }, prop2: { type: 'number' } }, + }; + + const result = doNestedPropertyValidation(toCheck, required); + + expect(result).toBe(false); + }); + + it('should return true if all required properties pass validation', () => { + const toCheck = { + type: 'object', + properties: { + prop1: { type: 'string' }, + prop2: { type: 'number' }, + }, + }; + const required = { + type: 'object', + properties: { + prop1: { type: 'string' }, + prop2: { type: 'number' }, + }, + }; + + const result = doNestedPropertyValidation(toCheck, required); + + expect(result).toBe(true); + }); + }); + + describe('doPropertyValidation', () => { + it('should return true if all properties pass validation', () => { + const rootType = 'root'; + const dataSourceProps = { + prop1: { type: 'string' }, + prop2: { type: 'number' }, + }; + const requiredMappings = { + root: { + template: { + mappings: { + properties: { + prop1: { type: 'string' }, + prop2: { type: 'number' }, + }, + }, + }, + }, + }; + + const result = doPropertyValidation(rootType, dataSourceProps as any, requiredMappings); + + expect(result).toBe(true); + }); + + it('should return false if a property fails validation', () => { + const rootType = 'root'; + const dataSourceProps = { + prop1: { type: 'string' }, + prop2: { type: 'number' }, + }; + const requiredMappings = { + root: { + template: { + mappings: { + properties: { + prop1: { type: 'string' }, + prop2: { type: 'boolean' }, + }, + }, + }, + }, + }; + + const result = doPropertyValidation(rootType, dataSourceProps as any, requiredMappings); + + expect(result).toBe(false); + }); + + it('should return false if a required nested property is missing', () => { + const rootType = 'root'; + const dataSourceProps = { + prop1: { type: 'string' }, + }; + const requiredMappings = { + root: { + template: { + mappings: { + properties: { + prop1: { type: 'string' }, + prop2: { type: 'number' }, + }, + }, + }, + }, + }; + + const result = doPropertyValidation(rootType, dataSourceProps as any, requiredMappings); + + expect(result).toBe(false); + }); + }); +}); diff --git a/public/components/integrations/components/__tests__/testing_constants.ts b/public/components/integrations/components/__tests__/testing_constants.ts new file mode 100644 index 000000000..32cf5b4e6 --- /dev/null +++ b/public/components/integrations/components/__tests__/testing_constants.ts @@ -0,0 +1,261 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { AddedIntegrationsTableProps } from '../added_integration_overview_page'; +import { + AvailableIntegrationsCardViewProps, + AvailableIntegrationsTableProps, +} from '../available_integration_overview_page'; + +export const availableCardViewData: AvailableIntegrationsCardViewProps = { + data: { + hits: [ + { + name: 'nginx', + version: '1.0.1', + displayName: 'NginX Dashboard', + integrationType: 'logs', + description: 'Nginx HTTP server collector', + license: 'Apache-2.0', + type: 'logs', + author: 'John Doe', + sourceUrl: 'https://github.com/', + statics: { + logo: { annotation: 'NginX Logo', path: 'logo.svg' }, + gallery: [ + { annotation: 'NginX Dashboard', path: 'dashboard1.png' }, + { annotation: 'NginX Logo', path: 'logo.svg' }, + ], + }, + components: [ + { name: 'communication', version: '1.0.0' }, + { name: 'http', version: '1.0.0' }, + { name: 'logs', version: '1.0.0' }, + ], + assets: { savedObjects: { name: 'nginx', version: '1.0.1' } }, + }, + ], + }, + showModal: () => {}, + renderCateogryFilters: () => null as any, +}; + +export const availableTableViewData: AvailableIntegrationsTableProps = { + data: { + hits: [ + { + name: 'nginx', + version: '1.0.1', + displayName: 'NginX Dashboard', + integrationType: 'logs', + description: 'Nginx HTTP server collector', + license: 'Apache-2.0', + type: 'logs', + author: 'John Doe', + sourceUrl: 'https://github.com/', + statics: { + logo: { annotation: 'NginX Logo', path: 'logo.svg' }, + gallery: [ + { annotation: 'NginX Dashboard', path: 'dashboard1.png' }, + { annotation: 'NginX Logo', path: 'logo.svg' }, + ], + }, + components: [ + { name: 'communication', version: '1.0.0' }, + { name: 'http', version: '1.0.0' }, + { name: 'logs', version: '1.0.0' }, + ], + assets: { savedObjects: { name: 'nginx', version: '1.0.1' } }, + }, + ], + }, + showModal: () => {}, + loading: false, + renderCateogryFilters: () => null as any, +}; + +export const addedIntegrationData: AddedIntegrationsTableProps = { + data: { + total: 1, + hits: [ + { + name: 'nginx', + templateName: 'nginx', + dataSource: { sourceType: 'logs', dataset: 'nginx', namespace: 'prod' }, + creationDate: '2023-06-15T16:28:36.370Z', + assets: [ + { + assetType: 'index-pattern', + assetId: '3fc41705-8a23-49f4-926c-2819e0d7306d', + status: 'available', + isDefaultAsset: false, + description: 'ss4o_logs-nginx-prod', + }, + { + assetType: 'search', + assetId: 'a0415ddd-047d-4c02-8769-d14bfb70f525', + status: 'available', + isDefaultAsset: false, + description: '[NGINX Core Logs 1.0] Nginx Access Logs', + }, + { + assetType: 'visualization', + assetId: 'a17cd453-fb2f-4c24-81db-aedfc8682829', + status: 'available', + isDefaultAsset: false, + description: '[NGINX Core Logs 1.0] Response codes over time', + }, + { + assetType: 'search', + assetId: '3e47dfed-d9ff-4c1b-b425-04ffc8ed3fa9', + status: 'available', + isDefaultAsset: false, + description: '[NGINX Core Logs 1.0] Nginx Error Logs', + }, + { + assetType: 'visualization', + assetId: '641c2a03-eead-4900-94ee-e12d2fef8383', + status: 'available', + isDefaultAsset: false, + description: '[NGINX Core Logs 1.0] Errors over time', + }, + { + assetType: 'visualization', + assetId: 'ce61594d-8307-4358-9b7e-71101b3ed722', + status: 'available', + isDefaultAsset: false, + description: 'Data Volume', + }, + { + assetType: 'visualization', + assetId: '452bd6e3-3b50-407f-88f2-c35a29c56051', + status: 'available', + isDefaultAsset: false, + description: 'Top Paths', + }, + { + assetType: 'visualization', + assetId: '14a1ddab-08c1-4aba-ba3b-88bae36f7e50', + status: 'available', + isDefaultAsset: false, + description: 'Requests per Minute', + }, + { + assetType: 'dashboard', + assetId: '179bad58-c840-4c6c-9fd8-1667c14bd03a', + status: 'available', + isDefaultAsset: true, + description: '[NGINX Core Logs 1.0] Overview', + }, + ], + id: 'ad7e6e30-0b99-11ee-b27c-c9863222e9bf', + }, + ], + }, + loading: false, +}; + +export const testIntegrationInstanceData = { + data: { + id: 'ad7e6e30-0b99-11ee-b27c-c9863222e9bf', + status: 'unknown', + name: 'nginx', + templateName: 'nginx', + dataSource: { sourceType: 'logs', dataset: 'nginx', namespace: 'prod' }, + creationDate: '2023-06-15T16:28:36.370Z', + assets: [ + { + assetType: 'index-pattern', + assetId: '3fc41705-8a23-49f4-926c-2819e0d7306d', + status: 'available', + isDefaultAsset: false, + description: 'ss4o_logs-nginx-prod', + }, + { + assetType: 'search', + assetId: 'a0415ddd-047d-4c02-8769-d14bfb70f525', + status: 'available', + isDefaultAsset: false, + description: '[NGINX Core Logs 1.0] Nginx Access Logs', + }, + { + assetType: 'visualization', + assetId: 'a17cd453-fb2f-4c24-81db-aedfc8682829', + status: 'available', + isDefaultAsset: false, + description: '[NGINX Core Logs 1.0] Response codes over time', + }, + { + assetType: 'search', + assetId: '3e47dfed-d9ff-4c1b-b425-04ffc8ed3fa9', + status: 'available', + isDefaultAsset: false, + description: '[NGINX Core Logs 1.0] Nginx Error Logs', + }, + { + assetType: 'visualization', + assetId: '641c2a03-eead-4900-94ee-e12d2fef8383', + status: 'available', + isDefaultAsset: false, + description: '[NGINX Core Logs 1.0] Errors over time', + }, + { + assetType: 'visualization', + assetId: 'ce61594d-8307-4358-9b7e-71101b3ed722', + status: 'available', + isDefaultAsset: false, + description: 'Data Volume', + }, + { + assetType: 'visualization', + assetId: '452bd6e3-3b50-407f-88f2-c35a29c56051', + status: 'available', + isDefaultAsset: false, + description: 'Top Paths', + }, + { + assetType: 'visualization', + assetId: '14a1ddab-08c1-4aba-ba3b-88bae36f7e50', + status: 'available', + isDefaultAsset: false, + description: 'Requests per Minute', + }, + { + assetType: 'dashboard', + assetId: '179bad58-c840-4c6c-9fd8-1667c14bd03a', + status: 'available', + isDefaultAsset: true, + description: '[NGINX Core Logs 1.0] Overview', + }, + ], + }, +}; + +export const nginxIntegrationData = { + integration: { + name: 'nginx', + version: '1.0.1', + displayName: 'NginX Dashboard', + integrationType: 'logs', + description: 'Nginx HTTP server collector', + license: 'Apache-2.0', + type: 'logs', + author: 'John Doe', + sourceUrl: 'https://github.com/', + statics: { + logo: { annotation: 'NginX Logo', path: 'logo.svg' }, + gallery: [ + { annotation: 'NginX Dashboard', path: 'dashboard1.png' }, + { annotation: 'NginX Logo', path: 'logo.svg' }, + ], + }, + components: [ + { name: 'communication', version: '1.0.0' }, + { name: 'http', version: '1.0.0' }, + { name: 'logs', version: '1.0.0' }, + ], + assets: { savedObjects: { name: 'nginx', version: '1.0.1' } }, + }, +}; diff --git a/public/components/integrations/components/add_integration_flyout.tsx b/public/components/integrations/components/add_integration_flyout.tsx new file mode 100644 index 000000000..9688d1b1e --- /dev/null +++ b/public/components/integrations/components/add_integration_flyout.tsx @@ -0,0 +1,300 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import _ from 'lodash'; +import { + EuiButton, + EuiFieldText, + EuiFlexGroup, + EuiFlexItem, + EuiFlyout, + EuiFlyoutBody, + EuiFlyoutFooter, + EuiFlyoutHeader, + EuiForm, + EuiText, + EuiLink, + EuiFormRow, + EuiTitle, +} from '@elastic/eui'; +import React, { useState } from 'react'; +import { HttpStart } from '../../../../../../src/core/public'; +import { useToast } from '../../../../public/components/common/toast'; + +interface IntegrationFlyoutProps { + onClose: () => void; + onCreate: (name: string, dataSource: string) => void; + integrationName: string; + integrationType: string; + http: HttpStart; +} + +export const doTypeValidation = (toCheck: any, required: any): boolean => { + if (!required.type) { + return true; + } + if (required.type === 'object') { + return Boolean(toCheck.properties); + } + return required.type === toCheck.type; +}; + +export const doNestedPropertyValidation = ( + toCheck: { type?: string; properties?: any }, + required: { type?: string; properties?: any } +): boolean => { + if (!doTypeValidation(toCheck, required)) { + return false; + } + if (required.properties) { + return Object.keys(required.properties).every((property: string) => { + if (!toCheck.properties[property]) { + return false; + } + return doNestedPropertyValidation( + toCheck.properties[property], + required.properties[property] + ); + }); + } + return true; +}; + +export const doPropertyValidation = ( + rootType: string, + dataSourceProps: { [key: string]: { properties?: any } }, + requiredMappings: { [key: string]: { template: { mappings: { properties?: any } } } } +): boolean => { + // Check root object type (without dependencies) + for (const [key, value] of Object.entries( + requiredMappings[rootType].template.mappings.properties + )) { + if (!dataSourceProps[key] || !doNestedPropertyValidation(dataSourceProps[key], value as any)) { + return false; + } + } + // Check nested dependencies + for (const [key, value] of Object.entries(requiredMappings)) { + if (key === rootType) { + continue; + } + if ( + !dataSourceProps[key] || + !doNestedPropertyValidation(dataSourceProps[key], value.template.mappings.properties) + ) { + return false; + } + } + return true; +}; + +export function AddIntegrationFlyout(props: IntegrationFlyoutProps) { + const { onClose, onCreate, integrationName, integrationType } = props; + + const [isDataSourceValid, setDataSourceValid] = useState(null); + + const { setToast } = useToast(); + + const [name, setName] = useState(integrationName || ''); // sets input value + const [dataSource, setDataSource] = useState(''); + + const onDatasourceChange = (e: React.ChangeEvent) => { + setDataSource(e.target.value); + }; + + const [errors, setErrors] = useState([]); + + const onNameChange = (e: React.ChangeEvent) => { + setName(e.target.value); + }; + + // Returns true if the data stream is a legal name. + // Appends any additional validation errors to the provided errors array. + const checkDataSourceName = (targetDataSource: string, validationErrors: string[]): boolean => { + if (!Boolean(targetDataSource.match(/^[a-z\d\.][a-z\d\._\-\*]*$/))) { + validationErrors.push('This is not a valid index name.'); + setErrors(validationErrors); + return false; + } + const nameValidity: boolean = Boolean( + targetDataSource.match(new RegExp(`^ss4o_${integrationType}-[^\\-]+-[^\\-]+`)) + ); + if (!nameValidity) { + validationErrors.push('This index does not match the suggested naming convention.'); + setErrors(validationErrors); + } + return true; + }; + + const fetchDataSourceMappings = async ( + targetDataSource: string + ): Promise<{ [key: string]: { properties: any } } | null> => { + return fetch(`/api/console/proxy?path=${targetDataSource}/_mapping&method=GET`, { + method: 'POST', + headers: [['osd-xsrf', 'true']], + }) + .then((response) => response.json()) + .then((response) => { + // Un-nest properties by a level for caller convenience + Object.keys(response).forEach((key) => { + response[key].properties = response[key].mappings.properties; + }); + return response; + }) + .catch((err: any) => { + console.error(err); + return null; + }); + }; + + const fetchIntegrationMappings = async ( + targetName: string + ): Promise<{ [key: string]: { template: { mappings: { properties?: any } } } } | null> => { + return fetch(`/api/integrations/repository/${targetName}/schema`) + .then((response) => response.json()) + .then((response) => { + if (response.statusCode && response.statusCode !== 200) { + throw new Error('Failed to retrieve Integration schema', { cause: response }); + } + return response.data.mappings; + }) + .catch((err: any) => { + console.error(err); + return null; + }); + }; + + const doExistingDataSourceValidation = async (targetDataSource: string): Promise => { + const validationErrors: string[] = []; + if (!checkDataSourceName(targetDataSource, validationErrors)) { + return false; + } + const [dataSourceMappings, integrationMappings] = await Promise.all([ + fetchDataSourceMappings(targetDataSource), + fetchIntegrationMappings(name), + ]); + if (!dataSourceMappings) { + validationErrors.push('Provided data stream could not be retrieved'); + setErrors(validationErrors); + return false; + } + if (!integrationMappings) { + validationErrors.push('Failed to retrieve integration schema information'); + setErrors(validationErrors); + return false; + } + const validationResult = Object.values(dataSourceMappings).every((value) => + doPropertyValidation(integrationType, value.properties, integrationMappings) + ); + if (!validationResult) { + validationErrors.push('The provided index does not match the schema'); + setErrors(validationErrors); + } + return validationResult; + }; + + const formContent = () => { + return ( +
+ + + Learn More + + + } + > + onDatasourceChange(e)} + value={dataSource} + isInvalid={isDataSourceValid === false} + append={ + { + const validationResult = await doExistingDataSourceValidation(dataSource); + if (validationResult) { + setToast('Index name or wildcard pattern is valid', 'success'); + } + setDataSourceValid(validationResult); + }} + disabled={dataSource.length === 0} + > + Validate + + } + /> + + + onNameChange(e)} + value={name} + /> + +
+ ); + }; + + const renderContent = () => { + return ( + <> + {formContent()} + + ); + }; + + return ( + + + +

Add Integration

+
+
+ {renderContent()} + + + + onClose()} color="danger"> + Cancel + + + + { + onCreate(name, dataSource); + onClose(); + }} + fill + disabled={ + dataSource.length < 1 || + dataSource.length > 50 || + name.length < 1 || + name.length > 50 || + isDataSourceValid !== true + } + data-test-subj="createInstanceButton" + data-click-metric-element="integrations.create_from_setup" + > + Add Integration + + + + +
+ ); +} diff --git a/public/components/integrations/components/added_integration.tsx b/public/components/integrations/components/added_integration.tsx new file mode 100644 index 000000000..2c466c9f1 --- /dev/null +++ b/public/components/integrations/components/added_integration.tsx @@ -0,0 +1,304 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ +/* eslint-disable react-hooks/exhaustive-deps */ + +import { + EuiBadge, + EuiButton, + EuiButtonIcon, + EuiFlexGroup, + EuiFlexItem, + EuiGlobalToastList, + EuiHealth, + EuiIcon, + EuiInMemoryTable, + EuiLink, + EuiOverlayMask, + EuiPage, + EuiPageBody, + EuiPageContentHeaderSection, + EuiPageHeader, + EuiPageHeaderSection, + EuiPanel, + EuiSpacer, + EuiTableFieldDataColumnType, + EuiText, + EuiTitle, +} from '@elastic/eui'; +import React, { useEffect, useState } from 'react'; +import _ from 'lodash'; +import { PanelTitle } from '../../trace_analytics/components/common/helper_functions'; +import { ASSET_FILTER_OPTIONS } from '../../../../common/constants/integrations'; +import { INTEGRATIONS_BASE, OBSERVABILITY_BASE } from '../../../../common/constants/shared'; +import { DeleteModal } from '../../common/helpers/delete_modal'; +import { AddedIntegrationProps } from './integration_types'; +import { useToast } from '../../../../public/components/common/toast'; + +export function AddedIntegration(props: AddedIntegrationProps) { + const { http, integrationInstanceId, chrome } = props; + + const { setToast } = useToast(); + + const [stateData, setData] = useState({ data: {} }); + + useEffect(() => { + chrome.setBreadcrumbs([ + { + text: 'Integrations', + href: '#/', + }, + { + text: 'Installed Integrations', + href: '#/installed', + }, + { + text: `${stateData.data?.name}`, + href: `#/installed/${stateData.data?.id}`, + }, + ]); + handleDataRequest(); + }, [integrationInstanceId, stateData.data?.name]); + + const [isModalVisible, setIsModalVisible] = useState(false); + const [modalLayout, setModalLayout] = useState(); + + const badge = (status) => { + switch (status) { + case 'available': + return Active; + case 'partially-available': + return Partially Available; + default: + return Critical; + } + }; + + const getModal = () => { + setModalLayout( + { + setIsModalVisible(false); + deleteAddedIntegration(integrationInstanceId); + }} + onCancel={() => { + setIsModalVisible(false); + }} + title={`Delete Assets`} + message={`Are you sure you want to delete the selected asset(s)?`} + /> + ); + setIsModalVisible(true); + }; + + async function deleteAddedIntegration(integrationInstance: string) { + http + .delete(`${INTEGRATIONS_BASE}/store/${integrationInstance}`) + .then(() => { + setToast(`${stateData.data?.name} integration successfully deleted!`, 'success'); + }) + .catch((err) => { + setToast(`Error deleting ${stateData.data?.name} or its assets`, 'danger'); + }) + .finally(() => { + window.location.hash = '#/installed'; + }); + } + + async function handleDataRequest() { + http + .get(`${INTEGRATIONS_BASE}/store/${integrationInstanceId}`) + .then((exists) => setData(exists)); + } + + function AddedOverview(overviewProps: any) { + const { data } = overviewProps.data; + + return ( + + + + + + + + +

{data?.name}

+
+
+ + {badge(data?.status)} + +
+ + + { + getModal(); + }} + data-test-subj="deleteInstanceButton" + /> + +
+
+ + + + +

Template

+
+ + {data?.templateName} +
+ + +

Date Added

+
+ + {data?.creationDate?.split('T')[0]} +
+
+
+
+ ); + } + + function AddedAssets(assetProps: any) { + const { data } = assetProps.data; + + const assets = data?.assets || []; + + const renderAsset = (record) => { + switch (record.assetType) { + case 'dashboard': + return ( + window.location.assign(`dashboards#/view/${record.assetId}`)} + > + {_.truncate(record.description, { length: 100 })} + + ); + case 'index-pattern': + return ( + + window.location.assign( + `management/opensearch-dashboards/indexPatterns/patterns/${record.assetId}` + ) + } + > + {_.truncate(record.description, { length: 100 })} + + ); + case 'search': + return ( + window.location.assign(`discover#/view/${record.assetId}`)} + > + {_.truncate(record.description, { length: 100 })} + + ); + case 'visualization': + return ( + window.location.assign(`visualize#/edit/${record.assetId}`)} + > + {_.truncate(record.description, { length: 100 })} + + ); + default: + return ( + + {_.truncate(record.description, { length: 100 })} + + ); + } + }; + + const search = { + box: { + incremental: true, + }, + filters: [ + { + type: 'field_value_selection', + field: 'assetType', + name: 'Type', + multiSelect: false, + options: ASSET_FILTER_OPTIONS.map((i) => ({ + value: i, + name: i, + view: i, + })), + }, + ], + }; + + const tableColumns = [ + { + field: 'name', + name: 'Name', + sortable: true, + truncateText: true, + render: (value, record) => { + return renderAsset(record); + }, + }, + { + field: 'type', + name: 'Type', + sortable: true, + truncateText: true, + render: (value, record) => ( + + {_.truncate(record.assetType, { length: 100 })} + + ), + }, + ] as Array>; + + return ( + + + + + + ); + } + + return ( + + + + {AddedOverview({ data: stateData })} + + {AddedAssets({ data: stateData })} + + + {isModalVisible && modalLayout} + + ); +} diff --git a/public/components/integrations/components/added_integration_overview_page.tsx b/public/components/integrations/components/added_integration_overview_page.tsx new file mode 100644 index 000000000..89026239c --- /dev/null +++ b/public/components/integrations/components/added_integration_overview_page.tsx @@ -0,0 +1,64 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ +/* eslint-disable react-hooks/exhaustive-deps */ + +import { EuiPage, EuiPageBody } from '@elastic/eui'; +import _ from 'lodash'; +import React, { useEffect, useState } from 'react'; +import { IntegrationHeader } from './integration_header'; +import { AddedIntegrationsTable } from './added_integration_table'; +import { INTEGRATIONS_BASE } from '../../../../common/constants/shared'; +import { AddedIntegrationOverviewPageProps } from './integration_types'; +import { HttpStart } from '../../../../../../src/core/public'; + +export interface AddedIntegrationsTableProps { + loading: boolean; + data: AddedIntegrationsList; + http: HttpStart; +} + +export interface AddedIntegrationsList { + hits: AddedIntegrationType[]; +} + +export interface AddedIntegrationType { + name: string; + templateName: string; + dataSource: any; + creationDate: string; + status: string; + assets: any[]; + addedBy: string; + id: string; +} + +export function AddedIntegrationOverviewPage(props: AddedIntegrationOverviewPageProps) { + const { chrome, http } = props; + + const [data, setData] = useState({ hits: [] }); + + useEffect(() => { + chrome.setBreadcrumbs([ + { + text: 'Integrations', + href: '#/', + }, + ]); + handleDataRequest(); + }, []); + + async function handleDataRequest() { + http.get(`${INTEGRATIONS_BASE}/store`).then((exists) => setData(exists.data)); + } + + return ( + + + {IntegrationHeader()} + {AddedIntegrationsTable({ data, loading: false, http })} + + + ); +} diff --git a/public/components/integrations/components/added_integration_table.tsx b/public/components/integrations/components/added_integration_table.tsx new file mode 100644 index 000000000..4f99e848b --- /dev/null +++ b/public/components/integrations/components/added_integration_table.tsx @@ -0,0 +1,179 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { + EuiFlexGroup, + EuiFlexItem, + EuiIcon, + EuiInMemoryTable, + EuiLink, + EuiOverlayMask, + EuiPageContent, + EuiSpacer, + EuiTableFieldDataColumnType, + EuiText, +} from '@elastic/eui'; +import _ from 'lodash'; +import React, { useState } from 'react'; +import { AddedIntegrationsTableProps } from './added_integration_overview_page'; +import { + ASSET_FILTER_OPTIONS, + INTEGRATION_TEMPLATE_OPTIONS, +} from '../../../../common/constants/integrations'; +import { DeleteModal } from '../../../../public/components/common/helpers/delete_modal'; +import { INTEGRATIONS_BASE } from '../../../../common/constants/shared'; +import { useToast } from '../../../../public/components/common/toast'; + +export function AddedIntegrationsTable(props: AddedIntegrationsTableProps) { + const integrations = props.data.hits; + + const { http } = props; + + const { setToast } = useToast(); + + const [isModalVisible, setIsModalVisible] = useState(false); + const [modalLayout, setModalLayout] = useState(); + + const tableColumns = [ + { + field: 'name', + name: 'Asset name', + sortable: true, + truncateText: true, + render: (value, record) => ( + + {_.truncate(record.name, { length: 100 })} + + ), + }, + { + field: 'source', + name: 'Source', + sortable: true, + truncateText: true, + render: (value, record) => ( + + {_.truncate(record.templateName, { length: 100 })} + + ), + }, + { + field: 'dateAdded', + name: 'Date Added', + sortable: true, + truncateText: true, + render: (value, record) => ( + + {_.truncate(record.creationDate, { length: 100 })} + + ), + }, + { + field: 'actions', + name: 'Actions', + sortable: true, + truncateText: true, + render: (value, record) => ( + { + getModal(record.id, record.templateName); + }} + /> + ), + }, + ] as Array>; + + async function deleteAddedIntegration(integrationInstance: string, name: string) { + http + .delete(`${INTEGRATIONS_BASE}/store/${integrationInstance}`) + .then(() => { + setToast(`${name} integration successfully deleted!`, 'success'); + }) + .catch((err) => { + setToast(`Error deleting ${name} or its assets`, 'danger'); + }) + .finally(() => { + window.location.hash = '#/installed'; + }); + } + + const getModal = (integrationInstanceId, name) => { + setModalLayout( + { + setIsModalVisible(false); + deleteAddedIntegration(integrationInstanceId, name); + }} + onCancel={() => { + setIsModalVisible(false); + }} + title={`Delete Assets`} + message={`Are you sure you want to delete the selected asset(s)?`} + /> + ); + setIsModalVisible(true); + }; + + const search = { + box: { + incremental: true, + }, + filters: [ + { + type: 'field_value_selection', + field: 'templateName', + name: 'Type', + multiSelect: false, + options: INTEGRATION_TEMPLATE_OPTIONS.map((i) => ({ + value: i, + name: i, + view: i, + })), + }, + ], + }; + + return ( + + {integrations && integrations.length > 0 ? ( + + ) : ( + <> + + + + + + + +

+ There are currently no added integrations. Add them{' '} + here to start using pre-canned assets! +

+
+ + + )} + {isModalVisible && modalLayout} +
+ ); +} diff --git a/public/components/integrations/components/available_integration_card_view.tsx b/public/components/integrations/components/available_integration_card_view.tsx new file mode 100644 index 000000000..ebcf6f1aa --- /dev/null +++ b/public/components/integrations/components/available_integration_card_view.tsx @@ -0,0 +1,122 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { + EuiPanel, + EuiCard, + EuiFlexGroup, + EuiFlexItem, + EuiSpacer, + EuiSearchBar, + EuiButton, + EuiFieldSearch, + EuiSwitch, + EuiButtonGroup, + EuiBadgeGroup, + EuiBadge, + EuiToolTip, +} from '@elastic/eui'; +import _ from 'lodash'; +import React, { useRef, useState } from 'react'; +import { + AvailableIntegrationsCardViewProps, + AvailableIntegrationType, +} from './available_integration_overview_page'; +import { INTEGRATIONS_BASE } from '../../../../common/constants/shared'; +import { badges } from './integration_category_badge_group'; + +export function AvailableIntegrationsCardView(props: AvailableIntegrationsCardViewProps) { + const [toggleIconIdSelected, setToggleIconIdSelected] = useState('1'); + + const getImage = (url?: string) => { + let optionalImg; + if (url) { + optionalImg = ( + + ); + } + return optionalImg; + }; + + const toggleButtonsIcons = [ + { + id: '0', + label: 'list', + iconType: 'list', + }, + { + id: '1', + label: 'grid', + iconType: 'grid', + }, + ]; + + const onChangeIcons = (optionId) => { + setToggleIconIdSelected(optionId); + if (optionId === '0') { + props.setCardView(false); + } else { + props.setCardView(true); + } + }; + + const renderRows = (integrations: AvailableIntegrationType[]) => { + if (!integrations || !integrations.length) return null; + return ( + <> + + {integrations.map((i, v) => { + return ( + + (window.location.hash = `#/available/${i.name}`)} + footer={badges(i.components)} + /> + + ); + })} + + + + ); + }; + + return ( + + + + { + props.setQuery(e.target.value); + }} + /> + + {props.renderCateogryFilters()} + + onChangeIcons(id)} + isIconOnly + /> + + + + {renderRows(props.data.hits.filter((x) => x.name.includes(props.query)))} + + ); +} diff --git a/public/components/integrations/components/available_integration_overview_page.tsx b/public/components/integrations/components/available_integration_overview_page.tsx new file mode 100644 index 000000000..1ec40154b --- /dev/null +++ b/public/components/integrations/components/available_integration_overview_page.tsx @@ -0,0 +1,210 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ +/* eslint-disable react-hooks/exhaustive-deps */ + +import { + EuiFieldSearch, + EuiFilterButton, + EuiFilterGroup, + EuiFilterSelectItem, + EuiPage, + EuiPageBody, + EuiPopover, + EuiPopoverTitle, +} from '@elastic/eui'; +import _ from 'lodash'; +import React, { useEffect, useState } from 'react'; +import { INTEGRATION_CATEOGRY_OPTIONS } from '../../../../common/constants/integrations'; +import { IntegrationHeader } from './integration_header'; +import { AvailableIntegrationsTable } from './available_integration_table'; +import { AvailableIntegrationsCardView } from './available_integration_card_view'; +import { INTEGRATIONS_BASE } from '../../../../common/constants/shared'; +import { AvailableIntegrationOverviewPageProps } from './integration_types'; +import { useToast } from '../../../../public/components/common/toast'; + +export interface AvailableIntegrationType { + name: string; + description: string; + assetUrl?: string | undefined; + version?: string | undefined; + displayName?: string; + integrationType: string; + statics: any; + components: any[]; + displayAssets: any[]; +} + +export interface AvailableIntegrationsTableProps { + loading: boolean; + data: AvailableIntegrationsList; + isCardView: boolean; + setCardView: (input: boolean) => void; + renderCateogryFilters: () => React.JSX.Element; +} + +export interface AvailableIntegrationsList { + hits: AvailableIntegrationType[]; +} + +export interface AvailableIntegrationsCardViewProps { + data: AvailableIntegrationsList; + isCardView: boolean; + setCardView: (input: boolean) => void; + query: string; + setQuery: (input: string) => void; + renderCateogryFilters: () => React.JSX.Element; +} + +export function AvailableIntegrationOverviewPage(props: AvailableIntegrationOverviewPageProps) { + const { chrome, http } = props; + + const [query, setQuery] = useState(''); + const [isCardView, setCardView] = useState(true); + const { setToast } = useToast(); + const [data, setData] = useState({ hits: [] }); + + const [isPopoverOpen, setIsPopoverOpen] = useState(false); + + const onButtonClick = () => { + setIsPopoverOpen(!isPopoverOpen); + }; + + const closePopover = () => { + setIsPopoverOpen(false); + }; + + const [items, setItems] = useState( + INTEGRATION_CATEOGRY_OPTIONS.map((x) => { + return { name: x }; + }) + ); + + function updateItem(index) { + if (!items[index]) { + return; + } + + const newItems = [...items]; + + switch (newItems[index].checked) { + case 'on': + newItems[index].checked = undefined; + break; + + default: + newItems[index].checked = 'on'; + } + + setItems(newItems); + } + + const helper = items.filter((item) => item.checked === 'on').map((x) => x.name); + + const button = ( + item.checked === 'on')} + numActiveFilters={items.filter((item) => item.checked === 'on').length} + > + Categories + + ); + + useEffect(() => { + chrome.setBreadcrumbs([ + { + text: 'Integrations', + href: '#/', + }, + ]); + handleDataRequest(); + }, []); + + async function handleDataRequest() { + http.get(`${INTEGRATIONS_BASE}/repository`).then((exists) => setData(exists.data)); + } + + async function addIntegrationRequest(name: string) { + http + .post(`${INTEGRATIONS_BASE}/store`) + .then((res) => { + setToast( + `${name} integration successfully added!`, + 'success', + `View the added assets from ${name} in the Added Integrations list` + ); + }) + .catch((err) => + setToast( + 'Failed to load integration. Check Added Integrations table for more details', + 'danger' + ) + ); + } + + const renderCateogryFilters = () => { + return ( + + + + + +
+ {items.map((item, index) => ( + updateItem(index)} + > + {item.name} + + ))} +
+
+
+ ); + }; + + return ( + + + {IntegrationHeader()} + {isCardView + ? AvailableIntegrationsCardView({ + data: { + hits: data.hits.filter((hit) => + helper.every((compon) => hit.components.map((x) => x.name).includes(compon)) + ), + }, + isCardView, + setCardView, + query, + setQuery, + renderCateogryFilters, + }) + : AvailableIntegrationsTable({ + loading: false, + data: { + hits: data.hits.filter((hit) => + helper.every((compon) => hit.components.map((x) => x.name).includes(compon)) + ), + }, + isCardView, + setCardView, + renderCateogryFilters, + })} + + + ); +} diff --git a/public/components/integrations/components/available_integration_table.tsx b/public/components/integrations/components/available_integration_table.tsx new file mode 100644 index 000000000..1d336b8bb --- /dev/null +++ b/public/components/integrations/components/available_integration_table.tsx @@ -0,0 +1,144 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { + EuiButtonGroup, + EuiFieldSearch, + EuiFilterButton, + EuiFilterGroup, + EuiFilterSelectItem, + EuiFlexGroup, + EuiFlexItem, + EuiIcon, + EuiInMemoryTable, + EuiLink, + EuiPageContent, + EuiPopover, + EuiPopoverTitle, + EuiSpacer, + EuiTableFieldDataColumnType, + EuiText, +} from '@elastic/eui'; +import _ from 'lodash'; +import React, { useState } from 'react'; +import { AvailableIntegrationsTableProps } from './available_integration_overview_page'; +import { badges } from './integration_category_badge_group'; + +export function AvailableIntegrationsTable(props: AvailableIntegrationsTableProps) { + const integrations = props.data.hits; + + const toggleButtonsIcons = [ + { + id: '0', + label: 'list', + iconType: 'list', + }, + { + id: '1', + label: 'grid', + iconType: 'grid', + }, + ]; + + const [toggleIconIdSelected, setToggleIconIdSelected] = useState('0'); + + const onChangeIcons = (optionId) => { + setToggleIconIdSelected(optionId); + if (optionId === '0') { + props.setCardView(false); + } else { + props.setCardView(true); + } + }; + + const tableColumns = [ + { + field: 'name', + name: 'Name', + sortable: true, + truncateText: true, + render: (value, record) => ( + + {_.truncate(record.displayName || record.name, { length: 100 })} + + ), + }, + { + field: 'description', + name: 'Description', + sortable: true, + truncateText: true, + render: (value, record) => ( + + {_.truncate(record.description, { length: 100 })} + + ), + }, + { + field: 'categories', + name: 'Categories', + sortable: true, + truncateText: true, + render: (value, record) => badges(record.components), + }, + ] as Array>; + + const renderToggle = () => { + return ( + + {props.renderCateogryFilters()} + + onChangeIcons(id)} + isIconOnly + /> + + + ); + }; + + const search = { + toolsRight: renderToggle(), + box: { + incremental: true, + }, + }; + + return ( + + + {integrations.length > 0 ? ( + + ) : ( + <> + + +

No Integrations Available

+
+ + + )} +
+ ); +} diff --git a/public/components/integrations/components/integration.tsx b/public/components/integrations/components/integration.tsx new file mode 100644 index 000000000..ad1a1dfe6 --- /dev/null +++ b/public/components/integrations/components/integration.tsx @@ -0,0 +1,325 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ +/* eslint-disable react-hooks/exhaustive-deps */ + +import { + EuiGlobalToastList, + EuiLoadingSpinner, + EuiOverlayMask, + EuiPage, + EuiPageBody, + EuiSpacer, + EuiTab, + EuiTabs, +} from '@elastic/eui'; +import React, { ReactChild, useEffect, useState } from 'react'; +import { last } from 'lodash'; +import { IntegrationOverview } from './integration_overview_panel'; +import { IntegrationDetails } from './integration_details_panel'; +import { IntegrationFields } from './integration_fields_panel'; +import { IntegrationAssets } from './integration_assets_panel'; +import { AvailableIntegrationProps } from './integration_types'; +import { INTEGRATIONS_BASE } from '../../../../common/constants/shared'; +import { IntegrationScreenshots } from './integration_screenshots_panel'; +import { AddIntegrationFlyout } from './add_integration_flyout'; +import { useToast } from '../../../../public/components/common/toast'; + +export function Integration(props: AvailableIntegrationProps) { + const { http, integrationTemplateId, chrome } = props; + + const [isFlyoutVisible, setIsFlyoutVisible] = useState(false); + const { setToast } = useToast(); + const [integration, setIntegration] = useState({}); + + const [integrationMapping, setMapping] = useState(null); + const [integrationAssets, setAssets] = useState([]); + const [loading, setLoading] = useState(false); + + const createMappings = async ( + componentName: string, + payload: { + template: { mappings: { _meta: { version: string } } }; + composed_of: string[]; + index_patterns: string[]; + }, + dataSourceName: string + ): Promise<{ [key: string]: { properties: any } } | null> => { + const version = payload.template.mappings._meta.version; + if (componentName !== integration.type) { + return fetch( + `/api/console/proxy?path=_component_template/ss4o_${componentName}_${version}_template&method=POST`, + { + method: 'POST', + headers: [ + ['osd-xsrf', 'true'], + ['Content-Type', 'application/json'], + ], + body: JSON.stringify(payload), + } + ) + .then((response) => response.json()) + .catch((err: any) => { + console.error(err); + return err; + }); + } else { + payload.index_patterns = [dataSourceName]; + return fetch( + `/api/console/proxy?path=_index_template/${componentName}_${version}&method=POST`, + { + method: 'POST', + headers: [ + ['osd-xsrf', 'true'], + ['Content-Type', 'application/json'], + ], + body: JSON.stringify(payload), + } + ) + .then((response) => response.json()) + .catch((err: any) => { + console.error(err); + return err; + }); + } + }; + + const createDataSourceMappings = async (targetDataSource: string): Promise => { + const data = await fetch( + `${INTEGRATIONS_BASE}/repository/${integrationTemplateId}/schema` + ).then((response) => { + return response.json(); + }); + let error = null; + const mappings = data.data.mappings; + mappings[integration.type].composed_of = mappings[integration.type].composed_of.map( + (templateName: string) => { + const version = mappings[templateName].template.mappings._meta.version; + return `ss4o_${templateName}_${version}_template`; + } + ); + Object.entries(mappings).forEach(async ([key, mapping]) => { + if (key === integration.type) { + return; + } + await createMappings(key, mapping as any, targetDataSource); + }); + await createMappings(integration.type, mappings[integration.type], targetDataSource); + + for (const [key, mapping] of Object.entries(data.data.mappings)) { + const result = await createMappings(key, mapping as any, targetDataSource); + + if (result && result.error) { + error = (result.error as any).reason; + } + } + + if (error !== null) { + setToast('Failure creating index template', 'danger', error); + } else { + setToast(`Successfully created index template`); + } + }; + + useEffect(() => { + chrome.setBreadcrumbs([ + { + text: 'Integrations', + href: '#/', + }, + { + text: integrationTemplateId, + href: `#/available/${integrationTemplateId}`, + }, + ]); + handleDataRequest(); + }, [integrationTemplateId]); + + async function handleDataRequest() { + // TODO fill in ID request here + http.get(`${INTEGRATIONS_BASE}/repository/${integrationTemplateId}`).then((exists) => { + setIntegration(exists.data); + }); + } + + useEffect(() => { + if (Object.keys(integration).length === 0) { + return; + } + fetch(`${INTEGRATIONS_BASE}/repository/${integration.name}/schema`) + .then((response) => response.json()) + .then((parsedResponse) => { + if (parsedResponse.statusCode && parsedResponse.statusCode !== 200) { + throw new Error('Request for schema failed: ' + parsedResponse.message); + } + return parsedResponse.data.mappings[integration.type]; + }) + .then((mapping) => setMapping(mapping)) + .catch((err: any) => { + console.error(err.message); + }); + }, [integration]); + + useEffect(() => { + if (Object.keys(integration).length === 0) { + return; + } + fetch(`${INTEGRATIONS_BASE}/repository/${integration.name}/assets`) + .then((response) => response.json()) + .then((parsedResponse) => { + if (parsedResponse.statusCode && parsedResponse.statusCode !== 200) { + throw new Error('Request for assets failed: ' + parsedResponse.message); + } + return parsedResponse.data; + }) + .then((assets) => setAssets(assets)) + .catch((err: any) => { + console.error(err.message); + }); + }, [integration]); + + async function addIntegrationRequest( + addSample: boolean, + templateName: string, + name?: string, + dataSource?: string + ) { + setLoading(true); + if (addSample) { + createDataSourceMappings(`ss4o_${integration.type}-${integrationTemplateId}-*-sample`); + name = `${integrationTemplateId}-sample`; + dataSource = `ss4o_${integration.type}-${integrationTemplateId}-sample-sample`; + } + + const response: boolean = await http + .post(`${INTEGRATIONS_BASE}/store/${templateName}`, { + body: JSON.stringify({ name, dataSource }), + }) + .then((_res) => { + setToast(`${name} integration successfully added!`, 'success'); + window.location.hash = `#/installed/${_res.data?.id}`; + return true; + }) + .catch((_err) => { + setToast( + 'Failed to load integration. Check Added Integrations table for more details', + 'danger' + ); + return false; + }); + if (!addSample || !response) { + setLoading(false); + return; + } + const data: { sampleData: unknown[] } = await http + .get(`${INTEGRATIONS_BASE}/repository/${templateName}/data`) + .then((res) => res.data) + .catch((err) => { + console.error(err); + setToast('The sample data could not be retrieved', 'danger'); + return { sampleData: [] }; + }); + const requestBody = + data.sampleData + .map((record) => `{"create": { "_index": "${dataSource}" } }\n${JSON.stringify(record)}`) + .join('\n') + '\n'; + fetch(`/api/console/proxy?path=${dataSource}/_bulk&method=POST`, { + method: 'POST', + body: requestBody, + headers: [ + ['osd-xsrf', 'true'], + ['Content-Type', 'application/json; charset=utf-8'], + ], + }) + .catch((err) => { + console.error(err); + setToast('Failed to load sample data', 'danger'); + }) + .finally(() => { + setLoading(false); + }); + } + + const tabs = [ + { + id: 'assets', + name: 'Asset List', + disabled: false, + }, + { + id: 'fields', + name: 'Integration Fields', + disabled: false, + }, + ]; + + const [selectedTabId, setSelectedTabId] = useState('assets'); + + const onSelectedTabChanged = (id) => { + setSelectedTabId(id); + }; + + const renderTabs = () => { + return tabs.map((tab, index) => ( + onSelectedTabChanged(tab.id)} + isSelected={tab.id === selectedTabId} + disabled={tab.disabled} + key={index} + data-test-subj={tab.id} + > + {tab.name} + + )); + }; + + if (Object.keys(integration).length === 0) { + return ( + + + + ); + } + return ( + + + + {IntegrationOverview({ + integration, + showFlyout: () => { + setIsFlyoutVisible(true); + }, + setUpSample: () => { + addIntegrationRequest(true, integrationTemplateId); + }, + loading, + })} + + {IntegrationDetails({ integration })} + + {IntegrationScreenshots({ integration })} + + {renderTabs()} + + {selectedTabId === 'assets' + ? IntegrationAssets({ integration, integrationAssets }) + : IntegrationFields({ integration, integrationMapping })} + + + {isFlyoutVisible && ( + { + setIsFlyoutVisible(false); + }} + onCreate={(name, dataSource) => { + addIntegrationRequest(false, integrationTemplateId, name, dataSource); + }} + integrationName={integrationTemplateId} + integrationType={integration.type} + http={http} + /> + )} + + ); +} diff --git a/public/components/integrations/components/integration_assets_panel.tsx b/public/components/integrations/components/integration_assets_panel.tsx new file mode 100644 index 000000000..3b74d498a --- /dev/null +++ b/public/components/integrations/components/integration_assets_panel.tsx @@ -0,0 +1,86 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { + EuiInMemoryTable, + EuiPanel, + EuiSpacer, + EuiTableFieldDataColumnType, + EuiText, +} from '@elastic/eui'; +import React from 'react'; +import _ from 'lodash'; +import { PanelTitle } from '../../trace_analytics/components/common/helper_functions'; +import { ASSET_FILTER_OPTIONS } from '../../../../common/constants/integrations'; + +export function IntegrationAssets(props: any) { + const [config, assets] = [props.integration, props.integrationAssets]; + + const search = { + box: { + incremental: true, + }, + filters: [ + { + type: 'field_value_selection', + field: 'type', + name: 'Type', + multiSelect: false, + options: ASSET_FILTER_OPTIONS.map((i) => ({ + value: i, + name: i, + view: i, + })), + }, + ], + }; + + const tableColumns = [ + { + field: 'name', + name: 'Name', + sortable: true, + truncateText: true, + render: (value, record) => ( + + {_.truncate(record.attributes.title ? record.attributes.title : '(Unnamed)', { + length: 100, + })} + + ), + }, + { + field: 'type', + name: 'Type', + sortable: true, + truncateText: true, + render: (_value, record) => ( + + {_.truncate(record.type, { length: 100 })} + + ), + }, + ] as Array>; + + return ( + + + + x.type !== undefined) : [] + } + columns={tableColumns} + pagination={{ + initialPageSize: 10, + pageSizeOptions: [5, 10, 15], + }} + search={search} + /> + + ); +} diff --git a/public/components/integrations/components/integration_category_badge_group.tsx b/public/components/integrations/components/integration_category_badge_group.tsx new file mode 100644 index 000000000..8635c6270 --- /dev/null +++ b/public/components/integrations/components/integration_category_badge_group.tsx @@ -0,0 +1,34 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { EuiBadge, EuiBadgeGroup, EuiToolTip } from '@elastic/eui'; +import React from 'react'; + +export const badges = (categories) => { + if (categories.length <= 3) { + return ( + + {categories.map((cateogry) => { + return {cateogry.name}; + })} + + ); + } else { + const tooltip = `+${categories.length - 2} more`; + return ( + + {categories[0].name} + {categories[1].name} + + (index ? ', ' : '') + item.name)} + > +

{tooltip}

+
+
+
+ ); + } +}; diff --git a/public/components/integrations/components/integration_details_panel.tsx b/public/components/integrations/components/integration_details_panel.tsx new file mode 100644 index 000000000..64c7f4533 --- /dev/null +++ b/public/components/integrations/components/integration_details_panel.tsx @@ -0,0 +1,24 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { EuiPanel, EuiSpacer, EuiText } from '@elastic/eui'; +import React from 'react'; +import { PanelTitle } from '../../trace_analytics/components/common/helper_functions'; + +export function IntegrationDetails(props: any) { + const config = props.integration; + let screenshots; + if (config.statics.gallery) { + screenshots = config.statics.gallery; + } + + return ( + + + + {config.description} + + ); +} diff --git a/public/components/integrations/components/integration_fields_panel.tsx b/public/components/integrations/components/integration_fields_panel.tsx new file mode 100644 index 000000000..36fe8b4e1 --- /dev/null +++ b/public/components/integrations/components/integration_fields_panel.tsx @@ -0,0 +1,111 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { + EuiInMemoryTable, + EuiPanel, + EuiSpacer, + EuiTableFieldDataColumnType, + EuiText, +} from '@elastic/eui'; +import React from 'react'; +import _ from 'lodash'; +import { PanelTitle } from '../../trace_analytics/components/common/helper_functions'; + +export function IntegrationFields(props: any) { + const config = props.integration; + const mapping = props.integrationMapping; + + const search = { + box: { + incremental: true, + }, + }; + + const tableColumns = [ + { + field: 'name', + name: 'Name', + sortable: true, + truncateText: true, + render: (value, record) => ( + + {_.truncate(record.name, { length: 100 })} + + ), + }, + { + field: 'type', + name: 'Type', + sortable: true, + truncateText: true, + render: (value, record) => ( + + {_.truncate(record.type, { length: 100 })} + + ), + }, + { + field: 'category', + name: 'Category', + sortable: true, + truncateText: true, + render: (value, record) => ( + + {_.truncate(record.category, { length: 100 })} + + ), + }, + ] as Array>; + + const traverseTypes = ( + properties: any, + category?: string, + prefix?: string + ): Array<{ + name: string; + type: string; + category: string; + }> => { + const result: any[] = []; + for (const p of Object.keys(properties)) { + if (properties[p].type) { + result.push({ + name: prefix ? prefix + '.' + p : p, + type: properties[p].type, + category: category ? category : 'None', + }); + } else if (properties[p].properties) { + result.push({ + name: prefix ? prefix + '.' + p : p, + type: 'nested', + category: category ? category : 'None', + }); + result.push( + ...traverseTypes(properties[p].properties, (prefix = prefix ? prefix + '.' + p : p)) + ); + } + } + return result; + }; + + return ( + + + + + + ); +} diff --git a/public/components/integrations/components/integration_header.tsx b/public/components/integrations/components/integration_header.tsx new file mode 100644 index 000000000..2b8ad7f17 --- /dev/null +++ b/public/components/integrations/components/integration_header.tsx @@ -0,0 +1,77 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { + EuiLink, + EuiPageHeader, + EuiPageHeaderSection, + EuiSpacer, + EuiTab, + EuiTabs, + EuiText, + EuiTitle, +} from '@elastic/eui'; +import _ from 'lodash'; +import React, { useEffect, useState } from 'react'; +import { OPENSEARCH_DOCUMENTATION_URL } from '../../../../common/constants/integrations'; + +export function IntegrationHeader() { + const tabs = [ + { + id: 'installed', + name: 'Installed', + disabled: false, + }, + { + id: 'available', + name: 'Available', + disabled: false, + }, + ]; + + const [selectedTabId, setSelectedTabId] = useState( + window.location.hash.substring(2) ? window.location.hash.substring(2) : 'installed' + ); + + const onSelectedTabChanged = (id) => { + setSelectedTabId(id); + window.location.hash = id; + }; + + const renderTabs = () => { + return tabs.map((tab, index) => ( + onSelectedTabChanged(tab.id)} + isSelected={tab.id === selectedTabId} + disabled={tab.disabled} + key={index} + > + {tab.name} + + )); + }; + return ( +
+ + + +

Integrations

+
+
+
+ + + View or add available integrations to use pre-canned assets immediately in your OpenSearch + setup.{' '} + + Learn more + + + + {renderTabs()} + +
+ ); +} diff --git a/public/components/integrations/components/integration_overview_panel.tsx b/public/components/integrations/components/integration_overview_panel.tsx new file mode 100644 index 000000000..ce4168c85 --- /dev/null +++ b/public/components/integrations/components/integration_overview_panel.tsx @@ -0,0 +1,113 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { + EuiButton, + EuiFlexGroup, + EuiLink, + EuiPageHeader, + EuiPageHeaderSection, + EuiSpacer, + EuiTitle, + EuiFlexItem, + EuiText, + EuiPageContentHeaderSection, + EuiBadge, + EuiBadgeGroup, +} from '@elastic/eui'; +import React from 'react'; + +const pageStyles: CSS.Properties = { + width: '100%', + justifyContent: 'spaceBetween', +}; + +export function IntegrationOverview(props: any) { + const config = props.integration; + return ( + + + + + + + +

{config.displayName || config.name}

+
+
+ + { + props.showFlyout(config.name); + }} + fill + disabled={props.loading} + data-test-subj="add-integration-button" + data-click-metric-element="integrations.set_up" + > + Set Up + + + + { + props.setUpSample(); + }} + fill + disabled={props.loading} + data-test-subj="try-it-button" + data-click-metric-element="integrations.create_from_try_it" + > + Try It + + +
+
+ + + + +

Version

+
+ + {config.version} +
+ + +

Category

+
+ + + {config.components.map((cateogry) => { + return {cateogry.name}; + })} + +
+ + +

Contributer

+
+ + + {config.author} + +
+ + +

License

+
+ + {config.license} +
+
+
+
+ ); +} diff --git a/public/components/integrations/components/integration_screenshots_panel.tsx b/public/components/integrations/components/integration_screenshots_panel.tsx new file mode 100644 index 000000000..4c993a895 --- /dev/null +++ b/public/components/integrations/components/integration_screenshots_panel.tsx @@ -0,0 +1,37 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { EuiFlexGroup, EuiPanel, EuiFlexItem, EuiImage } from '@elastic/eui'; +import React from 'react'; +import { PanelTitle } from '../../trace_analytics/components/common/helper_functions'; +import { INTEGRATIONS_BASE } from '../../../../common/constants/shared'; + +export function IntegrationScreenshots(props: any) { + const config = props.integration; + let screenshots; + if (config.statics.gallery) { + screenshots = config.statics.gallery; + } + + return ( + + + + {screenshots?.map((screenshot: { path: string; annotation?: string }) => { + return ( + + + + ); + })} + + + ); +} diff --git a/public/components/integrations/components/integration_types.ts b/public/components/integrations/components/integration_types.ts new file mode 100644 index 000000000..441678f38 --- /dev/null +++ b/public/components/integrations/components/integration_types.ts @@ -0,0 +1,33 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { ChromeBreadcrumb, ChromeStart, HttpStart } from '../../../../../../src/core/public'; + +export interface AvailableIntegrationOverviewPageProps { + http: HttpStart; + chrome: ChromeStart; +} + +export interface AddedIntegrationOverviewPageProps { + http: HttpStart; + chrome: ChromeStart; +} + +export interface AvailableIntegrationProps { + http: HttpStart; + chrome: ChromeStart; +} + +export interface AddedIntegrationProps { + http: HttpStart; + chrome: ChromeStart; + integrationInstanceId: string; +} + +export interface AvailableIntegrationProps { + http: HttpStart; + chrome: ChromeStart; + integrationTemplateId: string; +} diff --git a/public/components/integrations/home.tsx b/public/components/integrations/home.tsx new file mode 100644 index 000000000..3fa85b98d --- /dev/null +++ b/public/components/integrations/home.tsx @@ -0,0 +1,69 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import React, { useState } from 'react'; +import { HashRouter, Route, RouteComponentProps, Switch } from 'react-router-dom'; +import { EuiGlobalToastList } from '@elastic/eui'; +import { Toast } from '@elastic/eui/src/components/toast/global_toast_list'; +import { Integration } from './components/integration'; +import { TraceAnalyticsCoreDeps } from '../trace_analytics/home'; +import { ChromeBreadcrumb } from '../../../../../src/core/public'; +import { AvailableIntegrationOverviewPage } from './components/available_integration_overview_page'; +import { AddedIntegrationOverviewPage } from './components/added_integration_overview_page'; +import { AddedIntegration } from './components/added_integration'; + +export type AppAnalyticsCoreDeps = TraceAnalyticsCoreDeps; + +interface HomeProps extends RouteComponentProps, AppAnalyticsCoreDeps { + parentBreadcrumbs: ChromeBreadcrumb[]; +} + +export const Home = (props: HomeProps) => { + const { http, chrome } = props; + + const commonProps = { + http, + chrome, + }; + + return ( +
+ + + } + /> + } + /> + ( + + )} + /> + ( + + )} + /> + + +
+ ); +}; diff --git a/public/plugin.ts b/public/plugin.ts index 0a94c6273..021a9f56a 100644 --- a/public/plugin.ts +++ b/public/plugin.ts @@ -11,6 +11,7 @@ import { AppMountParameters, CoreSetup, CoreStart, + DEFAULT_APP_CATEGORIES, Plugin, } from '../../../src/core/public'; import { CREATE_TAB_PARAM, CREATE_TAB_PARAM_KEY, TAB_CHART_ID } from '../common/constants/explorer'; @@ -34,6 +35,9 @@ import { observabilityLogsID, observabilityLogsTitle, observabilityLogsPluginOrder, + observabilityIntegrationsID, + observabilityIntegrationsTitle, + observabilityIntegrationsPluginOrder, observabilityPluginOrder, } from '../common/constants/shared'; import { QueryManager } from '../common/query_manager'; @@ -185,6 +189,14 @@ export class ObservabilityPlugin mount: appMountWithStartPage('dashboards'), }); + core.application.register({ + id: observabilityIntegrationsID, + title: observabilityIntegrationsTitle, + category: DEFAULT_APP_CATEGORIES.management, + order: observabilityIntegrationsPluginOrder, + mount: appMountWithStartPage('integrations'), + }); + const embeddableFactory = new ObservabilityEmbeddableFactoryDefinition(async () => ({ getAttributeService: (await core.getStartServices())[1].dashboard.getAttributeService, savedObjectsClient: (await core.getStartServices())[0].savedObjects.client, diff --git a/server/adaptors/integrations/__data__/repository/nginx/assets/nginx-1.0.0.ndjson b/server/adaptors/integrations/__data__/repository/nginx/assets/nginx-1.0.0.ndjson new file mode 100644 index 000000000..d2349bb76 --- /dev/null +++ b/server/adaptors/integrations/__data__/repository/nginx/assets/nginx-1.0.0.ndjson @@ -0,0 +1,10 @@ +{"attributes": {"fields": "[{\"count\":0,\"name\":\"@timestamp\",\"type\":\"date\",\"esTypes\":[\"date\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"_id\",\"type\":\"string\",\"esTypes\":[\"_id\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":false},{\"count\":0,\"name\":\"_index\",\"type\":\"string\",\"esTypes\":[\"_index\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":false},{\"count\":0,\"name\":\"_score\",\"type\":\"number\",\"scripted\":false,\"searchable\":false,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"_source\",\"type\":\"_source\",\"esTypes\":[\"_source\"],\"scripted\":false,\"searchable\":false,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"_type\",\"type\":\"string\",\"scripted\":false,\"searchable\":false,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"attributes.data_stream.dataset\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"attributes.data_stream.dataset.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"attributes.data_stream.dataset\"}}},{\"count\":0,\"name\":\"attributes.data_stream.namespace\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"attributes.data_stream.namespace.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"attributes.data_stream.namespace\"}}},{\"count\":0,\"name\":\"attributes.data_stream.type\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"attributes.data_stream.type.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"attributes.data_stream.type\"}}},{\"count\":0,\"name\":\"body\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"body.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"body\"}}},{\"count\":0,\"name\":\"communication.source.address\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"communication.source.address.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"communication.source.address\"}}},{\"count\":0,\"name\":\"communication.source.ip\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"communication.source.ip.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"communication.source.ip\"}}},{\"count\":0,\"name\":\"event.category\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"event.category.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"event.category\"}}},{\"count\":0,\"name\":\"event.domain\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"event.domain.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"event.domain\"}}},{\"count\":0,\"name\":\"event.kind\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"event.kind.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"event.kind\"}}},{\"count\":0,\"name\":\"event.name\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"event.name.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"event.name\"}}},{\"count\":0,\"name\":\"event.result\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"event.result.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"event.result\"}}},{\"count\":0,\"name\":\"event.type\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"event.type.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"event.type\"}}},{\"count\":0,\"name\":\"http.flavor\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"http.flavor.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"http.flavor\"}}},{\"count\":0,\"name\":\"http.request.method\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"http.request.method.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"http.request.method\"}}},{\"count\":0,\"name\":\"http.response.bytes\",\"type\":\"number\",\"esTypes\":[\"long\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"http.response.status_code\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"http.response.status_code.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"http.response.status_code\"}}},{\"count\":0,\"name\":\"http.url\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"http.url\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"http.url\"}}},{\"count\":0,\"name\":\"observerTime\",\"type\":\"date\",\"esTypes\":[\"date\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"span_id\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"span_id.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"span_id\"}}},{\"count\":0,\"name\":\"trace_id\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"trace_id.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"trace_id\"}}}]", "timeFieldName": "@timestamp", "title": "ss4o_logs-*-*"}, "id": "47892350-b495-11ed-af0a-cf5c93b5a3b6", "migrationVersion": {"index-pattern": "7.6.0"}, "references": [], "type": "index-pattern", "updated_at": "2023-02-26T00:34:36.592Z", "version": "WzYxLDdd"} +{"attributes": {"columns": ["http.request.method", "http.response.status_code"], "description": "", "hits": 0, "kibanaSavedObjectMeta": {"searchSourceJSON": "{\n \"highlightAll\": true,\n \"version\": true,\n \"query\": {\n \"query\": \"event.domain:nginx.access\",\n \"language\": \"kuery\"\n },\n \"filter\": [],\n \"indexRefName\": \"kibanaSavedObjectMeta.searchSourceJSON.index\"\n}"}, "sort": [], "title": "[NGINX Core Logs 1.0] Nginx Access Logs", "version": 1}, "id": "d80e05b2-518c-4c3d-9651-4c9d8632dce4", "migrationVersion": {"search": "7.9.3"}, "references": [{"id": "47892350-b495-11ed-af0a-cf5c93b5a3b6", "name": "kibanaSavedObjectMeta.searchSourceJSON.index", "type": "index-pattern"}], "type": "search", "updated_at": "2023-02-26T00:34:36.592Z", "version": "WzYyLDdd"} +{"attributes": {"description": "", "kibanaSavedObjectMeta": {"searchSourceJSON": "{\"query\":{\"query\":\"\",\"language\":\"lucene\"},\"filter\":[]}"}, "savedSearchRefName": "search_0", "title": "[NGINX Core Logs 1.0] Response codes over time", "uiStateJSON": "{}", "version": 1, "visState": "{\"title\":\"[NGINX Core Logs 1.0] Response codes over time\",\"type\":\"histogram\",\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"params\":{},\"schema\":\"metric\"},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"params\":{\"field\":\"@timestamp\",\"timeRange\":{\"from\":\"now-24h\",\"to\":\"now\"},\"useNormalizedOpenSearchInterval\":true,\"scaleMetricValues\":false,\"interval\":\"auto\",\"drop_partials\":false,\"min_doc_count\":1,\"extended_bounds\":{}},\"schema\":\"segment\"},{\"id\":\"3\",\"enabled\":true,\"type\":\"filters\",\"params\":{\"filters\":[{\"input\":{\"query\":\"http.response.status_code:[200 TO 299]\",\"language\":\"lucene\"},\"label\":\"200s\"},{\"input\":{\"query\":\"http.response.status_code:[300 TO 399]\",\"language\":\"lucene\"},\"label\":\"300s\"},{\"input\":{\"query\":\"http.response.status_code:[400 TO 499]\",\"language\":\"lucene\"},\"label\":\"400s\"},{\"input\":{\"query\":\"http.response.status_code:[500 TO 599]\",\"language\":\"lucene\"},\"label\":\"500s\"},{\"input\":{\"query\":\"http.response.status_code:0\",\"language\":\"lucene\"},\"label\":\"0\"}]},\"schema\":\"group\"}],\"params\":{\"type\":\"histogram\",\"grid\":{\"categoryLines\":false},\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"type\":\"category\",\"position\":\"bottom\",\"show\":true,\"style\":{},\"scale\":{\"type\":\"linear\"},\"labels\":{\"show\":true,\"filter\":true,\"truncate\":100},\"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,\"lineWidth\":2,\"showCircles\":true}],\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"times\":[],\"addTimeMarker\":false,\"labels\":{\"show\":false},\"thresholdLine\":{\"show\":false,\"value\":10,\"width\":1,\"style\":\"full\",\"color\":\"#E7664C\"}}}"}, "id": "3b49a65d-54d8-483d-a8f0-3d7c855e1ecf", "migrationVersion": {"visualization": "7.10.0"}, "references": [{"id": "d80e05b2-518c-4c3d-9651-4c9d8632dce4", "name": "search_0", "type": "search"}], "type": "visualization", "updated_at": "2023-02-26T00:34:36.592Z", "version": "WzYzLDdd"} +{"attributes": {"columns": ["_source"], "description": "", "hits": 0, "kibanaSavedObjectMeta": {"searchSourceJSON": "{\n \"highlightAll\": true,\n \"query\": {\n \"query\": \"http.response.status_code >= 300 and event.domain:nginx.access\",\n \"language\": \"kuery\"\n },\n \"version\": true,\n \"highlight\": {\n \"post_tags\": [\n \"@/kibana-highlighted-field@\"\n ],\n \"fields\": {\n \"*\": {}\n },\n \"pre_tags\": [\n \"@kibana-highlighted-field@\"\n ],\n \"require_field_match\": false,\n \"fragment_size\": 2147483647\n },\n \"filter\": [],\n \"indexRefName\": \"kibanaSavedObjectMeta.searchSourceJSON.index\"\n}"}, "sort": [["@timestamp", "desc"]], "title": "[NGINX Core Logs 1.0] Nginx Error Logs", "version": 1}, "id": "9f820fbe-ddde-43a2-9402-30bd295c97f6", "migrationVersion": {"search": "7.9.3"}, "references": [{"id": "47892350-b495-11ed-af0a-cf5c93b5a3b6", "name": "kibanaSavedObjectMeta.searchSourceJSON.index", "type": "index-pattern"}], "type": "search", "updated_at": "2023-02-26T00:34:36.592Z", "version": "WzY0LDdd"} +{"attributes": {"description": "", "kibanaSavedObjectMeta": {"searchSourceJSON": "{\"query\":{\"query\":\"\",\"language\":\"lucene\"},\"filter\":[]}"}, "savedSearchRefName": "search_0", "title": "[NGINX Core Logs 1.0] Errors over time", "uiStateJSON": "{}", "version": 1, "visState": "{\"title\":\"[NGINX Core Logs 1.0] Errors over time\",\"type\":\"histogram\",\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"params\":{},\"schema\":\"metric\"},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"params\":{\"field\":\"@timestamp\",\"timeRange\":{\"from\":\"now-24h\",\"to\":\"now\"},\"useNormalizedOpenSearchInterval\":true,\"scaleMetricValues\":false,\"interval\":\"auto\",\"drop_partials\":false,\"min_doc_count\":1,\"extended_bounds\":{}},\"schema\":\"segment\"}],\"params\":{\"type\":\"histogram\",\"grid\":{\"categoryLines\":false},\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"type\":\"category\",\"position\":\"bottom\",\"show\":true,\"style\":{},\"scale\":{\"type\":\"linear\"},\"labels\":{\"show\":true,\"filter\":true,\"truncate\":100},\"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,\"lineWidth\":2,\"showCircles\":true}],\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"times\":[],\"addTimeMarker\":false,\"labels\":{\"show\":false},\"thresholdLine\":{\"show\":false,\"value\":10,\"width\":1,\"style\":\"full\",\"color\":\"#E7664C\"}}}"}, "id": "865e577b-634b-4a65-b9d6-7e324c395d18", "migrationVersion": {"visualization": "7.10.0"}, "references": [{"id": "9f820fbe-ddde-43a2-9402-30bd295c97f6", "name": "search_0", "type": "search"}], "type": "visualization", "updated_at": "2023-02-26T00:34:36.592Z", "version": "WzY1LDdd"} +{"attributes": {"description": "", "kibanaSavedObjectMeta": {"searchSourceJSON": "{\"query\":{\"query\":\"\",\"language\":\"kuery\"},\"filter\":[]}"}, "savedSearchRefName": "search_0", "title": "Top Paths", "uiStateJSON": "{}", "version": 1, "visState": "{\"title\":\"Top Paths\",\"type\":\"table\",\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"params\":{},\"schema\":\"metric\"},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"params\":{\"field\":\"http.url\",\"orderBy\":\"1\",\"order\":\"desc\",\"size\":10,\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"customLabel\":\"Paths\"},\"schema\":\"bucket\"}],\"params\":{\"perPage\":10,\"showPartialRows\":false,\"showMetricsAtAllLevels\":false,\"showTotal\":false,\"totalFunc\":\"sum\",\"percentageCol\":\"\"}}"}, "id": "dc1803f0-b478-11ed-9063-ebe46f9ac203", "migrationVersion": {"visualization": "7.10.0"}, "references": [{"id": "d80e05b2-518c-4c3d-9651-4c9d8632dce4", "name": "search_0", "type": "search"}], "type": "visualization", "updated_at": "2023-02-26T00:34:36.592Z", "version": "WzY2LDdd"} +{"attributes": {"description": "", "kibanaSavedObjectMeta": {"searchSourceJSON": "{\"query\":{\"query\":\"\",\"language\":\"kuery\"},\"filter\":[]}"}, "savedSearchRefName": "search_0", "title": "Data Volume", "uiStateJSON": "{}", "version": 1, "visState": "{\"title\":\"Data Volume\",\"type\":\"area\",\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"sum\",\"params\":{\"field\":\"http.response.bytes\",\"customLabel\":\"Response Bytes\"},\"schema\":\"metric\"},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"params\":{\"field\":\"observerTime\",\"timeRange\":{\"from\":\"now-15m\",\"to\":\"now\"},\"useNormalizedOpenSearchInterval\":true,\"scaleMetricValues\":false,\"interval\":\"auto\",\"drop_partials\":false,\"min_doc_count\":1,\"extended_bounds\":{},\"customLabel\":\"\"},\"schema\":\"segment\"}],\"params\":{\"type\":\"area\",\"grid\":{\"categoryLines\":false},\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"type\":\"category\",\"position\":\"bottom\",\"show\":true,\"style\":{},\"scale\":{\"type\":\"linear\"},\"labels\":{\"show\":true,\"filter\":true,\"truncate\":100},\"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\":\"Response Bytes\"}}],\"seriesParams\":[{\"show\":true,\"type\":\"area\",\"mode\":\"stacked\",\"data\":{\"label\":\"Response Bytes\",\"id\":\"1\"},\"drawLinesBetweenPoints\":true,\"lineWidth\":2,\"showCircles\":true,\"interpolate\":\"linear\",\"valueAxis\":\"ValueAxis-1\"}],\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"times\":[],\"addTimeMarker\":false,\"thresholdLine\":{\"show\":false,\"value\":10,\"width\":1,\"style\":\"full\",\"color\":\"#E7664C\"},\"labels\":{}}}"}, "id": "99acc580-b47a-11ed-9063-ebe46f9ac203", "migrationVersion": {"visualization": "7.10.0"}, "references": [{"id": "d80e05b2-518c-4c3d-9651-4c9d8632dce4", "name": "search_0", "type": "search"}], "type": "visualization", "updated_at": "2023-02-26T00:34:36.592Z", "version": "WzY3LDdd"} +{"attributes": {"description": "requests per minute aggregation", "kibanaSavedObjectMeta": {"searchSourceJSON": "{\"query\":{\"query\":\"\",\"language\":\"kuery\"},\"filter\":[],\"indexRefName\":\"kibanaSavedObjectMeta.searchSourceJSON.index\"}"}, "title": "Req-per-min", "uiStateJSON": "{}", "version": 1, "visState": "{\"title\":\"Req-per-min\",\"type\":\"table\",\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"moving_avg\",\"params\":{\"metricAgg\":\"custom\",\"customMetric\":{\"id\":\"1-metric\",\"enabled\":true,\"type\":\"count\",\"params\":{}},\"window\":5,\"script\":\"MovingFunctions.unweightedAvg(values)\"},\"schema\":\"metric\"},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"params\":{\"field\":\"@timestamp\",\"timeRange\":{\"from\":\"2023-02-24T17:25:00.000Z\",\"to\":\"2023-02-24T17:30:00.000Z\"},\"useNormalizedOpenSearchInterval\":true,\"scaleMetricValues\":false,\"interval\":\"m\",\"drop_partials\":false,\"min_doc_count\":0,\"extended_bounds\":{},\"customLabel\":\"Req/Min\"},\"schema\":\"bucket\"}],\"params\":{\"perPage\":10,\"showPartialRows\":false,\"showMetricsAtAllLevels\":false,\"showTotal\":false,\"totalFunc\":\"sum\",\"percentageCol\":\"\"}}"}, "id": "01ea64d0-b62f-11ed-a677-43d7aa86763b", "migrationVersion": {"visualization": "7.10.0"}, "references": [{"id": "47892350-b495-11ed-af0a-cf5c93b5a3b6", "name": "kibanaSavedObjectMeta.searchSourceJSON.index", "type": "index-pattern"}], "type": "visualization", "updated_at": "2023-02-26T23:40:53.020Z", "version": "WzcyLDdd"} +{"attributes": {"description": "Nginx dashboard with basic Observability on access / error logs", "hits": 0, "kibanaSavedObjectMeta": {"searchSourceJSON": "{\"query\":{\"language\":\"kuery\",\"query\":\"\"},\"filter\":[]}"}, "optionsJSON": "{\"hidePanelTitles\":false,\"useMargins\":true}", "panelsJSON": "[{\"version\":\"2.5.0\",\"gridData\":{\"h\":8,\"i\":\"1f31e50b-06e3-41e6-972e-e4e5fe1a9872\",\"w\":48,\"x\":0,\"y\":0},\"panelIndex\":\"1f31e50b-06e3-41e6-972e-e4e5fe1a9872\",\"embeddableConfig\":{},\"panelRefName\":\"panel_0\"},{\"version\":\"2.5.0\",\"gridData\":{\"h\":9,\"i\":\"d91a8da4-b34b-470a-aca6-9c76b47cd6fb\",\"w\":24,\"x\":0,\"y\":8},\"panelIndex\":\"d91a8da4-b34b-470a-aca6-9c76b47cd6fb\",\"embeddableConfig\":{},\"panelRefName\":\"panel_1\"},{\"version\":\"2.5.0\",\"gridData\":{\"h\":15,\"i\":\"27149e5a-3a77-4f3c-800e-8a160c3765f4\",\"w\":24,\"x\":24,\"y\":8},\"panelIndex\":\"27149e5a-3a77-4f3c-800e-8a160c3765f4\",\"embeddableConfig\":{},\"panelRefName\":\"panel_2\"},{\"version\":\"2.5.0\",\"gridData\":{\"x\":0,\"y\":17,\"w\":24,\"h\":15,\"i\":\"4d8c2aa7-159c-4a1a-80ff-00a9299056ce\"},\"panelIndex\":\"4d8c2aa7-159c-4a1a-80ff-00a9299056ce\",\"embeddableConfig\":{},\"panelRefName\":\"panel_3\"},{\"version\":\"2.5.0\",\"gridData\":{\"x\":24,\"y\":23,\"w\":24,\"h\":15,\"i\":\"800b7f19-f50c-417f-8987-21b930531cbe\"},\"panelIndex\":\"800b7f19-f50c-417f-8987-21b930531cbe\",\"embeddableConfig\":{},\"panelRefName\":\"panel_4\"}]", "timeRestore": false, "title": "[NGINX Core Logs 1.0] Overview", "version": 1}, "id": "96847220-5261-44d0-89b4-65f3a659f13a", "migrationVersion": {"dashboard": "7.9.3"}, "references": [{"id": "3b49a65d-54d8-483d-a8f0-3d7c855e1ecf", "name": "panel_0", "type": "visualization"}, {"id": "865e577b-634b-4a65-b9d6-7e324c395d18", "name": "panel_1", "type": "visualization"}, {"id": "dc1803f0-b478-11ed-9063-ebe46f9ac203", "name": "panel_2", "type": "visualization"}, {"id": "99acc580-b47a-11ed-9063-ebe46f9ac203", "name": "panel_3", "type": "visualization"}, {"id": "01ea64d0-b62f-11ed-a677-43d7aa86763b", "name": "panel_4", "type": "visualization"}], "type": "dashboard", "updated_at": "2023-02-26T23:44:09.855Z", "version": "WzczLDdd"} +{"exportedCount": 9, "missingRefCount": 0, "missingReferences": []} \ No newline at end of file diff --git a/server/adaptors/integrations/__data__/repository/nginx/assets/nginx-1.0.1.ndjson b/server/adaptors/integrations/__data__/repository/nginx/assets/nginx-1.0.1.ndjson new file mode 100644 index 000000000..7a0bee1f0 --- /dev/null +++ b/server/adaptors/integrations/__data__/repository/nginx/assets/nginx-1.0.1.ndjson @@ -0,0 +1,9 @@ +{"attributes":{"fields":"[{\"count\":0,\"name\":\"@message\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"@timestamp\",\"type\":\"date\",\"esTypes\":[\"date\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"_id\",\"type\":\"string\",\"esTypes\":[\"_id\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":false},{\"count\":0,\"name\":\"_index\",\"type\":\"string\",\"esTypes\":[\"_index\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":false},{\"count\":0,\"name\":\"_score\",\"type\":\"number\",\"scripted\":false,\"searchable\":false,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"_source\",\"type\":\"_source\",\"esTypes\":[\"_source\"],\"scripted\":false,\"searchable\":false,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"_type\",\"type\":\"string\",\"scripted\":false,\"searchable\":false,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"attributes.data_stream.dataset\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"attributes.data_stream.namespace\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"attributes.data_stream.type\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"body\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"communication.destination.address\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"communication.destination.address.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"communication.destination.address\"}}},{\"count\":0,\"name\":\"communication.destination.bytes\",\"type\":\"number\",\"esTypes\":[\"long\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"communication.destination.domain\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"communication.destination.domain.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"communication.destination.domain\"}}},{\"count\":0,\"name\":\"communication.destination.geo.city_name\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"communication.destination.geo.country_iso_code\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"communication.destination.geo.country_name\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"communication.destination.geo.location\",\"type\":\"geo_point\",\"esTypes\":[\"geo_point\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"communication.destination.ip\",\"type\":\"ip\",\"esTypes\":[\"ip\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"communication.destination.mac\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"communication.destination.packets\",\"type\":\"number\",\"esTypes\":[\"long\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"communication.destination.port\",\"type\":\"number\",\"esTypes\":[\"long\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"communication.sock.family\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"communication.source.address\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"communication.source.address.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"communication.source.address\"}}},{\"count\":0,\"name\":\"communication.source.bytes\",\"type\":\"number\",\"esTypes\":[\"long\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"communication.source.domain\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"communication.source.domain.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"communication.source.domain\"}}},{\"count\":0,\"name\":\"communication.source.ip\",\"type\":\"ip\",\"esTypes\":[\"ip\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"communication.source.mac\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"communication.source.packets\",\"type\":\"number\",\"esTypes\":[\"long\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"communication.source.port\",\"type\":\"number\",\"esTypes\":[\"long\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"event.category\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"event.domain\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"event.exception.message\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"event.exception.stacktrace\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"event.exception.type\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"event.kind\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"event.name\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"event.result\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"event.source\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"event.type\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"http.client.ip\",\"type\":\"ip\",\"esTypes\":[\"ip\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"http.flavor\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"http.request.body.content\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"http.request.bytes\",\"type\":\"number\",\"esTypes\":[\"long\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"http.request.id\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"http.request.id.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"http.request.id\"}}},{\"count\":0,\"name\":\"http.request.method\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"http.request.mime_type\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"http.request.referrer\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"http.resent_count\",\"type\":\"number\",\"esTypes\":[\"integer\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"http.response.body.content\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"http.response.bytes\",\"type\":\"number\",\"esTypes\":[\"long\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"http.response.id\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"http.response.id.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"http.response.id\"}}},{\"count\":0,\"name\":\"http.response.status_code\",\"type\":\"number\",\"esTypes\":[\"integer\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"http.route\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"http.schema\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"http.target\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"http.url\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"http.user_agent\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"instrumentationScope.dropped_attributes_count\",\"type\":\"number\",\"esTypes\":[\"integer\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"instrumentationScope.name\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"instrumentationScope.name.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"instrumentationScope.name\"}}},{\"count\":0,\"name\":\"instrumentationScope.schemaUrl\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"instrumentationScope.schemaUrl.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"instrumentationScope.schemaUrl\"}}},{\"count\":0,\"name\":\"instrumentationScope.version\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"instrumentationScope.version.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"instrumentationScope.version\"}}},{\"count\":0,\"name\":\"observedTimestamp\",\"type\":\"date\",\"esTypes\":[\"date\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"observerTime\",\"type\":\"date\",\"esTypes\":[\"date\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"schemaUrl\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"schemaUrl.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"schemaUrl\"}}},{\"count\":0,\"name\":\"severity.number\",\"type\":\"number\",\"esTypes\":[\"long\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"severity.text\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"severity.text.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"severity.text\"}}},{\"count\":0,\"name\":\"spanId\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"span_id\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"span_id.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"span_id\"}}},{\"count\":0,\"name\":\"traceId\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"count\":0,\"name\":\"trace_id\",\"type\":\"string\",\"esTypes\":[\"text\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":false,\"readFromDocValues\":false},{\"count\":0,\"name\":\"trace_id.keyword\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true,\"subType\":{\"multi\":{\"parent\":\"trace_id\"}}}]","timeFieldName":"@timestamp","title":"ss4o_logs-nginx-prod"},"id":"d6af4161-6be5-48d0-9897-d1ffba8ab9b6","migrationVersion":{"index-pattern":"7.6.0"},"references":[],"type":"index-pattern","updated_at":"2023-06-30T23:59:23.697Z","version":"WzczMCwzXQ=="} +{"attributes":{"columns":["http.request.method","http.response.status_code"],"description":"","hits":0,"kibanaSavedObjectMeta":{"searchSourceJSON":"{\"highlightAll\":true,\"version\":true,\"query\":{\"query\":\"event.domain:nginx.access\",\"language\":\"kuery\"},\"filter\":[],\"indexRefName\":\"kibanaSavedObjectMeta.searchSourceJSON.index\"}"},"sort":[],"title":"[NGINX Core Logs 1.0] Nginx Access Logs","version":1},"id":"aaa33c4e-794a-4923-b853-1abd7359d807","migrationVersion":{"search":"7.9.3"},"references":[{"id":"d6af4161-6be5-48d0-9897-d1ffba8ab9b6","name":"kibanaSavedObjectMeta.searchSourceJSON.index","type":"index-pattern"}],"type":"search","updated_at":"2023-06-30T23:54:38.187Z","version":"WzcyMCwzXQ=="} +{"attributes":{"description":"","kibanaSavedObjectMeta":{"searchSourceJSON":"{\"query\":{\"query\":\"\",\"language\":\"lucene\"},\"filter\":[]}"},"savedSearchRefName":"search_0","title":"[NGINX Core Logs 1.0] Response codes over time","uiStateJSON":"{}","version":1,"visState":"{\"title\":\"[NGINX Core Logs 1.0] Response codes over time\",\"type\":\"histogram\",\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"params\":{},\"schema\":\"metric\"},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"params\":{\"field\":\"@timestamp\",\"timeRange\":{\"from\":\"now-24h\",\"to\":\"now\"},\"useNormalizedOpenSearchInterval\":true,\"scaleMetricValues\":false,\"interval\":\"auto\",\"drop_partials\":false,\"min_doc_count\":1,\"extended_bounds\":{}},\"schema\":\"segment\"},{\"id\":\"3\",\"enabled\":true,\"type\":\"filters\",\"params\":{\"filters\":[{\"input\":{\"query\":\"http.response.status_code:[200 TO 299]\",\"language\":\"lucene\"},\"label\":\"200s\"},{\"input\":{\"query\":\"http.response.status_code:[300 TO 399]\",\"language\":\"lucene\"},\"label\":\"300s\"},{\"input\":{\"query\":\"http.response.status_code:[400 TO 499]\",\"language\":\"lucene\"},\"label\":\"400s\"},{\"input\":{\"query\":\"http.response.status_code:[500 TO 599]\",\"language\":\"lucene\"},\"label\":\"500s\"},{\"input\":{\"query\":\"http.response.status_code:0\",\"language\":\"lucene\"},\"label\":\"0\"}]},\"schema\":\"group\"}],\"params\":{\"type\":\"histogram\",\"grid\":{\"categoryLines\":false},\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"type\":\"category\",\"position\":\"bottom\",\"show\":true,\"style\":{},\"scale\":{\"type\":\"linear\"},\"labels\":{\"show\":true,\"filter\":true,\"truncate\":100},\"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,\"lineWidth\":2,\"showCircles\":true}],\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"times\":[],\"addTimeMarker\":false,\"labels\":{\"show\":false},\"thresholdLine\":{\"show\":false,\"value\":10,\"width\":1,\"style\":\"full\",\"color\":\"#E7664C\"}}}"},"id":"fbd6622e-4f93-4764-be8c-3cbfefe9592c","migrationVersion":{"visualization":"7.10.0"},"references":[{"id":"aaa33c4e-794a-4923-b853-1abd7359d807","name":"search_0","type":"search"}],"type":"visualization","updated_at":"2023-06-30T23:54:38.187Z","version":"WzcyMSwzXQ=="} +{"attributes":{"columns":["_source"],"description":"","hits":0,"kibanaSavedObjectMeta":{"searchSourceJSON":"{\"highlightAll\":true,\"query\":{\"query\":\"http.response.status_code >= 300 and event.domain:nginx.access\",\"language\":\"kuery\"},\"version\":true,\"highlight\":{\"post_tags\":[\"@/kibana-highlighted-field@\"],\"fields\":{\"*\":{}},\"pre_tags\":[\"@kibana-highlighted-field@\"],\"require_field_match\":false,\"fragment_size\":2147483647},\"filter\":[],\"indexRefName\":\"kibanaSavedObjectMeta.searchSourceJSON.index\"}"},"sort":[["@timestamp","desc"]],"title":"[NGINX Core Logs 1.0] Nginx Error Logs","version":1},"id":"32bc8b8a-3b0d-4687-b4b1-97f2336a13e9","migrationVersion":{"search":"7.9.3"},"references":[{"id":"d6af4161-6be5-48d0-9897-d1ffba8ab9b6","name":"kibanaSavedObjectMeta.searchSourceJSON.index","type":"index-pattern"}],"type":"search","updated_at":"2023-06-30T23:54:38.187Z","version":"WzcyMiwzXQ=="} +{"attributes":{"description":"","kibanaSavedObjectMeta":{"searchSourceJSON":"{\"query\":{\"query\":\"\",\"language\":\"lucene\"},\"filter\":[]}"},"savedSearchRefName":"search_0","title":"[NGINX Core Logs 1.0] Errors over time","uiStateJSON":"{}","version":1,"visState":"{\"title\":\"[NGINX Core Logs 1.0] Errors over time\",\"type\":\"histogram\",\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"params\":{},\"schema\":\"metric\"},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"params\":{\"field\":\"@timestamp\",\"timeRange\":{\"from\":\"now-24h\",\"to\":\"now\"},\"useNormalizedOpenSearchInterval\":true,\"scaleMetricValues\":false,\"interval\":\"auto\",\"drop_partials\":false,\"min_doc_count\":1,\"extended_bounds\":{}},\"schema\":\"segment\"}],\"params\":{\"type\":\"histogram\",\"grid\":{\"categoryLines\":false},\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"type\":\"category\",\"position\":\"bottom\",\"show\":true,\"style\":{},\"scale\":{\"type\":\"linear\"},\"labels\":{\"show\":true,\"filter\":true,\"truncate\":100},\"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,\"lineWidth\":2,\"showCircles\":true}],\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"times\":[],\"addTimeMarker\":false,\"labels\":{\"show\":false},\"thresholdLine\":{\"show\":false,\"value\":10,\"width\":1,\"style\":\"full\",\"color\":\"#E7664C\"}}}"},"id":"0cee1420-9fe6-4135-8def-b053007c2409","migrationVersion":{"visualization":"7.10.0"},"references":[{"id":"32bc8b8a-3b0d-4687-b4b1-97f2336a13e9","name":"search_0","type":"search"}],"type":"visualization","updated_at":"2023-06-30T23:54:38.187Z","version":"WzcyMywzXQ=="} +{"attributes":{"description":"","kibanaSavedObjectMeta":{"searchSourceJSON":"{\"query\":{\"query\":\"\",\"language\":\"kuery\"},\"filter\":[]}"},"savedSearchRefName":"search_0","title":"Data Volume","uiStateJSON":"{}","version":1,"visState":"{\"title\":\"Data Volume\",\"type\":\"area\",\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"sum\",\"params\":{\"field\":\"http.response.bytes\",\"customLabel\":\"Response Bytes\"},\"schema\":\"metric\"},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"params\":{\"field\":\"observerTime\",\"timeRange\":{\"from\":\"now-15m\",\"to\":\"now\"},\"useNormalizedOpenSearchInterval\":true,\"scaleMetricValues\":false,\"interval\":\"auto\",\"drop_partials\":false,\"min_doc_count\":1,\"extended_bounds\":{},\"customLabel\":\"\"},\"schema\":\"segment\"}],\"params\":{\"type\":\"area\",\"grid\":{\"categoryLines\":false},\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"type\":\"category\",\"position\":\"bottom\",\"show\":true,\"style\":{},\"scale\":{\"type\":\"linear\"},\"labels\":{\"show\":true,\"filter\":true,\"truncate\":100},\"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\":\"Response Bytes\"}}],\"seriesParams\":[{\"show\":true,\"type\":\"area\",\"mode\":\"stacked\",\"data\":{\"label\":\"Response Bytes\",\"id\":\"1\"},\"drawLinesBetweenPoints\":true,\"lineWidth\":2,\"showCircles\":true,\"interpolate\":\"linear\",\"valueAxis\":\"ValueAxis-1\"}],\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"times\":[],\"addTimeMarker\":false,\"thresholdLine\":{\"show\":false,\"value\":10,\"width\":1,\"style\":\"full\",\"color\":\"#E7664C\"},\"labels\":{}}}"},"id":"7b1dd46f-2c27-4933-a840-d4fc88f46d53","migrationVersion":{"visualization":"7.10.0"},"references":[{"id":"aaa33c4e-794a-4923-b853-1abd7359d807","name":"search_0","type":"search"}],"type":"visualization","updated_at":"2023-06-30T23:54:38.187Z","version":"WzcyNCwzXQ=="} +{"attributes":{"description":"","kibanaSavedObjectMeta":{"searchSourceJSON":"{\"query\":{\"query\":\"\",\"language\":\"kuery\"},\"filter\":[],\"indexRefName\":\"kibanaSavedObjectMeta.searchSourceJSON.index\"}"},"title":"HTTP Top URLs","uiStateJSON":"{}","version":1,"visState":"{\"title\":\"HTTP Top URLs\",\"type\":\"table\",\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"params\":{},\"schema\":\"metric\"},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"params\":{\"field\":\"http.url\",\"orderBy\":\"1\",\"order\":\"desc\",\"size\":10,\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\"},\"schema\":\"bucket\"}],\"params\":{\"perPage\":10,\"showPartialRows\":false,\"showMetricsAtAllLevels\":false,\"showTotal\":false,\"totalFunc\":\"sum\",\"percentageCol\":\"\"}}"},"id":"a59b6730-17a2-11ee-b5d7-d9b73d55db70","migrationVersion":{"visualization":"7.10.0"},"references":[{"id":"d6af4161-6be5-48d0-9897-d1ffba8ab9b6","name":"kibanaSavedObjectMeta.searchSourceJSON.index","type":"index-pattern"}],"type":"visualization","updated_at":"2023-07-01T00:03:02.563Z","version":"WzczMiwzXQ=="} +{"attributes":{"description":"Nginx dashboard with basic Observability on access / error logs","hits":0,"kibanaSavedObjectMeta":{"searchSourceJSON":"{\"query\":{\"language\":\"kuery\",\"query\":\"\"},\"filter\":[]}"},"optionsJSON":"{\"hidePanelTitles\":false,\"useMargins\":true}","panelsJSON":"[{\"version\":\"3.0.0\",\"gridData\":{\"h\":8,\"i\":\"1f31e50b-06e3-41e6-972e-e4e5fe1a9872\",\"w\":48,\"x\":0,\"y\":0},\"panelIndex\":\"1f31e50b-06e3-41e6-972e-e4e5fe1a9872\",\"embeddableConfig\":{\"title\":\"HTTP Status Codes over Time\",\"hidePanelTitles\":false},\"title\":\"HTTP Status Codes over Time\",\"panelRefName\":\"panel_0\"},{\"version\":\"3.0.0\",\"gridData\":{\"h\":9,\"i\":\"d91a8da4-b34b-470a-aca6-9c76b47cd6fb\",\"w\":24,\"x\":0,\"y\":8},\"panelIndex\":\"d91a8da4-b34b-470a-aca6-9c76b47cd6fb\",\"embeddableConfig\":{\"title\":\"HTTP Errors over Time\",\"hidePanelTitles\":false},\"title\":\"HTTP Errors over Time\",\"panelRefName\":\"panel_1\"},{\"version\":\"3.0.0\",\"gridData\":{\"h\":15,\"i\":\"4d8c2aa7-159c-4a1a-80ff-00a9299056ce\",\"w\":24,\"x\":0,\"y\":17},\"panelIndex\":\"4d8c2aa7-159c-4a1a-80ff-00a9299056ce\",\"embeddableConfig\":{\"title\":\"HTTP Data Volume\",\"hidePanelTitles\":false},\"title\":\"HTTP Data Volume\",\"panelRefName\":\"panel_2\"},{\"version\":\"3.0.0\",\"gridData\":{\"x\":24,\"y\":8,\"w\":24,\"h\":15,\"i\":\"8e658e0d-7b64-4be8-8ad9-3b28eadf30f0\"},\"panelIndex\":\"8e658e0d-7b64-4be8-8ad9-3b28eadf30f0\",\"embeddableConfig\":{},\"panelRefName\":\"panel_3\"}]","refreshInterval":{"pause":true,"value":0},"timeFrom":"now-15m","timeRestore":true,"timeTo":"now","title":"Nginx Logs Overview","version":1},"id":"09253710-739d-40b1-85d8-06dc9909264a","migrationVersion":{"dashboard":"7.9.3"},"references":[{"id":"fbd6622e-4f93-4764-be8c-3cbfefe9592c","name":"panel_0","type":"visualization"},{"id":"0cee1420-9fe6-4135-8def-b053007c2409","name":"panel_1","type":"visualization"},{"id":"7b1dd46f-2c27-4933-a840-d4fc88f46d53","name":"panel_2","type":"visualization"},{"id":"a59b6730-17a2-11ee-b5d7-d9b73d55db70","name":"panel_3","type":"visualization"}],"type":"dashboard","updated_at":"2023-07-01T00:03:10.346Z","version":"WzczMywzXQ=="} +{"exportedCount":8,"missingRefCount":0,"missingReferences":[]} \ No newline at end of file diff --git a/server/adaptors/integrations/__data__/repository/nginx/data/sample.json b/server/adaptors/integrations/__data__/repository/nginx/data/sample.json new file mode 100644 index 000000000..6a4fc7658 --- /dev/null +++ b/server/adaptors/integrations/__data__/repository/nginx/data/sample.json @@ -0,0 +1 @@ +[{"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "46.35.219.51"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "46.35.219.51 - - [19/Jun/2023:16:59:05 +0000] \"GET /Grass-roots.hmtl HTTP/1.1\" 200 956 \"-\" \"Mozilla/5.0 (Windows 98) AppleWebKit/5360 (KHTML, like Gecko) Chrome/37.0.868.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 956}, "url": "/Grass-roots.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "202.179.32.148"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "202.179.32.148 - - [19/Jun/2023:16:59:05 +0000] \"DELETE /array%20Horizontal.css HTTP/1.1\" 200 949 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_4 rv:5.0; en-US) AppleWebKit/532.32.4 (KHTML, like Gecko) Version/5.1 Safari/532.32.4\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 949}, "url": "/array%20Horizontal.css", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "13.190.59.11"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "13.190.59.11 - - [19/Jun/2023:16:59:05 +0000] \"POST /6th%20generation-collaboration/multi-tasking%20extranet/infrastructure.hmtl HTTP/1.1\" 200 1286 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_5_3) AppleWebKit/5310 (KHTML, like Gecko) Chrome/39.0.848.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1286}, "url": "/6th%20generation-collaboration/multi-tasking%20extranet/infrastructure.hmtl", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "70.217.89.229"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "70.217.89.229 - - [19/Jun/2023:16:59:05 +0000] \"GET /scalable/dynamic-Fundamental-directional%20multimedia.css HTTP/1.1\" 404 111 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4 rv:3.0) Gecko/2007-18-04 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 111}, "url": "/scalable/dynamic-Fundamental-directional%20multimedia.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "111.51.133.169"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "111.51.133.169 - - [19/Jun/2023:16:59:05 +0000] \"GET /time-frame/holistic.jpg HTTP/1.1\" 200 2199 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_2) AppleWebKit/5350 (KHTML, like Gecko) Chrome/36.0.810.0 Mobile Safari/5350\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2199}, "url": "/time-frame/holistic.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "135.7.106.201"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "135.7.106.201 - - [19/Jun/2023:16:59:05 +0000] \"GET /throughput.png HTTP/1.1\" 200 978 \"-\" \"Mozilla/5.0 (Windows NT 5.2) AppleWebKit/5331 (KHTML, like Gecko) Chrome/39.0.842.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 978}, "url": "/throughput.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "237.103.69.52"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "237.103.69.52 - - [19/Jun/2023:16:59:05 +0000] \"GET /policy/Pre-emptive.gif HTTP/1.1\" 200 1215 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_4) AppleWebKit/5350 (KHTML, like Gecko) Chrome/40.0.819.0 Mobile Safari/5350\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1215}, "url": "/policy/Pre-emptive.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "228.188.56.235"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "228.188.56.235 - - [19/Jun/2023:16:59:05 +0000] \"GET /collaboration-function.svg HTTP/1.1\" 200 2081 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_2_2 like Mac OS X; en-US) AppleWebKit/535.16.6 (KHTML, like Gecko) Version/5.0.5 Mobile/8B120 Safari/6535.16.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2081}, "url": "/collaboration-function.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "168.73.31.176"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "168.73.31.176 - - [19/Jun/2023:16:59:05 +0000] \"GET /knowledge%20user-complexity_impactful_toolset.gif HTTP/1.1\" 200 1617 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:5.0) Gecko/1925-29-05 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1617}, "url": "/knowledge%20user-complexity_impactful_toolset.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "158.47.163.107"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "158.47.163.107 - - [19/Jun/2023:16:59:05 +0000] \"HEAD /Organized-Customizable%20focus%20group/Robust%20portal.php HTTP/1.1\" 200 1252 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5331 (KHTML, like Gecko) Chrome/39.0.812.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1252}, "url": "/Organized-Customizable%20focus%20group/Robust%20portal.php", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "14.62.62.176"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "14.62.62.176 - - [19/Jun/2023:16:59:05 +0000] \"GET /Organized_Robust.gif HTTP/1.1\" 200 911 \"-\" \"Mozilla/5.0 (Windows 98; Win 9x 4.90; en-US; rv:1.9.3.20) Gecko/1903-22-10 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 911}, "url": "/Organized_Robust.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "128.110.57.222"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "128.110.57.222 - - [19/Jun/2023:16:59:05 +0000] \"GET /encryption_needs-based.css HTTP/1.1\" 200 3039 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:5.0) Gecko/1906-18-10 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3039}, "url": "/encryption_needs-based.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "186.206.183.237"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "186.206.183.237 - - [19/Jun/2023:16:59:05 +0000] \"POST /Stand-alone.css HTTP/1.1\" 200 1774 \"-\" \"Mozilla/5.0 (Windows NT 5.2) AppleWebKit/5322 (KHTML, like Gecko) Chrome/39.0.859.0 Mobile Safari/5322\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1774}, "url": "/Stand-alone.css", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "86.1.104.192"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "86.1.104.192 - - [19/Jun/2023:16:59:05 +0000] \"GET /core%20Innovative.css HTTP/1.1\" 301 100 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_9 rv:2.0) Gecko/1975-03-05 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 100}, "url": "/core%20Innovative.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "179.218.69.195"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "179.218.69.195 - - [19/Jun/2023:16:59:05 +0000] \"POST /synergy.htm HTTP/1.1\" 200 1481 \"-\" \"Mozilla/5.0 (iPad; CPU OS 8_0_1 like Mac OS X; en-US) AppleWebKit/532.36.8 (KHTML, like Gecko) Version/4.0.5 Mobile/8B120 Safari/6532.36.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1481}, "url": "/synergy.htm", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "182.54.111.196"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "182.54.111.196 - - [19/Jun/2023:16:59:05 +0000] \"GET /monitoring/discrete/open%20system-Horizontal/secondary.gif HTTP/1.1\" 200 1456 \"-\" \"Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X; en-US) AppleWebKit/533.16.4 (KHTML, like Gecko) Version/4.0.5 Mobile/8B119 Safari/6533.16.4\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1456}, "url": "/monitoring/discrete/open%20system-Horizontal/secondary.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "192.139.97.103"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "192.139.97.103 - - [19/Jun/2023:16:59:05 +0000] \"DELETE /web-enabled/Assimilated-client-server%20portal.png HTTP/1.1\" 200 2208 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.01) AppleWebKit/533.11.2 (KHTML, like Gecko) Version/6.2 Safari/533.11.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2208}, "url": "/web-enabled/Assimilated-client-server%20portal.png", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "45.123.226.0"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "45.123.226.0 - - [19/Jun/2023:16:59:05 +0000] \"GET /Multi-channelled-multimedia.png HTTP/1.1\" 200 2379 \"-\" \"Mozilla/5.0 (Windows CE) AppleWebKit/5331 (KHTML, like Gecko) Chrome/39.0.829.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2379}, "url": "/Multi-channelled-multimedia.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "58.243.2.9"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "58.243.2.9 - - [19/Jun/2023:16:59:05 +0000] \"GET /Triple-buffered%20Customer-focused%20dynamic.gif HTTP/1.1\" 400 89 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_7_5) AppleWebKit/5310 (KHTML, like Gecko) Chrome/40.0.822.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 89}, "url": "/Triple-buffered%20Customer-focused%20dynamic.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "194.255.217.180"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "194.255.217.180 - - [19/Jun/2023:16:59:05 +0000] \"POST /composite-moratorium.svg HTTP/1.1\" 200 1750 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5331 (KHTML, like Gecko) Chrome/39.0.824.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1750}, "url": "/composite-moratorium.svg", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "69.58.106.237"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "69.58.106.237 - - [19/Jun/2023:16:59:05 +0000] \"POST /Ameliorated/intranet.jpg HTTP/1.1\" 200 2815 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.2) AppleWebKit/532.33.6 (KHTML, like Gecko) Version/5.2 Safari/532.33.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2815}, "url": "/Ameliorated/intranet.jpg", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "65.192.209.232"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "65.192.209.232 - - [19/Jun/2023:16:59:05 +0000] \"GET /Streamlined-Virtual.gif HTTP/1.1\" 200 1791 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_8) AppleWebKit/5360 (KHTML, like Gecko) Chrome/39.0.899.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1791}, "url": "/Streamlined-Virtual.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "205.131.109.66"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "205.131.109.66 - - [19/Jun/2023:16:59:05 +0000] \"POST /transitional/executive-Diverse.gif HTTP/1.1\" 200 1746 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:5.0) Gecko/1939-21-07 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1746}, "url": "/transitional/executive-Diverse.gif", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "96.151.212.218"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "96.151.212.218 - - [19/Jun/2023:16:59:05 +0000] \"GET /paradigm.hmtl HTTP/1.1\" 200 2079 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 7_3_2 like Mac OS X; en-US) AppleWebKit/531.51.3 (KHTML, like Gecko) Version/4.0.5 Mobile/8B119 Safari/6531.51.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2079}, "url": "/paradigm.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "39.251.133.171"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "39.251.133.171 - - [19/Jun/2023:16:59:05 +0000] \"HEAD /migration-knowledge%20base/intermediate/Compatible.svg HTTP/1.1\" 200 1208 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5322 (KHTML, like Gecko) Chrome/40.0.814.0 Mobile Safari/5322\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1208}, "url": "/migration-knowledge%20base/intermediate/Compatible.svg", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "160.171.126.255"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "160.171.126.255 - - [19/Jun/2023:16:59:05 +0000] \"GET /bifurcated/national.htm HTTP/1.1\" 200 1184 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5352 (KHTML, like Gecko) Chrome/37.0.883.0 Mobile Safari/5352\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1184}, "url": "/bifurcated/national.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "123.38.251.87"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "123.38.251.87 - - [19/Jun/2023:16:59:05 +0000] \"GET /Extended/next%20generation-Progressive.htm HTTP/1.1\" 200 2667 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_4) AppleWebKit/5331 (KHTML, like Gecko) Chrome/37.0.803.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2667}, "url": "/Extended/next%20generation-Progressive.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "0.43.120.124"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "0.43.120.124 - - [19/Jun/2023:16:59:05 +0000] \"GET /executive/Centralized-collaboration-motivating.js HTTP/1.1\" 200 1209 \"-\" \"Opera/9.33 (X11; Linux x86_64; en-US) Presto/2.8.243 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1209}, "url": "/executive/Centralized-collaboration-motivating.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "130.196.100.190"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "130.196.100.190 - - [19/Jun/2023:16:59:05 +0000] \"PATCH /flexibility/Future-proofed_process%20improvement.gif HTTP/1.1\" 200 838 \"-\" \"Opera/10.70 (Windows NT 5.0; en-US) Presto/2.8.345 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 838}, "url": "/flexibility/Future-proofed_process%20improvement.gif", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "64.32.8.233"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "64.32.8.233 - - [19/Jun/2023:16:59:05 +0000] \"GET /protocol.js HTTP/1.1\" 200 2510 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_5_10 rv:7.0; en-US) AppleWebKit/531.36.2 (KHTML, like Gecko) Version/4.0 Safari/531.36.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2510}, "url": "/protocol.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "253.243.115.220"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "253.243.115.220 - - [19/Jun/2023:16:59:05 +0000] \"GET /exuding_Profound_global/productivity/real-time.js HTTP/1.1\" 200 1106 \"-\" \"Mozilla/5.0 (Windows NT 6.2; en-US; rv:1.9.0.20) Gecko/1918-10-05 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1106}, "url": "/exuding_Profound_global/productivity/real-time.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "80.137.104.97"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "80.137.104.97 - - [19/Jun/2023:16:59:05 +0000] \"GET /3rd%20generation/contextually-based-groupware/workforce/concept.php HTTP/1.1\" 200 2542 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_0) AppleWebKit/5362 (KHTML, like Gecko) Chrome/38.0.844.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2542}, "url": "/3rd%20generation/contextually-based-groupware/workforce/concept.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "87.129.69.224"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "87.129.69.224 - - [19/Jun/2023:16:59:05 +0000] \"GET /Ergonomic/Synchronised.css HTTP/1.1\" 200 1787 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X; en-US) AppleWebKit/535.12.4 (KHTML, like Gecko) Version/3.0.5 Mobile/8B113 Safari/6535.12.4\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1787}, "url": "/Ergonomic/Synchronised.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "36.208.242.48"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "36.208.242.48 - - [19/Jun/2023:16:59:05 +0000] \"GET /Operative-Cross-group/paradigm.php HTTP/1.1\" 302 38 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_8_1) AppleWebKit/5350 (KHTML, like Gecko) Chrome/40.0.846.0 Mobile Safari/5350\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 38}, "url": "/Operative-Cross-group/paradigm.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "198.244.162.144"}}, "@timestamp": "2023-06-19T16:59:05.000Z", "observedTimestamp": "2023-06-19T16:59:05.000Z", "body": "198.244.162.144 - - [19/Jun/2023:16:59:05 +0000] \"HEAD /bi-directional.js HTTP/1.1\" 302 69 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5352 (KHTML, like Gecko) Chrome/39.0.818.0 Mobile Safari/5352\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 69}, "url": "/bi-directional.js", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "154.121.9.1"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "154.121.9.1 - - [19/Jun/2023:16:59:06 +0000] \"GET /web-enabled.css HTTP/1.1\" 200 2144 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5320 (KHTML, like Gecko) Chrome/37.0.869.0 Mobile Safari/5320\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2144}, "url": "/web-enabled.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "95.55.74.96"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "95.55.74.96 - - [19/Jun/2023:16:59:06 +0000] \"GET /Synchronised_foreground.htm HTTP/1.1\" 500 67 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_1 rv:6.0) Gecko/1949-11-02 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 67}, "url": "/Synchronised_foreground.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "120.75.74.152"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "120.75.74.152 - - [19/Jun/2023:16:59:06 +0000] \"GET /hub/Open-architected%20Universal-leading%20edge.jpg HTTP/1.1\" 200 1130 \"-\" \"Mozilla/5.0 (Windows 95) AppleWebKit/5360 (KHTML, like Gecko) Chrome/36.0.872.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1130}, "url": "/hub/Open-architected%20Universal-leading%20edge.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "108.164.14.125"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "108.164.14.125 - - [19/Jun/2023:16:59:06 +0000] \"GET /systematic_regional_leverage/Phased.js HTTP/1.1\" 200 3000 \"-\" \"Mozilla/5.0 (Windows; U; Windows 98) AppleWebKit/534.1.3 (KHTML, like Gecko) Version/5.2 Safari/534.1.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3000}, "url": "/systematic_regional_leverage/Phased.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "194.80.2.176"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "194.80.2.176 - - [19/Jun/2023:16:59:06 +0000] \"GET /bifurcated-focus%20group/Grass-roots/alliance.gif HTTP/1.1\" 200 1839 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5360 (KHTML, like Gecko) Chrome/39.0.834.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1839}, "url": "/bifurcated-focus%20group/Grass-roots/alliance.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "167.22.212.98"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "167.22.212.98 - - [19/Jun/2023:16:59:06 +0000] \"GET /policy_Mandatory.gif HTTP/1.1\" 500 54 \"-\" \"Mozilla/5.0 (Windows 95) AppleWebKit/5312 (KHTML, like Gecko) Chrome/39.0.891.0 Mobile Safari/5312\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 54}, "url": "/policy_Mandatory.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "144.89.107.98"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "144.89.107.98 - - [19/Jun/2023:16:59:06 +0000] \"GET /Compatible/reciprocal.jpg HTTP/1.1\" 200 2810 \"-\" \"Opera/8.20 (X11; Linux x86_64; en-US) Presto/2.8.298 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2810}, "url": "/Compatible/reciprocal.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "80.167.36.175"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "80.167.36.175 - - [19/Jun/2023:16:59:06 +0000] \"POST /Organic/leading%20edge/secondary.htm HTTP/1.1\" 200 857 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:7.0) Gecko/1965-11-12 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 857}, "url": "/Organic/leading%20edge/secondary.htm", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "45.183.163.175"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "45.183.163.175 - - [19/Jun/2023:16:59:06 +0000] \"GET /hybrid_solution-oriented/Fully-configurable%20archive.hmtl HTTP/1.1\" 200 1323 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5352 (KHTML, like Gecko) Chrome/40.0.803.0 Mobile Safari/5352\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1323}, "url": "/hybrid_solution-oriented/Fully-configurable%20archive.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "41.109.172.243"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "41.109.172.243 - - [19/Jun/2023:16:59:06 +0000] \"GET /Triple-buffered.hmtl HTTP/1.1\" 200 1830 \"-\" \"Mozilla/5.0 (Windows NT 5.01) AppleWebKit/5310 (KHTML, like Gecko) Chrome/36.0.808.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1830}, "url": "/Triple-buffered.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "133.171.35.56"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "133.171.35.56 - - [19/Jun/2023:16:59:06 +0000] \"GET /well-modulated/needs-based/Open-source/encoding/Public-key.css HTTP/1.1\" 200 1818 \"-\" \"Mozilla/5.0 (Windows 98; Win 9x 4.90) AppleWebKit/5310 (KHTML, like Gecko) Chrome/39.0.821.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1818}, "url": "/well-modulated/needs-based/Open-source/encoding/Public-key.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "164.86.16.2"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "164.86.16.2 - - [19/Jun/2023:16:59:06 +0000] \"DELETE /Triple-buffered.htm HTTP/1.1\" 200 1038 \"-\" \"Mozilla/5.0 (iPad; CPU OS 9_0_3 like Mac OS X; en-US) AppleWebKit/535.2.6 (KHTML, like Gecko) Version/5.0.5 Mobile/8B117 Safari/6535.2.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1038}, "url": "/Triple-buffered.htm", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "183.62.105.89"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "183.62.105.89 - - [19/Jun/2023:16:59:06 +0000] \"GET /Synergistic/high-level.htm HTTP/1.1\" 200 2917 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_3 rv:5.0; en-US) AppleWebKit/531.37.7 (KHTML, like Gecko) Version/4.1 Safari/531.37.7\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2917}, "url": "/Synergistic/high-level.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "232.27.147.132"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "232.27.147.132 - - [19/Jun/2023:16:59:06 +0000] \"GET /benchmark%20knowledge%20user.hmtl HTTP/1.1\" 200 3047 \"-\" \"Opera/9.69 (Windows 98; Win 9x 4.90; en-US) Presto/2.12.236 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3047}, "url": "/benchmark%20knowledge%20user.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "46.36.54.60"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "46.36.54.60 - - [19/Jun/2023:16:59:06 +0000] \"GET /help-desk.hmtl HTTP/1.1\" 301 95 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_0 rv:6.0; en-US) AppleWebKit/536.25.2 (KHTML, like Gecko) Version/6.2 Safari/536.25.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 95}, "url": "/help-desk.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "252.149.233.251"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "252.149.233.251 - - [19/Jun/2023:16:59:06 +0000] \"PUT /zero%20administration-optimal-success/encoding.js HTTP/1.1\" 200 1884 \"-\" \"Mozilla/5.0 (Windows NT 5.01) AppleWebKit/5312 (KHTML, like Gecko) Chrome/36.0.875.0 Mobile Safari/5312\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1884}, "url": "/zero%20administration-optimal-success/encoding.js", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "169.121.26.101"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "169.121.26.101 - - [19/Jun/2023:16:59:06 +0000] \"GET /object-oriented/static%20Optimized_Inverse.css HTTP/1.1\" 200 2702 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.0) AppleWebKit/534.28.2 (KHTML, like Gecko) Version/5.0 Safari/534.28.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2702}, "url": "/object-oriented/static%20Optimized_Inverse.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "60.155.147.212"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "60.155.147.212 - - [19/Jun/2023:16:59:06 +0000] \"GET /24/7/superstructure/Centralized.jpg HTTP/1.1\" 200 1141 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5352 (KHTML, like Gecko) Chrome/38.0.857.0 Mobile Safari/5352\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1141}, "url": "/24/7/superstructure/Centralized.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "220.18.31.117"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "220.18.31.117 - - [19/Jun/2023:16:59:06 +0000] \"PATCH /bottom-line/software-throughput/leverage-alliance.css HTTP/1.1\" 200 1570 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5352 (KHTML, like Gecko) Chrome/37.0.883.0 Mobile Safari/5352\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1570}, "url": "/bottom-line/software-throughput/leverage-alliance.css", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "251.88.228.0"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "251.88.228.0 - - [19/Jun/2023:16:59:06 +0000] \"GET /emulation_extranet.png HTTP/1.1\" 200 1524 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_5_2) AppleWebKit/5321 (KHTML, like Gecko) Chrome/39.0.873.0 Mobile Safari/5321\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1524}, "url": "/emulation_extranet.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "8.203.20.100"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "8.203.20.100 - - [19/Jun/2023:16:59:06 +0000] \"GET /Quality-focused_solution-oriented_Organic.htm HTTP/1.1\" 200 2512 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_6) AppleWebKit/5361 (KHTML, like Gecko) Chrome/36.0.844.0 Mobile Safari/5361\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2512}, "url": "/Quality-focused_solution-oriented_Organic.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "2.193.35.84"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "2.193.35.84 - - [19/Jun/2023:16:59:06 +0000] \"GET /matrix/Quality-focused.htm HTTP/1.1\" 200 3079 \"-\" \"Mozilla/5.0 (Windows NT 4.0; en-US; rv:1.9.1.20) Gecko/1949-03-07 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3079}, "url": "/matrix/Quality-focused.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "46.14.78.172"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "46.14.78.172 - - [19/Jun/2023:16:59:06 +0000] \"GET /impactful-contingency-hybrid.css HTTP/1.1\" 200 1857 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5360 (KHTML, like Gecko) Chrome/40.0.882.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1857}, "url": "/impactful-contingency-hybrid.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "102.200.98.162"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "102.200.98.162 - - [19/Jun/2023:16:59:06 +0000] \"GET /24%20hour-moratorium-Mandatory/Synchronised.css HTTP/1.1\" 200 1746 \"-\" \"Opera/9.21 (X11; Linux x86_64; en-US) Presto/2.12.247 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1746}, "url": "/24%20hour-moratorium-Mandatory/Synchronised.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "76.252.249.217"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "76.252.249.217 - - [19/Jun/2023:16:59:06 +0000] \"GET /Multi-channelled.svg HTTP/1.1\" 500 32 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_5_6) AppleWebKit/5320 (KHTML, like Gecko) Chrome/36.0.844.0 Mobile Safari/5320\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 32}, "url": "/Multi-channelled.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "135.109.136.13"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "135.109.136.13 - - [19/Jun/2023:16:59:06 +0000] \"GET /uniform_Profound%20attitude-oriented.js HTTP/1.1\" 500 57 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit/5351 (KHTML, like Gecko) Chrome/36.0.841.0 Mobile Safari/5351\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 57}, "url": "/uniform_Profound%20attitude-oriented.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "181.45.147.14"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "181.45.147.14 - - [19/Jun/2023:16:59:06 +0000] \"GET /Operative.gif HTTP/1.1\" 200 1046 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5340 (KHTML, like Gecko) Chrome/38.0.825.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1046}, "url": "/Operative.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "212.219.178.154"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "212.219.178.154 - - [19/Jun/2023:16:59:06 +0000] \"GET /Phased/Multi-lateral_application.css HTTP/1.1\" 200 2320 \"-\" \"Mozilla/5.0 (Windows NT 4.0) AppleWebKit/5322 (KHTML, like Gecko) Chrome/36.0.856.0 Mobile Safari/5322\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2320}, "url": "/Phased/Multi-lateral_application.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "129.159.92.80"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "129.159.92.80 - - [19/Jun/2023:16:59:06 +0000] \"GET /bi-directional-Diverse-Focused-Enterprise-wide/Cloned.php HTTP/1.1\" 200 1242 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_9 rv:7.0) Gecko/2003-23-03 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1242}, "url": "/bi-directional-Diverse-Focused-Enterprise-wide/Cloned.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "64.157.89.135"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "64.157.89.135 - - [19/Jun/2023:16:59:06 +0000] \"GET /grid-enabled_Synergistic/Reverse-engineered.gif HTTP/1.1\" 500 98 \"-\" \"Opera/8.11 (X11; Linux x86_64; en-US) Presto/2.11.279 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 98}, "url": "/grid-enabled_Synergistic/Reverse-engineered.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "127.148.8.164"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "127.148.8.164 - - [19/Jun/2023:16:59:06 +0000] \"POST /Stand-alone-emulation/protocol.js HTTP/1.1\" 200 2156 \"-\" \"Opera/8.97 (X11; Linux i686; en-US) Presto/2.13.315 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2156}, "url": "/Stand-alone-emulation/protocol.js", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "186.141.217.79"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "186.141.217.79 - - [19/Jun/2023:16:59:06 +0000] \"GET /Versatile/success-needs-based/impactful%20archive.jpg HTTP/1.1\" 200 2260 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5361 (KHTML, like Gecko) Chrome/40.0.819.0 Mobile Safari/5361\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2260}, "url": "/Versatile/success-needs-based/impactful%20archive.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "232.163.34.4"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "232.163.34.4 - - [19/Jun/2023:16:59:06 +0000] \"GET /directional_application/Balanced%20Down-sized.css HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:6.0) Gecko/1999-17-08 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1898}, "url": "/directional_application/Balanced%20Down-sized.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "2.31.208.90"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "2.31.208.90 - - [19/Jun/2023:16:59:06 +0000] \"GET /Quality-focused/architecture-paradigm/productivity.png HTTP/1.1\" 200 2650 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:6.0) Gecko/1991-12-04 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2650}, "url": "/Quality-focused/architecture-paradigm/productivity.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "28.188.162.1"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "28.188.162.1 - - [19/Jun/2023:16:59:06 +0000] \"GET /demand-driven/process%20improvement/Phased/Exclusive.hmtl HTTP/1.1\" 200 982 \"-\" \"Opera/8.44 (Macintosh; Intel Mac OS X 10_5_4; en-US) Presto/2.13.207 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 982}, "url": "/demand-driven/process%20improvement/Phased/Exclusive.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "96.69.72.46"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "96.69.72.46 - - [19/Jun/2023:16:59:06 +0000] \"GET /user-facing/Expanded-data-warehouse-synergy-Mandatory.js HTTP/1.1\" 200 1338 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_9_7 rv:6.0) Gecko/1940-09-01 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1338}, "url": "/user-facing/Expanded-data-warehouse-synergy-Mandatory.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "141.214.38.28"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "141.214.38.28 - - [19/Jun/2023:16:59:06 +0000] \"GET /approach-clear-thinking%20intermediate.js HTTP/1.1\" 200 1546 \"-\" \"Opera/8.81 (Macintosh; PPC Mac OS X 10_5_9; en-US) Presto/2.9.272 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1546}, "url": "/approach-clear-thinking%20intermediate.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "249.222.246.48"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "249.222.246.48 - - [19/Jun/2023:16:59:06 +0000] \"POST /bi-directional/Implemented.js HTTP/1.1\" 200 2692 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_7_2 rv:3.0) Gecko/1985-08-04 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2692}, "url": "/bi-directional/Implemented.js", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "230.192.109.160"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "230.192.109.160 - - [19/Jun/2023:16:59:06 +0000] \"HEAD /throughput.js HTTP/1.1\" 200 2589 \"-\" \"Mozilla/5.0 (Windows 95; en-US; rv:1.9.0.20) Gecko/2014-29-05 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2589}, "url": "/throughput.js", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "195.105.167.130"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "195.105.167.130 - - [19/Jun/2023:16:59:06 +0000] \"GET /Function-based/didactic/non-volatile%20Compatible.jpg HTTP/1.1\" 200 2833 \"-\" \"Opera/9.66 (X11; Linux i686; en-US) Presto/2.13.355 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2833}, "url": "/Function-based/didactic/non-volatile%20Compatible.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "124.172.173.82"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "124.172.173.82 - - [19/Jun/2023:16:59:06 +0000] \"GET /Self-enabling/analyzer%20matrix_Grass-roots_Self-enabling.jpg HTTP/1.1\" 400 56 \"-\" \"Mozilla/5.0 (Windows NT 6.2) AppleWebKit/5312 (KHTML, like Gecko) Chrome/38.0.853.0 Mobile Safari/5312\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 56}, "url": "/Self-enabling/analyzer%20matrix_Grass-roots_Self-enabling.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "136.19.238.148"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "136.19.238.148 - - [19/Jun/2023:16:59:06 +0000] \"GET /Advanced_Face%20to%20face-analyzer_Enterprise-wide.gif HTTP/1.1\" 200 2291 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_9_2 rv:5.0; en-US) AppleWebKit/533.7.6 (KHTML, like Gecko) Version/4.1 Safari/533.7.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2291}, "url": "/Advanced_Face%20to%20face-analyzer_Enterprise-wide.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "169.94.93.103"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "169.94.93.103 - - [19/Jun/2023:16:59:06 +0000] \"GET /mission-critical-Phased/Universal.png HTTP/1.1\" 200 1022 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_8_0) AppleWebKit/5331 (KHTML, like Gecko) Chrome/40.0.807.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1022}, "url": "/mission-critical-Phased/Universal.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "215.114.73.191"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "215.114.73.191 - - [19/Jun/2023:16:59:06 +0000] \"GET /impactful/Team-oriented_instruction%20set-Robust-hardware.gif HTTP/1.1\" 301 108 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 7_0_2 like Mac OS X; en-US) AppleWebKit/533.40.5 (KHTML, like Gecko) Version/5.0.5 Mobile/8B111 Safari/6533.40.5\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 108}, "url": "/impactful/Team-oriented_instruction%20set-Robust-hardware.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "2.15.255.169"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "2.15.255.169 - - [19/Jun/2023:16:59:06 +0000] \"DELETE /success.svg HTTP/1.1\" 200 1776 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_1) AppleWebKit/5331 (KHTML, like Gecko) Chrome/38.0.850.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1776}, "url": "/success.svg", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "148.253.155.158"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "148.253.155.158 - - [19/Jun/2023:16:59:06 +0000] \"POST /Object-based_Team-oriented_client-driven/Digitized-website.gif HTTP/1.1\" 200 1767 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3 rv:6.0) Gecko/1943-14-11 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1767}, "url": "/Object-based_Team-oriented_client-driven/Digitized-website.gif", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "141.163.53.220"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "141.163.53.220 - - [19/Jun/2023:16:59:06 +0000] \"GET /system%20engine%20methodical/neural-net/Organized-client-driven.js HTTP/1.1\" 200 2341 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5342 (KHTML, like Gecko) Chrome/39.0.842.0 Mobile Safari/5342\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2341}, "url": "/system%20engine%20methodical/neural-net/Organized-client-driven.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "13.142.36.67"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "13.142.36.67 - - [19/Jun/2023:16:59:06 +0000] \"PUT /projection/Digitized_time-frame/Face%20to%20face.jpg HTTP/1.1\" 200 2635 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5352 (KHTML, like Gecko) Chrome/40.0.810.0 Mobile Safari/5352\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2635}, "url": "/projection/Digitized_time-frame/Face%20to%20face.jpg", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "53.19.126.9"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "53.19.126.9 - - [19/Jun/2023:16:59:06 +0000] \"GET /Seamless.htm HTTP/1.1\" 200 2649 \"-\" \"Mozilla/5.0 (Windows NT 4.0) AppleWebKit/5331 (KHTML, like Gecko) Chrome/40.0.896.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2649}, "url": "/Seamless.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "67.113.234.108"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "67.113.234.108 - - [19/Jun/2023:16:59:06 +0000] \"GET /solution.gif HTTP/1.1\" 200 888 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5311 (KHTML, like Gecko) Chrome/38.0.876.0 Mobile Safari/5311\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 888}, "url": "/solution.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "193.238.118.110"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "193.238.118.110 - - [19/Jun/2023:16:59:06 +0000] \"GET /task-force.svg HTTP/1.1\" 200 1983 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_6 rv:5.0) Gecko/1955-29-10 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1983}, "url": "/task-force.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "3.149.35.106"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "3.149.35.106 - - [19/Jun/2023:16:59:06 +0000] \"DELETE /dynamic%20Cloned.css HTTP/1.1\" 200 2854 \"-\" \"Mozilla/5.0 (Windows 98) AppleWebKit/5330 (KHTML, like Gecko) Chrome/38.0.888.0 Mobile Safari/5330\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2854}, "url": "/dynamic%20Cloned.css", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "100.21.49.179"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "100.21.49.179 - - [19/Jun/2023:16:59:06 +0000] \"GET /Implemented-Right-sized.svg HTTP/1.1\" 200 1866 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_9_6) AppleWebKit/5312 (KHTML, like Gecko) Chrome/38.0.842.0 Mobile Safari/5312\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1866}, "url": "/Implemented-Right-sized.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "176.174.190.232"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "176.174.190.232 - - [19/Jun/2023:16:59:06 +0000] \"GET /background/functionalities-migration%20analyzer/implementation.hmtl HTTP/1.1\" 400 45 \"-\" \"Opera/10.24 (X11; Linux x86_64; en-US) Presto/2.8.241 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 45}, "url": "/background/functionalities-migration%20analyzer/implementation.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "139.55.164.134"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "139.55.164.134 - - [19/Jun/2023:16:59:06 +0000] \"GET /Public-key/customer%20loyalty/standardization.gif HTTP/1.1\" 200 965 \"-\" \"Mozilla/5.0 (Windows NT 6.0; en-US; rv:1.9.1.20) Gecko/1926-09-03 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 965}, "url": "/Public-key/customer%20loyalty/standardization.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "175.89.73.155"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "175.89.73.155 - - [19/Jun/2023:16:59:06 +0000] \"GET /Extended_logistical.js HTTP/1.1\" 200 2227 \"-\" \"Opera/9.67 (X11; Linux i686; en-US) Presto/2.10.259 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2227}, "url": "/Extended_logistical.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "38.62.147.184"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "38.62.147.184 - - [19/Jun/2023:16:59:06 +0000] \"GET /Switchable/complexity.js HTTP/1.1\" 200 1005 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_8 rv:7.0; en-US) AppleWebKit/534.15.3 (KHTML, like Gecko) Version/4.2 Safari/534.15.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1005}, "url": "/Switchable/complexity.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "78.55.233.103"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "78.55.233.103 - - [19/Jun/2023:16:59:06 +0000] \"POST /instruction%20set.jpg HTTP/1.1\" 200 2306 \"-\" \"Opera/10.62 (Macintosh; U; Intel Mac OS X 10_9_8; en-US) Presto/2.8.188 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2306}, "url": "/instruction%20set.jpg", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "64.169.86.205"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "64.169.86.205 - - [19/Jun/2023:16:59:06 +0000] \"HEAD /Diverse/Down-sized.php HTTP/1.1\" 200 1658 \"-\" \"Mozilla/5.0 (Windows NT 5.0) AppleWebKit/5362 (KHTML, like Gecko) Chrome/37.0.859.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1658}, "url": "/Diverse/Down-sized.php", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "157.75.39.30"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "157.75.39.30 - - [19/Jun/2023:16:59:06 +0000] \"POST /zero%20defect/composite.js HTTP/1.1\" 400 84 \"-\" \"Opera/8.50 (Macintosh; U; PPC Mac OS X 10_7_7; en-US) Presto/2.9.261 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 84}, "url": "/zero%20defect/composite.js", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "90.37.82.211"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "90.37.82.211 - - [19/Jun/2023:16:59:06 +0000] \"GET /Horizontal.js HTTP/1.1\" 200 871 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_6 rv:7.0; en-US) AppleWebKit/536.13.4 (KHTML, like Gecko) Version/4.1 Safari/536.13.4\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 871}, "url": "/Horizontal.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "16.192.167.121"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "16.192.167.121 - - [19/Jun/2023:16:59:06 +0000] \"DELETE /Focused-extranet_5th%20generation.svg HTTP/1.1\" 200 2131 \"-\" \"Opera/8.46 (X11; Linux x86_64; en-US) Presto/2.8.306 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2131}, "url": "/Focused-extranet_5th%20generation.svg", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "188.149.155.36"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "188.149.155.36 - - [19/Jun/2023:16:59:06 +0000] \"POST /Total.svg HTTP/1.1\" 200 1296 \"-\" \"Opera/10.68 (Windows 98; Win 9x 4.90; en-US) Presto/2.12.280 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1296}, "url": "/Total.svg", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "87.120.54.178"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "87.120.54.178 - - [19/Jun/2023:16:59:06 +0000] \"POST /Pre-emptive.gif HTTP/1.1\" 200 2927 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_7_1) AppleWebKit/5311 (KHTML, like Gecko) Chrome/38.0.868.0 Mobile Safari/5311\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2927}, "url": "/Pre-emptive.gif", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "18.198.4.40"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "18.198.4.40 - - [19/Jun/2023:16:59:06 +0000] \"GET /6th%20generation%20motivating.htm HTTP/1.1\" 200 1101 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5350 (KHTML, like Gecko) Chrome/37.0.840.0 Mobile Safari/5350\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1101}, "url": "/6th%20generation%20motivating.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "72.47.109.125"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "72.47.109.125 - - [19/Jun/2023:16:59:06 +0000] \"GET /hub%20Multi-lateral/Reverse-engineered.htm HTTP/1.1\" 200 2936 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.0) AppleWebKit/532.48.8 (KHTML, like Gecko) Version/5.1 Safari/532.48.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2936}, "url": "/hub%20Multi-lateral/Reverse-engineered.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "62.126.142.243"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "62.126.142.243 - - [19/Jun/2023:16:59:06 +0000] \"GET /circuit/monitoring-5th%20generation/groupware.png HTTP/1.1\" 200 1436 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_10 rv:7.0) Gecko/2023-26-09 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1436}, "url": "/circuit/monitoring-5th%20generation/groupware.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "211.174.65.15"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "211.174.65.15 - - [19/Jun/2023:16:59:06 +0000] \"GET /multimedia-Pre-emptive.jpg HTTP/1.1\" 200 2999 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_7_8 rv:4.0; en-US) AppleWebKit/533.5.1 (KHTML, like Gecko) Version/6.2 Safari/533.5.1\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2999}, "url": "/multimedia-Pre-emptive.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "48.0.205.31"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "48.0.205.31 - - [19/Jun/2023:16:59:06 +0000] \"GET /5th%20generation_human-resource.jpg HTTP/1.1\" 200 2257 \"-\" \"Mozilla/5.0 (Windows 98; Win 9x 4.90) AppleWebKit/5320 (KHTML, like Gecko) Chrome/37.0.881.0 Mobile Safari/5320\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2257}, "url": "/5th%20generation_human-resource.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "237.83.210.1"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "237.83.210.1 - - [19/Jun/2023:16:59:06 +0000] \"GET /radical.js HTTP/1.1\" 200 2355 \"-\" \"Opera/10.71 (X11; Linux x86_64; en-US) Presto/2.12.237 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2355}, "url": "/radical.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "20.149.150.175"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "20.149.150.175 - - [19/Jun/2023:16:59:06 +0000] \"GET /algorithm.gif HTTP/1.1\" 200 2056 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_6_10) AppleWebKit/5331 (KHTML, like Gecko) Chrome/36.0.880.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2056}, "url": "/algorithm.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "69.213.87.16"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "69.213.87.16 - - [19/Jun/2023:16:59:06 +0000] \"GET /system%20engine.png HTTP/1.1\" 200 2652 \"-\" \"Opera/10.49 (Macintosh; PPC Mac OS X 10_7_10; en-US) Presto/2.13.209 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2652}, "url": "/system%20engine.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "30.93.216.213"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "30.93.216.213 - - [19/Jun/2023:16:59:06 +0000] \"GET /attitude/systemic/heuristic.gif HTTP/1.1\" 200 1573 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5331 (KHTML, like Gecko) Chrome/36.0.865.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1573}, "url": "/attitude/systemic/heuristic.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "150.78.145.92"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "150.78.145.92 - - [19/Jun/2023:16:59:06 +0000] \"DELETE /Future-proofed/emulation_interface_demand-driven_Multi-tiered.php HTTP/1.1\" 500 108 \"-\" \"Mozilla/5.0 (Windows NT 5.0) AppleWebKit/5320 (KHTML, like Gecko) Chrome/40.0.883.0 Mobile Safari/5320\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 108}, "url": "/Future-proofed/emulation_interface_demand-driven_Multi-tiered.php", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "42.102.29.208"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "42.102.29.208 - - [19/Jun/2023:16:59:06 +0000] \"GET /bi-directional.svg HTTP/1.1\" 200 2266 \"-\" \"Mozilla/5.0 (Windows NT 5.2; en-US; rv:1.9.3.20) Gecko/1906-26-09 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2266}, "url": "/bi-directional.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "205.47.101.161"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "205.47.101.161 - - [19/Jun/2023:16:59:06 +0000] \"GET /bottom-line.php HTTP/1.1\" 200 2463 \"-\" \"Mozilla/5.0 (Windows 98) AppleWebKit/5331 (KHTML, like Gecko) Chrome/37.0.842.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2463}, "url": "/bottom-line.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "182.150.203.101"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "182.150.203.101 - - [19/Jun/2023:16:59:06 +0000] \"GET /Visionary/Quality-focused-Right-sized/migration/architecture.png HTTP/1.1\" 200 1898 \"-\" \"Opera/8.96 (X11; Linux x86_64; en-US) Presto/2.8.172 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1898}, "url": "/Visionary/Quality-focused-Right-sized/migration/architecture.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "61.207.94.219"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "61.207.94.219 - - [19/Jun/2023:16:59:06 +0000] \"GET /Public-key/De-engineered.svg HTTP/1.1\" 301 111 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_8_1) AppleWebKit/5330 (KHTML, like Gecko) Chrome/40.0.821.0 Mobile Safari/5330\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 111}, "url": "/Public-key/De-engineered.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "202.126.39.165"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "202.126.39.165 - - [19/Jun/2023:16:59:06 +0000] \"HEAD /Front-line/content-based/background.png HTTP/1.1\" 200 2290 \"-\" \"Opera/8.18 (Windows NT 5.2; en-US) Presto/2.11.333 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2290}, "url": "/Front-line/content-based/background.png", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "144.167.3.90"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "144.167.3.90 - - [19/Jun/2023:16:59:06 +0000] \"GET /access_Multi-layered/Persevering/forecast-Business-focused.hmtl HTTP/1.1\" 200 1223 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 7_2_2 like Mac OS X; en-US) AppleWebKit/536.7.5 (KHTML, like Gecko) Version/4.0.5 Mobile/8B117 Safari/6536.7.5\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1223}, "url": "/access_Multi-layered/Persevering/forecast-Business-focused.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "70.111.196.90"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "70.111.196.90 - - [19/Jun/2023:16:59:06 +0000] \"GET /middleware.jpg HTTP/1.1\" 500 37 \"-\" \"Opera/9.70 (X11; Linux i686; en-US) Presto/2.9.164 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 37}, "url": "/middleware.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "104.145.155.254"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "104.145.155.254 - - [19/Jun/2023:16:59:06 +0000] \"GET /actuating-Triple-buffered-Sharable%20Balanced.css HTTP/1.1\" 200 1485 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5322 (KHTML, like Gecko) Chrome/36.0.824.0 Mobile Safari/5322\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1485}, "url": "/actuating-Triple-buffered-Sharable%20Balanced.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "57.175.25.24"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "57.175.25.24 - - [19/Jun/2023:16:59:06 +0000] \"PUT /encryption-structure_archive.php HTTP/1.1\" 302 33 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_6 rv:2.0) Gecko/1973-09-06 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 33}, "url": "/encryption-structure_archive.php", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "227.129.64.30"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "227.129.64.30 - - [19/Jun/2023:16:59:06 +0000] \"GET /synergy.hmtl HTTP/1.1\" 302 71 \"-\" \"Mozilla/5.0 (iPad; CPU OS 9_1_2 like Mac OS X; en-US) AppleWebKit/531.50.6 (KHTML, like Gecko) Version/3.0.5 Mobile/8B113 Safari/6531.50.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 71}, "url": "/synergy.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "128.89.53.57"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "128.89.53.57 - - [19/Jun/2023:16:59:06 +0000] \"POST /zero%20administration.hmtl HTTP/1.1\" 200 2668 \"-\" \"Opera/10.19 (X11; Linux x86_64; en-US) Presto/2.13.232 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2668}, "url": "/zero%20administration.hmtl", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "17.129.40.252"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "17.129.40.252 - - [19/Jun/2023:16:59:06 +0000] \"GET /neural-net/upward-trending/system-worthy.htm HTTP/1.1\" 200 1856 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:6.0) Gecko/1944-04-02 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1856}, "url": "/neural-net/upward-trending/system-worthy.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "38.171.186.202"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "38.171.186.202 - - [19/Jun/2023:16:59:06 +0000] \"GET /leading%20edge.svg HTTP/1.1\" 200 1123 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_9) AppleWebKit/5321 (KHTML, like Gecko) Chrome/38.0.812.0 Mobile Safari/5321\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1123}, "url": "/leading%20edge.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "244.153.133.249"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "244.153.133.249 - - [19/Jun/2023:16:59:06 +0000] \"GET /internet%20solution%20Secured_process%20improvement.svg HTTP/1.1\" 404 83 \"-\" \"Mozilla/5.0 (Windows 98) AppleWebKit/5330 (KHTML, like Gecko) Chrome/36.0.890.0 Mobile Safari/5330\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 83}, "url": "/internet%20solution%20Secured_process%20improvement.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "41.78.214.119"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "41.78.214.119 - - [19/Jun/2023:16:59:06 +0000] \"HEAD /Visionary/Ergonomic/parallelism/Graphic%20Interface/Innovative.jpg HTTP/1.1\" 200 1033 \"-\" \"Opera/10.55 (Macintosh; U; PPC Mac OS X 10_7_7; en-US) Presto/2.9.253 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1033}, "url": "/Visionary/Ergonomic/parallelism/Graphic%20Interface/Innovative.jpg", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "83.216.208.82"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "83.216.208.82 - - [19/Jun/2023:16:59:06 +0000] \"GET /implementation/Vision-oriented.png HTTP/1.1\" 200 1551 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_8_3 rv:7.0; en-US) AppleWebKit/533.35.5 (KHTML, like Gecko) Version/4.1 Safari/533.35.5\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1551}, "url": "/implementation/Vision-oriented.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "167.14.35.66"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "167.14.35.66 - - [19/Jun/2023:16:59:06 +0000] \"GET /6th%20generation/Cross-platform-Secured%20object-oriented.htm HTTP/1.1\" 200 1482 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_6) AppleWebKit/5330 (KHTML, like Gecko) Chrome/40.0.869.0 Mobile Safari/5330\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1482}, "url": "/6th%20generation/Cross-platform-Secured%20object-oriented.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "133.91.109.191"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "133.91.109.191 - - [19/Jun/2023:16:59:06 +0000] \"GET /exuding/Reverse-engineered-Automated-productivity/Expanded.htm HTTP/1.1\" 400 72 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5350 (KHTML, like Gecko) Chrome/38.0.874.0 Mobile Safari/5350\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 72}, "url": "/exuding/Reverse-engineered-Automated-productivity/Expanded.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "240.153.240.49"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "240.153.240.49 - - [19/Jun/2023:16:59:06 +0000] \"PATCH /User-centric/grid-enabled.gif HTTP/1.1\" 200 2817 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5320 (KHTML, like Gecko) Chrome/39.0.896.0 Mobile Safari/5320\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2817}, "url": "/User-centric/grid-enabled.gif", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "67.19.81.136"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "67.19.81.136 - - [19/Jun/2023:16:59:06 +0000] \"GET /Business-focused-Cross-platform/Distributed/standardization/disintermediate.svg HTTP/1.1\" 200 2164 \"-\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/5322 (KHTML, like Gecko) Chrome/38.0.845.0 Mobile Safari/5322\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2164}, "url": "/Business-focused-Cross-platform/Distributed/standardization/disintermediate.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "120.157.112.166"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "120.157.112.166 - - [19/Jun/2023:16:59:06 +0000] \"PUT /info-mediaries/logistical%20Advanced.jpg HTTP/1.1\" 200 1415 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:8.0) Gecko/1941-12-06 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1415}, "url": "/info-mediaries/logistical%20Advanced.jpg", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "156.62.219.151"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "156.62.219.151 - - [19/Jun/2023:16:59:06 +0000] \"PUT /firmware_national.js HTTP/1.1\" 200 885 \"-\" \"Mozilla/5.0 (iPad; CPU OS 8_0_1 like Mac OS X; en-US) AppleWebKit/532.15.8 (KHTML, like Gecko) Version/4.0.5 Mobile/8B112 Safari/6532.15.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 885}, "url": "/firmware_national.js", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "203.142.246.25"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "203.142.246.25 - - [19/Jun/2023:16:59:06 +0000] \"POST /ability/homogeneous-info-mediaries.hmtl HTTP/1.1\" 200 2027 \"-\" \"Opera/8.46 (Windows NT 5.01; en-US) Presto/2.11.239 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2027}, "url": "/ability/homogeneous-info-mediaries.hmtl", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "24.128.161.105"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "24.128.161.105 - - [19/Jun/2023:16:59:06 +0000] \"GET /Enhanced.svg HTTP/1.1\" 200 1745 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:6.0) Gecko/2020-04-02 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1745}, "url": "/Enhanced.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "96.16.185.173"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "96.16.185.173 - - [19/Jun/2023:16:59:06 +0000] \"POST /Seamless/web-enabled-needs-based.svg HTTP/1.1\" 200 1990 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.0) AppleWebKit/536.18.5 (KHTML, like Gecko) Version/4.0 Safari/536.18.5\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1990}, "url": "/Seamless/web-enabled-needs-based.svg", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "160.34.130.230"}}, "@timestamp": "2023-06-19T16:59:06.000Z", "observedTimestamp": "2023-06-19T16:59:06.000Z", "body": "160.34.130.230 - - [19/Jun/2023:16:59:06 +0000] \"GET /stable/Proactive.js HTTP/1.1\" 200 1475 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_4) AppleWebKit/5352 (KHTML, like Gecko) Chrome/38.0.889.0 Mobile Safari/5352\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1475}, "url": "/stable/Proactive.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "91.104.81.235"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "91.104.81.235 - - [19/Jun/2023:16:59:07 +0000] \"HEAD /motivating-definition_User-friendly%20Public-key%20Innovative.svg HTTP/1.1\" 200 1980 \"-\" \"Mozilla/5.0 (Windows; U; Windows 98) AppleWebKit/531.48.7 (KHTML, like Gecko) Version/4.1 Safari/531.48.7\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1980}, "url": "/motivating-definition_User-friendly%20Public-key%20Innovative.svg", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "120.37.212.92"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "120.37.212.92 - - [19/Jun/2023:16:59:07 +0000] \"GET /solution-oriented.php HTTP/1.1\" 200 3070 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.2) AppleWebKit/533.45.2 (KHTML, like Gecko) Version/4.1 Safari/533.45.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3070}, "url": "/solution-oriented.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "67.183.222.84"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "67.183.222.84 - - [19/Jun/2023:16:59:07 +0000] \"POST /Devolved/Operative.php HTTP/1.1\" 200 1980 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_9_10) AppleWebKit/5361 (KHTML, like Gecko) Chrome/38.0.806.0 Mobile Safari/5361\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1980}, "url": "/Devolved/Operative.php", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "19.6.162.158"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "19.6.162.158 - - [19/Jun/2023:16:59:07 +0000] \"HEAD /Adaptive.gif HTTP/1.1\" 200 1642 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_6_4 rv:4.0) Gecko/1989-14-08 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1642}, "url": "/Adaptive.gif", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "54.86.39.47"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "54.86.39.47 - - [19/Jun/2023:16:59:07 +0000] \"GET /systematic%20demand-driven-Intuitive/moderator.svg HTTP/1.1\" 200 1084 \"-\" \"Mozilla/5.0 (Windows 95; en-US; rv:1.9.2.20) Gecko/1980-28-06 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1084}, "url": "/systematic%20demand-driven-Intuitive/moderator.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "54.117.138.240"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "54.117.138.240 - - [19/Jun/2023:16:59:07 +0000] \"GET /portal.png HTTP/1.1\" 200 1295 \"-\" \"Mozilla/5.0 (Windows NT 5.01) AppleWebKit/5340 (KHTML, like Gecko) Chrome/38.0.861.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1295}, "url": "/portal.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "103.20.47.181"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "103.20.47.181 - - [19/Jun/2023:16:59:07 +0000] \"GET /solution_disintermediate%20dedicated%20data-warehouse.svg HTTP/1.1\" 200 1590 \"-\" \"Opera/10.58 (X11; Linux i686; en-US) Presto/2.13.340 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1590}, "url": "/solution_disintermediate%20dedicated%20data-warehouse.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "95.68.182.195"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "95.68.182.195 - - [19/Jun/2023:16:59:07 +0000] \"HEAD /Universal_knowledge%20base/Managed-info-mediaries.hmtl HTTP/1.1\" 200 1724 \"-\" \"Mozilla/5.0 (Windows NT 5.01; en-US; rv:1.9.1.20) Gecko/1988-07-09 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1724}, "url": "/Universal_knowledge%20base/Managed-info-mediaries.hmtl", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "4.244.59.135"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "4.244.59.135 - - [19/Jun/2023:16:59:07 +0000] \"GET /tangible.hmtl HTTP/1.1\" 200 2783 \"-\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/5360 (KHTML, like Gecko) Chrome/37.0.896.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2783}, "url": "/tangible.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "72.18.69.204"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "72.18.69.204 - - [19/Jun/2023:16:59:07 +0000] \"GET /fault-tolerant%20Balanced.css HTTP/1.1\" 302 65 \"-\" \"Mozilla/5.0 (Windows NT 5.0; en-US; rv:1.9.1.20) Gecko/2003-13-02 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 65}, "url": "/fault-tolerant%20Balanced.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "193.230.151.132"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "193.230.151.132 - - [19/Jun/2023:16:59:07 +0000] \"POST /Versatile.htm HTTP/1.1\" 200 2156 \"-\" \"Mozilla/5.0 (Windows NT 4.0; en-US; rv:1.9.0.20) Gecko/1971-19-08 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2156}, "url": "/Versatile.htm", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "10.128.155.236"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "10.128.155.236 - - [19/Jun/2023:16:59:07 +0000] \"HEAD /approach-Open-architected-coherent/background.css HTTP/1.1\" 200 2189 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_8_9 rv:6.0; en-US) AppleWebKit/536.31.7 (KHTML, like Gecko) Version/5.2 Safari/536.31.7\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2189}, "url": "/approach-Open-architected-coherent/background.css", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "54.118.230.103"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "54.118.230.103 - - [19/Jun/2023:16:59:07 +0000] \"GET /Secured/solution-oriented.htm HTTP/1.1\" 200 1346 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5362 (KHTML, like Gecko) Chrome/36.0.846.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1346}, "url": "/Secured/solution-oriented.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "237.129.156.162"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "237.129.156.162 - - [19/Jun/2023:16:59:07 +0000] \"PUT /pricing%20structure-coherent_object-oriented.php HTTP/1.1\" 200 1965 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5331 (KHTML, like Gecko) Chrome/38.0.893.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1965}, "url": "/pricing%20structure-coherent_object-oriented.php", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "191.244.25.84"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "191.244.25.84 - - [19/Jun/2023:16:59:07 +0000] \"GET /info-mediaries.hmtl HTTP/1.1\" 400 81 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_7) AppleWebKit/5332 (KHTML, like Gecko) Chrome/39.0.863.0 Mobile Safari/5332\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 81}, "url": "/info-mediaries.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "57.172.220.163"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "57.172.220.163 - - [19/Jun/2023:16:59:07 +0000] \"GET /neural-net/well-modulated/info-mediaries-Assimilated-leading%20edge.jpg HTTP/1.1\" 200 2659 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5321 (KHTML, like Gecko) Chrome/37.0.805.0 Mobile Safari/5321\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2659}, "url": "/neural-net/well-modulated/info-mediaries-Assimilated-leading%20edge.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "6.108.45.66"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "6.108.45.66 - - [19/Jun/2023:16:59:07 +0000] \"GET /circuit/Exclusive.htm HTTP/1.1\" 200 1701 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1) AppleWebKit/533.19.3 (KHTML, like Gecko) Version/4.2 Safari/533.19.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1701}, "url": "/circuit/Exclusive.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "184.205.184.150"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "184.205.184.150 - - [19/Jun/2023:16:59:07 +0000] \"POST /exuding-Re-contextualized/upward-trending.css HTTP/1.1\" 200 1395 \"-\" \"Mozilla/5.0 (Windows 98) AppleWebKit/5322 (KHTML, like Gecko) Chrome/38.0.865.0 Mobile Safari/5322\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1395}, "url": "/exuding-Re-contextualized/upward-trending.css", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "217.141.178.85"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "217.141.178.85 - - [19/Jun/2023:16:59:07 +0000] \"GET /Reduced.js HTTP/1.1\" 200 1354 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:7.0) Gecko/1922-15-12 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1354}, "url": "/Reduced.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "175.39.140.41"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "175.39.140.41 - - [19/Jun/2023:16:59:07 +0000] \"GET /Expanded/portal-5th%20generation/clear-thinking.hmtl HTTP/1.1\" 200 1239 \"-\" \"Opera/9.96 (Macintosh; Intel Mac OS X 10_6_4; en-US) Presto/2.11.190 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1239}, "url": "/Expanded/portal-5th%20generation/clear-thinking.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "221.168.255.218"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "221.168.255.218 - - [19/Jun/2023:16:59:07 +0000] \"GET /Vision-oriented.js HTTP/1.1\" 301 78 \"-\" \"Opera/10.96 (Windows NT 4.0; en-US) Presto/2.13.303 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 78}, "url": "/Vision-oriented.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "99.224.141.41"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "99.224.141.41 - - [19/Jun/2023:16:59:07 +0000] \"GET /Mandatory%20Streamlined/modular-Versatile-neutral.php HTTP/1.1\" 400 59 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_5_0) AppleWebKit/5360 (KHTML, like Gecko) Chrome/40.0.868.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 59}, "url": "/Mandatory%20Streamlined/modular-Versatile-neutral.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "92.223.110.57"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "92.223.110.57 - - [19/Jun/2023:16:59:07 +0000] \"PUT /mission-critical/Robust.svg HTTP/1.1\" 200 1734 \"-\" \"Mozilla/5.0 (Windows NT 5.2; en-US; rv:1.9.1.20) Gecko/1951-16-12 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1734}, "url": "/mission-critical/Robust.svg", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "187.30.196.224"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "187.30.196.224 - - [19/Jun/2023:16:59:07 +0000] \"DELETE /neutral.gif HTTP/1.1\" 200 2466 \"-\" \"Mozilla/5.0 (Windows CE) AppleWebKit/5352 (KHTML, like Gecko) Chrome/37.0.819.0 Mobile Safari/5352\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2466}, "url": "/neutral.gif", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "84.14.126.98"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "84.14.126.98 - - [19/Jun/2023:16:59:07 +0000] \"GET /Business-focused/Devolved.gif HTTP/1.1\" 200 2518 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/5331 (KHTML, like Gecko) Chrome/39.0.860.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2518}, "url": "/Business-focused/Devolved.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "107.80.19.163"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "107.80.19.163 - - [19/Jun/2023:16:59:07 +0000] \"GET /responsive/help-desk/Managed.hmtl HTTP/1.1\" 200 2415 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.2) AppleWebKit/531.39.8 (KHTML, like Gecko) Version/6.0 Safari/531.39.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2415}, "url": "/responsive/help-desk/Managed.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "70.214.6.190"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "70.214.6.190 - - [19/Jun/2023:16:59:07 +0000] \"PATCH /Ergonomic/installation.jpg HTTP/1.1\" 200 2675 \"-\" \"Opera/8.35 (X11; Linux i686; en-US) Presto/2.10.215 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2675}, "url": "/Ergonomic/installation.jpg", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "216.216.43.205"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "216.216.43.205 - - [19/Jun/2023:16:59:07 +0000] \"PATCH /User-friendly/Distributed-actuating-synergy.js HTTP/1.1\" 302 63 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5362 (KHTML, like Gecko) Chrome/36.0.848.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 63}, "url": "/User-friendly/Distributed-actuating-synergy.js", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "192.141.14.254"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "192.141.14.254 - - [19/Jun/2023:16:59:07 +0000] \"GET /customer%20loyalty/alliance/product%20core.js HTTP/1.1\" 200 2714 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_6) AppleWebKit/5350 (KHTML, like Gecko) Chrome/39.0.865.0 Mobile Safari/5350\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2714}, "url": "/customer%20loyalty/alliance/product%20core.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "38.140.70.250"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "38.140.70.250 - - [19/Jun/2023:16:59:07 +0000] \"PUT /exuding/moratorium/contextually-based-incremental.png HTTP/1.1\" 200 2155 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5310 (KHTML, like Gecko) Chrome/36.0.867.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2155}, "url": "/exuding/moratorium/contextually-based-incremental.png", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "5.63.35.147"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "5.63.35.147 - - [19/Jun/2023:16:59:07 +0000] \"GET /Automated/paradigm%20cohesive/exuding/intranet.css HTTP/1.1\" 302 57 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5351 (KHTML, like Gecko) Chrome/39.0.839.0 Mobile Safari/5351\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 57}, "url": "/Automated/paradigm%20cohesive/exuding/intranet.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "234.131.59.83"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "234.131.59.83 - - [19/Jun/2023:16:59:07 +0000] \"POST /functionalities/synergy.jpg HTTP/1.1\" 200 2167 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_4) AppleWebKit/5310 (KHTML, like Gecko) Chrome/40.0.866.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2167}, "url": "/functionalities/synergy.jpg", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "227.179.109.210"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "227.179.109.210 - - [19/Jun/2023:16:59:07 +0000] \"GET /software-Innovative-scalable-paradigm.css HTTP/1.1\" 200 2078 \"-\" \"Opera/8.74 (Windows NT 5.2; en-US) Presto/2.12.225 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2078}, "url": "/software-Innovative-scalable-paradigm.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "117.140.211.99"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "117.140.211.99 - - [19/Jun/2023:16:59:07 +0000] \"GET /demand-driven_human-resource/upward-trending.gif HTTP/1.1\" 200 3025 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:7.0) Gecko/1973-08-07 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3025}, "url": "/demand-driven_human-resource/upward-trending.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "10.98.187.105"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "10.98.187.105 - - [19/Jun/2023:16:59:07 +0000] \"GET /function.js HTTP/1.1\" 404 63 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/5342 (KHTML, like Gecko) Chrome/39.0.860.0 Mobile Safari/5342\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 63}, "url": "/function.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "199.174.192.71"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "199.174.192.71 - - [19/Jun/2023:16:59:07 +0000] \"DELETE /customer%20loyalty_responsive%20Profound.gif HTTP/1.1\" 200 1795 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_3 rv:6.0; en-US) AppleWebKit/533.1.4 (KHTML, like Gecko) Version/4.0 Safari/533.1.4\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1795}, "url": "/customer%20loyalty_responsive%20Profound.gif", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "29.108.188.17"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "29.108.188.17 - - [19/Jun/2023:16:59:07 +0000] \"PATCH /Re-engineered_radical%20Implemented/empowering_zero%20administration.gif HTTP/1.1\" 404 68 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5311 (KHTML, like Gecko) Chrome/39.0.868.0 Mobile Safari/5311\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 68}, "url": "/Re-engineered_radical%20Implemented/empowering_zero%20administration.gif", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "187.112.71.220"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "187.112.71.220 - - [19/Jun/2023:16:59:07 +0000] \"GET /conglomeration/product/Expanded/access.gif HTTP/1.1\" 200 1513 \"-\" \"Mozilla/5.0 (Windows NT 6.2; en-US; rv:1.9.2.20) Gecko/1967-22-11 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1513}, "url": "/conglomeration/product/Expanded/access.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "250.6.64.154"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "250.6.64.154 - - [19/Jun/2023:16:59:07 +0000] \"PUT /background-Focused_definition-alliance.jpg HTTP/1.1\" 400 49 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5 rv:6.0; en-US) AppleWebKit/532.24.7 (KHTML, like Gecko) Version/5.0 Safari/532.24.7\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 49}, "url": "/background-Focused_definition-alliance.jpg", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "254.12.17.174"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "254.12.17.174 - - [19/Jun/2023:16:59:07 +0000] \"GET /multi-tasking%20focus%20group-customer%20loyalty_Down-sized.php HTTP/1.1\" 200 2826 \"-\" \"Mozilla/5.0 (Windows 98) AppleWebKit/5361 (KHTML, like Gecko) Chrome/39.0.801.0 Mobile Safari/5361\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2826}, "url": "/multi-tasking%20focus%20group-customer%20loyalty_Down-sized.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "231.102.70.32"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "231.102.70.32 - - [19/Jun/2023:16:59:07 +0000] \"PATCH /Virtual%20Persistent/circuit/Profound_maximized.php HTTP/1.1\" 200 2638 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_3_3 like Mac OS X; en-US) AppleWebKit/535.20.7 (KHTML, like Gecko) Version/4.0.5 Mobile/8B119 Safari/6535.20.7\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2638}, "url": "/Virtual%20Persistent/circuit/Profound_maximized.php", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "193.115.51.252"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "193.115.51.252 - - [19/Jun/2023:16:59:07 +0000] \"PUT /Fully-configurable-model/open%20architecture-service-desk.php HTTP/1.1\" 200 2527 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 7_0_3 like Mac OS X; en-US) AppleWebKit/534.22.4 (KHTML, like Gecko) Version/3.0.5 Mobile/8B116 Safari/6534.22.4\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2527}, "url": "/Fully-configurable-model/open%20architecture-service-desk.php", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "127.131.68.0"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "127.131.68.0 - - [19/Jun/2023:16:59:07 +0000] \"GET /hub/complexity.hmtl HTTP/1.1\" 200 992 \"-\" \"Opera/8.50 (Macintosh; PPC Mac OS X 10_7_8; en-US) Presto/2.10.354 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 992}, "url": "/hub/complexity.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "38.83.131.166"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "38.83.131.166 - - [19/Jun/2023:16:59:07 +0000] \"GET /Realigned-function-Grass-roots/project/zero%20defect.gif HTTP/1.1\" 200 1719 \"-\" \"Mozilla/5.0 (Windows NT 5.0) AppleWebKit/5330 (KHTML, like Gecko) Chrome/36.0.864.0 Mobile Safari/5330\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1719}, "url": "/Realigned-function-Grass-roots/project/zero%20defect.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "204.240.249.164"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "204.240.249.164 - - [19/Jun/2023:16:59:07 +0000] \"POST /Synchronised-monitoring/dynamic/bottom-line/Networked.js HTTP/1.1\" 400 55 \"-\" \"Opera/10.35 (X11; Linux x86_64; en-US) Presto/2.11.246 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 55}, "url": "/Synchronised-monitoring/dynamic/bottom-line/Networked.js", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "229.90.111.112"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "229.90.111.112 - - [19/Jun/2023:16:59:07 +0000] \"POST /User-centric/Managed/Proactive/homogeneous/uniform.php HTTP/1.1\" 200 2522 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5321 (KHTML, like Gecko) Chrome/38.0.836.0 Mobile Safari/5321\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2522}, "url": "/User-centric/Managed/Proactive/homogeneous/uniform.php", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "5.164.107.1"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "5.164.107.1 - - [19/Jun/2023:16:59:07 +0000] \"PUT /heuristic-algorithm/architecture-Sharable/info-mediaries.jpg HTTP/1.1\" 200 875 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_5) AppleWebKit/5351 (KHTML, like Gecko) Chrome/39.0.803.0 Mobile Safari/5351\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 875}, "url": "/heuristic-algorithm/architecture-Sharable/info-mediaries.jpg", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "175.178.123.193"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "175.178.123.193 - - [19/Jun/2023:16:59:07 +0000] \"GET /asynchronous-knowledge%20base/disintermediate.png HTTP/1.1\" 200 1729 \"-\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/5332 (KHTML, like Gecko) Chrome/37.0.819.0 Mobile Safari/5332\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1729}, "url": "/asynchronous-knowledge%20base/disintermediate.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "203.104.34.0"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "203.104.34.0 - - [19/Jun/2023:16:59:07 +0000] \"PUT /installation%20concept.gif HTTP/1.1\" 200 2393 \"-\" \"Opera/9.64 (X11; Linux i686; en-US) Presto/2.10.262 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2393}, "url": "/installation%20concept.gif", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "5.251.184.50"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "5.251.184.50 - - [19/Jun/2023:16:59:07 +0000] \"GET /web-enabled/policy.htm HTTP/1.1\" 301 41 \"-\" \"Opera/9.86 (X11; Linux x86_64; en-US) Presto/2.8.173 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 41}, "url": "/web-enabled/policy.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "254.103.187.217"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "254.103.187.217 - - [19/Jun/2023:16:59:07 +0000] \"GET /Graphical%20User%20Interface_leverage/application-Enterprise-wide/intranet.js HTTP/1.1\" 200 2126 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_7 rv:5.0; en-US) AppleWebKit/533.12.7 (KHTML, like Gecko) Version/6.1 Safari/533.12.7\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2126}, "url": "/Graphical%20User%20Interface_leverage/application-Enterprise-wide/intranet.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "66.167.191.204"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "66.167.191.204 - - [19/Jun/2023:16:59:07 +0000] \"PUT /encoding-migration-even-keeled.png HTTP/1.1\" 200 2946 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:5.0) Gecko/2003-01-06 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2946}, "url": "/encoding-migration-even-keeled.png", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "151.190.63.83"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "151.190.63.83 - - [19/Jun/2023:16:59:07 +0000] \"GET /Total-methodology%20secondary-middleware.png HTTP/1.1\" 200 816 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5340 (KHTML, like Gecko) Chrome/38.0.878.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 816}, "url": "/Total-methodology%20secondary-middleware.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "57.54.145.27"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "57.54.145.27 - - [19/Jun/2023:16:59:07 +0000] \"HEAD /parallelism.svg HTTP/1.1\" 302 41 \"-\" \"Mozilla/5.0 (Windows NT 4.0) AppleWebKit/5332 (KHTML, like Gecko) Chrome/40.0.835.0 Mobile Safari/5332\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 41}, "url": "/parallelism.svg", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "143.64.6.25"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "143.64.6.25 - - [19/Jun/2023:16:59:07 +0000] \"POST /Polarised%20Synchronised.svg HTTP/1.1\" 200 2969 \"-\" \"Opera/10.59 (X11; Linux i686; en-US) Presto/2.10.198 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2969}, "url": "/Polarised%20Synchronised.svg", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "233.86.45.128"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "233.86.45.128 - - [19/Jun/2023:16:59:07 +0000] \"GET /Streamlined-monitoring/emulation.jpg HTTP/1.1\" 200 1245 \"-\" \"Opera/10.17 (Windows NT 5.0; en-US) Presto/2.12.177 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1245}, "url": "/Streamlined-monitoring/emulation.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "217.213.216.93"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "217.213.216.93 - - [19/Jun/2023:16:59:07 +0000] \"GET /systemic/groupware-contextually-based-encoding.png HTTP/1.1\" 200 2829 \"-\" \"Mozilla/5.0 (Windows; U; Windows CE) AppleWebKit/535.13.4 (KHTML, like Gecko) Version/4.1 Safari/535.13.4\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2829}, "url": "/systemic/groupware-contextually-based-encoding.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "229.75.191.235"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "229.75.191.235 - - [19/Jun/2023:16:59:07 +0000] \"GET /matrices-Centralized/internet%20solution.htm HTTP/1.1\" 200 2302 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_8 rv:5.0; en-US) AppleWebKit/535.32.6 (KHTML, like Gecko) Version/5.1 Safari/535.32.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2302}, "url": "/matrices-Centralized/internet%20solution.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "202.57.52.114"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "202.57.52.114 - - [19/Jun/2023:16:59:07 +0000] \"GET /empowering-Seamless-Persevering.js HTTP/1.1\" 200 1571 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_2 like Mac OS X; en-US) AppleWebKit/533.49.7 (KHTML, like Gecko) Version/4.0.5 Mobile/8B112 Safari/6533.49.7\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1571}, "url": "/empowering-Seamless-Persevering.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "239.111.178.124"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "239.111.178.124 - - [19/Jun/2023:16:59:07 +0000] \"PATCH /migration-next%20generation/Grass-roots/framework-Exclusive.png HTTP/1.1\" 400 78 \"-\" \"Mozilla/5.0 (Windows NT 5.2) AppleWebKit/5320 (KHTML, like Gecko) Chrome/38.0.870.0 Mobile Safari/5320\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 78}, "url": "/migration-next%20generation/Grass-roots/framework-Exclusive.png", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "208.72.51.138"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "208.72.51.138 - - [19/Jun/2023:16:59:07 +0000] \"GET /Cross-group-Seamless/zero%20tolerance.jpg HTTP/1.1\" 200 1227 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5340 (KHTML, like Gecko) Chrome/37.0.823.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1227}, "url": "/Cross-group-Seamless/zero%20tolerance.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "250.67.201.40"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "250.67.201.40 - - [19/Jun/2023:16:59:07 +0000] \"PUT /neural-net/stable/tangible.jpg HTTP/1.1\" 200 2969 \"-\" \"Mozilla/5.0 (Windows NT 6.2) AppleWebKit/5340 (KHTML, like Gecko) Chrome/38.0.860.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2969}, "url": "/neural-net/stable/tangible.jpg", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "245.39.136.28"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "245.39.136.28 - - [19/Jun/2023:16:59:07 +0000] \"GET /website/support_moderator.jpg HTTP/1.1\" 400 45 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.01) AppleWebKit/531.47.7 (KHTML, like Gecko) Version/4.0 Safari/531.47.7\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 45}, "url": "/website/support_moderator.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "43.97.93.223"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "43.97.93.223 - - [19/Jun/2023:16:59:07 +0000] \"GET /well-modulated%20background_data-warehouse.js HTTP/1.1\" 404 102 \"-\" \"Opera/9.10 (Windows 98; Win 9x 4.90; en-US) Presto/2.12.355 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 102}, "url": "/well-modulated%20background_data-warehouse.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "227.217.55.95"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "227.217.55.95 - - [19/Jun/2023:16:59:07 +0000] \"GET /utilisation%20real-time-eco-centric-Synergistic/leading%20edge.css HTTP/1.1\" 200 2436 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_8_1 rv:6.0) Gecko/1992-23-07 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2436}, "url": "/utilisation%20real-time-eco-centric-Synergistic/leading%20edge.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "179.2.24.216"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "179.2.24.216 - - [19/Jun/2023:16:59:07 +0000] \"DELETE /parallelism%20focus%20group/moratorium.js HTTP/1.1\" 200 885 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_8_10) AppleWebKit/5351 (KHTML, like Gecko) Chrome/37.0.850.0 Mobile Safari/5351\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 885}, "url": "/parallelism%20focus%20group/moratorium.js", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "52.121.173.22"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "52.121.173.22 - - [19/Jun/2023:16:59:07 +0000] \"PATCH /approach/hybrid/matrix-6th%20generation.js HTTP/1.1\" 200 1644 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_9) AppleWebKit/5331 (KHTML, like Gecko) Chrome/37.0.812.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1644}, "url": "/approach/hybrid/matrix-6th%20generation.js", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "9.227.246.199"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "9.227.246.199 - - [19/Jun/2023:16:59:07 +0000] \"GET /superstructure%20leading%20edge.htm HTTP/1.1\" 200 2250 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_7_5 rv:3.0) Gecko/1963-03-02 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2250}, "url": "/superstructure%20leading%20edge.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "168.4.15.25"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "168.4.15.25 - - [19/Jun/2023:16:59:07 +0000] \"GET /intranet.js HTTP/1.1\" 200 1074 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_5_3 rv:7.0; en-US) AppleWebKit/532.27.6 (KHTML, like Gecko) Version/6.2 Safari/532.27.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1074}, "url": "/intranet.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "202.170.34.136"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "202.170.34.136 - - [19/Jun/2023:16:59:07 +0000] \"GET /Quality-focused/Persistent_capacity.png HTTP/1.1\" 200 1354 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5351 (KHTML, like Gecko) Chrome/39.0.857.0 Mobile Safari/5351\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1354}, "url": "/Quality-focused/Persistent_capacity.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "230.45.88.181"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "230.45.88.181 - - [19/Jun/2023:16:59:07 +0000] \"GET /methodical.css HTTP/1.1\" 200 1664 \"-\" \"Mozilla/5.0 (Windows NT 5.1; en-US; rv:1.9.0.20) Gecko/2022-24-01 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1664}, "url": "/methodical.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "136.212.23.30"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "136.212.23.30 - - [19/Jun/2023:16:59:07 +0000] \"GET /analyzer_Networked_needs-based/Streamlined.gif HTTP/1.1\" 200 1377 \"-\" \"Mozilla/5.0 (iPad; CPU OS 9_0_3 like Mac OS X; en-US) AppleWebKit/536.21.3 (KHTML, like Gecko) Version/5.0.5 Mobile/8B119 Safari/6536.21.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1377}, "url": "/analyzer_Networked_needs-based/Streamlined.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "153.221.109.163"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "153.221.109.163 - - [19/Jun/2023:16:59:07 +0000] \"GET /Optimized-benchmark/non-volatile.png HTTP/1.1\" 200 2468 \"-\" \"Mozilla/5.0 (Windows NT 5.0) AppleWebKit/5332 (KHTML, like Gecko) Chrome/40.0.860.0 Mobile Safari/5332\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2468}, "url": "/Optimized-benchmark/non-volatile.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "53.211.87.32"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "53.211.87.32 - - [19/Jun/2023:16:59:07 +0000] \"GET /full-range_User-friendly.hmtl HTTP/1.1\" 302 106 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_6_0 rv:2.0) Gecko/1909-07-05 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 106}, "url": "/full-range_User-friendly.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "4.196.140.97"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "4.196.140.97 - - [19/Jun/2023:16:59:07 +0000] \"GET /De-engineered/Up-sized_Persevering-parallelism-Pre-emptive.jpg HTTP/1.1\" 200 2769 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5340 (KHTML, like Gecko) Chrome/39.0.862.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2769}, "url": "/De-engineered/Up-sized_Persevering-parallelism-Pre-emptive.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "174.44.146.214"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "174.44.146.214 - - [19/Jun/2023:16:59:07 +0000] \"PUT /concept/customer%20loyalty/systematic%20extranet.php HTTP/1.1\" 200 1665 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_8 rv:4.0; en-US) AppleWebKit/534.36.2 (KHTML, like Gecko) Version/6.0 Safari/534.36.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1665}, "url": "/concept/customer%20loyalty/systematic%20extranet.php", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "76.157.203.55"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "76.157.203.55 - - [19/Jun/2023:16:59:07 +0000] \"DELETE /process%20improvement_Fundamental.php HTTP/1.1\" 302 114 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5321 (KHTML, like Gecko) Chrome/39.0.871.0 Mobile Safari/5321\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 114}, "url": "/process%20improvement_Fundamental.php", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "109.37.191.201"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "109.37.191.201 - - [19/Jun/2023:16:59:07 +0000] \"GET /Optional-circuit.svg HTTP/1.1\" 200 853 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:7.0) Gecko/1932-02-09 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 853}, "url": "/Optional-circuit.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "64.76.4.223"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "64.76.4.223 - - [19/Jun/2023:16:59:07 +0000] \"PATCH /even-keeled-implementation.jpg HTTP/1.1\" 200 1965 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5322 (KHTML, like Gecko) Chrome/38.0.806.0 Mobile Safari/5322\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1965}, "url": "/even-keeled-implementation.jpg", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "233.164.107.241"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "233.164.107.241 - - [19/Jun/2023:16:59:07 +0000] \"GET /Synergistic-Expanded.css HTTP/1.1\" 302 110 \"-\" \"Mozilla/5.0 (Windows NT 6.0) AppleWebKit/5332 (KHTML, like Gecko) Chrome/40.0.890.0 Mobile Safari/5332\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 110}, "url": "/Synergistic-Expanded.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "149.164.148.120"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "149.164.148.120 - - [19/Jun/2023:16:59:07 +0000] \"GET /leverage.css HTTP/1.1\" 500 114 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5352 (KHTML, like Gecko) Chrome/37.0.815.0 Mobile Safari/5352\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 114}, "url": "/leverage.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "61.25.167.202"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "61.25.167.202 - - [19/Jun/2023:16:59:07 +0000] \"GET /Operative-dedicated/non-volatile.js HTTP/1.1\" 200 1909 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_5_10 rv:6.0; en-US) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/4.0 Safari/536.30.1\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1909}, "url": "/Operative-dedicated/non-volatile.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "209.56.191.75"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "209.56.191.75 - - [19/Jun/2023:16:59:07 +0000] \"GET /encryption/firmware.svg HTTP/1.1\" 200 2627 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.1) AppleWebKit/536.30.6 (KHTML, like Gecko) Version/4.0 Safari/536.30.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2627}, "url": "/encryption/firmware.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "31.128.34.13"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "31.128.34.13 - - [19/Jun/2023:16:59:07 +0000] \"GET /info-mediaries/disintermediate_cohesive/well-modulated/Open-source.png HTTP/1.1\" 302 96 \"-\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/5312 (KHTML, like Gecko) Chrome/40.0.860.0 Mobile Safari/5312\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 96}, "url": "/info-mediaries/disintermediate_cohesive/well-modulated/Open-source.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "112.86.236.143"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "112.86.236.143 - - [19/Jun/2023:16:59:07 +0000] \"PATCH /cohesive.js HTTP/1.1\" 200 1561 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_6) AppleWebKit/5351 (KHTML, like Gecko) Chrome/39.0.893.0 Mobile Safari/5351\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1561}, "url": "/cohesive.js", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "90.6.62.21"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "90.6.62.21 - - [19/Jun/2023:16:59:07 +0000] \"HEAD /Implemented_intermediate/Synergistic.gif HTTP/1.1\" 200 2911 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.0) AppleWebKit/535.17.8 (KHTML, like Gecko) Version/6.1 Safari/535.17.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2911}, "url": "/Implemented_intermediate/Synergistic.gif", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "223.210.246.130"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "223.210.246.130 - - [19/Jun/2023:16:59:07 +0000] \"GET /service-desk.js HTTP/1.1\" 200 1392 \"-\" \"Opera/10.66 (X11; Linux x86_64; en-US) Presto/2.10.314 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1392}, "url": "/service-desk.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "42.231.77.244"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "42.231.77.244 - - [19/Jun/2023:16:59:07 +0000] \"GET /model%20model-stable%20Monitored.php HTTP/1.1\" 200 1885 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:7.0) Gecko/1954-03-04 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1885}, "url": "/model%20model-stable%20Monitored.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "64.128.53.103"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "64.128.53.103 - - [19/Jun/2023:16:59:07 +0000] \"PATCH /forecast-Object-based-Seamless.jpg HTTP/1.1\" 200 1109 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_8_5) AppleWebKit/5310 (KHTML, like Gecko) Chrome/36.0.847.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1109}, "url": "/forecast-Object-based-Seamless.jpg", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "231.70.237.59"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "231.70.237.59 - - [19/Jun/2023:16:59:07 +0000] \"GET /zero%20administration/Customer-focused/Ergonomic/Re-engineered_encryption.png HTTP/1.1\" 400 111 \"-\" \"Opera/9.98 (Windows NT 5.01; en-US) Presto/2.9.165 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 111}, "url": "/zero%20administration/Customer-focused/Ergonomic/Re-engineered_encryption.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "186.192.106.213"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "186.192.106.213 - - [19/Jun/2023:16:59:07 +0000] \"GET /Mandatory/Vision-oriented_hybrid/discrete-groupware.jpg HTTP/1.1\" 200 2396 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_3 rv:3.0) Gecko/1965-09-02 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2396}, "url": "/Mandatory/Vision-oriented_hybrid/discrete-groupware.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "107.83.114.162"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "107.83.114.162 - - [19/Jun/2023:16:59:07 +0000] \"GET /interface/monitoring/Profound_encryption-core.svg HTTP/1.1\" 200 1172 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5340 (KHTML, like Gecko) Chrome/39.0.810.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1172}, "url": "/interface/monitoring/Profound_encryption-core.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "130.123.240.72"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "130.123.240.72 - - [19/Jun/2023:16:59:07 +0000] \"DELETE /projection/non-volatile.jpg HTTP/1.1\" 200 1713 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3 rv:5.0) Gecko/1927-26-03 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1713}, "url": "/projection/non-volatile.jpg", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "203.117.58.216"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "203.117.58.216 - - [19/Jun/2023:16:59:07 +0000] \"DELETE /Sharable-challenge_Self-enabling.php HTTP/1.1\" 200 1074 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_0 rv:6.0) Gecko/1982-17-02 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1074}, "url": "/Sharable-challenge_Self-enabling.php", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "44.90.24.82"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "44.90.24.82 - - [19/Jun/2023:16:59:07 +0000] \"PATCH /initiative/groupware-Advanced/hardware.htm HTTP/1.1\" 200 2228 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_8 rv:5.0) Gecko/1930-09-04 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2228}, "url": "/initiative/groupware-Advanced/hardware.htm", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "82.153.201.120"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "82.153.201.120 - - [19/Jun/2023:16:59:07 +0000] \"GET /multimedia.php HTTP/1.1\" 200 2058 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_9_0) AppleWebKit/5310 (KHTML, like Gecko) Chrome/39.0.876.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2058}, "url": "/multimedia.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "161.89.249.109"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "161.89.249.109 - - [19/Jun/2023:16:59:07 +0000] \"POST /Multi-channelled/superstructure%20Streamlined/Fundamental-disintermediate.svg HTTP/1.1\" 200 1101 \"-\" \"Opera/8.98 (X11; Linux i686; en-US) Presto/2.10.239 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1101}, "url": "/Multi-channelled/superstructure%20Streamlined/Fundamental-disintermediate.svg", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "243.83.222.61"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "243.83.222.61 - - [19/Jun/2023:16:59:07 +0000] \"GET /encryption_real-time-analyzer.png HTTP/1.1\" 200 3033 \"-\" \"Opera/8.26 (Windows CE; en-US) Presto/2.13.241 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3033}, "url": "/encryption_real-time-analyzer.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "25.119.173.93"}}, "@timestamp": "2023-06-19T16:59:07.000Z", "observedTimestamp": "2023-06-19T16:59:07.000Z", "body": "25.119.173.93 - - [19/Jun/2023:16:59:07 +0000] \"GET /moratorium_background_Automated/value-added/empowering.gif HTTP/1.1\" 200 2998 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_5_9) AppleWebKit/5362 (KHTML, like Gecko) Chrome/36.0.817.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2998}, "url": "/moratorium_background_Automated/value-added/empowering.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "135.198.235.255"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "135.198.235.255 - - [19/Jun/2023:16:59:08 +0000] \"GET /solution-oriented.png HTTP/1.1\" 200 1019 \"-\" \"Opera/9.86 (X11; Linux x86_64; en-US) Presto/2.8.348 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1019}, "url": "/solution-oriented.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "84.54.235.217"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "84.54.235.217 - - [19/Jun/2023:16:59:08 +0000] \"GET /asymmetric/emulation-service-desk.jpg HTTP/1.1\" 200 2460 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:6.0) Gecko/1951-05-09 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2460}, "url": "/asymmetric/emulation-service-desk.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "62.48.87.78"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "62.48.87.78 - - [19/Jun/2023:16:59:08 +0000] \"GET /encryption%20multi-tasking/encryption-responsive.png HTTP/1.1\" 200 2520 \"-\" \"Mozilla/5.0 (Windows CE; en-US; rv:1.9.2.20) Gecko/1930-15-02 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2520}, "url": "/encryption%20multi-tasking/encryption-responsive.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "105.249.22.2"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "105.249.22.2 - - [19/Jun/2023:16:59:08 +0000] \"HEAD /cohesive-attitude-oriented%20holistic%20high-level.gif HTTP/1.1\" 200 2191 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:6.0) Gecko/1971-08-02 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2191}, "url": "/cohesive-attitude-oriented%20holistic%20high-level.gif", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "126.73.33.31"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "126.73.33.31 - - [19/Jun/2023:16:59:08 +0000] \"PATCH /knowledge%20base-multi-state%20adapter-attitude.svg HTTP/1.1\" 500 50 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1_3 like Mac OS X; en-US) AppleWebKit/535.32.2 (KHTML, like Gecko) Version/3.0.5 Mobile/8B118 Safari/6535.32.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 50}, "url": "/knowledge%20base-multi-state%20adapter-attitude.svg", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "133.168.178.11"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "133.168.178.11 - - [19/Jun/2023:16:59:08 +0000] \"HEAD /Pre-emptive/user-facing_encryption.css HTTP/1.1\" 200 2317 \"-\" \"Mozilla/5.0 (iPad; CPU OS 8_1_3 like Mac OS X; en-US) AppleWebKit/536.51.6 (KHTML, like Gecko) Version/3.0.5 Mobile/8B112 Safari/6536.51.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2317}, "url": "/Pre-emptive/user-facing_encryption.css", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "141.238.108.81"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "141.238.108.81 - - [19/Jun/2023:16:59:08 +0000] \"GET /Inverse.svg HTTP/1.1\" 200 1866 \"-\" \"Mozilla/5.0 (Windows NT 5.0) AppleWebKit/5361 (KHTML, like Gecko) Chrome/36.0.897.0 Mobile Safari/5361\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1866}, "url": "/Inverse.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "29.120.83.210"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "29.120.83.210 - - [19/Jun/2023:16:59:08 +0000] \"PUT /solution-oriented%20optimizing/Self-enabling-value-added-product.js HTTP/1.1\" 302 43 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_1) AppleWebKit/5330 (KHTML, like Gecko) Chrome/38.0.873.0 Mobile Safari/5330\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 43}, "url": "/solution-oriented%20optimizing/Self-enabling-value-added-product.js", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "112.81.195.15"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "112.81.195.15 - - [19/Jun/2023:16:59:08 +0000] \"GET /project.hmtl HTTP/1.1\" 500 48 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_7_9 rv:6.0; en-US) AppleWebKit/534.15.2 (KHTML, like Gecko) Version/4.0 Safari/534.15.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 48}, "url": "/project.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "53.170.75.43"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "53.170.75.43 - - [19/Jun/2023:16:59:08 +0000] \"GET /Automated%20Enhanced_Optional.css HTTP/1.1\" 200 2301 \"-\" \"Mozilla/5.0 (Windows 98; Win 9x 4.90; en-US; rv:1.9.1.20) Gecko/2004-06-05 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2301}, "url": "/Automated%20Enhanced_Optional.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "111.196.239.90"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "111.196.239.90 - - [19/Jun/2023:16:59:08 +0000] \"DELETE /Configurable/Self-enabling.jpg HTTP/1.1\" 400 109 \"-\" \"Mozilla/5.0 (iPad; CPU OS 8_3_1 like Mac OS X; en-US) AppleWebKit/536.16.1 (KHTML, like Gecko) Version/5.0.5 Mobile/8B112 Safari/6536.16.1\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 109}, "url": "/Configurable/Self-enabling.jpg", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "214.87.151.203"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "214.87.151.203 - - [19/Jun/2023:16:59:08 +0000] \"GET /projection_maximized.jpg HTTP/1.1\" 200 2571 \"-\" \"Mozilla/5.0 (Windows 95; en-US; rv:1.9.1.20) Gecko/1999-19-09 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2571}, "url": "/projection_maximized.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "44.219.77.247"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "44.219.77.247 - - [19/Jun/2023:16:59:08 +0000] \"PUT /non-volatile-Integrated-client-driven%20Cross-platform-multi-state.php HTTP/1.1\" 404 84 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 4.0) AppleWebKit/536.46.1 (KHTML, like Gecko) Version/5.0 Safari/536.46.1\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 84}, "url": "/non-volatile-Integrated-client-driven%20Cross-platform-multi-state.php", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "215.32.248.226"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "215.32.248.226 - - [19/Jun/2023:16:59:08 +0000] \"GET /Ergonomic.htm HTTP/1.1\" 200 1455 \"-\" \"Opera/8.19 (Macintosh; U; Intel Mac OS X 10_5_3; en-US) Presto/2.8.233 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1455}, "url": "/Ergonomic.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "137.20.16.151"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "137.20.16.151 - - [19/Jun/2023:16:59:08 +0000] \"POST /high-level/directional-artificial%20intelligence/neutral-Multi-tiered.htm HTTP/1.1\" 200 1280 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_5) AppleWebKit/5341 (KHTML, like Gecko) Chrome/37.0.876.0 Mobile Safari/5341\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1280}, "url": "/high-level/directional-artificial%20intelligence/neutral-Multi-tiered.htm", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "64.113.50.174"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "64.113.50.174 - - [19/Jun/2023:16:59:08 +0000] \"GET /optimal.png HTTP/1.1\" 200 3018 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X; en-US) AppleWebKit/531.17.3 (KHTML, like Gecko) Version/5.0.5 Mobile/8B114 Safari/6531.17.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3018}, "url": "/optimal.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "219.177.215.90"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "219.177.215.90 - - [19/Jun/2023:16:59:08 +0000] \"GET /intranet/Customizable/website/support%20Re-contextualized.jpg HTTP/1.1\" 200 2335 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_7 rv:7.0; en-US) AppleWebKit/535.31.3 (KHTML, like Gecko) Version/6.2 Safari/535.31.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2335}, "url": "/intranet/Customizable/website/support%20Re-contextualized.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "66.193.121.184"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "66.193.121.184 - - [19/Jun/2023:16:59:08 +0000] \"GET /well-modulated%20protocol/neutral-Persevering/real-time.php HTTP/1.1\" 200 2758 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_1 rv:2.0) Gecko/1997-25-05 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2758}, "url": "/well-modulated%20protocol/neutral-Persevering/real-time.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "243.189.177.253"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "243.189.177.253 - - [19/Jun/2023:16:59:08 +0000] \"HEAD /customer%20loyalty-Cross-platform-impactful-Pre-emptive.png HTTP/1.1\" 500 75 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_4 rv:4.0; en-US) AppleWebKit/534.49.6 (KHTML, like Gecko) Version/4.2 Safari/534.49.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 75}, "url": "/customer%20loyalty-Cross-platform-impactful-Pre-emptive.png", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "85.210.51.120"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "85.210.51.120 - - [19/Jun/2023:16:59:08 +0000] \"PATCH /global/methodical.gif HTTP/1.1\" 302 118 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_9_3 rv:7.0; en-US) AppleWebKit/535.15.3 (KHTML, like Gecko) Version/4.2 Safari/535.15.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 118}, "url": "/global/methodical.gif", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "105.153.240.95"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "105.153.240.95 - - [19/Jun/2023:16:59:08 +0000] \"GET /Realigned/Streamlined.php HTTP/1.1\" 302 117 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_6_4) AppleWebKit/5361 (KHTML, like Gecko) Chrome/40.0.805.0 Mobile Safari/5361\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 117}, "url": "/Realigned/Streamlined.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "113.237.104.28"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "113.237.104.28 - - [19/Jun/2023:16:59:08 +0000] \"GET /value-added_well-modulated%20frame-Configurable.js HTTP/1.1\" 302 116 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5332 (KHTML, like Gecko) Chrome/37.0.899.0 Mobile Safari/5332\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 116}, "url": "/value-added_well-modulated%20frame-Configurable.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "163.116.123.31"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "163.116.123.31 - - [19/Jun/2023:16:59:08 +0000] \"GET /toolset.css HTTP/1.1\" 200 1485 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:5.0) Gecko/1901-01-12 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1485}, "url": "/toolset.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "19.41.248.81"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "19.41.248.81 - - [19/Jun/2023:16:59:08 +0000] \"GET /Switchable%20clear-thinking.gif HTTP/1.1\" 200 1436 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_9_6 rv:5.0) Gecko/2003-04-01 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1436}, "url": "/Switchable%20clear-thinking.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "13.56.50.79"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "13.56.50.79 - - [19/Jun/2023:16:59:08 +0000] \"DELETE /Integrated%20data-warehouse.gif HTTP/1.1\" 404 101 \"-\" \"Opera/9.68 (Macintosh; PPC Mac OS X 10_5_9; en-US) Presto/2.9.203 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 101}, "url": "/Integrated%20data-warehouse.gif", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "124.63.198.14"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "124.63.198.14 - - [19/Jun/2023:16:59:08 +0000] \"GET /Up-sized-Organized-User-friendly-client-server/well-modulated.css HTTP/1.1\" 200 885 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5310 (KHTML, like Gecko) Chrome/36.0.882.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 885}, "url": "/Up-sized-Organized-User-friendly-client-server/well-modulated.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "102.248.234.147"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "102.248.234.147 - - [19/Jun/2023:16:59:08 +0000] \"DELETE /executive_Inverse.svg HTTP/1.1\" 302 47 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.01) AppleWebKit/531.9.5 (KHTML, like Gecko) Version/4.2 Safari/531.9.5\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 47}, "url": "/executive_Inverse.svg", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "21.75.240.234"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "21.75.240.234 - - [19/Jun/2023:16:59:08 +0000] \"PATCH /Business-focused-optimal.js HTTP/1.1\" 200 2795 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_9) AppleWebKit/5310 (KHTML, like Gecko) Chrome/37.0.863.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2795}, "url": "/Business-focused-optimal.js", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "100.183.144.52"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "100.183.144.52 - - [19/Jun/2023:16:59:08 +0000] \"DELETE /tertiary%20Centralized.htm HTTP/1.1\" 400 107 \"-\" \"Mozilla/5.0 (Windows; U; Windows 95) AppleWebKit/531.16.8 (KHTML, like Gecko) Version/4.0 Safari/531.16.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 107}, "url": "/tertiary%20Centralized.htm", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "85.3.127.13"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "85.3.127.13 - - [19/Jun/2023:16:59:08 +0000] \"PATCH /time-frame.svg HTTP/1.1\" 200 3018 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_5_7 rv:5.0) Gecko/1973-19-01 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3018}, "url": "/time-frame.svg", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "139.187.132.251"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "139.187.132.251 - - [19/Jun/2023:16:59:08 +0000] \"GET /content-based_Synchronised-architecture.php HTTP/1.1\" 200 1190 \"-\" \"Mozilla/5.0 (Windows CE) AppleWebKit/5351 (KHTML, like Gecko) Chrome/37.0.824.0 Mobile Safari/5351\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1190}, "url": "/content-based_Synchronised-architecture.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "193.215.23.1"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "193.215.23.1 - - [19/Jun/2023:16:59:08 +0000] \"GET /radical.png HTTP/1.1\" 200 2335 \"-\" \"Opera/9.15 (Windows NT 5.1; en-US) Presto/2.13.259 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2335}, "url": "/radical.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "19.9.116.221"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "19.9.116.221 - - [19/Jun/2023:16:59:08 +0000] \"DELETE /Upgradable%20Phased_bi-directional.png HTTP/1.1\" 200 1108 \"-\" \"Mozilla/5.0 (Windows 98; Win 9x 4.90) AppleWebKit/5310 (KHTML, like Gecko) Chrome/37.0.847.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1108}, "url": "/Upgradable%20Phased_bi-directional.png", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "53.114.178.58"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "53.114.178.58 - - [19/Jun/2023:16:59:08 +0000] \"GET /monitoring_methodical_Future-proofed-Polarised.js HTTP/1.1\" 500 74 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_6) AppleWebKit/5330 (KHTML, like Gecko) Chrome/36.0.837.0 Mobile Safari/5330\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 74}, "url": "/monitoring_methodical_Future-proofed-Polarised.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "191.219.244.212"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "191.219.244.212 - - [19/Jun/2023:16:59:08 +0000] \"GET /instruction%20set_Ameliorated-analyzing-Universal-project.hmtl HTTP/1.1\" 200 2894 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5342 (KHTML, like Gecko) Chrome/39.0.819.0 Mobile Safari/5342\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2894}, "url": "/instruction%20set_Ameliorated-analyzing-Universal-project.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "83.147.251.29"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "83.147.251.29 - - [19/Jun/2023:16:59:08 +0000] \"POST /Streamlined.hmtl HTTP/1.1\" 200 1290 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.1) AppleWebKit/533.17.2 (KHTML, like Gecko) Version/6.1 Safari/533.17.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1290}, "url": "/Streamlined.hmtl", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "240.189.84.108"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "240.189.84.108 - - [19/Jun/2023:16:59:08 +0000] \"DELETE /attitude-success.png HTTP/1.1\" 302 98 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5361 (KHTML, like Gecko) Chrome/36.0.880.0 Mobile Safari/5361\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 98}, "url": "/attitude-success.png", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "28.175.69.218"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "28.175.69.218 - - [19/Jun/2023:16:59:08 +0000] \"GET /context-sensitive-Stand-alone%20model/analyzer.png HTTP/1.1\" 200 2612 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_10) AppleWebKit/5352 (KHTML, like Gecko) Chrome/38.0.842.0 Mobile Safari/5352\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2612}, "url": "/context-sensitive-Stand-alone%20model/analyzer.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "236.97.5.38"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "236.97.5.38 - - [19/Jun/2023:16:59:08 +0000] \"DELETE /hybrid/Future-proofed/directional%20focus%20group%20intangible.php HTTP/1.1\" 200 2609 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_6_6) AppleWebKit/5321 (KHTML, like Gecko) Chrome/37.0.880.0 Mobile Safari/5321\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2609}, "url": "/hybrid/Future-proofed/directional%20focus%20group%20intangible.php", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "36.100.118.255"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "36.100.118.255 - - [19/Jun/2023:16:59:08 +0000] \"PUT /3rd%20generation_Decentralized%20leverage.svg HTTP/1.1\" 200 3079 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_9_10) AppleWebKit/5311 (KHTML, like Gecko) Chrome/39.0.834.0 Mobile Safari/5311\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3079}, "url": "/3rd%20generation_Decentralized%20leverage.svg", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "232.41.124.141"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "232.41.124.141 - - [19/Jun/2023:16:59:08 +0000] \"GET /object-oriented/logistical-regional-discrete/artificial%20intelligence.css HTTP/1.1\" 200 1812 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:8.0) Gecko/1905-28-09 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1812}, "url": "/object-oriented/logistical-regional-discrete/artificial%20intelligence.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "122.50.103.82"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "122.50.103.82 - - [19/Jun/2023:16:59:08 +0000] \"GET /process%20improvement_intangible%20eco-centric%20definition.jpg HTTP/1.1\" 200 2670 \"-\" \"Opera/8.65 (Macintosh; Intel Mac OS X 10_9_5; en-US) Presto/2.12.237 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2670}, "url": "/process%20improvement_intangible%20eco-centric%20definition.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "30.241.251.38"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "30.241.251.38 - - [19/Jun/2023:16:59:08 +0000] \"PATCH /zero%20administration/Operative/Distributed-groupware.jpg HTTP/1.1\" 200 1887 \"-\" \"Opera/9.30 (Windows CE; en-US) Presto/2.13.304 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1887}, "url": "/zero%20administration/Operative/Distributed-groupware.jpg", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "97.121.223.76"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "97.121.223.76 - - [19/Jun/2023:16:59:08 +0000] \"GET /Stand-alone.css HTTP/1.1\" 200 1094 \"-\" \"Mozilla/5.0 (Windows NT 5.01) AppleWebKit/5331 (KHTML, like Gecko) Chrome/38.0.874.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1094}, "url": "/Stand-alone.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "152.250.6.181"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "152.250.6.181 - - [19/Jun/2023:16:59:08 +0000] \"GET /Face%20to%20face-Vision-oriented_implementation/logistical/Object-based.hmtl HTTP/1.1\" 200 2280 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5350 (KHTML, like Gecko) Chrome/36.0.830.0 Mobile Safari/5350\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2280}, "url": "/Face%20to%20face-Vision-oriented_implementation/logistical/Object-based.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "147.70.186.242"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "147.70.186.242 - - [19/Jun/2023:16:59:08 +0000] \"GET /Implemented-Organized/infrastructure-product/customer%20loyalty.htm HTTP/1.1\" 200 2102 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_3 like Mac OS X; en-US) AppleWebKit/536.1.2 (KHTML, like Gecko) Version/5.0.5 Mobile/8B114 Safari/6536.1.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2102}, "url": "/Implemented-Organized/infrastructure-product/customer%20loyalty.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "143.21.40.11"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "143.21.40.11 - - [19/Jun/2023:16:59:08 +0000] \"POST /initiative-bifurcated/responsive/leading%20edge.png HTTP/1.1\" 200 1711 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:8.0) Gecko/1921-05-08 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1711}, "url": "/initiative-bifurcated/responsive/leading%20edge.png", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "39.214.160.110"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "39.214.160.110 - - [19/Jun/2023:16:59:08 +0000] \"GET /Right-sized.js HTTP/1.1\" 200 1649 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_7) AppleWebKit/5341 (KHTML, like Gecko) Chrome/37.0.854.0 Mobile Safari/5341\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1649}, "url": "/Right-sized.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "45.92.124.177"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "45.92.124.177 - - [19/Jun/2023:16:59:08 +0000] \"GET /Vision-oriented.htm HTTP/1.1\" 302 50 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_8_5) AppleWebKit/5321 (KHTML, like Gecko) Chrome/39.0.833.0 Mobile Safari/5321\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 50}, "url": "/Vision-oriented.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "19.202.172.138"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "19.202.172.138 - - [19/Jun/2023:16:59:08 +0000] \"GET /portal%20solution/projection.png HTTP/1.1\" 200 2984 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_4) AppleWebKit/5310 (KHTML, like Gecko) Chrome/37.0.868.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2984}, "url": "/portal%20solution/projection.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "186.108.182.1"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "186.108.182.1 - - [19/Jun/2023:16:59:08 +0000] \"DELETE /internet%20solution-info-mediaries%20asymmetric.css HTTP/1.1\" 200 2305 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_1 like Mac OS X; en-US) AppleWebKit/532.26.3 (KHTML, like Gecko) Version/3.0.5 Mobile/8B119 Safari/6532.26.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2305}, "url": "/internet%20solution-info-mediaries%20asymmetric.css", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "65.140.167.186"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "65.140.167.186 - - [19/Jun/2023:16:59:08 +0000] \"GET /Automated-client-driven_Down-sized.png HTTP/1.1\" 200 1089 \"-\" \"Opera/9.91 (X11; Linux x86_64; en-US) Presto/2.11.239 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1089}, "url": "/Automated-client-driven_Down-sized.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "171.65.128.253"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "171.65.128.253 - - [19/Jun/2023:16:59:08 +0000] \"GET /workforce-multi-state/Switchable-toolset.hmtl HTTP/1.1\" 200 1283 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_1 rv:6.0) Gecko/1981-05-09 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1283}, "url": "/workforce-multi-state/Switchable-toolset.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "84.186.201.23"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "84.186.201.23 - - [19/Jun/2023:16:59:08 +0000] \"PUT /Persevering.css HTTP/1.1\" 200 2853 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:5.0) Gecko/1971-19-08 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2853}, "url": "/Persevering.css", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "35.28.228.206"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "35.28.228.206 - - [19/Jun/2023:16:59:08 +0000] \"GET /synergy/time-frame_bifurcated-bandwidth-monitored.css HTTP/1.1\" 404 87 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.2) AppleWebKit/534.21.1 (KHTML, like Gecko) Version/5.0 Safari/534.21.1\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 87}, "url": "/synergy/time-frame_bifurcated-bandwidth-monitored.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "37.235.61.189"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "37.235.61.189 - - [19/Jun/2023:16:59:08 +0000] \"GET /Organic.svg HTTP/1.1\" 200 1031 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:6.0) Gecko/1913-03-12 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1031}, "url": "/Organic.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "58.61.25.113"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "58.61.25.113 - - [19/Jun/2023:16:59:08 +0000] \"GET /product%20uniform-neural-net.png HTTP/1.1\" 400 76 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 4.0) AppleWebKit/531.51.1 (KHTML, like Gecko) Version/4.1 Safari/531.51.1\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 76}, "url": "/product%20uniform-neural-net.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "216.192.37.83"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "216.192.37.83 - - [19/Jun/2023:16:59:08 +0000] \"DELETE /Grass-roots-Sharable/content-based_uniform.svg HTTP/1.1\" 200 2973 \"-\" \"Opera/10.34 (X11; Linux i686; en-US) Presto/2.9.319 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2973}, "url": "/Grass-roots-Sharable/content-based_uniform.svg", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "138.110.136.73"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "138.110.136.73 - - [19/Jun/2023:16:59:08 +0000] \"GET /next%20generation.hmtl HTTP/1.1\" 200 2218 \"-\" \"Mozilla/5.0 (Windows NT 6.2) AppleWebKit/5340 (KHTML, like Gecko) Chrome/40.0.880.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2218}, "url": "/next%20generation.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "235.1.226.250"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "235.1.226.250 - - [19/Jun/2023:16:59:08 +0000] \"GET /secured%20line_info-mediaries.php HTTP/1.1\" 400 62 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1 rv:7.0; en-US) AppleWebKit/532.45.7 (KHTML, like Gecko) Version/5.0 Safari/532.45.7\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 62}, "url": "/secured%20line_info-mediaries.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "12.176.209.122"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "12.176.209.122 - - [19/Jun/2023:16:59:08 +0000] \"GET /analyzing%20architecture-projection.js HTTP/1.1\" 500 62 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_4 rv:2.0) Gecko/1944-15-03 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 62}, "url": "/analyzing%20architecture-projection.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "31.18.206.74"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "31.18.206.74 - - [19/Jun/2023:16:59:08 +0000] \"GET /Decentralized.jpg HTTP/1.1\" 200 2248 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1 rv:6.0; en-US) AppleWebKit/535.19.3 (KHTML, like Gecko) Version/5.0 Safari/535.19.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2248}, "url": "/Decentralized.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "100.219.157.0"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "100.219.157.0 - - [19/Jun/2023:16:59:08 +0000] \"GET /Advanced/hybrid.hmtl HTTP/1.1\" 200 1714 \"-\" \"Mozilla/5.0 (Windows NT 6.0; en-US; rv:1.9.0.20) Gecko/1992-01-12 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1714}, "url": "/Advanced/hybrid.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "10.107.222.207"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "10.107.222.207 - - [19/Jun/2023:16:59:08 +0000] \"GET /neural-net-Pre-emptive-empowering/help-desk%20structure.hmtl HTTP/1.1\" 200 1525 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_8_2 rv:4.0; en-US) AppleWebKit/531.47.7 (KHTML, like Gecko) Version/5.0 Safari/531.47.7\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1525}, "url": "/neural-net-Pre-emptive-empowering/help-desk%20structure.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "31.19.58.100"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "31.19.58.100 - - [19/Jun/2023:16:59:08 +0000] \"GET /upward-trending-full-range/interactive.jpg HTTP/1.1\" 200 1737 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:5.0) Gecko/1912-01-12 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1737}, "url": "/upward-trending-full-range/interactive.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "171.174.206.24"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "171.174.206.24 - - [19/Jun/2023:16:59:08 +0000] \"PATCH /grid-enabled/policy/Cross-group.svg HTTP/1.1\" 200 2102 \"-\" \"Opera/10.19 (Windows NT 6.2; en-US) Presto/2.11.189 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2102}, "url": "/grid-enabled/policy/Cross-group.svg", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "150.172.214.181"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "150.172.214.181 - - [19/Jun/2023:16:59:08 +0000] \"GET /service-desk-web-enabled/Triple-buffered-Reduced.jpg HTTP/1.1\" 200 862 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:5.0) Gecko/1965-11-03 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 862}, "url": "/service-desk-web-enabled/Triple-buffered-Reduced.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "191.233.218.247"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "191.233.218.247 - - [19/Jun/2023:16:59:08 +0000] \"GET /Adaptive-web-enabled-local.php HTTP/1.1\" 200 2135 \"-\" \"Mozilla/5.0 (Windows NT 5.2) AppleWebKit/5310 (KHTML, like Gecko) Chrome/39.0.895.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2135}, "url": "/Adaptive-web-enabled-local.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "120.204.68.220"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "120.204.68.220 - - [19/Jun/2023:16:59:08 +0000] \"GET /multimedia/Compatible.svg HTTP/1.1\" 200 1963 \"-\" \"Opera/8.74 (X11; Linux i686; en-US) Presto/2.8.225 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1963}, "url": "/multimedia/Compatible.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "213.36.190.251"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "213.36.190.251 - - [19/Jun/2023:16:59:08 +0000] \"GET /bifurcated/application.php HTTP/1.1\" 200 1855 \"-\" \"Mozilla/5.0 (Windows 98; Win 9x 4.90) AppleWebKit/5330 (KHTML, like Gecko) Chrome/36.0.800.0 Mobile Safari/5330\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1855}, "url": "/bifurcated/application.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "123.114.208.115"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "123.114.208.115 - - [19/Jun/2023:16:59:08 +0000] \"GET /strategy%20fault-tolerant/Re-contextualized-model.js HTTP/1.1\" 200 2107 \"-\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/5321 (KHTML, like Gecko) Chrome/39.0.858.0 Mobile Safari/5321\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2107}, "url": "/strategy%20fault-tolerant/Re-contextualized-model.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "157.21.2.214"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "157.21.2.214 - - [19/Jun/2023:16:59:08 +0000] \"GET /Upgradable-radical-empowering/middleware.gif HTTP/1.1\" 302 113 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_6) AppleWebKit/5310 (KHTML, like Gecko) Chrome/40.0.825.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 113}, "url": "/Upgradable-radical-empowering/middleware.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "206.249.31.29"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "206.249.31.29 - - [19/Jun/2023:16:59:08 +0000] \"GET /upward-trending.php HTTP/1.1\" 404 54 \"-\" \"Mozilla/5.0 (iPad; CPU OS 9_1_2 like Mac OS X; en-US) AppleWebKit/531.17.7 (KHTML, like Gecko) Version/3.0.5 Mobile/8B115 Safari/6531.17.7\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 54}, "url": "/upward-trending.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "143.118.96.119"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "143.118.96.119 - - [19/Jun/2023:16:59:08 +0000] \"PUT /collaboration-Secured/hardware/productivity/optimal.svg HTTP/1.1\" 200 1106 \"-\" \"Mozilla/5.0 (Windows NT 6.0; en-US; rv:1.9.3.20) Gecko/1925-03-12 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1106}, "url": "/collaboration-Secured/hardware/productivity/optimal.svg", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "179.12.12.248"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "179.12.12.248 - - [19/Jun/2023:16:59:08 +0000] \"GET /Balanced%20secondary.php HTTP/1.1\" 200 1013 \"-\" \"Opera/8.99 (Windows 98; en-US) Presto/2.8.186 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1013}, "url": "/Balanced%20secondary.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "220.246.154.70"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "220.246.154.70 - - [19/Jun/2023:16:59:08 +0000] \"GET /directional_secured%20line/national/workforce.js HTTP/1.1\" 200 2012 \"-\" \"Mozilla/5.0 (iPad; CPU OS 9_3_3 like Mac OS X; en-US) AppleWebKit/532.28.5 (KHTML, like Gecko) Version/3.0.5 Mobile/8B115 Safari/6532.28.5\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2012}, "url": "/directional_secured%20line/national/workforce.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "160.244.231.103"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "160.244.231.103 - - [19/Jun/2023:16:59:08 +0000] \"PUT /Decentralized.png HTTP/1.1\" 500 32 \"-\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/5350 (KHTML, like Gecko) Chrome/40.0.879.0 Mobile Safari/5350\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 32}, "url": "/Decentralized.png", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "43.89.178.6"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "43.89.178.6 - - [19/Jun/2023:16:59:08 +0000] \"POST /Function-based/real-time/empowering-analyzer%20system-worthy.js HTTP/1.1\" 200 2404 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_5_8) AppleWebKit/5341 (KHTML, like Gecko) Chrome/39.0.854.0 Mobile Safari/5341\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2404}, "url": "/Function-based/real-time/empowering-analyzer%20system-worthy.js", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "237.217.64.189"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "237.217.64.189 - - [19/Jun/2023:16:59:08 +0000] \"PATCH /framework-bottom-line-Down-sized-utilisation-fresh-thinking.js HTTP/1.1\" 301 105 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_6) AppleWebKit/5360 (KHTML, like Gecko) Chrome/38.0.846.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 105}, "url": "/framework-bottom-line-Down-sized-utilisation-fresh-thinking.js", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "146.124.84.202"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "146.124.84.202 - - [19/Jun/2023:16:59:08 +0000] \"GET /user-facing%20actuating.php HTTP/1.1\" 200 2708 \"-\" \"Mozilla/5.0 (iPad; CPU OS 7_3_2 like Mac OS X; en-US) AppleWebKit/533.4.4 (KHTML, like Gecko) Version/5.0.5 Mobile/8B113 Safari/6533.4.4\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2708}, "url": "/user-facing%20actuating.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "129.226.226.13"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "129.226.226.13 - - [19/Jun/2023:16:59:08 +0000] \"GET /Exclusive.jpg HTTP/1.1\" 200 2041 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_8) AppleWebKit/5362 (KHTML, like Gecko) Chrome/38.0.889.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2041}, "url": "/Exclusive.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "32.18.142.114"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "32.18.142.114 - - [19/Jun/2023:16:59:08 +0000] \"GET /Self-enabling.htm HTTP/1.1\" 200 2597 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_9_0 rv:3.0) Gecko/1945-28-09 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2597}, "url": "/Self-enabling.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "0.189.26.57"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "0.189.26.57 - - [19/Jun/2023:16:59:08 +0000] \"GET /Open-architected.php HTTP/1.1\" 200 2477 \"-\" \"Mozilla/5.0 (Windows 98; en-US; rv:1.9.2.20) Gecko/1970-12-12 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2477}, "url": "/Open-architected.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "150.111.133.131"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "150.111.133.131 - - [19/Jun/2023:16:59:08 +0000] \"GET /multi-state-Automated/Programmable/Configurable/Reduced.htm HTTP/1.1\" 200 3021 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5351 (KHTML, like Gecko) Chrome/38.0.826.0 Mobile Safari/5351\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3021}, "url": "/multi-state-Automated/Programmable/Configurable/Reduced.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "226.182.122.210"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "226.182.122.210 - - [19/Jun/2023:16:59:08 +0000] \"HEAD /analyzing/function-internet%20solution-Compatible.hmtl HTTP/1.1\" 200 2143 \"-\" \"Mozilla/5.0 (Windows 98; Win 9x 4.90) AppleWebKit/5312 (KHTML, like Gecko) Chrome/37.0.825.0 Mobile Safari/5312\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2143}, "url": "/analyzing/function-internet%20solution-Compatible.hmtl", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "125.170.44.105"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "125.170.44.105 - - [19/Jun/2023:16:59:08 +0000] \"GET /Cross-group/Persistent.jpg HTTP/1.1\" 200 2374 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5321 (KHTML, like Gecko) Chrome/36.0.893.0 Mobile Safari/5321\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2374}, "url": "/Cross-group/Persistent.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "172.223.51.121"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "172.223.51.121 - - [19/Jun/2023:16:59:08 +0000] \"GET /encoding.php HTTP/1.1\" 200 2038 \"-\" \"Opera/9.59 (X11; Linux x86_64; en-US) Presto/2.10.162 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2038}, "url": "/encoding.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "249.226.202.217"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "249.226.202.217 - - [19/Jun/2023:16:59:08 +0000] \"GET /Universal.htm HTTP/1.1\" 302 49 \"-\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/5320 (KHTML, like Gecko) Chrome/38.0.893.0 Mobile Safari/5320\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 49}, "url": "/Universal.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "31.7.211.222"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "31.7.211.222 - - [19/Jun/2023:16:59:08 +0000] \"GET /bandwidth-monitored-process%20improvement.css HTTP/1.1\" 404 110 \"-\" \"Mozilla/5.0 (Windows 95) AppleWebKit/5330 (KHTML, like Gecko) Chrome/39.0.837.0 Mobile Safari/5330\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 110}, "url": "/bandwidth-monitored-process%20improvement.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "234.232.96.179"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "234.232.96.179 - - [19/Jun/2023:16:59:08 +0000] \"GET /User-friendly/bandwidth-monitored%20human-resource.png HTTP/1.1\" 200 2071 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_8_4 rv:7.0; en-US) AppleWebKit/533.37.6 (KHTML, like Gecko) Version/4.1 Safari/533.37.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2071}, "url": "/User-friendly/bandwidth-monitored%20human-resource.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "1.99.127.46"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "1.99.127.46 - - [19/Jun/2023:16:59:08 +0000] \"GET /logistical_complexity/incremental/bifurcated.png HTTP/1.1\" 302 90 \"-\" \"Opera/8.93 (Windows 98; Win 9x 4.90; en-US) Presto/2.12.253 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 90}, "url": "/logistical_complexity/incremental/bifurcated.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "94.76.65.27"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "94.76.65.27 - - [19/Jun/2023:16:59:08 +0000] \"GET /Compatible.svg HTTP/1.1\" 200 1672 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:5.0) Gecko/1912-26-03 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1672}, "url": "/Compatible.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "47.8.184.60"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "47.8.184.60 - - [19/Jun/2023:16:59:08 +0000] \"GET /extranet.js HTTP/1.1\" 200 1917 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.01) AppleWebKit/534.35.7 (KHTML, like Gecko) Version/4.2 Safari/534.35.7\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1917}, "url": "/extranet.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "115.134.104.5"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "115.134.104.5 - - [19/Jun/2023:16:59:08 +0000] \"GET /Persevering-human-resource%20Object-based/orchestration-Face%20to%20face.php HTTP/1.1\" 400 106 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_5_9 rv:5.0) Gecko/2010-22-09 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 106}, "url": "/Persevering-human-resource%20Object-based/orchestration-Face%20to%20face.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "133.91.75.106"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "133.91.75.106 - - [19/Jun/2023:16:59:08 +0000] \"GET /empowering/benchmark.png HTTP/1.1\" 200 2758 \"-\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/5341 (KHTML, like Gecko) Chrome/36.0.801.0 Mobile Safari/5341\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2758}, "url": "/empowering/benchmark.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "239.9.120.182"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "239.9.120.182 - - [19/Jun/2023:16:59:08 +0000] \"GET /methodical/optimizing/Graphical%20User%20Interface/context-sensitive/Programmable.hmtl HTTP/1.1\" 200 1330 \"-\" \"Opera/10.47 (X11; Linux i686; en-US) Presto/2.10.298 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1330}, "url": "/methodical/optimizing/Graphical%20User%20Interface/context-sensitive/Programmable.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "152.77.189.199"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "152.77.189.199 - - [19/Jun/2023:16:59:08 +0000] \"PATCH /Virtual/logistical%20executive-Optional.js HTTP/1.1\" 200 1720 \"-\" \"Opera/10.73 (Windows NT 6.0; en-US) Presto/2.11.177 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1720}, "url": "/Virtual/logistical%20executive-Optional.js", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "102.208.224.210"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "102.208.224.210 - - [19/Jun/2023:16:59:08 +0000] \"GET /policy_Right-sized.svg HTTP/1.1\" 200 2171 \"-\" \"Opera/10.76 (Macintosh; PPC Mac OS X 10_9_3; en-US) Presto/2.8.349 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2171}, "url": "/policy_Right-sized.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "34.216.44.135"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "34.216.44.135 - - [19/Jun/2023:16:59:08 +0000] \"GET /multi-state_Networked.htm HTTP/1.1\" 200 1666 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5312 (KHTML, like Gecko) Chrome/36.0.816.0 Mobile Safari/5312\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1666}, "url": "/multi-state_Networked.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "88.159.61.10"}}, "@timestamp": "2023-06-19T16:59:08.000Z", "observedTimestamp": "2023-06-19T16:59:08.000Z", "body": "88.159.61.10 - - [19/Jun/2023:16:59:08 +0000] \"GET /Multi-tiered_matrix.htm HTTP/1.1\" 200 2531 \"-\" \"Opera/10.58 (Windows 98; Win 9x 4.90; en-US) Presto/2.11.206 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2531}, "url": "/Multi-tiered_matrix.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "151.196.26.136"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "151.196.26.136 - - [19/Jun/2023:16:59:09 +0000] \"GET /even-keeled/Exclusive/adapter_scalable/local.htm HTTP/1.1\" 200 922 \"-\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/5320 (KHTML, like Gecko) Chrome/38.0.854.0 Mobile Safari/5320\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 922}, "url": "/even-keeled/Exclusive/adapter_scalable/local.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "46.71.213.195"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "46.71.213.195 - - [19/Jun/2023:16:59:09 +0000] \"GET /Quality-focused%20contextually-based/Grass-roots.php HTTP/1.1\" 200 2855 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 4.0) AppleWebKit/533.13.8 (KHTML, like Gecko) Version/4.1 Safari/533.13.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2855}, "url": "/Quality-focused%20contextually-based/Grass-roots.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "0.212.185.237"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "0.212.185.237 - - [19/Jun/2023:16:59:09 +0000] \"GET /systematic-firmware/Intuitive%20Synchronised/well-modulated.htm HTTP/1.1\" 200 2765 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5311 (KHTML, like Gecko) Chrome/36.0.817.0 Mobile Safari/5311\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2765}, "url": "/systematic-firmware/Intuitive%20Synchronised/well-modulated.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "236.184.62.130"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "236.184.62.130 - - [19/Jun/2023:16:59:09 +0000] \"POST /directional_content-based.htm HTTP/1.1\" 200 1240 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_9_4) AppleWebKit/5341 (KHTML, like Gecko) Chrome/38.0.886.0 Mobile Safari/5341\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1240}, "url": "/directional_content-based.htm", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "166.120.163.99"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "166.120.163.99 - - [19/Jun/2023:16:59:09 +0000] \"GET /asynchronous/infrastructure/analyzer/contingency_global.jpg HTTP/1.1\" 200 1447 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_8_8) AppleWebKit/5311 (KHTML, like Gecko) Chrome/37.0.835.0 Mobile Safari/5311\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1447}, "url": "/asynchronous/infrastructure/analyzer/contingency_global.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "99.106.173.163"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "99.106.173.163 - - [19/Jun/2023:16:59:09 +0000] \"GET /contingency.js HTTP/1.1\" 200 1208 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_9_4 rv:6.0; en-US) AppleWebKit/532.38.4 (KHTML, like Gecko) Version/5.0 Safari/532.38.4\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1208}, "url": "/contingency.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "203.190.44.164"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "203.190.44.164 - - [19/Jun/2023:16:59:09 +0000] \"GET /dedicated-mobile-web-enabled-maximized/knowledge%20base.css HTTP/1.1\" 200 2118 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_5_9 rv:6.0; en-US) AppleWebKit/534.19.8 (KHTML, like Gecko) Version/5.2 Safari/534.19.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2118}, "url": "/dedicated-mobile-web-enabled-maximized/knowledge%20base.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "254.58.168.95"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "254.58.168.95 - - [19/Jun/2023:16:59:09 +0000] \"GET /Re-engineered/superstructure/Monitored/well-modulated-composite.js HTTP/1.1\" 200 1651 \"-\" \"Opera/8.67 (Windows NT 5.2; en-US) Presto/2.8.269 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1651}, "url": "/Re-engineered/superstructure/Monitored/well-modulated-composite.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "87.74.115.205"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "87.74.115.205 - - [19/Jun/2023:16:59:09 +0000] \"HEAD /local%20area%20network_Graphical%20User%20Interface/zero%20defect-actuating.svg HTTP/1.1\" 404 43 \"-\" \"Opera/10.14 (X11; Linux x86_64; en-US) Presto/2.8.170 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 43}, "url": "/local%20area%20network_Graphical%20User%20Interface/zero%20defect-actuating.svg", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "72.183.21.44"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "72.183.21.44 - - [19/Jun/2023:16:59:09 +0000] \"DELETE /Graphic%20Interface_Automated/Optional.css HTTP/1.1\" 200 2907 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5310 (KHTML, like Gecko) Chrome/40.0.889.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2907}, "url": "/Graphic%20Interface_Automated/Optional.css", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "214.170.202.19"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "214.170.202.19 - - [19/Jun/2023:16:59:09 +0000] \"GET /Integrated.php HTTP/1.1\" 404 53 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5360 (KHTML, like Gecko) Chrome/38.0.802.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 53}, "url": "/Integrated.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "0.150.137.105"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "0.150.137.105 - - [19/Jun/2023:16:59:09 +0000] \"GET /cohesive.png HTTP/1.1\" 200 1407 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5331 (KHTML, like Gecko) Chrome/36.0.835.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1407}, "url": "/cohesive.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "27.206.214.116"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "27.206.214.116 - - [19/Jun/2023:16:59:09 +0000] \"HEAD /3rd%20generation%20Pre-emptive.svg HTTP/1.1\" 200 2596 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.0) AppleWebKit/534.41.6 (KHTML, like Gecko) Version/6.0 Safari/534.41.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2596}, "url": "/3rd%20generation%20Pre-emptive.svg", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "135.158.187.230"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "135.158.187.230 - - [19/Jun/2023:16:59:09 +0000] \"GET /attitude-oriented/systemic/Programmable.js HTTP/1.1\" 200 2300 \"-\" \"Opera/8.83 (Macintosh; Intel Mac OS X 10_6_5; en-US) Presto/2.11.337 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2300}, "url": "/attitude-oriented/systemic/Programmable.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "203.248.119.145"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "203.248.119.145 - - [19/Jun/2023:16:59:09 +0000] \"GET /executive.htm HTTP/1.1\" 200 1726 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_6 rv:5.0; en-US) AppleWebKit/532.23.3 (KHTML, like Gecko) Version/4.2 Safari/532.23.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1726}, "url": "/executive.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "33.241.158.181"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "33.241.158.181 - - [19/Jun/2023:16:59:09 +0000] \"GET /instruction%20set/Organized%20Synergistic-Persevering.css HTTP/1.1\" 200 1028 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.1) AppleWebKit/535.51.7 (KHTML, like Gecko) Version/6.1 Safari/535.51.7\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1028}, "url": "/instruction%20set/Organized%20Synergistic-Persevering.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "207.203.247.246"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "207.203.247.246 - - [19/Jun/2023:16:59:09 +0000] \"POST /tertiary/Versatile/interactive_Down-sized/bi-directional.gif HTTP/1.1\" 200 1388 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_10) AppleWebKit/5331 (KHTML, like Gecko) Chrome/36.0.826.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1388}, "url": "/tertiary/Versatile/interactive_Down-sized/bi-directional.gif", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "179.130.199.82"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "179.130.199.82 - - [19/Jun/2023:16:59:09 +0000] \"GET /functionalities-Diverse_Grass-roots.hmtl HTTP/1.1\" 200 2587 \"-\" \"Mozilla/5.0 (Windows; U; Windows 95) AppleWebKit/533.14.8 (KHTML, like Gecko) Version/4.2 Safari/533.14.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2587}, "url": "/functionalities-Diverse_Grass-roots.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "14.180.51.193"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "14.180.51.193 - - [19/Jun/2023:16:59:09 +0000] \"GET /Grass-roots%20definition%20leverage/adapter%20Reactive.jpg HTTP/1.1\" 200 2147 \"-\" \"Opera/10.29 (X11; Linux i686; en-US) Presto/2.13.295 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2147}, "url": "/Grass-roots%20definition%20leverage/adapter%20Reactive.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "214.100.161.121"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "214.100.161.121 - - [19/Jun/2023:16:59:09 +0000] \"PATCH /attitude-oriented/maximized-matrix-human-resource_upward-trending.htm HTTP/1.1\" 200 2500 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_1 rv:7.0) Gecko/1956-15-07 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2500}, "url": "/attitude-oriented/maximized-matrix-human-resource_upward-trending.htm", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "218.116.35.176"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "218.116.35.176 - - [19/Jun/2023:16:59:09 +0000] \"GET /interface.jpg HTTP/1.1\" 500 43 \"-\" \"Opera/8.60 (Windows 98; en-US) Presto/2.8.237 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 43}, "url": "/interface.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "132.141.14.132"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "132.141.14.132 - - [19/Jun/2023:16:59:09 +0000] \"PATCH /leverage_conglomeration/user-facing/core.gif HTTP/1.1\" 200 2756 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5361 (KHTML, like Gecko) Chrome/40.0.846.0 Mobile Safari/5361\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2756}, "url": "/leverage_conglomeration/user-facing/core.gif", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "242.99.134.121"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "242.99.134.121 - - [19/Jun/2023:16:59:09 +0000] \"DELETE /explicit/value-added.png HTTP/1.1\" 200 2519 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.2) AppleWebKit/532.25.1 (KHTML, like Gecko) Version/4.0 Safari/532.25.1\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2519}, "url": "/explicit/value-added.png", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "160.254.220.230"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "160.254.220.230 - - [19/Jun/2023:16:59:09 +0000] \"PATCH /Operative/hub/Business-focused/context-sensitive.htm HTTP/1.1\" 200 1296 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_6 rv:4.0; en-US) AppleWebKit/535.1.2 (KHTML, like Gecko) Version/5.1 Safari/535.1.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1296}, "url": "/Operative/hub/Business-focused/context-sensitive.htm", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "183.90.201.37"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "183.90.201.37 - - [19/Jun/2023:16:59:09 +0000] \"GET /asynchronous%20eco-centric_Robust.svg HTTP/1.1\" 404 39 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5310 (KHTML, like Gecko) Chrome/37.0.836.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 39}, "url": "/asynchronous%20eco-centric_Robust.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "192.62.111.101"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "192.62.111.101 - - [19/Jun/2023:16:59:09 +0000] \"GET /application-Switchable/empowering%20leverage%20moderator.htm HTTP/1.1\" 200 1003 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.0) AppleWebKit/535.39.3 (KHTML, like Gecko) Version/4.1 Safari/535.39.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1003}, "url": "/application-Switchable/empowering%20leverage%20moderator.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "97.1.14.74"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "97.1.14.74 - - [19/Jun/2023:16:59:09 +0000] \"GET /Profound/incremental.svg HTTP/1.1\" 200 2630 \"-\" \"Mozilla/5.0 (Windows NT 5.2) AppleWebKit/5310 (KHTML, like Gecko) Chrome/36.0.847.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2630}, "url": "/Profound/incremental.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "58.73.44.63"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "58.73.44.63 - - [19/Jun/2023:16:59:09 +0000] \"GET /bandwidth-monitored.php HTTP/1.1\" 301 96 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3 rv:6.0; en-US) AppleWebKit/531.48.5 (KHTML, like Gecko) Version/5.0 Safari/531.48.5\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 96}, "url": "/bandwidth-monitored.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "36.214.69.88"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "36.214.69.88 - - [19/Jun/2023:16:59:09 +0000] \"GET /Exclusive.jpg HTTP/1.1\" 200 1615 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:7.0) Gecko/1994-12-03 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1615}, "url": "/Exclusive.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "250.69.247.244"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "250.69.247.244 - - [19/Jun/2023:16:59:09 +0000] \"PUT /composite/Profit-focused/maximized.gif HTTP/1.1\" 200 2374 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_2 rv:6.0) Gecko/1943-25-10 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2374}, "url": "/composite/Profit-focused/maximized.gif", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "89.19.131.248"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "89.19.131.248 - - [19/Jun/2023:16:59:09 +0000] \"GET /workforce/hub.jpg HTTP/1.1\" 200 1600 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8 rv:5.0; en-US) AppleWebKit/533.30.3 (KHTML, like Gecko) Version/4.2 Safari/533.30.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1600}, "url": "/workforce/hub.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "46.184.185.75"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "46.184.185.75 - - [19/Jun/2023:16:59:09 +0000] \"GET /explicit-standardization-Public-key.js HTTP/1.1\" 200 2698 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_8_5 rv:3.0) Gecko/2009-13-05 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2698}, "url": "/explicit-standardization-Public-key.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "94.184.150.124"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "94.184.150.124 - - [19/Jun/2023:16:59:09 +0000] \"GET /internet%20solution/Innovative.css HTTP/1.1\" 200 2850 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 7_2_1 like Mac OS X; en-US) AppleWebKit/532.16.3 (KHTML, like Gecko) Version/3.0.5 Mobile/8B115 Safari/6532.16.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2850}, "url": "/internet%20solution/Innovative.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "153.151.4.24"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "153.151.4.24 - - [19/Jun/2023:16:59:09 +0000] \"GET /matrix-directional.svg HTTP/1.1\" 200 1456 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 4.0) AppleWebKit/532.39.2 (KHTML, like Gecko) Version/4.1 Safari/532.39.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1456}, "url": "/matrix-directional.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "209.248.67.48"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "209.248.67.48 - - [19/Jun/2023:16:59:09 +0000] \"GET /ability-structure%20neutral-Optional.png HTTP/1.1\" 301 102 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5351 (KHTML, like Gecko) Chrome/36.0.885.0 Mobile Safari/5351\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 102}, "url": "/ability-structure%20neutral-Optional.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "212.93.188.68"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "212.93.188.68 - - [19/Jun/2023:16:59:09 +0000] \"GET /Assimilated-architecture-installation.jpg HTTP/1.1\" 200 1278 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_9) AppleWebKit/5320 (KHTML, like Gecko) Chrome/37.0.860.0 Mobile Safari/5320\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1278}, "url": "/Assimilated-architecture-installation.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "91.14.253.213"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "91.14.253.213 - - [19/Jun/2023:16:59:09 +0000] \"HEAD /Sharable%20Multi-tiered/analyzing/throughput.hmtl HTTP/1.1\" 200 1656 \"-\" \"Mozilla/5.0 (Windows NT 4.0) AppleWebKit/5352 (KHTML, like Gecko) Chrome/37.0.876.0 Mobile Safari/5352\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1656}, "url": "/Sharable%20Multi-tiered/analyzing/throughput.hmtl", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "228.246.72.187"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "228.246.72.187 - - [19/Jun/2023:16:59:09 +0000] \"GET /Public-key/Optional-Re-engineered-Team-oriented.js HTTP/1.1\" 200 1026 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_10 rv:7.0; en-US) AppleWebKit/534.48.5 (KHTML, like Gecko) Version/5.2 Safari/534.48.5\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1026}, "url": "/Public-key/Optional-Re-engineered-Team-oriented.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "17.117.50.1"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "17.117.50.1 - - [19/Jun/2023:16:59:09 +0000] \"PUT /Cross-group/Universal.htm HTTP/1.1\" 200 2981 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5312 (KHTML, like Gecko) Chrome/40.0.892.0 Mobile Safari/5312\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2981}, "url": "/Cross-group/Universal.htm", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "147.81.196.71"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "147.81.196.71 - - [19/Jun/2023:16:59:09 +0000] \"GET /product/process%20improvement%20implementation-approach_Configurable.htm HTTP/1.1\" 200 1352 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:5.0) Gecko/1936-04-01 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1352}, "url": "/product/process%20improvement%20implementation-approach_Configurable.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "154.167.181.116"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "154.167.181.116 - - [19/Jun/2023:16:59:09 +0000] \"HEAD /encoding%20coherent%20Balanced%20web-enabled.hmtl HTTP/1.1\" 200 2625 \"-\" \"Opera/10.99 (Macintosh; U; Intel Mac OS X 10_8_3; en-US) Presto/2.8.257 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2625}, "url": "/encoding%20coherent%20Balanced%20web-enabled.hmtl", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "206.26.159.124"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "206.26.159.124 - - [19/Jun/2023:16:59:09 +0000] \"DELETE /Visionary.htm HTTP/1.1\" 200 1726 \"-\" \"Opera/8.61 (Windows NT 6.2; en-US) Presto/2.13.296 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1726}, "url": "/Visionary.htm", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "137.19.103.146"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "137.19.103.146 - - [19/Jun/2023:16:59:09 +0000] \"GET /Quality-focused-contextually-based/Multi-channelled/clear-thinking/interactive.htm HTTP/1.1\" 500 117 \"-\" \"Opera/8.63 (X11; Linux i686; en-US) Presto/2.8.220 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 117}, "url": "/Quality-focused-contextually-based/Multi-channelled/clear-thinking/interactive.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "189.121.31.114"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "189.121.31.114 - - [19/Jun/2023:16:59:09 +0000] \"PUT /focus%20group-clear-thinking_interactive/heuristic.jpg HTTP/1.1\" 200 2763 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_8_5) AppleWebKit/5311 (KHTML, like Gecko) Chrome/39.0.872.0 Mobile Safari/5311\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2763}, "url": "/focus%20group-clear-thinking_interactive/heuristic.jpg", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "207.7.173.9"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "207.7.173.9 - - [19/Jun/2023:16:59:09 +0000] \"POST /secondary/Team-oriented%20analyzing/customer%20loyalty_24/7.png HTTP/1.1\" 200 2359 \"-\" \"Mozilla/5.0 (Windows NT 5.01; en-US; rv:1.9.3.20) Gecko/1975-08-12 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2359}, "url": "/secondary/Team-oriented%20analyzing/customer%20loyalty_24/7.png", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "250.206.66.136"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "250.206.66.136 - - [19/Jun/2023:16:59:09 +0000] \"GET /actuating_transitional.js HTTP/1.1\" 200 2805 \"-\" \"Mozilla/5.0 (Windows NT 5.01) AppleWebKit/5341 (KHTML, like Gecko) Chrome/36.0.846.0 Mobile Safari/5341\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2805}, "url": "/actuating_transitional.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "99.36.14.131"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "99.36.14.131 - - [19/Jun/2023:16:59:09 +0000] \"GET /Integrated.jpg HTTP/1.1\" 200 1851 \"-\" \"Mozilla/5.0 (Windows NT 6.0) AppleWebKit/5332 (KHTML, like Gecko) Chrome/36.0.877.0 Mobile Safari/5332\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1851}, "url": "/Integrated.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "29.185.88.150"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "29.185.88.150 - - [19/Jun/2023:16:59:09 +0000] \"HEAD /Exclusive%20collaboration%20Persistent-24%20hour.js HTTP/1.1\" 200 959 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_1) AppleWebKit/5362 (KHTML, like Gecko) Chrome/36.0.887.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 959}, "url": "/Exclusive%20collaboration%20Persistent-24%20hour.js", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "136.153.241.139"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "136.153.241.139 - - [19/Jun/2023:16:59:09 +0000] \"GET /dynamic-groupware_discrete-User-centric/collaboration.js HTTP/1.1\" 200 1297 \"-\" \"Opera/10.72 (X11; Linux i686; en-US) Presto/2.10.182 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1297}, "url": "/dynamic-groupware_discrete-User-centric/collaboration.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "217.72.176.212"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "217.72.176.212 - - [19/Jun/2023:16:59:09 +0000] \"GET /coherent%20initiative/info-mediaries%20Versatile-content-based.css HTTP/1.1\" 200 1195 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:5.0) Gecko/1962-04-08 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1195}, "url": "/coherent%20initiative/info-mediaries%20Versatile-content-based.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "237.182.68.208"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "237.182.68.208 - - [19/Jun/2023:16:59:09 +0000] \"DELETE /Cross-group/zero%20administration/reciprocal.png HTTP/1.1\" 200 2921 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_1 like Mac OS X; en-US) AppleWebKit/536.8.5 (KHTML, like Gecko) Version/3.0.5 Mobile/8B112 Safari/6536.8.5\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2921}, "url": "/Cross-group/zero%20administration/reciprocal.png", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "209.25.71.187"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "209.25.71.187 - - [19/Jun/2023:16:59:09 +0000] \"GET /Decentralized-service-desk.svg HTTP/1.1\" 200 2175 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_10 rv:6.0; en-US) AppleWebKit/532.45.7 (KHTML, like Gecko) Version/6.0 Safari/532.45.7\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2175}, "url": "/Decentralized-service-desk.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "221.127.46.57"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "221.127.46.57 - - [19/Jun/2023:16:59:09 +0000] \"GET /concept-Enhanced-Enterprise-wide_solution-oriented/4th%20generation.htm HTTP/1.1\" 200 2000 \"-\" \"Opera/9.64 (Macintosh; U; PPC Mac OS X 10_9_4; en-US) Presto/2.10.343 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2000}, "url": "/concept-Enhanced-Enterprise-wide_solution-oriented/4th%20generation.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "227.220.149.229"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "227.220.149.229 - - [19/Jun/2023:16:59:09 +0000] \"GET /grid-enabled_encompassing/holistic.png HTTP/1.1\" 200 1771 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5321 (KHTML, like Gecko) Chrome/37.0.844.0 Mobile Safari/5321\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1771}, "url": "/grid-enabled_encompassing/holistic.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "77.19.57.151"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "77.19.57.151 - - [19/Jun/2023:16:59:09 +0000] \"DELETE /synergy-mobile-Upgradable%20Persevering/Profit-focused.php HTTP/1.1\" 302 82 \"-\" \"Opera/8.87 (X11; Linux x86_64; en-US) Presto/2.11.169 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 82}, "url": "/synergy-mobile-Upgradable%20Persevering/Profit-focused.php", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "224.173.238.128"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "224.173.238.128 - - [19/Jun/2023:16:59:09 +0000] \"GET /foreground%20dedicated%20Object-based.htm HTTP/1.1\" 404 87 \"-\" \"Mozilla/5.0 (iPad; CPU OS 8_0_3 like Mac OS X; en-US) AppleWebKit/534.44.7 (KHTML, like Gecko) Version/5.0.5 Mobile/8B120 Safari/6534.44.7\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 87}, "url": "/foreground%20dedicated%20Object-based.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "17.150.13.111"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "17.150.13.111 - - [19/Jun/2023:16:59:09 +0000] \"DELETE /bifurcated_Pre-emptive/focus%20group-circuit.css HTTP/1.1\" 400 120 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5312 (KHTML, like Gecko) Chrome/36.0.812.0 Mobile Safari/5312\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 120}, "url": "/bifurcated_Pre-emptive/focus%20group-circuit.css", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "94.23.37.75"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "94.23.37.75 - - [19/Jun/2023:16:59:09 +0000] \"GET /Organic/Persistent/bandwidth-monitored/uniform.php HTTP/1.1\" 200 2519 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_7_7 rv:2.0) Gecko/1964-18-02 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2519}, "url": "/Organic/Persistent/bandwidth-monitored/uniform.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "97.186.84.50"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "97.186.84.50 - - [19/Jun/2023:16:59:09 +0000] \"POST /architecture/time-frame_Open-source_Persistent.png HTTP/1.1\" 200 2855 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5341 (KHTML, like Gecko) Chrome/40.0.874.0 Mobile Safari/5341\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2855}, "url": "/architecture/time-frame_Open-source_Persistent.png", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "139.137.163.201"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "139.137.163.201 - - [19/Jun/2023:16:59:09 +0000] \"GET /Intuitive-Secured.js HTTP/1.1\" 200 2461 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_7_9 rv:4.0; en-US) AppleWebKit/535.8.6 (KHTML, like Gecko) Version/4.2 Safari/535.8.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2461}, "url": "/Intuitive-Secured.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "250.64.254.101"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "250.64.254.101 - - [19/Jun/2023:16:59:09 +0000] \"GET /frame.htm HTTP/1.1\" 200 2269 \"-\" \"Mozilla/5.0 (Windows NT 4.0; en-US; rv:1.9.1.20) Gecko/1947-13-06 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2269}, "url": "/frame.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "185.149.70.125"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "185.149.70.125 - - [19/Jun/2023:16:59:09 +0000] \"DELETE /Monitored-moderator-Configurable-motivating/asynchronous.hmtl HTTP/1.1\" 200 2968 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5362 (KHTML, like Gecko) Chrome/39.0.839.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2968}, "url": "/Monitored-moderator-Configurable-motivating/asynchronous.hmtl", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "75.196.226.3"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "75.196.226.3 - - [19/Jun/2023:16:59:09 +0000] \"GET /Persevering.css HTTP/1.1\" 200 1111 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_9_8 rv:7.0) Gecko/1900-08-04 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1111}, "url": "/Persevering.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "219.49.41.133"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "219.49.41.133 - - [19/Jun/2023:16:59:09 +0000] \"POST /web-enabled/Right-sized/archive.jpg HTTP/1.1\" 200 2696 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_2 rv:3.0) Gecko/1945-01-09 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2696}, "url": "/web-enabled/Right-sized/archive.jpg", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "244.160.142.47"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "244.160.142.47 - - [19/Jun/2023:16:59:09 +0000] \"GET /knowledge%20base/encompassing/non-volatile-composite.jpg HTTP/1.1\" 301 96 \"-\" \"Mozilla/5.0 (Windows NT 5.01; en-US; rv:1.9.2.20) Gecko/2013-14-01 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 96}, "url": "/knowledge%20base/encompassing/non-volatile-composite.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "123.144.147.232"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "123.144.147.232 - - [19/Jun/2023:16:59:09 +0000] \"POST /actuating_function/info-mediaries-static_attitude.hmtl HTTP/1.1\" 200 1718 \"-\" \"Opera/9.51 (Windows NT 6.1; en-US) Presto/2.9.337 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1718}, "url": "/actuating_function/info-mediaries-static_attitude.hmtl", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "168.115.33.234"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "168.115.33.234 - - [19/Jun/2023:16:59:09 +0000] \"GET /Operative-reciprocal-uniform.svg HTTP/1.1\" 200 2812 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5340 (KHTML, like Gecko) Chrome/37.0.838.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2812}, "url": "/Operative-reciprocal-uniform.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "107.7.211.208"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "107.7.211.208 - - [19/Jun/2023:16:59:09 +0000] \"GET /challenge.php HTTP/1.1\" 200 2684 \"-\" \"Opera/8.27 (Windows NT 5.01; en-US) Presto/2.9.310 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2684}, "url": "/challenge.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "61.7.235.163"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "61.7.235.163 - - [19/Jun/2023:16:59:09 +0000] \"PATCH /hardware-infrastructure_De-engineered/methodology%20interface.htm HTTP/1.1\" 200 1109 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.01) AppleWebKit/531.26.8 (KHTML, like Gecko) Version/6.0 Safari/531.26.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1109}, "url": "/hardware-infrastructure_De-engineered/methodology%20interface.htm", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "54.235.236.232"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "54.235.236.232 - - [19/Jun/2023:16:59:09 +0000] \"PATCH /Mandatory/Graphic%20Interface-application.hmtl HTTP/1.1\" 200 1056 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5362 (KHTML, like Gecko) Chrome/38.0.823.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1056}, "url": "/Mandatory/Graphic%20Interface-application.hmtl", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "137.248.124.51"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "137.248.124.51 - - [19/Jun/2023:16:59:09 +0000] \"HEAD /composite.htm HTTP/1.1\" 200 2205 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:6.0) Gecko/1974-06-01 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2205}, "url": "/composite.htm", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "193.110.173.106"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "193.110.173.106 - - [19/Jun/2023:16:59:09 +0000] \"GET /Down-sized%20flexibility.jpg HTTP/1.1\" 400 44 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_7 rv:3.0) Gecko/1941-09-08 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 44}, "url": "/Down-sized%20flexibility.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "75.70.153.13"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "75.70.153.13 - - [19/Jun/2023:16:59:09 +0000] \"PATCH /leading%20edge_grid-enabled%20emulation%20initiative-attitude-oriented.php HTTP/1.1\" 200 1213 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5361 (KHTML, like Gecko) Chrome/36.0.841.0 Mobile Safari/5361\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1213}, "url": "/leading%20edge_grid-enabled%20emulation%20initiative-attitude-oriented.php", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "110.148.58.196"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "110.148.58.196 - - [19/Jun/2023:16:59:09 +0000] \"HEAD /Adaptive/context-sensitive/approach-parallelism-client-driven.js HTTP/1.1\" 200 1344 \"-\" \"Opera/9.12 (Macintosh; Intel Mac OS X 10_7_1; en-US) Presto/2.10.186 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1344}, "url": "/Adaptive/context-sensitive/approach-parallelism-client-driven.js", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "114.220.130.10"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "114.220.130.10 - - [19/Jun/2023:16:59:09 +0000] \"GET /upward-trending/application-forecast-Business-focused_foreground.htm HTTP/1.1\" 400 119 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_5_8 rv:5.0; en-US) AppleWebKit/531.36.3 (KHTML, like Gecko) Version/4.0 Safari/531.36.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 119}, "url": "/upward-trending/application-forecast-Business-focused_foreground.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "53.135.98.181"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "53.135.98.181 - - [19/Jun/2023:16:59:09 +0000] \"GET /algorithm/paradigm/optimizing/infrastructure.php HTTP/1.1\" 200 1416 \"-\" \"Mozilla/5.0 (Windows NT 6.2) AppleWebKit/5310 (KHTML, like Gecko) Chrome/36.0.854.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1416}, "url": "/algorithm/paradigm/optimizing/infrastructure.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "54.167.216.6"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "54.167.216.6 - - [19/Jun/2023:16:59:09 +0000] \"HEAD /scalable/radical.htm HTTP/1.1\" 200 1681 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_5_2) AppleWebKit/5340 (KHTML, like Gecko) Chrome/38.0.830.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1681}, "url": "/scalable/radical.htm", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "146.239.158.236"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "146.239.158.236 - - [19/Jun/2023:16:59:09 +0000] \"PATCH /24/7_bifurcated.css HTTP/1.1\" 200 2665 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5331 (KHTML, like Gecko) Chrome/38.0.865.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2665}, "url": "/24/7_bifurcated.css", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "62.220.38.90"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "62.220.38.90 - - [19/Jun/2023:16:59:09 +0000] \"GET /mobile/didactic/utilisation-Seamless%20Persistent.js HTTP/1.1\" 200 925 \"-\" \"Mozilla/5.0 (Windows NT 4.0; en-US; rv:1.9.3.20) Gecko/1999-23-10 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 925}, "url": "/mobile/didactic/utilisation-Seamless%20Persistent.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "156.79.190.0"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "156.79.190.0 - - [19/Jun/2023:16:59:09 +0000] \"GET /attitude-oriented_model.hmtl HTTP/1.1\" 200 1701 \"-\" \"Opera/10.71 (Windows 98; Win 9x 4.90; en-US) Presto/2.9.350 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1701}, "url": "/attitude-oriented_model.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "109.18.132.32"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "109.18.132.32 - - [19/Jun/2023:16:59:09 +0000] \"GET /fresh-thinking%20Configurable.hmtl HTTP/1.1\" 500 88 \"-\" \"Mozilla/5.0 (Windows NT 6.2) AppleWebKit/5360 (KHTML, like Gecko) Chrome/40.0.862.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 88}, "url": "/fresh-thinking%20Configurable.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "184.24.66.253"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "184.24.66.253 - - [19/Jun/2023:16:59:09 +0000] \"GET /optimizing%20Multi-channelled/stable/interactive-foreground.png HTTP/1.1\" 200 1682 \"-\" \"Opera/8.60 (Macintosh; U; PPC Mac OS X 10_8_0; en-US) Presto/2.10.322 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1682}, "url": "/optimizing%20Multi-channelled/stable/interactive-foreground.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "235.109.64.34"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "235.109.64.34 - - [19/Jun/2023:16:59:09 +0000] \"GET /middleware%20interface/Enhanced/Up-sized.htm HTTP/1.1\" 200 2986 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_1) AppleWebKit/5330 (KHTML, like Gecko) Chrome/38.0.846.0 Mobile Safari/5330\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2986}, "url": "/middleware%20interface/Enhanced/Up-sized.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "200.73.213.172"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "200.73.213.172 - - [19/Jun/2023:16:59:09 +0000] \"HEAD /Visionary-mobile.hmtl HTTP/1.1\" 200 1714 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_6) AppleWebKit/5360 (KHTML, like Gecko) Chrome/38.0.884.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1714}, "url": "/Visionary-mobile.hmtl", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "199.100.3.50"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "199.100.3.50 - - [19/Jun/2023:16:59:09 +0000] \"GET /systemic/reciprocal/Fully-configurable_Phased/Team-oriented.hmtl HTTP/1.1\" 404 47 \"-\" \"Mozilla/5.0 (Windows NT 6.2) AppleWebKit/5330 (KHTML, like Gecko) Chrome/39.0.829.0 Mobile Safari/5330\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 47}, "url": "/systemic/reciprocal/Fully-configurable_Phased/Team-oriented.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "144.23.234.232"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "144.23.234.232 - - [19/Jun/2023:16:59:09 +0000] \"GET /Quality-focused.jpg HTTP/1.1\" 200 859 \"-\" \"Mozilla/5.0 (Windows NT 6.0; en-US; rv:1.9.3.20) Gecko/2000-13-04 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 859}, "url": "/Quality-focused.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "86.143.62.242"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "86.143.62.242 - - [19/Jun/2023:16:59:09 +0000] \"GET /disintermediate_Synergized-next%20generation/fresh-thinking.svg HTTP/1.1\" 301 64 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.01) AppleWebKit/535.33.6 (KHTML, like Gecko) Version/5.2 Safari/535.33.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 64}, "url": "/disintermediate_Synergized-next%20generation/fresh-thinking.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "115.243.219.22"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "115.243.219.22 - - [19/Jun/2023:16:59:09 +0000] \"GET /core/static-6th%20generation%20disintermediate-Synchronised.jpg HTTP/1.1\" 200 2082 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5331 (KHTML, like Gecko) Chrome/38.0.866.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2082}, "url": "/core/static-6th%20generation%20disintermediate-Synchronised.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "36.107.147.93"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "36.107.147.93 - - [19/Jun/2023:16:59:09 +0000] \"GET /Visionary-internet%20solution.svg HTTP/1.1\" 200 2747 \"-\" \"Opera/10.48 (Macintosh; U; PPC Mac OS X 10_5_2; en-US) Presto/2.12.224 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2747}, "url": "/Visionary-internet%20solution.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "11.233.14.200"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "11.233.14.200 - - [19/Jun/2023:16:59:09 +0000] \"GET /function.gif HTTP/1.1\" 404 67 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:5.0) Gecko/1975-27-12 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 67}, "url": "/function.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "140.128.58.204"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "140.128.58.204 - - [19/Jun/2023:16:59:09 +0000] \"DELETE /benchmark_migration/standardization%20Self-enabling/Reactive.jpg HTTP/1.1\" 404 31 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_8_7 rv:6.0; en-US) AppleWebKit/534.20.5 (KHTML, like Gecko) Version/5.1 Safari/534.20.5\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 31}, "url": "/benchmark_migration/standardization%20Self-enabling/Reactive.jpg", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "16.124.94.65"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "16.124.94.65 - - [19/Jun/2023:16:59:09 +0000] \"GET /intangible/Synchronised.png HTTP/1.1\" 200 3042 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_7) AppleWebKit/5321 (KHTML, like Gecko) Chrome/40.0.801.0 Mobile Safari/5321\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3042}, "url": "/intangible/Synchronised.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "180.157.97.147"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "180.157.97.147 - - [19/Jun/2023:16:59:09 +0000] \"PATCH /moratorium/interface-mission-critical/Quality-focused-process%20improvement.jpg HTTP/1.1\" 200 1908 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5311 (KHTML, like Gecko) Chrome/39.0.880.0 Mobile Safari/5311\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1908}, "url": "/moratorium/interface-mission-critical/Quality-focused-process%20improvement.jpg", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "242.16.15.164"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "242.16.15.164 - - [19/Jun/2023:16:59:09 +0000] \"GET /transitional_exuding%20intranet/Reactive.hmtl HTTP/1.1\" 200 2022 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_9_10) AppleWebKit/5331 (KHTML, like Gecko) Chrome/40.0.811.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2022}, "url": "/transitional_exuding%20intranet/Reactive.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "236.156.72.238"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "236.156.72.238 - - [19/Jun/2023:16:59:09 +0000] \"HEAD /synergy/zero%20tolerance_tangible.jpg HTTP/1.1\" 200 1346 \"-\" \"Mozilla/5.0 (Windows 95) AppleWebKit/5330 (KHTML, like Gecko) Chrome/38.0.875.0 Mobile Safari/5330\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1346}, "url": "/synergy/zero%20tolerance_tangible.jpg", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "76.201.85.36"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "76.201.85.36 - - [19/Jun/2023:16:59:09 +0000] \"HEAD /Total/service-desk/Profit-focused%20encryption.hmtl HTTP/1.1\" 200 1307 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5312 (KHTML, like Gecko) Chrome/39.0.817.0 Mobile Safari/5312\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1307}, "url": "/Total/service-desk/Profit-focused%20encryption.hmtl", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "244.197.206.45"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "244.197.206.45 - - [19/Jun/2023:16:59:09 +0000] \"PUT /service-desk.css HTTP/1.1\" 200 2795 \"-\" \"Mozilla/5.0 (Windows 95) AppleWebKit/5311 (KHTML, like Gecko) Chrome/37.0.805.0 Mobile Safari/5311\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2795}, "url": "/service-desk.css", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "24.131.187.61"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "24.131.187.61 - - [19/Jun/2023:16:59:09 +0000] \"GET /open%20architecture/Stand-alone_Visionary/homogeneous.svg HTTP/1.1\" 200 2257 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_5) AppleWebKit/5352 (KHTML, like Gecko) Chrome/36.0.876.0 Mobile Safari/5352\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2257}, "url": "/open%20architecture/Stand-alone_Visionary/homogeneous.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "74.41.58.70"}}, "@timestamp": "2023-06-19T16:59:09.000Z", "observedTimestamp": "2023-06-19T16:59:09.000Z", "body": "74.41.58.70 - - [19/Jun/2023:16:59:09 +0000] \"DELETE /access_Fully-configurable-approach/homogeneous.php HTTP/1.1\" 200 928 \"-\" \"Opera/10.71 (Windows NT 4.0; en-US) Presto/2.13.239 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 928}, "url": "/access_Fully-configurable-approach/homogeneous.php", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "150.76.12.205"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "150.76.12.205 - - [19/Jun/2023:16:59:10 +0000] \"PUT /client-driven/middleware.png HTTP/1.1\" 200 929 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3 rv:5.0; en-US) AppleWebKit/533.26.4 (KHTML, like Gecko) Version/6.2 Safari/533.26.4\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 929}, "url": "/client-driven/middleware.png", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "245.236.108.129"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "245.236.108.129 - - [19/Jun/2023:16:59:10 +0000] \"GET /Assimilated_interactive-function-fault-tolerant.svg HTTP/1.1\" 200 1510 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.2) AppleWebKit/533.45.3 (KHTML, like Gecko) Version/6.1 Safari/533.45.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1510}, "url": "/Assimilated_interactive-function-fault-tolerant.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "193.55.70.151"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "193.55.70.151 - - [19/Jun/2023:16:59:10 +0000] \"GET /static.hmtl HTTP/1.1\" 200 2300 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_0) AppleWebKit/5351 (KHTML, like Gecko) Chrome/38.0.896.0 Mobile Safari/5351\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2300}, "url": "/static.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "254.46.184.190"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "254.46.184.190 - - [19/Jun/2023:16:59:10 +0000] \"GET /regional.js HTTP/1.1\" 200 1336 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5330 (KHTML, like Gecko) Chrome/40.0.857.0 Mobile Safari/5330\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1336}, "url": "/regional.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "45.155.9.202"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "45.155.9.202 - - [19/Jun/2023:16:59:10 +0000] \"PATCH /24%20hour_Function-based.svg HTTP/1.1\" 200 2710 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_3 rv:7.0) Gecko/1990-10-08 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2710}, "url": "/24%20hour_Function-based.svg", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "122.9.37.225"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "122.9.37.225 - - [19/Jun/2023:16:59:10 +0000] \"DELETE /logistical-discrete.css HTTP/1.1\" 200 1771 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_5_5 rv:3.0) Gecko/2019-26-02 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1771}, "url": "/logistical-discrete.css", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "233.248.161.135"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "233.248.161.135 - - [19/Jun/2023:16:59:10 +0000] \"GET /benchmark.gif HTTP/1.1\" 200 3058 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.01) AppleWebKit/536.3.2 (KHTML, like Gecko) Version/4.1 Safari/536.3.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3058}, "url": "/benchmark.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "68.59.132.115"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "68.59.132.115 - - [19/Jun/2023:16:59:10 +0000] \"PUT /radical/Distributed%20solution-oriented_Progressive.css HTTP/1.1\" 200 846 \"-\" \"Opera/8.68 (X11; Linux i686; en-US) Presto/2.11.293 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 846}, "url": "/radical/Distributed%20solution-oriented_Progressive.css", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "234.32.139.89"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "234.32.139.89 - - [19/Jun/2023:16:59:10 +0000] \"GET /hardware%20exuding-24%20hour%20Adaptive.php HTTP/1.1\" 404 116 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.2) AppleWebKit/532.20.1 (KHTML, like Gecko) Version/5.2 Safari/532.20.1\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 116}, "url": "/hardware%20exuding-24%20hour%20Adaptive.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "244.93.64.183"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "244.93.64.183 - - [19/Jun/2023:16:59:10 +0000] \"HEAD /asynchronous_Managed-service-desk-neutral/Enterprise-wide.css HTTP/1.1\" 404 117 \"-\" \"Opera/8.48 (Windows NT 4.0; en-US) Presto/2.13.185 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 117}, "url": "/asynchronous_Managed-service-desk-neutral/Enterprise-wide.css", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "240.141.56.20"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "240.141.56.20 - - [19/Jun/2023:16:59:10 +0000] \"PUT /leading%20edge%20secured%20line-Persistent/Organic-Visionary.gif HTTP/1.1\" 200 937 \"-\" \"Mozilla/5.0 (Windows 95) AppleWebKit/5342 (KHTML, like Gecko) Chrome/38.0.832.0 Mobile Safari/5342\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 937}, "url": "/leading%20edge%20secured%20line-Persistent/Organic-Visionary.gif", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "26.150.109.26"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "26.150.109.26 - - [19/Jun/2023:16:59:10 +0000] \"GET /multi-state/Object-based_Multi-channelled-actuating.htm HTTP/1.1\" 200 1813 \"-\" \"Opera/10.13 (Windows NT 5.1; en-US) Presto/2.13.235 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1813}, "url": "/multi-state/Object-based_Multi-channelled-actuating.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "204.83.57.136"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "204.83.57.136 - - [19/Jun/2023:16:59:10 +0000] \"GET /Object-based/transitional-monitoring/real-time/Robust.css HTTP/1.1\" 200 2608 \"-\" \"Opera/9.66 (Windows NT 6.0; en-US) Presto/2.12.341 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2608}, "url": "/Object-based/transitional-monitoring/real-time/Robust.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "176.252.60.141"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "176.252.60.141 - - [19/Jun/2023:16:59:10 +0000] \"GET /software.js HTTP/1.1\" 200 2077 \"-\" \"Opera/9.17 (Macintosh; PPC Mac OS X 10_7_8; en-US) Presto/2.8.353 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2077}, "url": "/software.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "166.3.20.186"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "166.3.20.186 - - [19/Jun/2023:16:59:10 +0000] \"HEAD /Networked/modular/Pre-emptive.js HTTP/1.1\" 200 947 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_3 rv:7.0; en-US) AppleWebKit/534.5.3 (KHTML, like Gecko) Version/6.1 Safari/534.5.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 947}, "url": "/Networked/modular/Pre-emptive.js", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "91.248.36.195"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "91.248.36.195 - - [19/Jun/2023:16:59:10 +0000] \"GET /implementation/definition_bottom-line.gif HTTP/1.1\" 200 1191 \"-\" \"Mozilla/5.0 (Windows NT 5.0; en-US; rv:1.9.3.20) Gecko/1909-01-12 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1191}, "url": "/implementation/definition_bottom-line.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "203.135.213.184"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "203.135.213.184 - - [19/Jun/2023:16:59:10 +0000] \"POST /encryption%20Down-sized.css HTTP/1.1\" 200 1972 \"-\" \"Opera/8.80 (Windows NT 6.0; en-US) Presto/2.12.236 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1972}, "url": "/encryption%20Down-sized.css", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "9.103.129.141"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "9.103.129.141 - - [19/Jun/2023:16:59:10 +0000] \"GET /asymmetric/Integrated_matrix.htm HTTP/1.1\" 200 1681 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:8.0) Gecko/2023-30-07 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1681}, "url": "/asymmetric/Integrated_matrix.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "214.47.220.199"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "214.47.220.199 - - [19/Jun/2023:16:59:10 +0000] \"GET /infrastructure.svg HTTP/1.1\" 200 2443 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.0) AppleWebKit/535.26.2 (KHTML, like Gecko) Version/5.1 Safari/535.26.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2443}, "url": "/infrastructure.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "146.162.153.59"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "146.162.153.59 - - [19/Jun/2023:16:59:10 +0000] \"GET /clear-thinking/Switchable/Optional.php HTTP/1.1\" 200 1882 \"-\" \"Mozilla/5.0 (Windows NT 6.0) AppleWebKit/5320 (KHTML, like Gecko) Chrome/36.0.819.0 Mobile Safari/5320\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1882}, "url": "/clear-thinking/Switchable/Optional.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "152.152.63.200"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "152.152.63.200 - - [19/Jun/2023:16:59:10 +0000] \"GET /Profound/multimedia%20Persevering.php HTTP/1.1\" 200 1154 \"-\" \"Opera/9.21 (X11; Linux i686; en-US) Presto/2.13.305 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1154}, "url": "/Profound/multimedia%20Persevering.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "65.238.32.164"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "65.238.32.164 - - [19/Jun/2023:16:59:10 +0000] \"GET /high-level.php HTTP/1.1\" 200 2126 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_8_4 rv:2.0) Gecko/1971-25-12 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2126}, "url": "/high-level.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "85.181.52.158"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "85.181.52.158 - - [19/Jun/2023:16:59:10 +0000] \"GET /support.hmtl HTTP/1.1\" 200 953 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5310 (KHTML, like Gecko) Chrome/38.0.839.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 953}, "url": "/support.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "39.139.126.28"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "39.139.126.28 - - [19/Jun/2023:16:59:10 +0000] \"HEAD /synergy%20system%20engine.js HTTP/1.1\" 200 1559 \"-\" \"Mozilla/5.0 (Windows; U; Windows 95) AppleWebKit/533.48.3 (KHTML, like Gecko) Version/5.1 Safari/533.48.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1559}, "url": "/synergy%20system%20engine.js", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "127.200.248.84"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "127.200.248.84 - - [19/Jun/2023:16:59:10 +0000] \"GET /didactic/Public-key.svg HTTP/1.1\" 200 1982 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_7_2) AppleWebKit/5320 (KHTML, like Gecko) Chrome/36.0.887.0 Mobile Safari/5320\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1982}, "url": "/didactic/Public-key.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "228.240.53.26"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "228.240.53.26 - - [19/Jun/2023:16:59:10 +0000] \"GET /object-oriented-Innovative-Right-sized%20Persistent.hmtl HTTP/1.1\" 200 1644 \"-\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/5310 (KHTML, like Gecko) Chrome/39.0.881.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1644}, "url": "/object-oriented-Innovative-Right-sized%20Persistent.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "212.133.102.76"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "212.133.102.76 - - [19/Jun/2023:16:59:10 +0000] \"HEAD /zero%20defect%20systemic-Fundamental.png HTTP/1.1\" 200 3039 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5331 (KHTML, like Gecko) Chrome/40.0.820.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3039}, "url": "/zero%20defect%20systemic-Fundamental.png", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "15.85.175.16"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "15.85.175.16 - - [19/Jun/2023:16:59:10 +0000] \"PUT /Cross-platform/Future-proofed_Reverse-engineered/customer%20loyalty.png HTTP/1.1\" 200 2736 \"-\" \"Mozilla/5.0 (Windows 98) AppleWebKit/5340 (KHTML, like Gecko) Chrome/38.0.870.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2736}, "url": "/Cross-platform/Future-proofed_Reverse-engineered/customer%20loyalty.png", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "111.3.155.169"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "111.3.155.169 - - [19/Jun/2023:16:59:10 +0000] \"GET /Fundamental_Persevering.js HTTP/1.1\" 200 2650 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5342 (KHTML, like Gecko) Chrome/38.0.890.0 Mobile Safari/5342\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2650}, "url": "/Fundamental_Persevering.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "234.251.3.238"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "234.251.3.238 - - [19/Jun/2023:16:59:10 +0000] \"GET /architecture%20systemic-Proactive.css HTTP/1.1\" 200 1273 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5360 (KHTML, like Gecko) Chrome/39.0.870.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1273}, "url": "/architecture%20systemic-Proactive.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "149.149.158.110"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "149.149.158.110 - - [19/Jun/2023:16:59:10 +0000] \"GET /Quality-focused/Synergized-firmware_analyzing/exuding.svg HTTP/1.1\" 301 112 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_6 rv:6.0) Gecko/1956-10-01 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 112}, "url": "/Quality-focused/Synergized-firmware_analyzing/exuding.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "43.8.52.187"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "43.8.52.187 - - [19/Jun/2023:16:59:10 +0000] \"DELETE /client-driven/bifurcated/methodical/forecast.jpg HTTP/1.1\" 200 1129 \"-\" \"Opera/10.38 (Macintosh; Intel Mac OS X 10_9_9; en-US) Presto/2.9.197 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1129}, "url": "/client-driven/bifurcated/methodical/forecast.jpg", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "60.161.110.194"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "60.161.110.194 - - [19/Jun/2023:16:59:10 +0000] \"GET /policy/task-force/local-synergy/product.jpg HTTP/1.1\" 200 2011 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_10) AppleWebKit/5362 (KHTML, like Gecko) Chrome/37.0.879.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2011}, "url": "/policy/task-force/local-synergy/product.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "29.137.63.4"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "29.137.63.4 - - [19/Jun/2023:16:59:10 +0000] \"GET /Synergistic.svg HTTP/1.1\" 200 2674 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_8_9 rv:4.0) Gecko/1967-13-10 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2674}, "url": "/Synergistic.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "25.11.123.197"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "25.11.123.197 - - [19/Jun/2023:16:59:10 +0000] \"PUT /composite.jpg HTTP/1.1\" 200 2104 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:6.0) Gecko/1948-22-02 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2104}, "url": "/composite.jpg", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "231.176.25.100"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "231.176.25.100 - - [19/Jun/2023:16:59:10 +0000] \"GET /policy%20disintermediate/24/7%20Business-focused.js HTTP/1.1\" 400 39 \"-\" \"Opera/10.45 (Windows NT 5.0; en-US) Presto/2.11.343 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 39}, "url": "/policy%20disintermediate/24/7%20Business-focused.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "96.153.51.146"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "96.153.51.146 - - [19/Jun/2023:16:59:10 +0000] \"GET /contextually-based-methodical.jpg HTTP/1.1\" 200 1893 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_0 rv:5.0) Gecko/1911-07-11 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1893}, "url": "/contextually-based-methodical.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "186.108.80.241"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "186.108.80.241 - - [19/Jun/2023:16:59:10 +0000] \"PATCH /analyzer/homogeneous-Open-architected%20Organized%20protocol.gif HTTP/1.1\" 200 1695 \"-\" \"Mozilla/5.0 (iPad; CPU OS 7_3_1 like Mac OS X; en-US) AppleWebKit/535.42.7 (KHTML, like Gecko) Version/4.0.5 Mobile/8B116 Safari/6535.42.7\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1695}, "url": "/analyzer/homogeneous-Open-architected%20Organized%20protocol.gif", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "61.152.121.190"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "61.152.121.190 - - [19/Jun/2023:16:59:10 +0000] \"PUT /demand-driven%20parallelism.jpg HTTP/1.1\" 200 1798 \"-\" \"Mozilla/5.0 (iPad; CPU OS 7_2_3 like Mac OS X; en-US) AppleWebKit/534.41.6 (KHTML, like Gecko) Version/5.0.5 Mobile/8B120 Safari/6534.41.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1798}, "url": "/demand-driven%20parallelism.jpg", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "220.7.41.187"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "220.7.41.187 - - [19/Jun/2023:16:59:10 +0000] \"GET /instruction%20set-Compatible.css HTTP/1.1\" 400 97 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:7.0) Gecko/1983-08-08 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 97}, "url": "/instruction%20set-Compatible.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "143.14.243.193"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "143.14.243.193 - - [19/Jun/2023:16:59:10 +0000] \"PUT /foreground/real-time/Object-based.htm HTTP/1.1\" 302 45 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_1 like Mac OS X; en-US) AppleWebKit/536.34.2 (KHTML, like Gecko) Version/5.0.5 Mobile/8B113 Safari/6536.34.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 45}, "url": "/foreground/real-time/Object-based.htm", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "91.72.92.146"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "91.72.92.146 - - [19/Jun/2023:16:59:10 +0000] \"GET /website-Extended/didactic.php HTTP/1.1\" 200 3018 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5340 (KHTML, like Gecko) Chrome/37.0.875.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3018}, "url": "/website-Extended/didactic.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "178.218.47.60"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "178.218.47.60 - - [19/Jun/2023:16:59:10 +0000] \"GET /Pre-emptive-support-Devolved/superstructure/Synergistic.css HTTP/1.1\" 200 2221 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_1 like Mac OS X; en-US) AppleWebKit/534.47.4 (KHTML, like Gecko) Version/3.0.5 Mobile/8B118 Safari/6534.47.4\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2221}, "url": "/Pre-emptive-support-Devolved/superstructure/Synergistic.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "45.100.176.230"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "45.100.176.230 - - [19/Jun/2023:16:59:10 +0000] \"POST /Balanced_product-mobile/Organic_stable.gif HTTP/1.1\" 200 2483 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 7_3_2 like Mac OS X; en-US) AppleWebKit/536.19.1 (KHTML, like Gecko) Version/4.0.5 Mobile/8B115 Safari/6536.19.1\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2483}, "url": "/Balanced_product-mobile/Organic_stable.gif", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "40.125.120.86"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "40.125.120.86 - - [19/Jun/2023:16:59:10 +0000] \"GET /Public-key/Vision-oriented-orchestration.png HTTP/1.1\" 200 1100 \"-\" \"Mozilla/5.0 (Windows NT 6.2; en-US; rv:1.9.3.20) Gecko/1971-31-10 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1100}, "url": "/Public-key/Vision-oriented-orchestration.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "164.173.148.118"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "164.173.148.118 - - [19/Jun/2023:16:59:10 +0000] \"GET /Decentralized.hmtl HTTP/1.1\" 200 2761 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5361 (KHTML, like Gecko) Chrome/39.0.846.0 Mobile Safari/5361\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2761}, "url": "/Decentralized.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "172.112.105.119"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "172.112.105.119 - - [19/Jun/2023:16:59:10 +0000] \"GET /hub.jpg HTTP/1.1\" 200 1067 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:7.0) Gecko/1908-25-06 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1067}, "url": "/hub.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "255.29.215.36"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "255.29.215.36 - - [19/Jun/2023:16:59:10 +0000] \"GET /value-added/Re-contextualized%20hardware-Polarised.css HTTP/1.1\" 400 107 \"-\" \"Mozilla/5.0 (Windows 98) AppleWebKit/5320 (KHTML, like Gecko) Chrome/40.0.802.0 Mobile Safari/5320\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 107}, "url": "/value-added/Re-contextualized%20hardware-Polarised.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "148.205.152.200"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "148.205.152.200 - - [19/Jun/2023:16:59:10 +0000] \"GET /systemic/web-enabled%20contextually-based/analyzing/Self-enabling.php HTTP/1.1\" 200 2647 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_9_0 rv:7.0; en-US) AppleWebKit/534.20.2 (KHTML, like Gecko) Version/6.1 Safari/534.20.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2647}, "url": "/systemic/web-enabled%20contextually-based/analyzing/Self-enabling.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "173.169.35.70"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "173.169.35.70 - - [19/Jun/2023:16:59:10 +0000] \"GET /framework/info-mediaries/homogeneous/neutral/monitoring.png HTTP/1.1\" 200 1416 \"-\" \"Mozilla/5.0 (Windows NT 5.01) AppleWebKit/5322 (KHTML, like Gecko) Chrome/37.0.865.0 Mobile Safari/5322\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1416}, "url": "/framework/info-mediaries/homogeneous/neutral/monitoring.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "203.222.64.41"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "203.222.64.41 - - [19/Jun/2023:16:59:10 +0000] \"POST /intermediate%20optimizing-transitional/methodical%20fresh-thinking.png HTTP/1.1\" 200 2976 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5342 (KHTML, like Gecko) Chrome/38.0.872.0 Mobile Safari/5342\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2976}, "url": "/intermediate%20optimizing-transitional/methodical%20fresh-thinking.png", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "73.255.72.37"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "73.255.72.37 - - [19/Jun/2023:16:59:10 +0000] \"GET /mobile%20Down-sized-Enhanced.js HTTP/1.1\" 500 60 \"-\" \"Opera/10.90 (Macintosh; Intel Mac OS X 10_7_1; en-US) Presto/2.11.183 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 60}, "url": "/mobile%20Down-sized-Enhanced.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "40.96.252.230"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "40.96.252.230 - - [19/Jun/2023:16:59:10 +0000] \"GET /Open-architected/Vision-oriented-regional/customer%20loyalty.gif HTTP/1.1\" 200 1073 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_8_6) AppleWebKit/5360 (KHTML, like Gecko) Chrome/36.0.837.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1073}, "url": "/Open-architected/Vision-oriented-regional/customer%20loyalty.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "54.24.92.107"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "54.24.92.107 - - [19/Jun/2023:16:59:10 +0000] \"GET /empowering_User-centric.svg HTTP/1.1\" 302 58 \"-\" \"Mozilla/5.0 (Windows 98; Win 9x 4.90) AppleWebKit/5310 (KHTML, like Gecko) Chrome/39.0.874.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 58}, "url": "/empowering_User-centric.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "134.176.114.95"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "134.176.114.95 - - [19/Jun/2023:16:59:10 +0000] \"GET /groupware/Networked/Advanced_complexity/secured%20line.css HTTP/1.1\" 301 58 \"-\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/5310 (KHTML, like Gecko) Chrome/40.0.803.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 58}, "url": "/groupware/Networked/Advanced_complexity/secured%20line.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "1.27.233.112"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "1.27.233.112 - - [19/Jun/2023:16:59:10 +0000] \"GET /Synchronised/Business-focused_24/7-Switchable/Right-sized.hmtl HTTP/1.1\" 200 2890 \"-\" \"Opera/8.54 (Macintosh; U; Intel Mac OS X 10_5_8; en-US) Presto/2.13.224 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2890}, "url": "/Synchronised/Business-focused_24/7-Switchable/Right-sized.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "97.14.0.252"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "97.14.0.252 - - [19/Jun/2023:16:59:10 +0000] \"GET /mission-critical-encoding_eco-centric.htm HTTP/1.1\" 200 1611 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_4 rv:6.0) Gecko/1957-08-12 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1611}, "url": "/mission-critical-encoding_eco-centric.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "14.112.78.63"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "14.112.78.63 - - [19/Jun/2023:16:59:10 +0000] \"GET /Graphic%20Interface/Public-key-Monitored-national_Business-focused.php HTTP/1.1\" 302 76 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_9_8 rv:7.0) Gecko/1957-26-02 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 76}, "url": "/Graphic%20Interface/Public-key-Monitored-national_Business-focused.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "187.216.175.79"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "187.216.175.79 - - [19/Jun/2023:16:59:10 +0000] \"GET /Virtual%20system%20engine/Automated%20high-level.hmtl HTTP/1.1\" 200 1498 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_8 rv:3.0) Gecko/2016-09-08 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1498}, "url": "/Virtual%20system%20engine/Automated%20high-level.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "27.162.215.172"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "27.162.215.172 - - [19/Jun/2023:16:59:10 +0000] \"GET /grid-enabled%20discrete_intangible-Configurable.hmtl HTTP/1.1\" 200 2355 \"-\" \"Mozilla/5.0 (iPad; CPU OS 7_3_2 like Mac OS X; en-US) AppleWebKit/536.23.5 (KHTML, like Gecko) Version/5.0.5 Mobile/8B113 Safari/6536.23.5\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2355}, "url": "/grid-enabled%20discrete_intangible-Configurable.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "92.248.82.178"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "92.248.82.178 - - [19/Jun/2023:16:59:10 +0000] \"GET /multimedia.gif HTTP/1.1\" 200 2266 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5360 (KHTML, like Gecko) Chrome/39.0.848.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2266}, "url": "/multimedia.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "150.67.47.41"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "150.67.47.41 - - [19/Jun/2023:16:59:10 +0000] \"PATCH /actuating.js HTTP/1.1\" 200 862 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.2) AppleWebKit/534.18.1 (KHTML, like Gecko) Version/6.1 Safari/534.18.1\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 862}, "url": "/actuating.js", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "203.200.231.125"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "203.200.231.125 - - [19/Jun/2023:16:59:10 +0000] \"GET /Right-sized.svg HTTP/1.1\" 200 2250 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_8_5 rv:4.0) Gecko/1908-15-04 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2250}, "url": "/Right-sized.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "96.171.115.135"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "96.171.115.135 - - [19/Jun/2023:16:59:10 +0000] \"PUT /Customer-focused%20architecture/5th%20generation.jpg HTTP/1.1\" 200 2463 \"-\" \"Mozilla/5.0 (Windows NT 4.0; en-US; rv:1.9.3.20) Gecko/2006-29-10 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2463}, "url": "/Customer-focused%20architecture/5th%20generation.jpg", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "185.230.178.247"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "185.230.178.247 - - [19/Jun/2023:16:59:10 +0000] \"PUT /success.jpg HTTP/1.1\" 200 3008 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:7.0) Gecko/1911-17-02 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3008}, "url": "/success.jpg", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "252.65.238.179"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "252.65.238.179 - - [19/Jun/2023:16:59:10 +0000] \"GET /grid-enabled_Diverse_content-based%20open%20architecture/asynchronous.htm HTTP/1.1\" 200 1025 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5361 (KHTML, like Gecko) Chrome/39.0.858.0 Mobile Safari/5361\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1025}, "url": "/grid-enabled_Diverse_content-based%20open%20architecture/asynchronous.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "2.115.52.173"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "2.115.52.173 - - [19/Jun/2023:16:59:10 +0000] \"HEAD /initiative%20paradigm.js HTTP/1.1\" 200 1464 \"-\" \"Mozilla/5.0 (Windows NT 6.2; en-US; rv:1.9.1.20) Gecko/1988-01-12 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1464}, "url": "/initiative%20paradigm.js", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "145.20.255.88"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "145.20.255.88 - - [19/Jun/2023:16:59:10 +0000] \"GET /task-force-Networked-knowledge%20user/algorithm/Proactive.gif HTTP/1.1\" 200 913 \"-\" \"Mozilla/5.0 (Windows NT 5.1; en-US; rv:1.9.1.20) Gecko/1915-05-03 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 913}, "url": "/task-force-Networked-knowledge%20user/algorithm/Proactive.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "112.184.50.40"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "112.184.50.40 - - [19/Jun/2023:16:59:10 +0000] \"HEAD /encryption/info-mediaries%20policy.htm HTTP/1.1\" 404 46 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:5.0) Gecko/1965-26-08 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 46}, "url": "/encryption/info-mediaries%20policy.htm", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "204.96.170.231"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "204.96.170.231 - - [19/Jun/2023:16:59:10 +0000] \"GET /productivity/upward-trending/algorithm/Assimilated.js HTTP/1.1\" 200 1212 \"-\" \"Mozilla/5.0 (Windows 98; en-US; rv:1.9.2.20) Gecko/2021-20-08 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1212}, "url": "/productivity/upward-trending/algorithm/Assimilated.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "173.44.184.255"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "173.44.184.255 - - [19/Jun/2023:16:59:10 +0000] \"GET /Operative/Horizontal-Realigned/actuating.svg HTTP/1.1\" 200 1632 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:5.0) Gecko/1933-22-03 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1632}, "url": "/Operative/Horizontal-Realigned/actuating.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "62.216.71.181"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "62.216.71.181 - - [19/Jun/2023:16:59:10 +0000] \"DELETE /methodology%20Public-key/Future-proofed.svg HTTP/1.1\" 200 1149 \"-\" \"Opera/10.37 (X11; Linux x86_64; en-US) Presto/2.10.161 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1149}, "url": "/methodology%20Public-key/Future-proofed.svg", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "55.228.248.250"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "55.228.248.250 - - [19/Jun/2023:16:59:10 +0000] \"DELETE /mobile/global/ability%20local.svg HTTP/1.1\" 200 1337 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_9_0) AppleWebKit/5361 (KHTML, like Gecko) Chrome/36.0.809.0 Mobile Safari/5361\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1337}, "url": "/mobile/global/ability%20local.svg", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "57.86.150.217"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "57.86.150.217 - - [19/Jun/2023:16:59:10 +0000] \"GET /Focused-non-volatile.css HTTP/1.1\" 200 2766 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.0) AppleWebKit/532.9.6 (KHTML, like Gecko) Version/5.1 Safari/532.9.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2766}, "url": "/Focused-non-volatile.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "123.152.67.215"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "123.152.67.215 - - [19/Jun/2023:16:59:10 +0000] \"GET /uniform/Multi-lateral/asynchronous/instruction%20set.js HTTP/1.1\" 200 1952 \"-\" \"Opera/9.40 (Macintosh; U; PPC Mac OS X 10_8_1; en-US) Presto/2.10.331 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1952}, "url": "/uniform/Multi-lateral/asynchronous/instruction%20set.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "96.163.177.208"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "96.163.177.208 - - [19/Jun/2023:16:59:10 +0000] \"PUT /content-based%20Profound/Visionary.gif HTTP/1.1\" 200 2281 \"-\" \"Mozilla/5.0 (iPad; CPU OS 9_3_1 like Mac OS X; en-US) AppleWebKit/533.21.6 (KHTML, like Gecko) Version/5.0.5 Mobile/8B115 Safari/6533.21.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2281}, "url": "/content-based%20Profound/Visionary.gif", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "28.40.168.23"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "28.40.168.23 - - [19/Jun/2023:16:59:10 +0000] \"GET /adapter/3rd%20generation.jpg HTTP/1.1\" 200 2904 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5320 (KHTML, like Gecko) Chrome/38.0.857.0 Mobile Safari/5320\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2904}, "url": "/adapter/3rd%20generation.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "213.64.94.200"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "213.64.94.200 - - [19/Jun/2023:16:59:10 +0000] \"PATCH /groupware-mission-critical/demand-driven/moratorium-Object-based.css HTTP/1.1\" 200 1693 \"-\" \"Opera/9.93 (Macintosh; U; Intel Mac OS X 10_9_5; en-US) Presto/2.13.275 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1693}, "url": "/groupware-mission-critical/demand-driven/moratorium-Object-based.css", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "120.130.241.251"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "120.130.241.251 - - [19/Jun/2023:16:59:10 +0000] \"HEAD /heuristic_methodical.htm HTTP/1.1\" 200 3040 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_9 rv:5.0; en-US) AppleWebKit/533.28.4 (KHTML, like Gecko) Version/5.0 Safari/533.28.4\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3040}, "url": "/heuristic_methodical.htm", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "231.19.54.75"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "231.19.54.75 - - [19/Jun/2023:16:59:10 +0000] \"GET /Face%20to%20face%2024/7.hmtl HTTP/1.1\" 200 2796 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_9_9 rv:6.0) Gecko/1975-03-10 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2796}, "url": "/Face%20to%20face%2024/7.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "56.172.169.159"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "56.172.169.159 - - [19/Jun/2023:16:59:10 +0000] \"PUT /incremental-Realigned/groupware/matrices_contingency.hmtl HTTP/1.1\" 200 877 \"-\" \"Opera/10.89 (Windows NT 5.1; en-US) Presto/2.13.333 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 877}, "url": "/incremental-Realigned/groupware/matrices_contingency.hmtl", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "142.225.171.45"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "142.225.171.45 - - [19/Jun/2023:16:59:10 +0000] \"PATCH /Object-based.gif HTTP/1.1\" 200 2216 \"-\" \"Mozilla/5.0 (Windows 95) AppleWebKit/5311 (KHTML, like Gecko) Chrome/39.0.866.0 Mobile Safari/5311\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2216}, "url": "/Object-based.gif", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "134.124.141.169"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "134.124.141.169 - - [19/Jun/2023:16:59:10 +0000] \"GET /User-friendly/throughput.gif HTTP/1.1\" 200 1770 \"-\" \"Opera/9.11 (Windows NT 4.0; en-US) Presto/2.11.269 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1770}, "url": "/User-friendly/throughput.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "95.94.214.119"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "95.94.214.119 - - [19/Jun/2023:16:59:10 +0000] \"GET /heuristic-policy-functionalities_analyzing.js HTTP/1.1\" 200 1758 \"-\" \"Mozilla/5.0 (Windows NT 5.01) AppleWebKit/5352 (KHTML, like Gecko) Chrome/36.0.818.0 Mobile Safari/5352\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1758}, "url": "/heuristic-policy-functionalities_analyzing.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "47.152.26.245"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "47.152.26.245 - - [19/Jun/2023:16:59:10 +0000] \"GET /contingency_Organic.hmtl HTTP/1.1\" 200 3096 \"-\" \"Mozilla/5.0 (Windows NT 5.01) AppleWebKit/5340 (KHTML, like Gecko) Chrome/37.0.817.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3096}, "url": "/contingency_Organic.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "2.174.177.149"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "2.174.177.149 - - [19/Jun/2023:16:59:10 +0000] \"GET /Focused_forecast-empowering-methodology.htm HTTP/1.1\" 200 3029 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5340 (KHTML, like Gecko) Chrome/39.0.892.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3029}, "url": "/Focused_forecast-empowering-methodology.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "37.198.64.73"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "37.198.64.73 - - [19/Jun/2023:16:59:10 +0000] \"DELETE /bottom-line-alliance.svg HTTP/1.1\" 200 1686 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_9_1 rv:7.0) Gecko/1925-27-02 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1686}, "url": "/bottom-line-alliance.svg", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "113.230.210.42"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "113.230.210.42 - - [19/Jun/2023:16:59:10 +0000] \"GET /bandwidth-monitored-tangible/adapter.css HTTP/1.1\" 200 2921 \"-\" \"Mozilla/5.0 (Windows 98; Win 9x 4.90) AppleWebKit/5360 (KHTML, like Gecko) Chrome/38.0.897.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2921}, "url": "/bandwidth-monitored-tangible/adapter.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "213.204.153.241"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "213.204.153.241 - - [19/Jun/2023:16:59:10 +0000] \"PUT /intranet/encompassing.gif HTTP/1.1\" 200 2470 \"-\" \"Opera/10.87 (X11; Linux i686; en-US) Presto/2.12.337 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2470}, "url": "/intranet/encompassing.gif", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "73.228.44.79"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "73.228.44.79 - - [19/Jun/2023:16:59:10 +0000] \"GET /cohesive/hybrid_5th%20generation%20Fundamental-coherent.js HTTP/1.1\" 200 2288 \"-\" \"Opera/8.43 (Macintosh; U; Intel Mac OS X 10_9_5; en-US) Presto/2.13.216 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2288}, "url": "/cohesive/hybrid_5th%20generation%20Fundamental-coherent.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "93.166.11.172"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "93.166.11.172 - - [19/Jun/2023:16:59:10 +0000] \"GET /workforce-service-desk_capacity-framework-zero%20tolerance.jpg HTTP/1.1\" 200 879 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8 rv:2.0) Gecko/1948-04-11 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 879}, "url": "/workforce-service-desk_capacity-framework-zero%20tolerance.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "194.148.230.63"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "194.148.230.63 - - [19/Jun/2023:16:59:10 +0000] \"GET /Robust-client-driven.js HTTP/1.1\" 404 43 \"-\" \"Mozilla/5.0 (iPad; CPU OS 8_0_3 like Mac OS X; en-US) AppleWebKit/532.26.1 (KHTML, like Gecko) Version/3.0.5 Mobile/8B112 Safari/6532.26.1\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 43}, "url": "/Robust-client-driven.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "17.249.207.98"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "17.249.207.98 - - [19/Jun/2023:16:59:10 +0000] \"GET /array/application-data-warehouse.js HTTP/1.1\" 404 34 \"-\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/5362 (KHTML, like Gecko) Chrome/38.0.862.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 34}, "url": "/array/application-data-warehouse.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "199.139.19.206"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "199.139.19.206 - - [19/Jun/2023:16:59:10 +0000] \"GET /leverage.svg HTTP/1.1\" 200 2894 \"-\" \"Opera/8.10 (X11; Linux x86_64; en-US) Presto/2.11.183 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2894}, "url": "/leverage.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "72.233.29.231"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "72.233.29.231 - - [19/Jun/2023:16:59:10 +0000] \"PATCH /Profit-focused/time-frame.svg HTTP/1.1\" 200 1998 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:8.0) Gecko/1944-23-05 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1998}, "url": "/Profit-focused/time-frame.svg", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "171.130.130.203"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "171.130.130.203 - - [19/Jun/2023:16:59:10 +0000] \"GET /clear-thinking-intangible-Enhanced/intranet/open%20architecture.hmtl HTTP/1.1\" 200 1054 \"-\" \"Mozilla/5.0 (Windows 98; Win 9x 4.90) AppleWebKit/5321 (KHTML, like Gecko) Chrome/40.0.807.0 Mobile Safari/5321\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1054}, "url": "/clear-thinking-intangible-Enhanced/intranet/open%20architecture.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "83.88.219.132"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "83.88.219.132 - - [19/Jun/2023:16:59:10 +0000] \"GET /Adaptive-Organic/cohesive%20background.jpg HTTP/1.1\" 200 1090 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_0) AppleWebKit/5310 (KHTML, like Gecko) Chrome/36.0.894.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1090}, "url": "/Adaptive-Organic/cohesive%20background.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "59.169.248.74"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "59.169.248.74 - - [19/Jun/2023:16:59:10 +0000] \"HEAD /24%20hour/multi-state/core.gif HTTP/1.1\" 200 1528 \"-\" \"Opera/10.61 (Windows CE; en-US) Presto/2.9.337 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1528}, "url": "/24%20hour/multi-state/core.gif", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "126.143.66.50"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "126.143.66.50 - - [19/Jun/2023:16:59:10 +0000] \"GET /middleware/extranet%20Stand-alone/Future-proofed.png HTTP/1.1\" 200 1066 \"-\" \"Mozilla/5.0 (Windows NT 4.0) AppleWebKit/5322 (KHTML, like Gecko) Chrome/38.0.814.0 Mobile Safari/5322\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1066}, "url": "/middleware/extranet%20Stand-alone/Future-proofed.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "99.35.218.150"}}, "@timestamp": "2023-06-19T16:59:10.000Z", "observedTimestamp": "2023-06-19T16:59:10.000Z", "body": "99.35.218.150 - - [19/Jun/2023:16:59:10 +0000] \"GET /motivating.png HTTP/1.1\" 200 1915 \"-\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/5321 (KHTML, like Gecko) Chrome/37.0.897.0 Mobile Safari/5321\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1915}, "url": "/motivating.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "226.159.18.189"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "226.159.18.189 - - [19/Jun/2023:16:59:11 +0000] \"DELETE /radical-info-mediaries-Switchable_dynamic-hub.htm HTTP/1.1\" 200 3056 \"-\" \"Opera/10.75 (Windows NT 5.0; en-US) Presto/2.10.219 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3056}, "url": "/radical-info-mediaries-Switchable_dynamic-hub.htm", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "118.32.172.75"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "118.32.172.75 - - [19/Jun/2023:16:59:11 +0000] \"DELETE /uniform-data-warehouse.jpg HTTP/1.1\" 200 1805 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:5.0) Gecko/1958-30-01 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1805}, "url": "/uniform-data-warehouse.jpg", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "118.55.224.105"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "118.55.224.105 - - [19/Jun/2023:16:59:11 +0000] \"PATCH /Polarised.jpg HTTP/1.1\" 200 1432 \"-\" \"Mozilla/5.0 (Windows NT 6.2) AppleWebKit/5311 (KHTML, like Gecko) Chrome/36.0.859.0 Mobile Safari/5311\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1432}, "url": "/Polarised.jpg", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "83.219.18.145"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "83.219.18.145 - - [19/Jun/2023:16:59:11 +0000] \"GET /process%20improvement-application-zero%20tolerance%20Expanded/analyzing.jpg HTTP/1.1\" 200 1376 \"-\" \"Mozilla/5.0 (Windows 95) AppleWebKit/5332 (KHTML, like Gecko) Chrome/38.0.898.0 Mobile Safari/5332\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1376}, "url": "/process%20improvement-application-zero%20tolerance%20Expanded/analyzing.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "15.248.108.154"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "15.248.108.154 - - [19/Jun/2023:16:59:11 +0000] \"GET /migration.jpg HTTP/1.1\" 200 1137 \"-\" \"Opera/9.52 (X11; Linux i686; en-US) Presto/2.13.300 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1137}, "url": "/migration.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "191.164.104.15"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "191.164.104.15 - - [19/Jun/2023:16:59:11 +0000] \"PUT /Face%20to%20face.hmtl HTTP/1.1\" 200 2966 \"-\" \"Opera/10.90 (X11; Linux x86_64; en-US) Presto/2.12.197 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2966}, "url": "/Face%20to%20face.hmtl", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "150.149.135.166"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "150.149.135.166 - - [19/Jun/2023:16:59:11 +0000] \"GET /empowering_24/7-artificial%20intelligence.js HTTP/1.1\" 200 860 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5321 (KHTML, like Gecko) Chrome/38.0.827.0 Mobile Safari/5321\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 860}, "url": "/empowering_24/7-artificial%20intelligence.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "223.154.134.220"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "223.154.134.220 - - [19/Jun/2023:16:59:11 +0000] \"GET /circuit/encoding/time-frame/Organized.gif HTTP/1.1\" 200 1839 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5332 (KHTML, like Gecko) Chrome/36.0.881.0 Mobile Safari/5332\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1839}, "url": "/circuit/encoding/time-frame/Organized.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "15.178.4.193"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "15.178.4.193 - - [19/Jun/2023:16:59:11 +0000] \"GET /demand-driven.jpg HTTP/1.1\" 200 1995 \"-\" \"Opera/9.52 (Windows 98; en-US) Presto/2.9.234 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1995}, "url": "/demand-driven.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "188.113.208.229"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "188.113.208.229 - - [19/Jun/2023:16:59:11 +0000] \"GET /encompassing-reciprocal/Advanced_real-time.css HTTP/1.1\" 200 2185 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_9_4 rv:6.0) Gecko/1954-12-08 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2185}, "url": "/encompassing-reciprocal/Advanced_real-time.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "166.90.81.181"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "166.90.81.181 - - [19/Jun/2023:16:59:11 +0000] \"GET /portal/clear-thinking-Decentralized-Expanded-motivating.htm HTTP/1.1\" 200 1259 \"-\" \"Opera/9.86 (Macintosh; PPC Mac OS X 10_9_7; en-US) Presto/2.11.312 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1259}, "url": "/portal/clear-thinking-Decentralized-Expanded-motivating.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "239.230.101.172"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "239.230.101.172 - - [19/Jun/2023:16:59:11 +0000] \"GET /Triple-buffered%20interface/radical.hmtl HTTP/1.1\" 302 89 \"-\" \"Opera/9.39 (X11; Linux x86_64; en-US) Presto/2.9.336 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 89}, "url": "/Triple-buffered%20interface/radical.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "166.237.186.132"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "166.237.186.132 - - [19/Jun/2023:16:59:11 +0000] \"PUT /Innovative%20content-based-definition%20open%20system.hmtl HTTP/1.1\" 200 2321 \"-\" \"Opera/8.91 (X11; Linux x86_64; en-US) Presto/2.10.282 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2321}, "url": "/Innovative%20content-based-definition%20open%20system.hmtl", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "246.157.137.78"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "246.157.137.78 - - [19/Jun/2023:16:59:11 +0000] \"GET /cohesive-fresh-thinking_Face%20to%20face/Decentralized.css HTTP/1.1\" 200 2759 \"-\" \"Mozilla/5.0 (Windows; U; Windows 98; Win 9x 4.90) AppleWebKit/535.24.8 (KHTML, like Gecko) Version/5.2 Safari/535.24.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2759}, "url": "/cohesive-fresh-thinking_Face%20to%20face/Decentralized.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "34.6.108.208"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "34.6.108.208 - - [19/Jun/2023:16:59:11 +0000] \"GET /strategy-Graphic%20Interface.gif HTTP/1.1\" 200 1447 \"-\" \"Opera/9.26 (X11; Linux x86_64; en-US) Presto/2.12.350 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1447}, "url": "/strategy-Graphic%20Interface.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "214.50.95.209"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "214.50.95.209 - - [19/Jun/2023:16:59:11 +0000] \"GET /database/Organic/hierarchy.jpg HTTP/1.1\" 200 1203 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_9_9) AppleWebKit/5352 (KHTML, like Gecko) Chrome/36.0.838.0 Mobile Safari/5352\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1203}, "url": "/database/Organic/hierarchy.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "93.228.149.235"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "93.228.149.235 - - [19/Jun/2023:16:59:11 +0000] \"PUT /homogeneous-Persistent_zero%20administration/model/capability.gif HTTP/1.1\" 200 1588 \"-\" \"Mozilla/5.0 (Windows NT 5.01) AppleWebKit/5360 (KHTML, like Gecko) Chrome/37.0.856.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1588}, "url": "/homogeneous-Persistent_zero%20administration/model/capability.gif", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "187.8.233.75"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "187.8.233.75 - - [19/Jun/2023:16:59:11 +0000] \"GET /24%20hour_zero%20defect.css HTTP/1.1\" 302 52 \"-\" \"Opera/8.36 (Macintosh; PPC Mac OS X 10_8_5; en-US) Presto/2.10.203 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 52}, "url": "/24%20hour_zero%20defect.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "119.90.250.243"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "119.90.250.243 - - [19/Jun/2023:16:59:11 +0000] \"GET /Open-source.js HTTP/1.1\" 200 1489 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X; en-US) AppleWebKit/536.30.3 (KHTML, like Gecko) Version/5.0.5 Mobile/8B120 Safari/6536.30.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1489}, "url": "/Open-source.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "10.221.47.154"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "10.221.47.154 - - [19/Jun/2023:16:59:11 +0000] \"GET /definition/task-force.php HTTP/1.1\" 200 1764 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5330 (KHTML, like Gecko) Chrome/40.0.816.0 Mobile Safari/5330\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1764}, "url": "/definition/task-force.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "226.243.147.22"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "226.243.147.22 - - [19/Jun/2023:16:59:11 +0000] \"GET /executive/circuit/monitoring-client-driven/Enhanced.png HTTP/1.1\" 200 2983 \"-\" \"Opera/10.66 (X11; Linux i686; en-US) Presto/2.8.214 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2983}, "url": "/executive/circuit/monitoring-client-driven/Enhanced.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "218.73.121.228"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "218.73.121.228 - - [19/Jun/2023:16:59:11 +0000] \"GET /flexibility_leverage/standardization_hub/ability.gif HTTP/1.1\" 200 2486 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5341 (KHTML, like Gecko) Chrome/38.0.885.0 Mobile Safari/5341\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2486}, "url": "/flexibility_leverage/standardization_hub/ability.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "127.96.135.132"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "127.96.135.132 - - [19/Jun/2023:16:59:11 +0000] \"GET /Pre-emptive/analyzing_application.png HTTP/1.1\" 200 1198 \"-\" \"Mozilla/5.0 (Windows NT 5.2) AppleWebKit/5350 (KHTML, like Gecko) Chrome/40.0.806.0 Mobile Safari/5350\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1198}, "url": "/Pre-emptive/analyzing_application.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "33.127.166.14"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "33.127.166.14 - - [19/Jun/2023:16:59:11 +0000] \"GET /Proactive/methodology/toolset-workforce%20even-keeled.hmtl HTTP/1.1\" 200 2338 \"-\" \"Opera/8.97 (Windows NT 5.2; en-US) Presto/2.9.311 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2338}, "url": "/Proactive/methodology/toolset-workforce%20even-keeled.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "91.8.14.169"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "91.8.14.169 - - [19/Jun/2023:16:59:11 +0000] \"GET /Vision-oriented/impactful/exuding-3rd%20generation%20local%20area%20network.css HTTP/1.1\" 200 2640 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.2) AppleWebKit/536.11.6 (KHTML, like Gecko) Version/6.2 Safari/536.11.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2640}, "url": "/Vision-oriented/impactful/exuding-3rd%20generation%20local%20area%20network.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "72.36.111.82"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "72.36.111.82 - - [19/Jun/2023:16:59:11 +0000] \"GET /disintermediate.js HTTP/1.1\" 200 1095 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.2) AppleWebKit/536.11.3 (KHTML, like Gecko) Version/4.0 Safari/536.11.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1095}, "url": "/disintermediate.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "200.58.68.176"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "200.58.68.176 - - [19/Jun/2023:16:59:11 +0000] \"DELETE /Optional-5th%20generation-Graphic%20Interface/projection%20forecast.php HTTP/1.1\" 200 2032 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5331 (KHTML, like Gecko) Chrome/39.0.856.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2032}, "url": "/Optional-5th%20generation-Graphic%20Interface/projection%20forecast.php", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "187.194.120.206"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "187.194.120.206 - - [19/Jun/2023:16:59:11 +0000] \"GET /website_user-facing.gif HTTP/1.1\" 200 3016 \"-\" \"Mozilla/5.0 (Windows NT 6.0) AppleWebKit/5322 (KHTML, like Gecko) Chrome/39.0.897.0 Mobile Safari/5322\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3016}, "url": "/website_user-facing.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "102.30.27.172"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "102.30.27.172 - - [19/Jun/2023:16:59:11 +0000] \"GET /mission-critical.gif HTTP/1.1\" 200 1538 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.2) AppleWebKit/531.9.8 (KHTML, like Gecko) Version/6.2 Safari/531.9.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1538}, "url": "/mission-critical.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "104.53.120.250"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "104.53.120.250 - - [19/Jun/2023:16:59:11 +0000] \"GET /dedicated/instruction%20set.png HTTP/1.1\" 200 2817 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5321 (KHTML, like Gecko) Chrome/36.0.898.0 Mobile Safari/5321\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2817}, "url": "/dedicated/instruction%20set.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "79.97.180.22"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "79.97.180.22 - - [19/Jun/2023:16:59:11 +0000] \"GET /portal%20Persevering.gif HTTP/1.1\" 200 1930 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5340 (KHTML, like Gecko) Chrome/37.0.833.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1930}, "url": "/portal%20Persevering.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "202.45.68.233"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "202.45.68.233 - - [19/Jun/2023:16:59:11 +0000] \"GET /Extended%20task-force.js HTTP/1.1\" 200 1888 \"-\" \"Mozilla/5.0 (Windows 98) AppleWebKit/5340 (KHTML, like Gecko) Chrome/40.0.808.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1888}, "url": "/Extended%20task-force.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "225.107.204.64"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "225.107.204.64 - - [19/Jun/2023:16:59:11 +0000] \"GET /Front-line%20extranet%20Proactive.gif HTTP/1.1\" 200 1085 \"-\" \"Opera/9.54 (Windows 98; en-US) Presto/2.11.286 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1085}, "url": "/Front-line%20extranet%20Proactive.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "218.125.166.177"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "218.125.166.177 - - [19/Jun/2023:16:59:11 +0000] \"PATCH /5th%20generation/Multi-tiered/even-keeled/multi-tasking.svg HTTP/1.1\" 200 1052 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_10) AppleWebKit/5321 (KHTML, like Gecko) Chrome/39.0.830.0 Mobile Safari/5321\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1052}, "url": "/5th%20generation/Multi-tiered/even-keeled/multi-tasking.svg", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "204.226.109.68"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "204.226.109.68 - - [19/Jun/2023:16:59:11 +0000] \"PUT /non-volatile/composite_Sharable/global-global.jpg HTTP/1.1\" 200 804 \"-\" \"Opera/10.64 (Windows CE; en-US) Presto/2.8.233 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 804}, "url": "/non-volatile/composite_Sharable/global-global.jpg", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "198.51.150.159"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "198.51.150.159 - - [19/Jun/2023:16:59:11 +0000] \"GET /hardware/capability.png HTTP/1.1\" 200 2585 \"-\" \"Opera/8.67 (X11; Linux i686; en-US) Presto/2.9.287 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2585}, "url": "/hardware/capability.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "169.115.2.133"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "169.115.2.133 - - [19/Jun/2023:16:59:11 +0000] \"GET /Balanced-Networked/asymmetric.htm HTTP/1.1\" 200 1837 \"-\" \"Mozilla/5.0 (Windows CE) AppleWebKit/5321 (KHTML, like Gecko) Chrome/40.0.856.0 Mobile Safari/5321\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1837}, "url": "/Balanced-Networked/asymmetric.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "78.77.170.89"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "78.77.170.89 - - [19/Jun/2023:16:59:11 +0000] \"GET /methodology/Compatible/clear-thinking.css HTTP/1.1\" 200 2459 \"-\" \"Mozilla/5.0 (Windows NT 6.0) AppleWebKit/5322 (KHTML, like Gecko) Chrome/37.0.825.0 Mobile Safari/5322\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2459}, "url": "/methodology/Compatible/clear-thinking.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "222.39.183.200"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "222.39.183.200 - - [19/Jun/2023:16:59:11 +0000] \"GET /approach-multi-tasking-24/7/project_initiative.php HTTP/1.1\" 200 2828 \"-\" \"Mozilla/5.0 (Windows NT 5.2) AppleWebKit/5312 (KHTML, like Gecko) Chrome/37.0.893.0 Mobile Safari/5312\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2828}, "url": "/approach-multi-tasking-24/7/project_initiative.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "181.54.146.218"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "181.54.146.218 - - [19/Jun/2023:16:59:11 +0000] \"GET /benchmark_user-facing%20neutral-Multi-lateral/Devolved.hmtl HTTP/1.1\" 200 1022 \"-\" \"Opera/8.84 (Macintosh; U; PPC Mac OS X 10_8_4; en-US) Presto/2.10.332 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1022}, "url": "/benchmark_user-facing%20neutral-Multi-lateral/Devolved.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "3.195.32.127"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "3.195.32.127 - - [19/Jun/2023:16:59:11 +0000] \"DELETE /Function-based-clear-thinking.svg HTTP/1.1\" 200 2187 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5311 (KHTML, like Gecko) Chrome/40.0.811.0 Mobile Safari/5311\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2187}, "url": "/Function-based-clear-thinking.svg", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "23.225.16.150"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "23.225.16.150 - - [19/Jun/2023:16:59:11 +0000] \"PUT /didactic/bandwidth-monitored/Extended/archive.js HTTP/1.1\" 200 1908 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_9) AppleWebKit/5362 (KHTML, like Gecko) Chrome/37.0.898.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1908}, "url": "/didactic/bandwidth-monitored/Extended/archive.js", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "145.179.157.164"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "145.179.157.164 - - [19/Jun/2023:16:59:11 +0000] \"GET /Centralized/Robust/client-driven-Face%20to%20face/collaboration.js HTTP/1.1\" 200 1211 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_7) AppleWebKit/5360 (KHTML, like Gecko) Chrome/40.0.836.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1211}, "url": "/Centralized/Robust/client-driven-Face%20to%20face/collaboration.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "96.243.25.34"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "96.243.25.34 - - [19/Jun/2023:16:59:11 +0000] \"HEAD /encompassing/model/secured%20line/5th%20generation-disintermediate.php HTTP/1.1\" 200 1956 \"-\" \"Opera/10.66 (Windows NT 5.1; en-US) Presto/2.10.161 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1956}, "url": "/encompassing/model/secured%20line/5th%20generation-disintermediate.php", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "206.85.226.226"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "206.85.226.226 - - [19/Jun/2023:16:59:11 +0000] \"PATCH /Ameliorated.js HTTP/1.1\" 200 932 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5341 (KHTML, like Gecko) Chrome/40.0.886.0 Mobile Safari/5341\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 932}, "url": "/Ameliorated.js", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "89.253.137.246"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "89.253.137.246 - - [19/Jun/2023:16:59:11 +0000] \"POST /installation-heuristic%20client-server/support%20asynchronous.svg HTTP/1.1\" 200 2075 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:7.0) Gecko/1939-11-03 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2075}, "url": "/installation-heuristic%20client-server/support%20asynchronous.svg", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "250.207.7.242"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "250.207.7.242 - - [19/Jun/2023:16:59:11 +0000] \"GET /radical/Cloned/Total-actuating-Secured.php HTTP/1.1\" 200 2298 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:5.0) Gecko/1937-06-04 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2298}, "url": "/radical/Cloned/Total-actuating-Secured.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "155.244.202.37"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "155.244.202.37 - - [19/Jun/2023:16:59:11 +0000] \"GET /stable-contextually-based/paradigm/Ergonomic%20Centralized.gif HTTP/1.1\" 200 1746 \"-\" \"Mozilla/5.0 (Windows NT 5.0) AppleWebKit/5310 (KHTML, like Gecko) Chrome/37.0.818.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1746}, "url": "/stable-contextually-based/paradigm/Ergonomic%20Centralized.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "249.2.204.121"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "249.2.204.121 - - [19/Jun/2023:16:59:11 +0000] \"GET /Enterprise-wide%20Persevering_initiative_fault-tolerant.php HTTP/1.1\" 200 2990 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_3 like Mac OS X; en-US) AppleWebKit/531.26.7 (KHTML, like Gecko) Version/4.0.5 Mobile/8B118 Safari/6531.26.7\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2990}, "url": "/Enterprise-wide%20Persevering_initiative_fault-tolerant.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "126.183.90.24"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "126.183.90.24 - - [19/Jun/2023:16:59:11 +0000] \"GET /zero%20defect.gif HTTP/1.1\" 200 999 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_1) AppleWebKit/5312 (KHTML, like Gecko) Chrome/39.0.828.0 Mobile Safari/5312\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 999}, "url": "/zero%20defect.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "32.231.52.210"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "32.231.52.210 - - [19/Jun/2023:16:59:11 +0000] \"GET /Distributed.hmtl HTTP/1.1\" 200 1241 \"-\" \"Mozilla/5.0 (Windows 98; en-US; rv:1.9.3.20) Gecko/1966-09-08 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1241}, "url": "/Distributed.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "175.170.20.212"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "175.170.20.212 - - [19/Jun/2023:16:59:11 +0000] \"GET /Assimilated_Progressive.htm HTTP/1.1\" 200 2666 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:6.0) Gecko/1966-10-04 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2666}, "url": "/Assimilated_Progressive.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "102.147.207.96"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "102.147.207.96 - - [19/Jun/2023:16:59:11 +0000] \"GET /initiative-policy-knowledge%20user%20workforce.hmtl HTTP/1.1\" 302 120 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_10 rv:5.0; en-US) AppleWebKit/535.11.8 (KHTML, like Gecko) Version/5.2 Safari/535.11.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 120}, "url": "/initiative-policy-knowledge%20user%20workforce.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "204.169.44.78"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "204.169.44.78 - - [19/Jun/2023:16:59:11 +0000] \"GET /monitoring_disintermediate%20Persevering/Re-engineered.gif HTTP/1.1\" 200 1675 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:7.0) Gecko/1926-26-11 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1675}, "url": "/monitoring_disintermediate%20Persevering/Re-engineered.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "221.232.224.96"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "221.232.224.96 - - [19/Jun/2023:16:59:11 +0000] \"GET /Configurable/neutral/firmware-installation.jpg HTTP/1.1\" 200 921 \"-\" \"Mozilla/5.0 (Windows CE) AppleWebKit/5362 (KHTML, like Gecko) Chrome/40.0.802.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 921}, "url": "/Configurable/neutral/firmware-installation.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "161.110.225.17"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "161.110.225.17 - - [19/Jun/2023:16:59:11 +0000] \"GET /bandwidth-monitored/Diverse.css HTTP/1.1\" 200 1878 \"-\" \"Mozilla/5.0 (Windows NT 5.1; en-US; rv:1.9.2.20) Gecko/2010-30-04 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1878}, "url": "/bandwidth-monitored/Diverse.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "255.255.172.175"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "255.255.172.175 - - [19/Jun/2023:16:59:11 +0000] \"GET /Persevering_Intuitive/Persevering/challenge.php HTTP/1.1\" 200 3003 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:5.0) Gecko/1950-09-05 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3003}, "url": "/Persevering_Intuitive/Persevering/challenge.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "52.45.138.69"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "52.45.138.69 - - [19/Jun/2023:16:59:11 +0000] \"GET /concept%20Proactive/leading%20edge_emulation-Face%20to%20face.svg HTTP/1.1\" 200 3069 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_0) AppleWebKit/5321 (KHTML, like Gecko) Chrome/38.0.806.0 Mobile Safari/5321\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3069}, "url": "/concept%20Proactive/leading%20edge_emulation-Face%20to%20face.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "63.131.81.99"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "63.131.81.99 - - [19/Jun/2023:16:59:11 +0000] \"GET /strategy/Stand-alone%20Sharable-functionalities.htm HTTP/1.1\" 200 869 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5310 (KHTML, like Gecko) Chrome/39.0.884.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 869}, "url": "/strategy/Stand-alone%20Sharable-functionalities.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "243.202.136.222"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "243.202.136.222 - - [19/Jun/2023:16:59:11 +0000] \"PUT /dedicated_intangible%20clear-thinking.gif HTTP/1.1\" 200 1895 \"-\" \"Mozilla/5.0 (Windows 98) AppleWebKit/5340 (KHTML, like Gecko) Chrome/37.0.871.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1895}, "url": "/dedicated_intangible%20clear-thinking.gif", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "252.25.224.6"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "252.25.224.6 - - [19/Jun/2023:16:59:11 +0000] \"POST /Decentralized.php HTTP/1.1\" 200 1211 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_2 rv:7.0; en-US) AppleWebKit/533.23.3 (KHTML, like Gecko) Version/4.0 Safari/533.23.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1211}, "url": "/Decentralized.php", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "73.195.79.163"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "73.195.79.163 - - [19/Jun/2023:16:59:11 +0000] \"GET /Managed-didactic.svg HTTP/1.1\" 200 1921 \"-\" \"Opera/8.45 (Macintosh; Intel Mac OS X 10_8_5; en-US) Presto/2.8.163 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1921}, "url": "/Managed-didactic.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "90.65.111.127"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "90.65.111.127 - - [19/Jun/2023:16:59:11 +0000] \"GET /product/Cross-group.js HTTP/1.1\" 301 58 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5350 (KHTML, like Gecko) Chrome/39.0.800.0 Mobile Safari/5350\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 58}, "url": "/product/Cross-group.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "194.57.127.169"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "194.57.127.169 - - [19/Jun/2023:16:59:11 +0000] \"GET /Integrated%20standardization-algorithm.htm HTTP/1.1\" 200 2371 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_7) AppleWebKit/5320 (KHTML, like Gecko) Chrome/39.0.812.0 Mobile Safari/5320\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2371}, "url": "/Integrated%20standardization-algorithm.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "155.147.131.208"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "155.147.131.208 - - [19/Jun/2023:16:59:11 +0000] \"GET /Persistent/Open-architected/Exclusive/reciprocal%20Reduced.jpg HTTP/1.1\" 200 1076 \"-\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/5340 (KHTML, like Gecko) Chrome/37.0.876.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1076}, "url": "/Persistent/Open-architected/Exclusive/reciprocal%20Reduced.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "158.32.146.251"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "158.32.146.251 - - [19/Jun/2023:16:59:11 +0000] \"DELETE /Adaptive/Open-architected.hmtl HTTP/1.1\" 200 1402 \"-\" \"Opera/8.97 (Macintosh; U; PPC Mac OS X 10_7_5; en-US) Presto/2.9.241 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1402}, "url": "/Adaptive/Open-architected.hmtl", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "77.63.39.137"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "77.63.39.137 - - [19/Jun/2023:16:59:11 +0000] \"DELETE /zero%20defect%20Multi-layered.gif HTTP/1.1\" 200 984 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_5_4 rv:4.0) Gecko/1997-19-07 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 984}, "url": "/zero%20defect%20Multi-layered.gif", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "20.5.177.140"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "20.5.177.140 - - [19/Jun/2023:16:59:11 +0000] \"GET /background-software/eco-centric/Profound.htm HTTP/1.1\" 200 2618 \"-\" \"Opera/10.16 (X11; Linux x86_64; en-US) Presto/2.13.331 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2618}, "url": "/background-software/eco-centric/Profound.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "214.255.245.31"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "214.255.245.31 - - [19/Jun/2023:16:59:11 +0000] \"PATCH /Persistent/Mandatory.css HTTP/1.1\" 200 1972 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_9) AppleWebKit/5322 (KHTML, like Gecko) Chrome/37.0.808.0 Mobile Safari/5322\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1972}, "url": "/Persistent/Mandatory.css", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "140.92.200.10"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "140.92.200.10 - - [19/Jun/2023:16:59:11 +0000] \"GET /global-access/bottom-line/alliance%20Exclusive.jpg HTTP/1.1\" 200 3063 \"-\" \"Mozilla/5.0 (Windows NT 5.0) AppleWebKit/5340 (KHTML, like Gecko) Chrome/40.0.887.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3063}, "url": "/global-access/bottom-line/alliance%20Exclusive.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "89.49.60.32"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "89.49.60.32 - - [19/Jun/2023:16:59:11 +0000] \"GET /Graphic%20Interface-intangible-Digitized.htm HTTP/1.1\" 200 2854 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_8_5 rv:7.0) Gecko/1997-24-12 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2854}, "url": "/Graphic%20Interface-intangible-Digitized.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "249.119.101.59"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "249.119.101.59 - - [19/Jun/2023:16:59:11 +0000] \"GET /eco-centric-Phased%20solution-oriented_stable.gif HTTP/1.1\" 200 1412 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:5.0) Gecko/1914-17-04 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1412}, "url": "/eco-centric-Phased%20solution-oriented_stable.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "182.72.71.186"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "182.72.71.186 - - [19/Jun/2023:16:59:11 +0000] \"GET /Versatile%20Automated%20fresh-thinking-pricing%20structure.svg HTTP/1.1\" 200 1213 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.0) AppleWebKit/533.16.2 (KHTML, like Gecko) Version/4.2 Safari/533.16.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1213}, "url": "/Versatile%20Automated%20fresh-thinking-pricing%20structure.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "60.74.157.127"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "60.74.157.127 - - [19/Jun/2023:16:59:11 +0000] \"POST /architecture.php HTTP/1.1\" 200 1678 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_7) AppleWebKit/5360 (KHTML, like Gecko) Chrome/37.0.872.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1678}, "url": "/architecture.php", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "198.60.123.255"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "198.60.123.255 - - [19/Jun/2023:16:59:11 +0000] \"HEAD /Front-line-multimedia%20Robust/human-resource_capability.hmtl HTTP/1.1\" 200 2865 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.0) AppleWebKit/532.33.7 (KHTML, like Gecko) Version/6.1 Safari/532.33.7\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2865}, "url": "/Front-line-multimedia%20Robust/human-resource_capability.hmtl", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "192.111.169.252"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "192.111.169.252 - - [19/Jun/2023:16:59:11 +0000] \"GET /executive/hub-dedicated.jpg HTTP/1.1\" 200 2183 \"-\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/5352 (KHTML, like Gecko) Chrome/40.0.851.0 Mobile Safari/5352\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2183}, "url": "/executive/hub-dedicated.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "139.125.224.230"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "139.125.224.230 - - [19/Jun/2023:16:59:11 +0000] \"GET /Diverse-Object-based-contextually-based.png HTTP/1.1\" 500 31 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_3 like Mac OS X; en-US) AppleWebKit/533.33.2 (KHTML, like Gecko) Version/3.0.5 Mobile/8B118 Safari/6533.33.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 31}, "url": "/Diverse-Object-based-contextually-based.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "60.247.52.80"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "60.247.52.80 - - [19/Jun/2023:16:59:11 +0000] \"GET /intermediate.png HTTP/1.1\" 200 2708 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_8_1 rv:5.0; en-US) AppleWebKit/533.19.5 (KHTML, like Gecko) Version/5.1 Safari/533.19.5\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2708}, "url": "/intermediate.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "101.147.215.218"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "101.147.215.218 - - [19/Jun/2023:16:59:11 +0000] \"DELETE /Open-source_user-facing/methodical/budgetary%20management/Synchronised.php HTTP/1.1\" 200 2583 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5331 (KHTML, like Gecko) Chrome/40.0.873.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2583}, "url": "/Open-source_user-facing/methodical/budgetary%20management/Synchronised.php", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "83.208.17.152"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "83.208.17.152 - - [19/Jun/2023:16:59:11 +0000] \"GET /Cloned/Seamless-system%20engine/Inverse.css HTTP/1.1\" 200 2282 \"-\" \"Opera/8.41 (Windows 98; en-US) Presto/2.10.184 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2282}, "url": "/Cloned/Seamless-system%20engine/Inverse.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "226.23.187.45"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "226.23.187.45 - - [19/Jun/2023:16:59:11 +0000] \"PUT /Virtual/Business-focused.hmtl HTTP/1.1\" 200 1137 \"-\" \"Mozilla/5.0 (Windows NT 6.2) AppleWebKit/5322 (KHTML, like Gecko) Chrome/39.0.897.0 Mobile Safari/5322\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1137}, "url": "/Virtual/Business-focused.hmtl", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "174.165.11.2"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "174.165.11.2 - - [19/Jun/2023:16:59:11 +0000] \"GET /non-volatile.css HTTP/1.1\" 200 2531 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 7_0_3 like Mac OS X; en-US) AppleWebKit/533.13.8 (KHTML, like Gecko) Version/5.0.5 Mobile/8B120 Safari/6533.13.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2531}, "url": "/non-volatile.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "227.24.55.0"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "227.24.55.0 - - [19/Jun/2023:16:59:11 +0000] \"GET /Face%20to%20face-analyzing-client-server_object-oriented.jpg HTTP/1.1\" 200 1007 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_10 rv:6.0; en-US) AppleWebKit/532.48.1 (KHTML, like Gecko) Version/6.1 Safari/532.48.1\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1007}, "url": "/Face%20to%20face-analyzing-client-server_object-oriented.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "159.235.20.196"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "159.235.20.196 - - [19/Jun/2023:16:59:11 +0000] \"POST /De-engineered-algorithm/Up-sized%20full-range/Re-contextualized.png HTTP/1.1\" 200 1911 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5332 (KHTML, like Gecko) Chrome/40.0.805.0 Mobile Safari/5332\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1911}, "url": "/De-engineered-algorithm/Up-sized%20full-range/Re-contextualized.png", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "205.225.68.64"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "205.225.68.64 - - [19/Jun/2023:16:59:11 +0000] \"HEAD /multimedia-responsive%20Stand-alone%20Persistent-methodical.gif HTTP/1.1\" 200 838 \"-\" \"Opera/8.68 (Macintosh; Intel Mac OS X 10_8_7; en-US) Presto/2.12.283 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 838}, "url": "/multimedia-responsive%20Stand-alone%20Persistent-methodical.gif", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "83.77.186.5"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "83.77.186.5 - - [19/Jun/2023:16:59:11 +0000] \"DELETE /access-Face%20to%20face%20Phased/global.gif HTTP/1.1\" 200 2144 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5351 (KHTML, like Gecko) Chrome/40.0.835.0 Mobile Safari/5351\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2144}, "url": "/access-Face%20to%20face%20Phased/global.gif", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "43.80.2.41"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "43.80.2.41 - - [19/Jun/2023:16:59:11 +0000] \"GET /Multi-channelled_capability-methodical.htm HTTP/1.1\" 200 2473 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_5 rv:2.0) Gecko/2006-06-03 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2473}, "url": "/Multi-channelled_capability-methodical.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "236.99.22.177"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "236.99.22.177 - - [19/Jun/2023:16:59:11 +0000] \"GET /heuristic/encoding.svg HTTP/1.1\" 200 3052 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_7_1) AppleWebKit/5361 (KHTML, like Gecko) Chrome/39.0.843.0 Mobile Safari/5361\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3052}, "url": "/heuristic/encoding.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "198.200.59.244"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "198.200.59.244 - - [19/Jun/2023:16:59:11 +0000] \"GET /real-time.svg HTTP/1.1\" 200 3001 \"-\" \"Opera/9.75 (Macintosh; U; PPC Mac OS X 10_5_6; en-US) Presto/2.13.179 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3001}, "url": "/real-time.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "147.223.186.26"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "147.223.186.26 - - [19/Jun/2023:16:59:11 +0000] \"GET /Total-Seamless/internet%20solution_archive/adapter.gif HTTP/1.1\" 302 36 \"-\" \"Mozilla/5.0 (Windows NT 5.01; en-US; rv:1.9.3.20) Gecko/1933-16-11 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 36}, "url": "/Total-Seamless/internet%20solution_archive/adapter.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "169.43.233.40"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "169.43.233.40 - - [19/Jun/2023:16:59:11 +0000] \"PUT /orchestration_Visionary.js HTTP/1.1\" 200 2745 \"-\" \"Mozilla/5.0 (Windows NT 6.2) AppleWebKit/5341 (KHTML, like Gecko) Chrome/36.0.877.0 Mobile Safari/5341\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2745}, "url": "/orchestration_Visionary.js", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "14.184.73.83"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "14.184.73.83 - - [19/Jun/2023:16:59:11 +0000] \"GET /Versatile.js HTTP/1.1\" 200 1127 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/5331 (KHTML, like Gecko) Chrome/36.0.828.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1127}, "url": "/Versatile.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "173.250.186.11"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "173.250.186.11 - - [19/Jun/2023:16:59:11 +0000] \"GET /throughput/Inverse.htm HTTP/1.1\" 404 84 \"-\" \"Opera/10.64 (Windows 98; en-US) Presto/2.9.251 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 84}, "url": "/throughput/Inverse.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "45.56.104.194"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "45.56.104.194 - - [19/Jun/2023:16:59:11 +0000] \"PUT /hierarchy.png HTTP/1.1\" 200 1467 \"-\" \"Opera/9.32 (X11; Linux x86_64; en-US) Presto/2.8.257 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1467}, "url": "/hierarchy.png", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "23.57.124.24"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "23.57.124.24 - - [19/Jun/2023:16:59:11 +0000] \"GET /core/mobile-Public-key/standardization/groupware.gif HTTP/1.1\" 200 2494 \"-\" \"Opera/8.96 (X11; Linux i686; en-US) Presto/2.10.315 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2494}, "url": "/core/mobile-Public-key/standardization/groupware.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "91.133.242.10"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "91.133.242.10 - - [19/Jun/2023:16:59:11 +0000] \"GET /5th%20generation.css HTTP/1.1\" 200 2878 \"-\" \"Opera/8.73 (X11; Linux x86_64; en-US) Presto/2.8.185 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2878}, "url": "/5th%20generation.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "59.93.157.195"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "59.93.157.195 - - [19/Jun/2023:16:59:11 +0000] \"GET /fresh-thinking.htm HTTP/1.1\" 200 1915 \"-\" \"Opera/9.85 (X11; Linux i686; en-US) Presto/2.8.213 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1915}, "url": "/fresh-thinking.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "11.3.85.230"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "11.3.85.230 - - [19/Jun/2023:16:59:11 +0000] \"GET /capacity-demand-driven%20Graphical%20User%20Interface.png HTTP/1.1\" 400 94 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_2) AppleWebKit/5310 (KHTML, like Gecko) Chrome/36.0.882.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 94}, "url": "/capacity-demand-driven%20Graphical%20User%20Interface.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "10.165.64.40"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "10.165.64.40 - - [19/Jun/2023:16:59:11 +0000] \"GET /incremental/demand-driven.css HTTP/1.1\" 200 2003 \"-\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/5312 (KHTML, like Gecko) Chrome/38.0.813.0 Mobile Safari/5312\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2003}, "url": "/incremental/demand-driven.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "52.19.116.171"}}, "@timestamp": "2023-06-19T16:59:11.000Z", "observedTimestamp": "2023-06-19T16:59:11.000Z", "body": "52.19.116.171 - - [19/Jun/2023:16:59:11 +0000] \"GET /mobile-homogeneous-emulation-Proactive.svg HTTP/1.1\" 301 47 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5352 (KHTML, like Gecko) Chrome/36.0.808.0 Mobile Safari/5352\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 47}, "url": "/mobile-homogeneous-emulation-Proactive.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "158.50.94.174"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "158.50.94.174 - - [19/Jun/2023:16:59:12 +0000] \"GET /analyzing%20paradigm%20Advanced-real-time/clear-thinking.jpg HTTP/1.1\" 200 3098 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5311 (KHTML, like Gecko) Chrome/36.0.886.0 Mobile Safari/5311\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3098}, "url": "/analyzing%20paradigm%20Advanced-real-time/clear-thinking.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "116.240.141.79"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "116.240.141.79 - - [19/Jun/2023:16:59:12 +0000] \"GET /adapter-Digitized%20superstructure.png HTTP/1.1\" 200 2022 \"-\" \"Mozilla/5.0 (Windows; U; Windows CE) AppleWebKit/531.28.2 (KHTML, like Gecko) Version/5.2 Safari/531.28.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2022}, "url": "/adapter-Digitized%20superstructure.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "142.1.125.117"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "142.1.125.117 - - [19/Jun/2023:16:59:12 +0000] \"GET /Polarised.jpg HTTP/1.1\" 200 2381 \"-\" \"Opera/9.48 (Macintosh; U; Intel Mac OS X 10_6_2; en-US) Presto/2.11.176 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2381}, "url": "/Polarised.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "244.180.178.212"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "244.180.178.212 - - [19/Jun/2023:16:59:12 +0000] \"HEAD /artificial%20intelligence.htm HTTP/1.1\" 400 101 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:6.0) Gecko/2019-31-03 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 101}, "url": "/artificial%20intelligence.htm", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "116.211.231.226"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "116.211.231.226 - - [19/Jun/2023:16:59:12 +0000] \"GET /frame/Front-line/non-volatile/artificial%20intelligence/Cross-group.php HTTP/1.1\" 200 1563 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.1) AppleWebKit/536.41.8 (KHTML, like Gecko) Version/5.2 Safari/536.41.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1563}, "url": "/frame/Front-line/non-volatile/artificial%20intelligence/Cross-group.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "176.36.213.123"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "176.36.213.123 - - [19/Jun/2023:16:59:12 +0000] \"HEAD /intermediate/fresh-thinking.css HTTP/1.1\" 200 1590 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_4 rv:4.0; en-US) AppleWebKit/531.8.4 (KHTML, like Gecko) Version/5.1 Safari/531.8.4\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1590}, "url": "/intermediate/fresh-thinking.css", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "176.204.179.162"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "176.204.179.162 - - [19/Jun/2023:16:59:12 +0000] \"GET /projection/Virtual_Versatile_productivity.htm HTTP/1.1\" 200 1833 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5311 (KHTML, like Gecko) Chrome/39.0.820.0 Mobile Safari/5311\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1833}, "url": "/projection/Virtual_Versatile_productivity.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "214.97.108.39"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "214.97.108.39 - - [19/Jun/2023:16:59:12 +0000] \"GET /Re-engineered.js HTTP/1.1\" 200 1551 \"-\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/5351 (KHTML, like Gecko) Chrome/38.0.847.0 Mobile Safari/5351\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1551}, "url": "/Re-engineered.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "144.215.110.103"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "144.215.110.103 - - [19/Jun/2023:16:59:12 +0000] \"GET /real-time%20Organic.jpg HTTP/1.1\" 200 2894 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_9_7 rv:4.0) Gecko/2007-09-03 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2894}, "url": "/real-time%20Organic.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "66.48.31.199"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "66.48.31.199 - - [19/Jun/2023:16:59:12 +0000] \"GET /Object-based-systemic%20success.png HTTP/1.1\" 200 2495 \"-\" \"Mozilla/5.0 (Windows NT 6.2; en-US; rv:1.9.3.20) Gecko/1970-28-03 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2495}, "url": "/Object-based-systemic%20success.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "86.46.227.194"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "86.46.227.194 - - [19/Jun/2023:16:59:12 +0000] \"GET /web-enabled/archive/methodical.jpg HTTP/1.1\" 200 3044 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_3 like Mac OS X; en-US) AppleWebKit/531.39.3 (KHTML, like Gecko) Version/5.0.5 Mobile/8B111 Safari/6531.39.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3044}, "url": "/web-enabled/archive/methodical.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "159.244.10.44"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "159.244.10.44 - - [19/Jun/2023:16:59:12 +0000] \"HEAD /Profit-focused/Upgradable_global.css HTTP/1.1\" 200 2230 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5352 (KHTML, like Gecko) Chrome/39.0.827.0 Mobile Safari/5352\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2230}, "url": "/Profit-focused/Upgradable_global.css", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "121.242.79.174"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "121.242.79.174 - - [19/Jun/2023:16:59:12 +0000] \"GET /hybrid/Multi-tiered.hmtl HTTP/1.1\" 200 2739 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_6_8) AppleWebKit/5360 (KHTML, like Gecko) Chrome/37.0.814.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2739}, "url": "/hybrid/Multi-tiered.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "160.24.157.21"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "160.24.157.21 - - [19/Jun/2023:16:59:12 +0000] \"GET /human-resource/success/bandwidth-monitored/intermediate.js HTTP/1.1\" 200 2663 \"-\" \"Mozilla/5.0 (Windows CE) AppleWebKit/5361 (KHTML, like Gecko) Chrome/38.0.801.0 Mobile Safari/5361\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2663}, "url": "/human-resource/success/bandwidth-monitored/intermediate.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "69.110.109.91"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "69.110.109.91 - - [19/Jun/2023:16:59:12 +0000] \"GET /Monitored%20actuating.css HTTP/1.1\" 200 2756 \"-\" \"Opera/8.95 (X11; Linux i686; en-US) Presto/2.8.311 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2756}, "url": "/Monitored%20actuating.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "230.75.217.227"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "230.75.217.227 - - [19/Jun/2023:16:59:12 +0000] \"GET /Multi-tiered-disintermediate.htm HTTP/1.1\" 200 2249 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_3_2 like Mac OS X; en-US) AppleWebKit/536.30.4 (KHTML, like Gecko) Version/4.0.5 Mobile/8B118 Safari/6536.30.4\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2249}, "url": "/Multi-tiered-disintermediate.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "57.232.227.235"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "57.232.227.235 - - [19/Jun/2023:16:59:12 +0000] \"GET /capability%20contextually-based/stable_User-friendly.hmtl HTTP/1.1\" 301 66 \"-\" \"Opera/9.81 (Windows 98; en-US) Presto/2.11.172 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 66}, "url": "/capability%20contextually-based/stable_User-friendly.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "74.82.61.98"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "74.82.61.98 - - [19/Jun/2023:16:59:12 +0000] \"GET /portal-neutral/Graphical%20User%20Interface/open%20architecture.svg HTTP/1.1\" 200 2605 \"-\" \"Opera/9.71 (Macintosh; Intel Mac OS X 10_8_5; en-US) Presto/2.9.217 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2605}, "url": "/portal-neutral/Graphical%20User%20Interface/open%20architecture.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "10.20.90.167"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "10.20.90.167 - - [19/Jun/2023:16:59:12 +0000] \"PUT /cohesive-knowledge%20base/modular_model.png HTTP/1.1\" 200 1609 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_1 like Mac OS X; en-US) AppleWebKit/534.16.5 (KHTML, like Gecko) Version/5.0.5 Mobile/8B117 Safari/6534.16.5\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1609}, "url": "/cohesive-knowledge%20base/modular_model.png", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "211.113.241.163"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "211.113.241.163 - - [19/Jun/2023:16:59:12 +0000] \"GET /groupware%20Re-engineered.hmtl HTTP/1.1\" 200 1713 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5351 (KHTML, like Gecko) Chrome/39.0.888.0 Mobile Safari/5351\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1713}, "url": "/groupware%20Re-engineered.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "202.244.58.62"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "202.244.58.62 - - [19/Jun/2023:16:59:12 +0000] \"HEAD /Exclusive%20Adaptive/forecast.svg HTTP/1.1\" 200 2400 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:8.0) Gecko/1993-12-05 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2400}, "url": "/Exclusive%20Adaptive/forecast.svg", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "137.125.91.143"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "137.125.91.143 - - [19/Jun/2023:16:59:12 +0000] \"POST /help-desk.svg HTTP/1.1\" 200 1229 \"-\" \"Mozilla/5.0 (Windows NT 4.0) AppleWebKit/5331 (KHTML, like Gecko) Chrome/36.0.861.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1229}, "url": "/help-desk.svg", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "49.12.79.59"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "49.12.79.59 - - [19/Jun/2023:16:59:12 +0000] \"GET /Visionary_Fundamental/Decentralized%20didactic.htm HTTP/1.1\" 301 30 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_8_6) AppleWebKit/5362 (KHTML, like Gecko) Chrome/37.0.852.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 30}, "url": "/Visionary_Fundamental/Decentralized%20didactic.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "81.34.82.207"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "81.34.82.207 - - [19/Jun/2023:16:59:12 +0000] \"GET /user-facing.jpg HTTP/1.1\" 200 1995 \"-\" \"Opera/8.33 (Macintosh; Intel Mac OS X 10_9_8; en-US) Presto/2.8.209 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1995}, "url": "/user-facing.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "97.242.141.86"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "97.242.141.86 - - [19/Jun/2023:16:59:12 +0000] \"GET /Ergonomic-architecture/Object-based/Multi-tiered-moratorium.php HTTP/1.1\" 200 913 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:7.0) Gecko/1990-04-09 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 913}, "url": "/Ergonomic-architecture/Object-based/Multi-tiered-moratorium.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "75.27.159.9"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "75.27.159.9 - - [19/Jun/2023:16:59:12 +0000] \"GET /Grass-roots.svg HTTP/1.1\" 200 2761 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5360 (KHTML, like Gecko) Chrome/39.0.870.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2761}, "url": "/Grass-roots.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "214.37.180.45"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "214.37.180.45 - - [19/Jun/2023:16:59:12 +0000] \"GET /coherent.htm HTTP/1.1\" 302 37 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_7 rv:5.0; en-US) AppleWebKit/534.22.6 (KHTML, like Gecko) Version/5.2 Safari/534.22.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 37}, "url": "/coherent.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "81.189.28.76"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "81.189.28.76 - - [19/Jun/2023:16:59:12 +0000] \"GET /productivity-composite.hmtl HTTP/1.1\" 500 31 \"-\" \"Mozilla/5.0 (iPad; CPU OS 9_2_3 like Mac OS X; en-US) AppleWebKit/535.43.3 (KHTML, like Gecko) Version/5.0.5 Mobile/8B114 Safari/6535.43.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 31}, "url": "/productivity-composite.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "165.184.153.230"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "165.184.153.230 - - [19/Jun/2023:16:59:12 +0000] \"HEAD /solution-oriented/responsive_Synergized-solution_Diverse.jpg HTTP/1.1\" 200 1290 \"-\" \"Opera/9.47 (Windows 98; en-US) Presto/2.8.298 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1290}, "url": "/solution-oriented/responsive_Synergized-solution_Diverse.jpg", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "75.118.194.199"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "75.118.194.199 - - [19/Jun/2023:16:59:12 +0000] \"PATCH /extranet/Intuitive/Inverse/workforce.hmtl HTTP/1.1\" 200 1710 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_2 rv:5.0; en-US) AppleWebKit/532.14.3 (KHTML, like Gecko) Version/6.1 Safari/532.14.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1710}, "url": "/extranet/Intuitive/Inverse/workforce.hmtl", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "69.249.101.39"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "69.249.101.39 - - [19/Jun/2023:16:59:12 +0000] \"POST /benchmark/Organized.png HTTP/1.1\" 302 113 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_6 rv:7.0; en-US) AppleWebKit/532.48.4 (KHTML, like Gecko) Version/5.1 Safari/532.48.4\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 113}, "url": "/benchmark/Organized.png", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "39.83.182.37"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "39.83.182.37 - - [19/Jun/2023:16:59:12 +0000] \"GET /conglomeration/Switchable%20mobile-Total.htm HTTP/1.1\" 200 2353 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5312 (KHTML, like Gecko) Chrome/37.0.871.0 Mobile Safari/5312\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2353}, "url": "/conglomeration/Switchable%20mobile-Total.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "154.195.202.104"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "154.195.202.104 - - [19/Jun/2023:16:59:12 +0000] \"GET /empowering/collaboration-ability_internet%20solution/needs-based.hmtl HTTP/1.1\" 200 849 \"-\" \"Mozilla/5.0 (Windows NT 4.0; en-US; rv:1.9.3.20) Gecko/1928-15-12 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 849}, "url": "/empowering/collaboration-ability_internet%20solution/needs-based.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "102.221.231.79"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "102.221.231.79 - - [19/Jun/2023:16:59:12 +0000] \"GET /focus%20group/needs-based-Team-oriented-Adaptive.gif HTTP/1.1\" 200 2940 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 4.0) AppleWebKit/535.40.6 (KHTML, like Gecko) Version/5.0 Safari/535.40.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2940}, "url": "/focus%20group/needs-based-Team-oriented-Adaptive.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "50.203.236.222"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "50.203.236.222 - - [19/Jun/2023:16:59:12 +0000] \"GET /contextually-based-capability.png HTTP/1.1\" 200 2823 \"-\" \"Opera/9.76 (Windows NT 4.0; en-US) Presto/2.9.293 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2823}, "url": "/contextually-based-capability.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "229.176.70.199"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "229.176.70.199 - - [19/Jun/2023:16:59:12 +0000] \"GET /task-force/hierarchy/client-driven/high-level.jpg HTTP/1.1\" 404 88 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_3 rv:6.0) Gecko/1973-01-01 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 88}, "url": "/task-force/hierarchy/client-driven/high-level.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "6.211.219.107"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "6.211.219.107 - - [19/Jun/2023:16:59:12 +0000] \"DELETE /concept-concept/systemic-Compatible.png HTTP/1.1\" 200 1307 \"-\" \"Mozilla/5.0 (Windows NT 6.0) AppleWebKit/5341 (KHTML, like Gecko) Chrome/37.0.845.0 Mobile Safari/5341\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1307}, "url": "/concept-concept/systemic-Compatible.png", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "185.71.199.81"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "185.71.199.81 - - [19/Jun/2023:16:59:12 +0000] \"GET /throughput-Switchable_interactive.svg HTTP/1.1\" 200 1711 \"-\" \"Mozilla/5.0 (Windows NT 5.2) AppleWebKit/5310 (KHTML, like Gecko) Chrome/36.0.844.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1711}, "url": "/throughput-Switchable_interactive.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "68.41.59.162"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "68.41.59.162 - - [19/Jun/2023:16:59:12 +0000] \"GET /Open-architected%20zero%20tolerance.svg HTTP/1.1\" 200 2140 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:8.0) Gecko/2010-01-12 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2140}, "url": "/Open-architected%20zero%20tolerance.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "213.143.251.104"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "213.143.251.104 - - [19/Jun/2023:16:59:12 +0000] \"GET /moderator.hmtl HTTP/1.1\" 200 2072 \"-\" \"Opera/10.70 (Windows 98; en-US) Presto/2.10.306 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2072}, "url": "/moderator.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "194.163.65.239"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "194.163.65.239 - - [19/Jun/2023:16:59:12 +0000] \"HEAD /functionalities.htm HTTP/1.1\" 301 45 \"-\" \"Mozilla/5.0 (Windows NT 5.0) AppleWebKit/5331 (KHTML, like Gecko) Chrome/40.0.801.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 45}, "url": "/functionalities.htm", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "229.121.173.112"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "229.121.173.112 - - [19/Jun/2023:16:59:12 +0000] \"GET /interface-3rd%20generation.jpg HTTP/1.1\" 200 2564 \"-\" \"Opera/8.87 (Macintosh; PPC Mac OS X 10_8_9; en-US) Presto/2.10.238 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2564}, "url": "/interface-3rd%20generation.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "63.246.117.66"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "63.246.117.66 - - [19/Jun/2023:16:59:12 +0000] \"GET /executive-systematic/Ameliorated/ability/Team-oriented.jpg HTTP/1.1\" 200 2439 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_1 rv:6.0) Gecko/1999-03-09 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2439}, "url": "/executive-systematic/Ameliorated/ability/Team-oriented.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "246.1.238.19"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "246.1.238.19 - - [19/Jun/2023:16:59:12 +0000] \"PATCH /coherent_solution.hmtl HTTP/1.1\" 200 1427 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 7_2_1 like Mac OS X; en-US) AppleWebKit/532.45.7 (KHTML, like Gecko) Version/4.0.5 Mobile/8B117 Safari/6532.45.7\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1427}, "url": "/coherent_solution.hmtl", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "48.20.252.160"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "48.20.252.160 - - [19/Jun/2023:16:59:12 +0000] \"DELETE /budgetary%20management-support-Reactive/impactful%20context-sensitive.svg HTTP/1.1\" 200 1201 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5341 (KHTML, like Gecko) Chrome/37.0.821.0 Mobile Safari/5341\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1201}, "url": "/budgetary%20management-support-Reactive/impactful%20context-sensitive.svg", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "231.196.87.28"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "231.196.87.28 - - [19/Jun/2023:16:59:12 +0000] \"GET /orchestration.svg HTTP/1.1\" 200 1763 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 4.0) AppleWebKit/534.42.6 (KHTML, like Gecko) Version/6.2 Safari/534.42.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1763}, "url": "/orchestration.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "113.65.109.215"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "113.65.109.215 - - [19/Jun/2023:16:59:12 +0000] \"PUT /capability.svg HTTP/1.1\" 200 1977 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:5.0) Gecko/1957-15-12 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1977}, "url": "/capability.svg", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "126.12.105.158"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "126.12.105.158 - - [19/Jun/2023:16:59:12 +0000] \"GET /support-Customizable_hardware_homogeneous.htm HTTP/1.1\" 400 81 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.01) AppleWebKit/534.1.5 (KHTML, like Gecko) Version/5.1 Safari/534.1.5\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 81}, "url": "/support-Customizable_hardware_homogeneous.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "205.32.177.14"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "205.32.177.14 - - [19/Jun/2023:16:59:12 +0000] \"GET /bifurcated.hmtl HTTP/1.1\" 302 51 \"-\" \"Opera/9.69 (Macintosh; PPC Mac OS X 10_6_10; en-US) Presto/2.12.321 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 51}, "url": "/bifurcated.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "199.222.230.114"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "199.222.230.114 - - [19/Jun/2023:16:59:12 +0000] \"PATCH /Up-sized.css HTTP/1.1\" 200 2202 \"-\" \"Mozilla/5.0 (Windows; U; Windows 98) AppleWebKit/532.3.5 (KHTML, like Gecko) Version/4.0 Safari/532.3.5\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2202}, "url": "/Up-sized.css", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "53.56.195.252"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "53.56.195.252 - - [19/Jun/2023:16:59:12 +0000] \"GET /Universal_background/extranet.hmtl HTTP/1.1\" 400 99 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5350 (KHTML, like Gecko) Chrome/39.0.881.0 Mobile Safari/5350\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 99}, "url": "/Universal_background/extranet.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "125.51.91.112"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "125.51.91.112 - - [19/Jun/2023:16:59:12 +0000] \"POST /didactic/attitude-oriented/functionalities/mission-critical.png HTTP/1.1\" 200 1430 \"-\" \"Mozilla/5.0 (Windows; U; Windows 98; Win 9x 4.90) AppleWebKit/535.32.8 (KHTML, like Gecko) Version/5.2 Safari/535.32.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1430}, "url": "/didactic/attitude-oriented/functionalities/mission-critical.png", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "137.215.67.225"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "137.215.67.225 - - [19/Jun/2023:16:59:12 +0000] \"PUT /logistical/matrices.svg HTTP/1.1\" 200 2246 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_8_3 rv:4.0) Gecko/1946-01-01 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2246}, "url": "/logistical/matrices.svg", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "210.28.179.238"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "210.28.179.238 - - [19/Jun/2023:16:59:12 +0000] \"GET /content-based_directional.png HTTP/1.1\" 200 2554 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:7.0) Gecko/2014-01-12 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2554}, "url": "/content-based_directional.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "197.18.208.166"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "197.18.208.166 - - [19/Jun/2023:16:59:12 +0000] \"GET /Triple-buffered-leverage.js HTTP/1.1\" 200 1083 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_3 rv:5.0; en-US) AppleWebKit/533.34.6 (KHTML, like Gecko) Version/5.1 Safari/533.34.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1083}, "url": "/Triple-buffered-leverage.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "59.213.153.119"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "59.213.153.119 - - [19/Jun/2023:16:59:12 +0000] \"PATCH /modular%20eco-centric/Customer-focused_Cross-platform/Organized.php HTTP/1.1\" 200 809 \"-\" \"Mozilla/5.0 (Windows NT 4.0) AppleWebKit/5340 (KHTML, like Gecko) Chrome/39.0.826.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 809}, "url": "/modular%20eco-centric/Customer-focused_Cross-platform/Organized.php", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "142.233.59.58"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "142.233.59.58 - - [19/Jun/2023:16:59:12 +0000] \"GET /hybrid/Stand-alone%20framework.css HTTP/1.1\" 200 2528 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5322 (KHTML, like Gecko) Chrome/40.0.831.0 Mobile Safari/5322\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2528}, "url": "/hybrid/Stand-alone%20framework.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "0.88.190.10"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "0.88.190.10 - - [19/Jun/2023:16:59:12 +0000] \"DELETE /bottom-line-Virtual.js HTTP/1.1\" 200 1270 \"-\" \"Opera/9.58 (Windows NT 6.1; en-US) Presto/2.9.342 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1270}, "url": "/bottom-line-Virtual.js", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "158.253.235.37"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "158.253.235.37 - - [19/Jun/2023:16:59:12 +0000] \"PUT /initiative/Persistent.gif HTTP/1.1\" 200 2885 \"-\" \"Opera/8.31 (Macintosh; U; PPC Mac OS X 10_9_4; en-US) Presto/2.13.175 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2885}, "url": "/initiative/Persistent.gif", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "169.179.168.207"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "169.179.168.207 - - [19/Jun/2023:16:59:12 +0000] \"DELETE /hybrid%20initiative.jpg HTTP/1.1\" 500 116 \"-\" \"Mozilla/5.0 (Windows 98; Win 9x 4.90; en-US; rv:1.9.3.20) Gecko/1994-10-01 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 116}, "url": "/hybrid%20initiative.jpg", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "7.159.252.155"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "7.159.252.155 - - [19/Jun/2023:16:59:12 +0000] \"POST /website.hmtl HTTP/1.1\" 200 1965 \"-\" \"Opera/9.91 (X11; Linux i686; en-US) Presto/2.8.350 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1965}, "url": "/website.hmtl", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "245.227.209.96"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "245.227.209.96 - - [19/Jun/2023:16:59:12 +0000] \"DELETE /neural-net_encompassing.png HTTP/1.1\" 200 2554 \"-\" \"Mozilla/5.0 (Windows CE) AppleWebKit/5360 (KHTML, like Gecko) Chrome/37.0.833.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2554}, "url": "/neural-net_encompassing.png", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "2.86.91.245"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "2.86.91.245 - - [19/Jun/2023:16:59:12 +0000] \"GET /Persistent.php HTTP/1.1\" 200 2972 \"-\" \"Opera/10.72 (Windows NT 5.0; en-US) Presto/2.13.262 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2972}, "url": "/Persistent.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "110.247.147.12"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "110.247.147.12 - - [19/Jun/2023:16:59:12 +0000] \"GET /asymmetric%205th%20generation.png HTTP/1.1\" 200 1287 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_2 rv:6.0; en-US) AppleWebKit/532.41.3 (KHTML, like Gecko) Version/5.2 Safari/532.41.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1287}, "url": "/asymmetric%205th%20generation.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "16.234.20.237"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "16.234.20.237 - - [19/Jun/2023:16:59:12 +0000] \"GET /responsive_portal-Configurable-encoding_context-sensitive.svg HTTP/1.1\" 200 2227 \"-\" \"Opera/9.26 (Macintosh; U; PPC Mac OS X 10_6_9; en-US) Presto/2.12.162 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2227}, "url": "/responsive_portal-Configurable-encoding_context-sensitive.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "144.50.96.54"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "144.50.96.54 - - [19/Jun/2023:16:59:12 +0000] \"PATCH /functionalities-website%20radical-throughput.gif HTTP/1.1\" 200 2285 \"-\" \"Mozilla/5.0 (Windows 95) AppleWebKit/5360 (KHTML, like Gecko) Chrome/40.0.867.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2285}, "url": "/functionalities-website%20radical-throughput.gif", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "209.229.218.80"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "209.229.218.80 - - [19/Jun/2023:16:59:12 +0000] \"GET /motivating%20Programmable/Front-line/methodology.jpg HTTP/1.1\" 200 2128 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_9 rv:6.0; en-US) AppleWebKit/536.26.7 (KHTML, like Gecko) Version/5.2 Safari/536.26.7\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2128}, "url": "/motivating%20Programmable/Front-line/methodology.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "79.234.191.134"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "79.234.191.134 - - [19/Jun/2023:16:59:12 +0000] \"GET /Object-based_needs-based/contingency.png HTTP/1.1\" 200 1078 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:5.0) Gecko/1941-17-09 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1078}, "url": "/Object-based_needs-based/contingency.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "124.169.212.225"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "124.169.212.225 - - [19/Jun/2023:16:59:12 +0000] \"GET /Managed/capability-Ameliorated.js HTTP/1.1\" 200 2714 \"-\" \"Opera/8.77 (X11; Linux i686; en-US) Presto/2.12.239 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2714}, "url": "/Managed/capability-Ameliorated.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "240.39.204.97"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "240.39.204.97 - - [19/Jun/2023:16:59:12 +0000] \"GET /interactive%20Right-sized.php HTTP/1.1\" 200 2347 \"-\" \"Opera/9.70 (Windows NT 5.1; en-US) Presto/2.9.341 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2347}, "url": "/interactive%20Right-sized.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "107.56.187.21"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "107.56.187.21 - - [19/Jun/2023:16:59:12 +0000] \"GET /emulation/array.htm HTTP/1.1\" 200 2037 \"-\" \"Mozilla/5.0 (Windows NT 4.0; en-US; rv:1.9.0.20) Gecko/1932-02-04 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2037}, "url": "/emulation/array.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "120.50.215.150"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "120.50.215.150 - - [19/Jun/2023:16:59:12 +0000] \"GET /website_system-worthy/complexity.js HTTP/1.1\" 301 79 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_5_6 rv:4.0) Gecko/2015-31-08 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 79}, "url": "/website_system-worthy/complexity.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "47.116.166.142"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "47.116.166.142 - - [19/Jun/2023:16:59:12 +0000] \"GET /Team-oriented-Profound-protocol/Persevering-Self-enabling.htm HTTP/1.1\" 200 2297 \"-\" \"Mozilla/5.0 (Windows NT 6.0; en-US; rv:1.9.1.20) Gecko/1967-23-01 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2297}, "url": "/Team-oriented-Profound-protocol/Persevering-Self-enabling.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "93.122.60.206"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "93.122.60.206 - - [19/Jun/2023:16:59:12 +0000] \"GET /Upgradable-background.jpg HTTP/1.1\" 200 1085 \"-\" \"Opera/10.97 (Windows NT 5.2; en-US) Presto/2.9.261 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1085}, "url": "/Upgradable-background.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "73.189.251.85"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "73.189.251.85 - - [19/Jun/2023:16:59:12 +0000] \"PUT /Distributed/Compatible/mobile%20Inverse/Networked.png HTTP/1.1\" 200 1150 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5320 (KHTML, like Gecko) Chrome/39.0.873.0 Mobile Safari/5320\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1150}, "url": "/Distributed/Compatible/mobile%20Inverse/Networked.png", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "59.168.88.19"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "59.168.88.19 - - [19/Jun/2023:16:59:12 +0000] \"PUT /leading%20edge%20adapter-De-engineered/optimal-upward-trending.css HTTP/1.1\" 200 1039 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_5_2 rv:5.0) Gecko/1987-13-01 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1039}, "url": "/leading%20edge%20adapter-De-engineered/optimal-upward-trending.css", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "234.188.176.252"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "234.188.176.252 - - [19/Jun/2023:16:59:12 +0000] \"GET /monitoring/matrices/Optional-Enterprise-wide.css HTTP/1.1\" 200 1801 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.1) AppleWebKit/532.29.3 (KHTML, like Gecko) Version/6.2 Safari/532.29.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1801}, "url": "/monitoring/matrices/Optional-Enterprise-wide.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "187.139.122.110"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "187.139.122.110 - - [19/Jun/2023:16:59:12 +0000] \"PUT /Universal/Future-proofed-hybrid/holistic/standardization.htm HTTP/1.1\" 200 2336 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:6.0) Gecko/1971-16-10 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2336}, "url": "/Universal/Future-proofed-hybrid/holistic/standardization.htm", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "181.245.14.80"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "181.245.14.80 - - [19/Jun/2023:16:59:12 +0000] \"GET /Progressive/3rd%20generation-budgetary%20management.gif HTTP/1.1\" 200 2190 \"-\" \"Opera/10.24 (Macintosh; U; Intel Mac OS X 10_5_2; en-US) Presto/2.9.278 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2190}, "url": "/Progressive/3rd%20generation-budgetary%20management.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "40.166.145.174"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "40.166.145.174 - - [19/Jun/2023:16:59:12 +0000] \"HEAD /open%20architecture/structure/internet%20solution_Progressive.jpg HTTP/1.1\" 200 1517 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 7_3_1 like Mac OS X; en-US) AppleWebKit/533.45.5 (KHTML, like Gecko) Version/5.0.5 Mobile/8B117 Safari/6533.45.5\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1517}, "url": "/open%20architecture/structure/internet%20solution_Progressive.jpg", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "88.162.9.130"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "88.162.9.130 - - [19/Jun/2023:16:59:12 +0000] \"HEAD /Versatile_Seamless/Versatile.gif HTTP/1.1\" 200 953 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_6) AppleWebKit/5331 (KHTML, like Gecko) Chrome/40.0.885.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 953}, "url": "/Versatile_Seamless/Versatile.gif", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "123.47.144.211"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "123.47.144.211 - - [19/Jun/2023:16:59:12 +0000] \"GET /intermediate.jpg HTTP/1.1\" 302 116 \"-\" \"Mozilla/5.0 (Windows 98; en-US; rv:1.9.2.20) Gecko/2014-01-10 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 116}, "url": "/intermediate.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "211.55.156.166"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "211.55.156.166 - - [19/Jun/2023:16:59:12 +0000] \"GET /knowledge%20base/Quality-focused%20orchestration.js HTTP/1.1\" 200 1716 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_9_0) AppleWebKit/5332 (KHTML, like Gecko) Chrome/40.0.857.0 Mobile Safari/5332\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1716}, "url": "/knowledge%20base/Quality-focused%20orchestration.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "172.77.252.25"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "172.77.252.25 - - [19/Jun/2023:16:59:12 +0000] \"GET /neutral.png HTTP/1.1\" 200 2655 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_8_10 rv:7.0) Gecko/1966-07-01 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2655}, "url": "/neutral.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "167.100.73.153"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "167.100.73.153 - - [19/Jun/2023:16:59:12 +0000] \"PATCH /bifurcated-scalable-encompassing-migration.gif HTTP/1.1\" 200 2937 \"-\" \"Mozilla/5.0 (Windows; U; Windows 98) AppleWebKit/532.31.1 (KHTML, like Gecko) Version/5.2 Safari/532.31.1\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2937}, "url": "/bifurcated-scalable-encompassing-migration.gif", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "177.24.125.126"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "177.24.125.126 - - [19/Jun/2023:16:59:12 +0000] \"GET /neural-net.js HTTP/1.1\" 200 3000 \"-\" \"Mozilla/5.0 (Windows CE) AppleWebKit/5331 (KHTML, like Gecko) Chrome/37.0.886.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3000}, "url": "/neural-net.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "24.255.17.222"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "24.255.17.222 - - [19/Jun/2023:16:59:12 +0000] \"GET /systemic/definition.svg HTTP/1.1\" 200 2399 \"-\" \"Mozilla/5.0 (Windows; U; Windows CE) AppleWebKit/535.22.1 (KHTML, like Gecko) Version/5.0 Safari/535.22.1\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2399}, "url": "/systemic/definition.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "68.210.246.136"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "68.210.246.136 - - [19/Jun/2023:16:59:12 +0000] \"POST /Compatible%206th%20generation.jpg HTTP/1.1\" 200 2541 \"-\" \"Mozilla/5.0 (Windows NT 6.2; en-US; rv:1.9.1.20) Gecko/1989-10-01 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2541}, "url": "/Compatible%206th%20generation.jpg", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "232.254.22.58"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "232.254.22.58 - - [19/Jun/2023:16:59:12 +0000] \"POST /high-level/contextually-based_Adaptive/leading%20edge-asymmetric.php HTTP/1.1\" 200 2819 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5310 (KHTML, like Gecko) Chrome/39.0.888.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2819}, "url": "/high-level/contextually-based_Adaptive/leading%20edge-asymmetric.php", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "59.61.172.19"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "59.61.172.19 - - [19/Jun/2023:16:59:12 +0000] \"GET /Up-sized/Profound/Expanded_adapter.jpg HTTP/1.1\" 200 1541 \"-\" \"Mozilla/5.0 (Windows; U; Windows 98) AppleWebKit/532.19.2 (KHTML, like Gecko) Version/4.2 Safari/532.19.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1541}, "url": "/Up-sized/Profound/Expanded_adapter.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "181.80.6.6"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "181.80.6.6 - - [19/Jun/2023:16:59:12 +0000] \"GET /contingency%20content-based/leverage-national-installation.php HTTP/1.1\" 200 1296 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_8_9 rv:2.0) Gecko/1945-15-06 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1296}, "url": "/contingency%20content-based/leverage-national-installation.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "245.118.2.210"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "245.118.2.210 - - [19/Jun/2023:16:59:12 +0000] \"GET /superstructure/Up-sized/success%205th%20generation.png HTTP/1.1\" 200 2808 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_9_3 rv:2.0) Gecko/1924-09-02 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2808}, "url": "/superstructure/Up-sized/success%205th%20generation.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "234.111.136.153"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "234.111.136.153 - - [19/Jun/2023:16:59:12 +0000] \"GET /contextually-based/middleware.jpg HTTP/1.1\" 500 105 \"-\" \"Opera/8.32 (Windows CE; en-US) Presto/2.8.240 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 105}, "url": "/contextually-based/middleware.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "65.65.84.125"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "65.65.84.125 - - [19/Jun/2023:16:59:12 +0000] \"DELETE /content-based_definition/real-time.js HTTP/1.1\" 200 1379 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_5_0) AppleWebKit/5312 (KHTML, like Gecko) Chrome/38.0.820.0 Mobile Safari/5312\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1379}, "url": "/content-based_definition/real-time.js", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "58.137.54.247"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "58.137.54.247 - - [19/Jun/2023:16:59:12 +0000] \"GET /Managed/Right-sized-user-facing/Universal.gif HTTP/1.1\" 400 95 \"-\" \"Mozilla/5.0 (iPad; CPU OS 7_3_1 like Mac OS X; en-US) AppleWebKit/536.37.4 (KHTML, like Gecko) Version/5.0.5 Mobile/8B112 Safari/6536.37.4\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 95}, "url": "/Managed/Right-sized-user-facing/Universal.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "119.166.225.226"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "119.166.225.226 - - [19/Jun/2023:16:59:12 +0000] \"GET /object-oriented_Inverse/monitoring-moderator.hmtl HTTP/1.1\" 200 1625 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_9) AppleWebKit/5322 (KHTML, like Gecko) Chrome/38.0.833.0 Mobile Safari/5322\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1625}, "url": "/object-oriented_Inverse/monitoring-moderator.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "64.235.1.175"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "64.235.1.175 - - [19/Jun/2023:16:59:12 +0000] \"GET /task-force/access.jpg HTTP/1.1\" 200 1927 \"-\" \"Opera/10.71 (Windows NT 5.01; en-US) Presto/2.13.336 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1927}, "url": "/task-force/access.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "23.31.149.63"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "23.31.149.63 - - [19/Jun/2023:16:59:12 +0000] \"PATCH /algorithm/Inverse%20superstructure-zero%20defect.jpg HTTP/1.1\" 200 1604 \"-\" \"Mozilla/5.0 (Windows 98; Win 9x 4.90) AppleWebKit/5361 (KHTML, like Gecko) Chrome/36.0.854.0 Mobile Safari/5361\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1604}, "url": "/algorithm/Inverse%20superstructure-zero%20defect.jpg", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "83.94.133.199"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "83.94.133.199 - - [19/Jun/2023:16:59:12 +0000] \"GET /Automated%20neural-net_mission-critical/Advanced.htm HTTP/1.1\" 404 115 \"-\" \"Mozilla/5.0 (Windows NT 4.0) AppleWebKit/5361 (KHTML, like Gecko) Chrome/37.0.891.0 Mobile Safari/5361\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 115}, "url": "/Automated%20neural-net_mission-critical/Advanced.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "252.101.106.89"}}, "@timestamp": "2023-06-19T16:59:12.000Z", "observedTimestamp": "2023-06-19T16:59:12.000Z", "body": "252.101.106.89 - - [19/Jun/2023:16:59:12 +0000] \"PUT /upward-trending%20Future-proofed.htm HTTP/1.1\" 200 1123 \"-\" \"Mozilla/5.0 (Windows; U; Windows 98; Win 9x 4.90) AppleWebKit/534.17.6 (KHTML, like Gecko) Version/5.0 Safari/534.17.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1123}, "url": "/upward-trending%20Future-proofed.htm", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "88.234.59.30"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "88.234.59.30 - - [19/Jun/2023:16:59:13 +0000] \"GET /Versatile/project/Expanded.svg HTTP/1.1\" 200 2942 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5342 (KHTML, like Gecko) Chrome/40.0.895.0 Mobile Safari/5342\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2942}, "url": "/Versatile/project/Expanded.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "24.34.103.40"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "24.34.103.40 - - [19/Jun/2023:16:59:13 +0000] \"GET /full-range.hmtl HTTP/1.1\" 200 2253 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:6.0) Gecko/1985-01-03 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2253}, "url": "/full-range.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "229.182.125.66"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "229.182.125.66 - - [19/Jun/2023:16:59:13 +0000] \"PATCH /discrete/moratorium.svg HTTP/1.1\" 200 1789 \"-\" \"Opera/8.16 (Macintosh; Intel Mac OS X 10_8_0; en-US) Presto/2.9.219 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1789}, "url": "/discrete/moratorium.svg", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "72.224.216.24"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "72.224.216.24 - - [19/Jun/2023:16:59:13 +0000] \"GET /adapter-function.gif HTTP/1.1\" 200 2193 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.1) AppleWebKit/533.21.1 (KHTML, like Gecko) Version/4.1 Safari/533.21.1\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2193}, "url": "/adapter-function.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "167.247.165.237"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "167.247.165.237 - - [19/Jun/2023:16:59:13 +0000] \"GET /Multi-channelled.htm HTTP/1.1\" 301 93 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_9 rv:7.0) Gecko/1934-05-02 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 93}, "url": "/Multi-channelled.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "5.230.236.245"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "5.230.236.245 - - [19/Jun/2023:16:59:13 +0000] \"GET /radical/web-enabled_5th%20generation.svg HTTP/1.1\" 200 2436 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_8) AppleWebKit/5331 (KHTML, like Gecko) Chrome/37.0.867.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2436}, "url": "/radical/web-enabled_5th%20generation.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "141.191.205.41"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "141.191.205.41 - - [19/Jun/2023:16:59:13 +0000] \"GET /Business-focused.png HTTP/1.1\" 200 1504 \"-\" \"Opera/10.68 (X11; Linux x86_64; en-US) Presto/2.9.164 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1504}, "url": "/Business-focused.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "36.229.233.149"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "36.229.233.149 - - [19/Jun/2023:16:59:13 +0000] \"GET /Synchronised/knowledge%20base/Streamlined.jpg HTTP/1.1\" 200 904 \"-\" \"Mozilla/5.0 (Windows NT 5.0) AppleWebKit/5331 (KHTML, like Gecko) Chrome/37.0.834.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 904}, "url": "/Synchronised/knowledge%20base/Streamlined.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "190.43.214.72"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "190.43.214.72 - - [19/Jun/2023:16:59:13 +0000] \"GET /emulation-approach-multimedia.png HTTP/1.1\" 301 30 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:8.0) Gecko/1973-26-11 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 30}, "url": "/emulation-approach-multimedia.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "21.81.75.83"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "21.81.75.83 - - [19/Jun/2023:16:59:13 +0000] \"GET /model-Integrated_local/disintermediate/Profit-focused.gif HTTP/1.1\" 500 31 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.0) AppleWebKit/534.45.1 (KHTML, like Gecko) Version/6.1 Safari/534.45.1\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 31}, "url": "/model-Integrated_local/disintermediate/Profit-focused.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "221.159.202.150"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "221.159.202.150 - - [19/Jun/2023:16:59:13 +0000] \"DELETE /Customer-focused/Reduced.svg HTTP/1.1\" 200 1860 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_6) AppleWebKit/5352 (KHTML, like Gecko) Chrome/38.0.872.0 Mobile Safari/5352\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1860}, "url": "/Customer-focused/Reduced.svg", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "172.95.114.113"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "172.95.114.113 - - [19/Jun/2023:16:59:13 +0000] \"GET /Digitized/system-worthy.gif HTTP/1.1\" 200 1982 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:6.0) Gecko/1909-29-08 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1982}, "url": "/Digitized/system-worthy.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "101.88.69.82"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "101.88.69.82 - - [19/Jun/2023:16:59:13 +0000] \"GET /neutral.css HTTP/1.1\" 200 1193 \"-\" \"Mozilla/5.0 (Windows CE) AppleWebKit/5340 (KHTML, like Gecko) Chrome/39.0.803.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1193}, "url": "/neutral.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "183.82.95.75"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "183.82.95.75 - - [19/Jun/2023:16:59:13 +0000] \"GET /explicit/Programmable/Cross-group/intranet%20object-oriented.gif HTTP/1.1\" 200 1904 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_5 rv:6.0) Gecko/2020-07-05 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1904}, "url": "/explicit/Programmable/Cross-group/intranet%20object-oriented.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "234.23.55.170"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "234.23.55.170 - - [19/Jun/2023:16:59:13 +0000] \"GET /Synchronised-product_Optional-open%20system.css HTTP/1.1\" 200 1721 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_9 rv:5.0) Gecko/1927-24-05 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1721}, "url": "/Synchronised-product_Optional-open%20system.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "9.70.59.19"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "9.70.59.19 - - [19/Jun/2023:16:59:13 +0000] \"HEAD /optimizing%20access_Pre-emptive-radical.js HTTP/1.1\" 200 3030 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5332 (KHTML, like Gecko) Chrome/37.0.846.0 Mobile Safari/5332\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3030}, "url": "/optimizing%20access_Pre-emptive-radical.js", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "227.131.180.63"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "227.131.180.63 - - [19/Jun/2023:16:59:13 +0000] \"GET /task-force/Operative-strategy/website_service-desk.css HTTP/1.1\" 200 2989 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_8_1 rv:5.0; en-US) AppleWebKit/535.10.3 (KHTML, like Gecko) Version/6.2 Safari/535.10.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2989}, "url": "/task-force/Operative-strategy/website_service-desk.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "229.211.174.30"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "229.211.174.30 - - [19/Jun/2023:16:59:13 +0000] \"GET /contextually-based.svg HTTP/1.1\" 400 107 \"-\" \"Mozilla/5.0 (Windows NT 5.2; en-US; rv:1.9.1.20) Gecko/1914-04-11 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 107}, "url": "/contextually-based.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "227.21.123.201"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "227.21.123.201 - - [19/Jun/2023:16:59:13 +0000] \"GET /Mandatory/Reduced.php HTTP/1.1\" 200 1875 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:5.0) Gecko/1988-23-06 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1875}, "url": "/Mandatory/Reduced.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "7.164.85.156"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "7.164.85.156 - - [19/Jun/2023:16:59:13 +0000] \"GET /Synergized/well-modulated-service-desk-monitoring/extranet.htm HTTP/1.1\" 200 1221 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_9 rv:6.0) Gecko/1972-26-06 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1221}, "url": "/Synergized/well-modulated-service-desk-monitoring/extranet.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "30.90.7.42"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "30.90.7.42 - - [19/Jun/2023:16:59:13 +0000] \"POST /definition.php HTTP/1.1\" 301 96 \"-\" \"Opera/9.55 (Windows NT 5.01; en-US) Presto/2.13.188 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 96}, "url": "/definition.php", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "252.85.153.37"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "252.85.153.37 - - [19/Jun/2023:16:59:13 +0000] \"GET /tangible/next%20generation.hmtl HTTP/1.1\" 200 1944 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:8.0) Gecko/1961-15-05 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1944}, "url": "/tangible/next%20generation.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "33.227.162.1"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "33.227.162.1 - - [19/Jun/2023:16:59:13 +0000] \"GET /value-added/synergy_web-enabled/dynamic%20Operative.htm HTTP/1.1\" 200 1859 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_8_10 rv:3.0) Gecko/1909-19-06 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1859}, "url": "/value-added/synergy_web-enabled/dynamic%20Operative.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "77.157.227.20"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "77.157.227.20 - - [19/Jun/2023:16:59:13 +0000] \"PUT /Intuitive%20demand-driven.gif HTTP/1.1\" 200 2559 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_6_8) AppleWebKit/5342 (KHTML, like Gecko) Chrome/39.0.879.0 Mobile Safari/5342\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2559}, "url": "/Intuitive%20demand-driven.gif", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "0.54.188.124"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "0.54.188.124 - - [19/Jun/2023:16:59:13 +0000] \"GET /projection-web-enabled.svg HTTP/1.1\" 200 2307 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5320 (KHTML, like Gecko) Chrome/39.0.836.0 Mobile Safari/5320\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2307}, "url": "/projection-web-enabled.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "44.85.232.167"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "44.85.232.167 - - [19/Jun/2023:16:59:13 +0000] \"PATCH /optimal/reciprocal-Open-source/Fully-configurable.jpg HTTP/1.1\" 500 80 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5362 (KHTML, like Gecko) Chrome/36.0.869.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 80}, "url": "/optimal/reciprocal-Open-source/Fully-configurable.jpg", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "235.38.55.45"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "235.38.55.45 - - [19/Jun/2023:16:59:13 +0000] \"DELETE /success.js HTTP/1.1\" 200 2836 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_6) AppleWebKit/5342 (KHTML, like Gecko) Chrome/37.0.847.0 Mobile Safari/5342\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2836}, "url": "/success.js", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "235.112.174.143"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "235.112.174.143 - - [19/Jun/2023:16:59:13 +0000] \"GET /actuating%20Up-sized/groupware%20productivity.png HTTP/1.1\" 302 109 \"-\" \"Opera/8.31 (X11; Linux x86_64; en-US) Presto/2.9.352 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 109}, "url": "/actuating%20Up-sized/groupware%20productivity.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "115.13.47.213"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "115.13.47.213 - - [19/Jun/2023:16:59:13 +0000] \"GET /Networked/application/Re-engineered%20executive-content-based.jpg HTTP/1.1\" 200 1241 \"-\" \"Mozilla/5.0 (Windows; U; Windows 98; Win 9x 4.90) AppleWebKit/534.31.3 (KHTML, like Gecko) Version/6.1 Safari/534.31.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1241}, "url": "/Networked/application/Re-engineered%20executive-content-based.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "56.122.118.55"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "56.122.118.55 - - [19/Jun/2023:16:59:13 +0000] \"GET /algorithm/Exclusive-mobile%20frame_fresh-thinking.jpg HTTP/1.1\" 302 61 \"-\" \"Opera/8.72 (Macintosh; PPC Mac OS X 10_9_3; en-US) Presto/2.13.162 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 61}, "url": "/algorithm/Exclusive-mobile%20frame_fresh-thinking.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "212.217.120.62"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "212.217.120.62 - - [19/Jun/2023:16:59:13 +0000] \"GET /Enterprise-wide.php HTTP/1.1\" 200 1703 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_5_9 rv:4.0; en-US) AppleWebKit/531.18.2 (KHTML, like Gecko) Version/4.2 Safari/531.18.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1703}, "url": "/Enterprise-wide.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "6.193.237.230"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "6.193.237.230 - - [19/Jun/2023:16:59:13 +0000] \"GET /internet%20solution-fresh-thinking/intangible.js HTTP/1.1\" 200 2638 \"-\" \"Mozilla/5.0 (Windows NT 5.2; en-US; rv:1.9.1.20) Gecko/1976-06-11 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2638}, "url": "/internet%20solution-fresh-thinking/intangible.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "69.101.165.207"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "69.101.165.207 - - [19/Jun/2023:16:59:13 +0000] \"PATCH /stable.jpg HTTP/1.1\" 200 2037 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_6) AppleWebKit/5362 (KHTML, like Gecko) Chrome/36.0.887.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2037}, "url": "/stable.jpg", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "239.248.70.26"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "239.248.70.26 - - [19/Jun/2023:16:59:13 +0000] \"HEAD /focus%20group-Enterprise-wide-Configurable%20zero%20administration.php HTTP/1.1\" 200 2529 \"-\" \"Opera/10.71 (X11; Linux x86_64; en-US) Presto/2.12.304 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2529}, "url": "/focus%20group-Enterprise-wide-Configurable%20zero%20administration.php", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "110.209.198.156"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "110.209.198.156 - - [19/Jun/2023:16:59:13 +0000] \"GET /heuristic/zero%20tolerance-mission-critical-orchestration.gif HTTP/1.1\" 200 1685 \"-\" \"Opera/8.71 (X11; Linux x86_64; en-US) Presto/2.8.187 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1685}, "url": "/heuristic/zero%20tolerance-mission-critical-orchestration.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "70.131.194.194"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "70.131.194.194 - - [19/Jun/2023:16:59:13 +0000] \"DELETE /asymmetric.css HTTP/1.1\" 200 1098 \"-\" \"Mozilla/5.0 (Windows CE) AppleWebKit/5360 (KHTML, like Gecko) Chrome/39.0.800.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1098}, "url": "/asymmetric.css", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "85.2.250.185"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "85.2.250.185 - - [19/Jun/2023:16:59:13 +0000] \"GET /standardization.php HTTP/1.1\" 200 1963 \"-\" \"Mozilla/5.0 (Windows NT 6.2) AppleWebKit/5311 (KHTML, like Gecko) Chrome/40.0.861.0 Mobile Safari/5311\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1963}, "url": "/standardization.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "71.236.133.102"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "71.236.133.102 - - [19/Jun/2023:16:59:13 +0000] \"POST /attitude-access%20Networked-full-range.jpg HTTP/1.1\" 200 931 \"-\" \"Mozilla/5.0 (Windows CE) AppleWebKit/5312 (KHTML, like Gecko) Chrome/38.0.875.0 Mobile Safari/5312\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 931}, "url": "/attitude-access%20Networked-full-range.jpg", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "165.152.135.191"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "165.152.135.191 - - [19/Jun/2023:16:59:13 +0000] \"GET /Virtual%20instruction%20set.svg HTTP/1.1\" 200 2472 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5351 (KHTML, like Gecko) Chrome/39.0.891.0 Mobile Safari/5351\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2472}, "url": "/Virtual%20instruction%20set.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "76.224.242.159"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "76.224.242.159 - - [19/Jun/2023:16:59:13 +0000] \"GET /moderator-budgetary%20management/needs-based_foreground/encoding.php HTTP/1.1\" 200 1832 \"-\" \"Mozilla/5.0 (Windows 98) AppleWebKit/5310 (KHTML, like Gecko) Chrome/36.0.850.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1832}, "url": "/moderator-budgetary%20management/needs-based_foreground/encoding.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "225.28.147.172"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "225.28.147.172 - - [19/Jun/2023:16:59:13 +0000] \"GET /Synergistic/Graphical%20User%20Interface%20Robust_support.css HTTP/1.1\" 301 67 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_7_8) AppleWebKit/5341 (KHTML, like Gecko) Chrome/38.0.822.0 Mobile Safari/5341\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 67}, "url": "/Synergistic/Graphical%20User%20Interface%20Robust_support.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "48.59.229.165"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "48.59.229.165 - - [19/Jun/2023:16:59:13 +0000] \"GET /Persistent%20focus%20group/Advanced-encryption.css HTTP/1.1\" 200 1453 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_7_7 rv:7.0; en-US) AppleWebKit/533.8.8 (KHTML, like Gecko) Version/4.1 Safari/533.8.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1453}, "url": "/Persistent%20focus%20group/Advanced-encryption.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "4.17.233.255"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "4.17.233.255 - - [19/Jun/2023:16:59:13 +0000] \"DELETE /utilisation-system-worthy/4th%20generation.gif HTTP/1.1\" 200 2217 \"-\" \"Opera/8.45 (Windows 98; Win 9x 4.90; en-US) Presto/2.9.175 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2217}, "url": "/utilisation-system-worthy/4th%20generation.gif", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "61.16.254.125"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "61.16.254.125 - - [19/Jun/2023:16:59:13 +0000] \"GET /asymmetric/context-sensitive/Configurable.jpg HTTP/1.1\" 200 1951 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_8_5) AppleWebKit/5350 (KHTML, like Gecko) Chrome/40.0.853.0 Mobile Safari/5350\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1951}, "url": "/asymmetric/context-sensitive/Configurable.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "224.62.176.90"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "224.62.176.90 - - [19/Jun/2023:16:59:13 +0000] \"GET /orchestration/Multi-layered.hmtl HTTP/1.1\" 200 1642 \"-\" \"Mozilla/5.0 (Windows NT 5.0; en-US; rv:1.9.1.20) Gecko/1957-07-09 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1642}, "url": "/orchestration/Multi-layered.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "132.0.183.105"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "132.0.183.105 - - [19/Jun/2023:16:59:13 +0000] \"PUT /Upgradable%20implementation.gif HTTP/1.1\" 200 1566 \"-\" \"Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X; en-US) AppleWebKit/533.51.4 (KHTML, like Gecko) Version/3.0.5 Mobile/8B116 Safari/6533.51.4\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1566}, "url": "/Upgradable%20implementation.gif", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "44.71.147.133"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "44.71.147.133 - - [19/Jun/2023:16:59:13 +0000] \"PATCH /Re-engineered_mobile.hmtl HTTP/1.1\" 200 1119 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_8_3) AppleWebKit/5331 (KHTML, like Gecko) Chrome/37.0.811.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1119}, "url": "/Re-engineered_mobile.hmtl", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "145.213.110.251"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "145.213.110.251 - - [19/Jun/2023:16:59:13 +0000] \"GET /Exclusive/Optional/Up-sized.htm HTTP/1.1\" 302 98 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5321 (KHTML, like Gecko) Chrome/40.0.885.0 Mobile Safari/5321\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 98}, "url": "/Exclusive/Optional/Up-sized.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "249.251.70.35"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "249.251.70.35 - - [19/Jun/2023:16:59:13 +0000] \"GET /Implemented/Triple-buffered.htm HTTP/1.1\" 200 2850 \"-\" \"Opera/8.18 (Macintosh; U; Intel Mac OS X 10_6_6; en-US) Presto/2.10.276 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2850}, "url": "/Implemented/Triple-buffered.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "49.82.168.105"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "49.82.168.105 - - [19/Jun/2023:16:59:13 +0000] \"HEAD /focus%20group-standardization/Networked.php HTTP/1.1\" 200 1845 \"-\" \"Opera/8.62 (X11; Linux x86_64; en-US) Presto/2.10.308 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1845}, "url": "/focus%20group-standardization/Networked.php", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "46.83.38.162"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "46.83.38.162 - - [19/Jun/2023:16:59:13 +0000] \"GET /analyzing_Vision-oriented/knowledge%20base%20help-desk.gif HTTP/1.1\" 200 2567 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.0) AppleWebKit/535.34.6 (KHTML, like Gecko) Version/4.1 Safari/535.34.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2567}, "url": "/analyzing_Vision-oriented/knowledge%20base%20help-desk.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "9.245.230.84"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "9.245.230.84 - - [19/Jun/2023:16:59:13 +0000] \"HEAD /empowering/didactic/full-range.js HTTP/1.1\" 200 2880 \"-\" \"Mozilla/5.0 (Windows 98; Win 9x 4.90) AppleWebKit/5362 (KHTML, like Gecko) Chrome/39.0.815.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2880}, "url": "/empowering/didactic/full-range.js", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "204.204.169.244"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "204.204.169.244 - - [19/Jun/2023:16:59:13 +0000] \"DELETE /Monitored/Enterprise-wide.gif HTTP/1.1\" 200 1711 \"-\" \"Opera/9.13 (X11; Linux x86_64; en-US) Presto/2.11.242 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1711}, "url": "/Monitored/Enterprise-wide.gif", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "5.95.137.51"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "5.95.137.51 - - [19/Jun/2023:16:59:13 +0000] \"GET /intangible/matrix/24%20hour/Diverse_bi-directional.css HTTP/1.1\" 301 65 \"-\" \"Mozilla/5.0 (Windows 98) AppleWebKit/5320 (KHTML, like Gecko) Chrome/40.0.896.0 Mobile Safari/5320\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 65}, "url": "/intangible/matrix/24%20hour/Diverse_bi-directional.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "57.11.1.181"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "57.11.1.181 - - [19/Jun/2023:16:59:13 +0000] \"GET /alliance/Versatile/Total.svg HTTP/1.1\" 200 1273 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_9 rv:7.0; en-US) AppleWebKit/536.15.4 (KHTML, like Gecko) Version/6.2 Safari/536.15.4\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1273}, "url": "/alliance/Versatile/Total.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "178.98.60.166"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "178.98.60.166 - - [19/Jun/2023:16:59:13 +0000] \"GET /time-frame-Proactive/encoding.js HTTP/1.1\" 200 1540 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_6 rv:5.0) Gecko/1952-09-05 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1540}, "url": "/time-frame-Proactive/encoding.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "50.122.104.19"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "50.122.104.19 - - [19/Jun/2023:16:59:13 +0000] \"GET /high-level/intranet/modular_Optional%20Fully-configurable.htm HTTP/1.1\" 200 2617 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/5311 (KHTML, like Gecko) Chrome/38.0.827.0 Mobile Safari/5311\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2617}, "url": "/high-level/intranet/modular_Optional%20Fully-configurable.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "1.79.108.58"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "1.79.108.58 - - [19/Jun/2023:16:59:13 +0000] \"DELETE /moratorium.css HTTP/1.1\" 200 1438 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:5.0) Gecko/1994-30-11 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1438}, "url": "/moratorium.css", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "42.115.219.140"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "42.115.219.140 - - [19/Jun/2023:16:59:13 +0000] \"GET /tangible/Streamlined%20User-friendly_reciprocal.svg HTTP/1.1\" 200 1394 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/5341 (KHTML, like Gecko) Chrome/38.0.814.0 Mobile Safari/5341\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1394}, "url": "/tangible/Streamlined%20User-friendly_reciprocal.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "195.159.25.157"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "195.159.25.157 - - [19/Jun/2023:16:59:13 +0000] \"GET /Quality-focused.jpg HTTP/1.1\" 200 2741 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_9_9 rv:2.0) Gecko/1970-09-05 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2741}, "url": "/Quality-focused.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "122.67.108.194"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "122.67.108.194 - - [19/Jun/2023:16:59:13 +0000] \"GET /Exclusive-methodology_user-facing%20Pre-emptive.gif HTTP/1.1\" 200 2273 \"-\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/5320 (KHTML, like Gecko) Chrome/40.0.811.0 Mobile Safari/5320\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2273}, "url": "/Exclusive-methodology_user-facing%20Pre-emptive.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "150.212.182.74"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "150.212.182.74 - - [19/Jun/2023:16:59:13 +0000] \"PUT /intangible/Graphical%20User%20Interface.svg HTTP/1.1\" 200 1813 \"-\" \"Opera/9.97 (X11; Linux i686; en-US) Presto/2.8.291 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1813}, "url": "/intangible/Graphical%20User%20Interface.svg", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "127.178.182.176"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "127.178.182.176 - - [19/Jun/2023:16:59:13 +0000] \"GET /Visionary.php HTTP/1.1\" 200 1224 \"-\" \"Mozilla/5.0 (iPad; CPU OS 8_2_3 like Mac OS X; en-US) AppleWebKit/534.50.7 (KHTML, like Gecko) Version/3.0.5 Mobile/8B111 Safari/6534.50.7\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1224}, "url": "/Visionary.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "226.52.108.148"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "226.52.108.148 - - [19/Jun/2023:16:59:13 +0000] \"GET /instruction%20set-model.gif HTTP/1.1\" 200 2883 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit/5362 (KHTML, like Gecko) Chrome/40.0.885.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2883}, "url": "/instruction%20set-model.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "162.1.150.90"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "162.1.150.90 - - [19/Jun/2023:16:59:13 +0000] \"GET /Managed/model/Visionary-solution-oriented.svg HTTP/1.1\" 200 1270 \"-\" \"Mozilla/5.0 (iPad; CPU OS 8_0_1 like Mac OS X; en-US) AppleWebKit/535.31.4 (KHTML, like Gecko) Version/3.0.5 Mobile/8B114 Safari/6535.31.4\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1270}, "url": "/Managed/model/Visionary-solution-oriented.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "52.187.201.127"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "52.187.201.127 - - [19/Jun/2023:16:59:13 +0000] \"GET /software-Persistent-Innovative-Adaptive.jpg HTTP/1.1\" 200 2820 \"-\" \"Opera/10.19 (Windows 98; en-US) Presto/2.9.164 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2820}, "url": "/software-Persistent-Innovative-Adaptive.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "123.59.216.122"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "123.59.216.122 - - [19/Jun/2023:16:59:13 +0000] \"GET /pricing%20structure-systemic/Pre-emptive.jpg HTTP/1.1\" 200 2239 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_6 rv:4.0; en-US) AppleWebKit/533.8.3 (KHTML, like Gecko) Version/5.0 Safari/533.8.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2239}, "url": "/pricing%20structure-systemic/Pre-emptive.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "250.186.128.150"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "250.186.128.150 - - [19/Jun/2023:16:59:13 +0000] \"GET /parallelism-orchestration-architecture_neural-net_Devolved.php HTTP/1.1\" 200 1731 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5360 (KHTML, like Gecko) Chrome/37.0.834.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1731}, "url": "/parallelism-orchestration-architecture_neural-net_Devolved.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "20.162.49.249"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "20.162.49.249 - - [19/Jun/2023:16:59:13 +0000] \"GET /system%20engine/Balanced.jpg HTTP/1.1\" 200 1101 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_0 rv:7.0) Gecko/1932-23-02 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1101}, "url": "/system%20engine/Balanced.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "39.97.34.254"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "39.97.34.254 - - [19/Jun/2023:16:59:13 +0000] \"GET /encompassing_Multi-tiered-Exclusive.hmtl HTTP/1.1\" 302 83 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_6) AppleWebKit/5311 (KHTML, like Gecko) Chrome/36.0.856.0 Mobile Safari/5311\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 83}, "url": "/encompassing_Multi-tiered-Exclusive.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "88.237.177.249"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "88.237.177.249 - - [19/Jun/2023:16:59:13 +0000] \"GET /structure%20asymmetric.jpg HTTP/1.1\" 200 1868 \"-\" \"Mozilla/5.0 (Windows NT 5.2) AppleWebKit/5322 (KHTML, like Gecko) Chrome/37.0.880.0 Mobile Safari/5322\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1868}, "url": "/structure%20asymmetric.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "34.11.214.133"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "34.11.214.133 - - [19/Jun/2023:16:59:13 +0000] \"GET /budgetary%20management/Diverse.hmtl HTTP/1.1\" 200 1945 \"-\" \"Opera/8.29 (X11; Linux i686; en-US) Presto/2.12.317 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1945}, "url": "/budgetary%20management/Diverse.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "32.13.62.211"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "32.13.62.211 - - [19/Jun/2023:16:59:13 +0000] \"GET /Business-focused/Business-focused-solution-oriented.jpg HTTP/1.1\" 200 2079 \"-\" \"Mozilla/5.0 (Windows 98; Win 9x 4.90; en-US; rv:1.9.2.20) Gecko/1996-06-07 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2079}, "url": "/Business-focused/Business-focused-solution-oriented.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "28.66.148.123"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "28.66.148.123 - - [19/Jun/2023:16:59:13 +0000] \"GET /neural-net.htm HTTP/1.1\" 200 1877 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:8.0) Gecko/2012-18-05 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1877}, "url": "/neural-net.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "216.251.102.4"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "216.251.102.4 - - [19/Jun/2023:16:59:13 +0000] \"GET /fault-tolerant_neutral/utilisation/benchmark-alliance.png HTTP/1.1\" 200 1605 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_6_0 rv:6.0; en-US) AppleWebKit/533.27.8 (KHTML, like Gecko) Version/5.2 Safari/533.27.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1605}, "url": "/fault-tolerant_neutral/utilisation/benchmark-alliance.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "13.108.227.215"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "13.108.227.215 - - [19/Jun/2023:16:59:13 +0000] \"GET /Horizontal.php HTTP/1.1\" 200 2624 \"-\" \"Mozilla/5.0 (iPad; CPU OS 7_1_3 like Mac OS X; en-US) AppleWebKit/533.23.4 (KHTML, like Gecko) Version/5.0.5 Mobile/8B111 Safari/6533.23.4\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2624}, "url": "/Horizontal.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "71.66.225.184"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "71.66.225.184 - - [19/Jun/2023:16:59:13 +0000] \"PUT /zero%20tolerance-middleware%20Multi-tiered/core.css HTTP/1.1\" 200 2814 \"-\" \"Opera/10.52 (Windows NT 5.0; en-US) Presto/2.13.269 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2814}, "url": "/zero%20tolerance-middleware%20Multi-tiered/core.css", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "11.62.143.110"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "11.62.143.110 - - [19/Jun/2023:16:59:13 +0000] \"GET /Monitored/Enhanced-Integrated.png HTTP/1.1\" 400 52 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_8_2) AppleWebKit/5322 (KHTML, like Gecko) Chrome/37.0.887.0 Mobile Safari/5322\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 52}, "url": "/Monitored/Enhanced-Integrated.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "206.65.53.21"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "206.65.53.21 - - [19/Jun/2023:16:59:13 +0000] \"GET /Stand-alone/intangible-Networked.css HTTP/1.1\" 200 1001 \"-\" \"Opera/10.88 (Windows NT 5.2; en-US) Presto/2.9.244 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1001}, "url": "/Stand-alone/intangible-Networked.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "255.212.103.224"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "255.212.103.224 - - [19/Jun/2023:16:59:13 +0000] \"GET /standardization-human-resource_Reduced/open%20system.png HTTP/1.1\" 400 74 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_7 rv:5.0; en-US) AppleWebKit/536.27.8 (KHTML, like Gecko) Version/4.1 Safari/536.27.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 74}, "url": "/standardization-human-resource_Reduced/open%20system.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "12.151.176.156"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "12.151.176.156 - - [19/Jun/2023:16:59:13 +0000] \"POST /Virtual/interface.css HTTP/1.1\" 400 98 \"-\" \"Opera/9.67 (X11; Linux i686; en-US) Presto/2.13.351 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 98}, "url": "/Virtual/interface.css", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "100.215.147.131"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "100.215.147.131 - - [19/Jun/2023:16:59:13 +0000] \"POST /client-driven-structure/analyzer/budgetary%20management.hmtl HTTP/1.1\" 200 2359 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 7_0_1 like Mac OS X; en-US) AppleWebKit/535.25.1 (KHTML, like Gecko) Version/3.0.5 Mobile/8B118 Safari/6535.25.1\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2359}, "url": "/client-driven-structure/analyzer/budgetary%20management.hmtl", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "49.120.189.43"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "49.120.189.43 - - [19/Jun/2023:16:59:13 +0000] \"GET /initiative_Multi-tiered%20Re-contextualized_Triple-buffered.js HTTP/1.1\" 200 897 \"-\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/5350 (KHTML, like Gecko) Chrome/39.0.817.0 Mobile Safari/5350\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 897}, "url": "/initiative_Multi-tiered%20Re-contextualized_Triple-buffered.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "51.40.57.168"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "51.40.57.168 - - [19/Jun/2023:16:59:13 +0000] \"GET /Implemented.svg HTTP/1.1\" 200 2764 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_0) AppleWebKit/5331 (KHTML, like Gecko) Chrome/36.0.842.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2764}, "url": "/Implemented.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "46.37.74.62"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "46.37.74.62 - - [19/Jun/2023:16:59:13 +0000] \"GET /client-driven_zero%20tolerance.php HTTP/1.1\" 200 2722 \"-\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/5322 (KHTML, like Gecko) Chrome/36.0.834.0 Mobile Safari/5322\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2722}, "url": "/client-driven_zero%20tolerance.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "11.127.89.244"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "11.127.89.244 - - [19/Jun/2023:16:59:13 +0000] \"GET /multi-tasking.htm HTTP/1.1\" 200 2045 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5312 (KHTML, like Gecko) Chrome/40.0.836.0 Mobile Safari/5312\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2045}, "url": "/multi-tasking.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "8.5.246.103"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "8.5.246.103 - - [19/Jun/2023:16:59:13 +0000] \"HEAD /matrix/framework.jpg HTTP/1.1\" 500 34 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_7_6 rv:7.0) Gecko/1923-26-07 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 34}, "url": "/matrix/framework.jpg", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "196.204.200.220"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "196.204.200.220 - - [19/Jun/2023:16:59:13 +0000] \"POST /Centralized_Diverse-full-range-bandwidth-monitored.htm HTTP/1.1\" 200 1940 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_9 rv:6.0) Gecko/2021-31-10 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1940}, "url": "/Centralized_Diverse-full-range-bandwidth-monitored.htm", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "158.62.175.107"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "158.62.175.107 - - [19/Jun/2023:16:59:13 +0000] \"GET /orchestration-value-added/benchmark.jpg HTTP/1.1\" 200 1569 \"-\" \"Opera/10.91 (Macintosh; Intel Mac OS X 10_5_10; en-US) Presto/2.8.166 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1569}, "url": "/orchestration-value-added/benchmark.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "169.83.254.82"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "169.83.254.82 - - [19/Jun/2023:16:59:13 +0000] \"GET /standardization/Synergized.htm HTTP/1.1\" 200 2275 \"-\" \"Mozilla/5.0 (Windows 98; Win 9x 4.90; en-US; rv:1.9.3.20) Gecko/1998-06-07 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2275}, "url": "/standardization/Synergized.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "224.43.51.131"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "224.43.51.131 - - [19/Jun/2023:16:59:13 +0000] \"GET /system-worthy.hmtl HTTP/1.1\" 404 31 \"-\" \"Opera/10.50 (X11; Linux i686; en-US) Presto/2.12.172 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 31}, "url": "/system-worthy.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "122.8.100.45"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "122.8.100.45 - - [19/Jun/2023:16:59:13 +0000] \"HEAD /Down-sized.jpg HTTP/1.1\" 200 1825 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_6) AppleWebKit/5310 (KHTML, like Gecko) Chrome/39.0.804.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1825}, "url": "/Down-sized.jpg", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "93.182.85.223"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "93.182.85.223 - - [19/Jun/2023:16:59:13 +0000] \"PUT /analyzer-tangible/neutral/function.htm HTTP/1.1\" 404 98 \"-\" \"Mozilla/5.0 (Windows CE; en-US; rv:1.9.2.20) Gecko/1944-14-01 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 98}, "url": "/analyzer-tangible/neutral/function.htm", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "110.154.235.16"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "110.154.235.16 - - [19/Jun/2023:16:59:13 +0000] \"GET /User-centric_multi-state/array.js HTTP/1.1\" 200 2101 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1_3 like Mac OS X; en-US) AppleWebKit/535.31.4 (KHTML, like Gecko) Version/5.0.5 Mobile/8B111 Safari/6535.31.4\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2101}, "url": "/User-centric_multi-state/array.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "207.107.140.147"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "207.107.140.147 - - [19/Jun/2023:16:59:13 +0000] \"GET /contextually-based.gif HTTP/1.1\" 200 2467 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X; en-US) AppleWebKit/532.33.3 (KHTML, like Gecko) Version/5.0.5 Mobile/8B119 Safari/6532.33.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2467}, "url": "/contextually-based.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "44.161.174.246"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "44.161.174.246 - - [19/Jun/2023:16:59:13 +0000] \"PATCH /fresh-thinking/functionalities-policy.js HTTP/1.1\" 200 1038 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_4) AppleWebKit/5362 (KHTML, like Gecko) Chrome/38.0.827.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1038}, "url": "/fresh-thinking/functionalities-policy.js", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "78.166.28.123"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "78.166.28.123 - - [19/Jun/2023:16:59:13 +0000] \"GET /Realigned/heuristic.gif HTTP/1.1\" 200 1159 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_6_9) AppleWebKit/5351 (KHTML, like Gecko) Chrome/39.0.824.0 Mobile Safari/5351\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1159}, "url": "/Realigned/heuristic.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "166.84.36.212"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "166.84.36.212 - - [19/Jun/2023:16:59:13 +0000] \"GET /Optional.js HTTP/1.1\" 200 816 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_1) AppleWebKit/5350 (KHTML, like Gecko) Chrome/39.0.849.0 Mobile Safari/5350\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 816}, "url": "/Optional.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "189.3.58.54"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "189.3.58.54 - - [19/Jun/2023:16:59:13 +0000] \"DELETE /mobile/Business-focused-value-added/application-budgetary%20management.jpg HTTP/1.1\" 200 2089 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_9 rv:6.0; en-US) AppleWebKit/531.21.8 (KHTML, like Gecko) Version/4.1 Safari/531.21.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2089}, "url": "/mobile/Business-focused-value-added/application-budgetary%20management.jpg", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "247.137.162.190"}}, "@timestamp": "2023-06-19T16:59:13.000Z", "observedTimestamp": "2023-06-19T16:59:13.000Z", "body": "247.137.162.190 - - [19/Jun/2023:16:59:13 +0000] \"PUT /Operative/interactive-Synergized-even-keeled.png HTTP/1.1\" 200 3010 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_8_0 rv:4.0; en-US) AppleWebKit/532.2.3 (KHTML, like Gecko) Version/5.2 Safari/532.2.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3010}, "url": "/Operative/interactive-Synergized-even-keeled.png", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "236.176.126.220"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "236.176.126.220 - - [19/Jun/2023:16:59:14 +0000] \"POST /Persevering-knowledge%20user.js HTTP/1.1\" 200 1559 \"-\" \"Mozilla/5.0 (Windows; U; Windows CE) AppleWebKit/536.3.3 (KHTML, like Gecko) Version/5.1 Safari/536.3.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1559}, "url": "/Persevering-knowledge%20user.js", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "198.136.178.129"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "198.136.178.129 - - [19/Jun/2023:16:59:14 +0000] \"GET /function%20Front-line%20hub%20value-added_heuristic.css HTTP/1.1\" 200 1258 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_6_3 rv:5.0) Gecko/1984-14-12 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1258}, "url": "/function%20Front-line%20hub%20value-added_heuristic.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "97.8.208.250"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "97.8.208.250 - - [19/Jun/2023:16:59:14 +0000] \"GET /Enterprise-wide/database-explicit-firmware-portal.gif HTTP/1.1\" 200 898 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:5.0) Gecko/1921-02-04 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 898}, "url": "/Enterprise-wide/database-explicit-firmware-portal.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "248.32.66.161"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "248.32.66.161 - - [19/Jun/2023:16:59:14 +0000] \"GET /background.svg HTTP/1.1\" 200 832 \"-\" \"Mozilla/5.0 (Windows NT 4.0; en-US; rv:1.9.0.20) Gecko/1927-28-05 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 832}, "url": "/background.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "66.67.247.158"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "66.67.247.158 - - [19/Jun/2023:16:59:14 +0000] \"GET /Multi-tiered-homogeneous.htm HTTP/1.1\" 200 1064 \"-\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/5310 (KHTML, like Gecko) Chrome/36.0.814.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1064}, "url": "/Multi-tiered-homogeneous.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "234.51.211.50"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "234.51.211.50 - - [19/Jun/2023:16:59:14 +0000] \"GET /intangible%20paradigm%20benchmark.png HTTP/1.1\" 200 1504 \"-\" \"Opera/10.23 (X11; Linux x86_64; en-US) Presto/2.8.203 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1504}, "url": "/intangible%20paradigm%20benchmark.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "214.54.1.108"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "214.54.1.108 - - [19/Jun/2023:16:59:14 +0000] \"GET /zero%20administration%20capability-attitude/hub-Integrated.htm HTTP/1.1\" 200 2599 \"-\" \"Opera/10.92 (X11; Linux x86_64; en-US) Presto/2.13.294 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2599}, "url": "/zero%20administration%20capability-attitude/hub-Integrated.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "44.203.38.92"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "44.203.38.92 - - [19/Jun/2023:16:59:14 +0000] \"GET /holistic.php HTTP/1.1\" 200 1773 \"-\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/5361 (KHTML, like Gecko) Chrome/38.0.856.0 Mobile Safari/5361\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1773}, "url": "/holistic.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "180.1.142.198"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "180.1.142.198 - - [19/Jun/2023:16:59:14 +0000] \"GET /Balanced/national.js HTTP/1.1\" 200 1869 \"-\" \"Opera/9.59 (X11; Linux x86_64; en-US) Presto/2.11.272 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1869}, "url": "/Balanced/national.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "78.47.69.68"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "78.47.69.68 - - [19/Jun/2023:16:59:14 +0000] \"HEAD /info-mediaries.jpg HTTP/1.1\" 200 1485 \"-\" \"Mozilla/5.0 (Windows NT 5.2) AppleWebKit/5321 (KHTML, like Gecko) Chrome/39.0.824.0 Mobile Safari/5321\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1485}, "url": "/info-mediaries.jpg", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "142.2.61.206"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "142.2.61.206 - - [19/Jun/2023:16:59:14 +0000] \"GET /uniform/attitude-oriented-homogeneous/solution-oriented_fresh-thinking.svg HTTP/1.1\" 200 1594 \"-\" \"Mozilla/5.0 (Windows NT 5.01; en-US; rv:1.9.2.20) Gecko/2008-11-09 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1594}, "url": "/uniform/attitude-oriented-homogeneous/solution-oriented_fresh-thinking.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "132.203.226.69"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "132.203.226.69 - - [19/Jun/2023:16:59:14 +0000] \"GET /Secured_approach-synergy%20open%20architecture.gif HTTP/1.1\" 200 1048 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_9_4) AppleWebKit/5330 (KHTML, like Gecko) Chrome/37.0.811.0 Mobile Safari/5330\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1048}, "url": "/Secured_approach-synergy%20open%20architecture.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "0.47.11.88"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "0.47.11.88 - - [19/Jun/2023:16:59:14 +0000] \"POST /Multi-tiered/composite/local%20area%20network.png HTTP/1.1\" 302 85 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_5) AppleWebKit/5310 (KHTML, like Gecko) Chrome/37.0.831.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 85}, "url": "/Multi-tiered/composite/local%20area%20network.png", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "119.235.42.115"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "119.235.42.115 - - [19/Jun/2023:16:59:14 +0000] \"GET /hub-Enterprise-wide/Visionary/empowering.js HTTP/1.1\" 200 1792 \"-\" \"Opera/10.26 (Windows NT 6.1; en-US) Presto/2.13.303 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1792}, "url": "/hub-Enterprise-wide/Visionary/empowering.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "64.0.226.184"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "64.0.226.184 - - [19/Jun/2023:16:59:14 +0000] \"PATCH /budgetary%20management.js HTTP/1.1\" 200 1963 \"-\" \"Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X; en-US) AppleWebKit/533.19.3 (KHTML, like Gecko) Version/4.0.5 Mobile/8B114 Safari/6533.19.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1963}, "url": "/budgetary%20management.js", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "51.70.156.17"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "51.70.156.17 - - [19/Jun/2023:16:59:14 +0000] \"POST /Enterprise-wide/transitional/object-oriented/architecture.htm HTTP/1.1\" 500 32 \"-\" \"Opera/9.78 (X11; Linux i686; en-US) Presto/2.11.233 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 32}, "url": "/Enterprise-wide/transitional/object-oriented/architecture.htm", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "238.71.229.122"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "238.71.229.122 - - [19/Jun/2023:16:59:14 +0000] \"DELETE /approach.css HTTP/1.1\" 200 1354 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5341 (KHTML, like Gecko) Chrome/40.0.827.0 Mobile Safari/5341\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1354}, "url": "/approach.css", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "129.13.244.150"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "129.13.244.150 - - [19/Jun/2023:16:59:14 +0000] \"GET /Synchronised_Configurable/regional.js HTTP/1.1\" 200 2167 \"-\" \"Mozilla/5.0 (Windows NT 4.0) AppleWebKit/5320 (KHTML, like Gecko) Chrome/38.0.835.0 Mobile Safari/5320\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2167}, "url": "/Synchronised_Configurable/regional.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "14.225.194.234"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "14.225.194.234 - - [19/Jun/2023:16:59:14 +0000] \"GET /functionalities-disintermediate-process%20improvement_scalable-Multi-layered.hmtl HTTP/1.1\" 200 2468 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5342 (KHTML, like Gecko) Chrome/40.0.800.0 Mobile Safari/5342\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2468}, "url": "/functionalities-disintermediate-process%20improvement_scalable-Multi-layered.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "87.173.249.47"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "87.173.249.47 - - [19/Jun/2023:16:59:14 +0000] \"DELETE /value-added%20Managed/Programmable.htm HTTP/1.1\" 200 1264 \"-\" \"Opera/8.76 (Windows NT 6.2; en-US) Presto/2.8.214 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1264}, "url": "/value-added%20Managed/Programmable.htm", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "14.23.67.45"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "14.23.67.45 - - [19/Jun/2023:16:59:14 +0000] \"GET /Multi-lateral/Front-line%20Re-contextualized/Multi-lateral.gif HTTP/1.1\" 404 116 \"-\" \"Mozilla/5.0 (Windows 98; Win 9x 4.90) AppleWebKit/5340 (KHTML, like Gecko) Chrome/39.0.812.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 116}, "url": "/Multi-lateral/Front-line%20Re-contextualized/Multi-lateral.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "34.49.151.21"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "34.49.151.21 - - [19/Jun/2023:16:59:14 +0000] \"GET /neutral-Proactive.htm HTTP/1.1\" 200 2530 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_10) AppleWebKit/5360 (KHTML, like Gecko) Chrome/38.0.873.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2530}, "url": "/neutral-Proactive.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "161.252.244.152"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "161.252.244.152 - - [19/Jun/2023:16:59:14 +0000] \"PUT /standardization.php HTTP/1.1\" 200 936 \"-\" \"Mozilla/5.0 (Windows; U; Windows 98) AppleWebKit/536.8.4 (KHTML, like Gecko) Version/4.0 Safari/536.8.4\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 936}, "url": "/standardization.php", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "174.118.71.221"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "174.118.71.221 - - [19/Jun/2023:16:59:14 +0000] \"GET /Phased%20Automated/system%20engine-asymmetric_firmware.php HTTP/1.1\" 200 2195 \"-\" \"Mozilla/5.0 (iPad; CPU OS 8_3_3 like Mac OS X; en-US) AppleWebKit/536.27.4 (KHTML, like Gecko) Version/3.0.5 Mobile/8B111 Safari/6536.27.4\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2195}, "url": "/Phased%20Automated/system%20engine-asymmetric_firmware.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "60.137.102.2"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "60.137.102.2 - - [19/Jun/2023:16:59:14 +0000] \"GET /approach-human-resource-local%20area%20network.htm HTTP/1.1\" 200 1708 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5310 (KHTML, like Gecko) Chrome/40.0.816.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1708}, "url": "/approach-human-resource-local%20area%20network.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "136.139.85.44"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "136.139.85.44 - - [19/Jun/2023:16:59:14 +0000] \"GET /throughput/scalable/foreground%20Ameliorated.hmtl HTTP/1.1\" 200 1796 \"-\" \"Mozilla/5.0 (Windows; U; Windows 98) AppleWebKit/533.46.3 (KHTML, like Gecko) Version/6.1 Safari/533.46.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1796}, "url": "/throughput/scalable/foreground%20Ameliorated.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "170.126.140.117"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "170.126.140.117 - - [19/Jun/2023:16:59:14 +0000] \"GET /Expanded.php HTTP/1.1\" 200 1948 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_10) AppleWebKit/5341 (KHTML, like Gecko) Chrome/37.0.851.0 Mobile Safari/5341\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1948}, "url": "/Expanded.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "148.138.100.24"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "148.138.100.24 - - [19/Jun/2023:16:59:14 +0000] \"POST /pricing%20structure/algorithm-Cross-platform.css HTTP/1.1\" 200 2897 \"-\" \"Mozilla/5.0 (Windows NT 5.2) AppleWebKit/5362 (KHTML, like Gecko) Chrome/38.0.866.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2897}, "url": "/pricing%20structure/algorithm-Cross-platform.css", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "158.109.131.160"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "158.109.131.160 - - [19/Jun/2023:16:59:14 +0000] \"PUT /archive/logistical%20actuating%20encoding.png HTTP/1.1\" 500 120 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_8_9) AppleWebKit/5322 (KHTML, like Gecko) Chrome/39.0.841.0 Mobile Safari/5322\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 120}, "url": "/archive/logistical%20actuating%20encoding.png", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "143.109.61.21"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "143.109.61.21 - - [19/Jun/2023:16:59:14 +0000] \"POST /well-modulated/didactic-logistical/workforce/frame.php HTTP/1.1\" 200 2724 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_2) AppleWebKit/5350 (KHTML, like Gecko) Chrome/37.0.898.0 Mobile Safari/5350\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2724}, "url": "/well-modulated/didactic-logistical/workforce/frame.php", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "34.33.203.246"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "34.33.203.246 - - [19/Jun/2023:16:59:14 +0000] \"GET /Cross-platform-intangible%20middleware/exuding.php HTTP/1.1\" 200 1174 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5342 (KHTML, like Gecko) Chrome/39.0.807.0 Mobile Safari/5342\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1174}, "url": "/Cross-platform-intangible%20middleware/exuding.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "195.177.172.240"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "195.177.172.240 - - [19/Jun/2023:16:59:14 +0000] \"GET /interactive-artificial%20intelligence-grid-enabled-coherent-methodology.png HTTP/1.1\" 200 1738 \"-\" \"Opera/10.46 (Windows CE; en-US) Presto/2.12.315 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1738}, "url": "/interactive-artificial%20intelligence-grid-enabled-coherent-methodology.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "224.205.146.242"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "224.205.146.242 - - [19/Jun/2023:16:59:14 +0000] \"GET /service-desk.php HTTP/1.1\" 200 2169 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5340 (KHTML, like Gecko) Chrome/40.0.892.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2169}, "url": "/service-desk.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "234.85.189.39"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "234.85.189.39 - - [19/Jun/2023:16:59:14 +0000] \"GET /Open-architected/Open-source.svg HTTP/1.1\" 200 1727 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_4 rv:5.0; en-US) AppleWebKit/533.7.2 (KHTML, like Gecko) Version/6.0 Safari/533.7.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1727}, "url": "/Open-architected/Open-source.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "224.69.179.167"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "224.69.179.167 - - [19/Jun/2023:16:59:14 +0000] \"GET /Graphic%20Interface/encoding/Total.gif HTTP/1.1\" 200 1490 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:8.0) Gecko/1923-18-08 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1490}, "url": "/Graphic%20Interface/encoding/Total.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "107.67.114.63"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "107.67.114.63 - - [19/Jun/2023:16:59:14 +0000] \"DELETE /utilisation/open%20system%20capacity-Monitored.png HTTP/1.1\" 200 1618 \"-\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/5320 (KHTML, like Gecko) Chrome/37.0.818.0 Mobile Safari/5320\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1618}, "url": "/utilisation/open%20system%20capacity-Monitored.png", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "111.42.218.250"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "111.42.218.250 - - [19/Jun/2023:16:59:14 +0000] \"GET /intangible-disintermediate%20Digitized.gif HTTP/1.1\" 200 1837 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_5_1 rv:4.0; en-US) AppleWebKit/532.19.6 (KHTML, like Gecko) Version/6.0 Safari/532.19.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1837}, "url": "/intangible-disintermediate%20Digitized.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "202.9.99.198"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "202.9.99.198 - - [19/Jun/2023:16:59:14 +0000] \"POST /info-mediaries_foreground%20responsive/eco-centric/attitude-oriented.htm HTTP/1.1\" 200 2349 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5341 (KHTML, like Gecko) Chrome/37.0.807.0 Mobile Safari/5341\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2349}, "url": "/info-mediaries_foreground%20responsive/eco-centric/attitude-oriented.htm", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "222.64.228.239"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "222.64.228.239 - - [19/Jun/2023:16:59:14 +0000] \"GET /pricing%20structure%2024%20hour/archive-Organized/reciprocal.jpg HTTP/1.1\" 200 2469 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_1) AppleWebKit/5330 (KHTML, like Gecko) Chrome/39.0.819.0 Mobile Safari/5330\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2469}, "url": "/pricing%20structure%2024%20hour/archive-Organized/reciprocal.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "17.4.209.220"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "17.4.209.220 - - [19/Jun/2023:16:59:14 +0000] \"GET /Ameliorated/impactful/multi-state/strategy_Proactive.hmtl HTTP/1.1\" 200 1146 \"-\" \"Mozilla/5.0 (Windows; U; Windows CE) AppleWebKit/536.19.6 (KHTML, like Gecko) Version/6.1 Safari/536.19.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1146}, "url": "/Ameliorated/impactful/multi-state/strategy_Proactive.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "246.17.41.161"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "246.17.41.161 - - [19/Jun/2023:16:59:14 +0000] \"DELETE /knowledge%20base-core/Balanced/tangible/hierarchy.svg HTTP/1.1\" 200 2591 \"-\" \"Mozilla/5.0 (Windows 98; Win 9x 4.90) AppleWebKit/5321 (KHTML, like Gecko) Chrome/39.0.816.0 Mobile Safari/5321\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2591}, "url": "/knowledge%20base-core/Balanced/tangible/hierarchy.svg", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "122.144.119.71"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "122.144.119.71 - - [19/Jun/2023:16:59:14 +0000] \"GET /Up-sized-asymmetric-multimedia.gif HTTP/1.1\" 301 99 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_2_3 like Mac OS X; en-US) AppleWebKit/533.43.1 (KHTML, like Gecko) Version/4.0.5 Mobile/8B111 Safari/6533.43.1\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 99}, "url": "/Up-sized-asymmetric-multimedia.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "211.90.111.26"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "211.90.111.26 - - [19/Jun/2023:16:59:14 +0000] \"GET /Centralized-data-warehouse/Secured.png HTTP/1.1\" 301 74 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5340 (KHTML, like Gecko) Chrome/39.0.811.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 74}, "url": "/Centralized-data-warehouse/Secured.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "221.140.238.239"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "221.140.238.239 - - [19/Jun/2023:16:59:14 +0000] \"GET /concept-support/matrices-Reverse-engineered.js HTTP/1.1\" 200 2602 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_7_9) AppleWebKit/5332 (KHTML, like Gecko) Chrome/40.0.872.0 Mobile Safari/5332\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2602}, "url": "/concept-support/matrices-Reverse-engineered.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "59.117.234.183"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "59.117.234.183 - - [19/Jun/2023:16:59:14 +0000] \"PUT /composite_user-facing.gif HTTP/1.1\" 200 2339 \"-\" \"Mozilla/5.0 (Windows NT 5.0) AppleWebKit/5311 (KHTML, like Gecko) Chrome/37.0.822.0 Mobile Safari/5311\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2339}, "url": "/composite_user-facing.gif", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "244.195.48.11"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "244.195.48.11 - - [19/Jun/2023:16:59:14 +0000] \"DELETE /adapter.js HTTP/1.1\" 200 2790 \"-\" \"Opera/8.28 (X11; Linux x86_64; en-US) Presto/2.13.209 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2790}, "url": "/adapter.js", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "190.222.212.19"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "190.222.212.19 - - [19/Jun/2023:16:59:14 +0000] \"HEAD /4th%20generation%20budgetary%20management-workforce%20product-Upgradable.htm HTTP/1.1\" 500 84 \"-\" \"Mozilla/5.0 (Windows NT 5.01) AppleWebKit/5341 (KHTML, like Gecko) Chrome/38.0.815.0 Mobile Safari/5341\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 84}, "url": "/4th%20generation%20budgetary%20management-workforce%20product-Upgradable.htm", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "252.254.222.251"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "252.254.222.251 - - [19/Jun/2023:16:59:14 +0000] \"GET /Face%20to%20face/Distributed.svg HTTP/1.1\" 200 2569 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5361 (KHTML, like Gecko) Chrome/38.0.868.0 Mobile Safari/5361\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2569}, "url": "/Face%20to%20face/Distributed.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "102.17.218.240"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "102.17.218.240 - - [19/Jun/2023:16:59:14 +0000] \"GET /explicit/support/directional/stable/Adaptive.php HTTP/1.1\" 200 2743 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_7_9 rv:6.0; en-US) AppleWebKit/533.39.8 (KHTML, like Gecko) Version/6.1 Safari/533.39.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2743}, "url": "/explicit/support/directional/stable/Adaptive.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "117.114.155.203"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "117.114.155.203 - - [19/Jun/2023:16:59:14 +0000] \"GET /Future-proofed-internet%20solution/optimal-Upgradable-Extended.js HTTP/1.1\" 302 60 \"-\" \"Mozilla/5.0 (Windows 98; Win 9x 4.90; en-US; rv:1.9.1.20) Gecko/2012-28-02 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 60}, "url": "/Future-proofed-internet%20solution/optimal-Upgradable-Extended.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "183.8.151.112"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "183.8.151.112 - - [19/Jun/2023:16:59:14 +0000] \"GET /radical.png HTTP/1.1\" 200 2670 \"-\" \"Mozilla/5.0 (Windows NT 5.01) AppleWebKit/5351 (KHTML, like Gecko) Chrome/36.0.865.0 Mobile Safari/5351\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2670}, "url": "/radical.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "219.71.133.104"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "219.71.133.104 - - [19/Jun/2023:16:59:14 +0000] \"GET /customer%20loyalty/Profound/Graphical%20User%20Interface/Focused.jpg HTTP/1.1\" 200 896 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5310 (KHTML, like Gecko) Chrome/39.0.807.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 896}, "url": "/customer%20loyalty/Profound/Graphical%20User%20Interface/Focused.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "137.90.105.189"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "137.90.105.189 - - [19/Jun/2023:16:59:14 +0000] \"HEAD /clear-thinking/model%20Profit-focused/homogeneous-tangible.css HTTP/1.1\" 500 77 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5320 (KHTML, like Gecko) Chrome/39.0.809.0 Mobile Safari/5320\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 77}, "url": "/clear-thinking/model%20Profit-focused/homogeneous-tangible.css", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "108.16.128.187"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "108.16.128.187 - - [19/Jun/2023:16:59:14 +0000] \"GET /reciprocal/Operative.png HTTP/1.1\" 200 1237 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5350 (KHTML, like Gecko) Chrome/38.0.891.0 Mobile Safari/5350\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1237}, "url": "/reciprocal/Operative.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "222.23.89.62"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "222.23.89.62 - - [19/Jun/2023:16:59:14 +0000] \"PUT /Advanced%20Quality-focused/transitional-Synergized-disintermediate.jpg HTTP/1.1\" 200 1483 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_8_6 rv:5.0) Gecko/2023-04-10 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1483}, "url": "/Advanced%20Quality-focused/transitional-Synergized-disintermediate.jpg", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "122.33.53.175"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "122.33.53.175 - - [19/Jun/2023:16:59:14 +0000] \"GET /contextually-based.svg HTTP/1.1\" 200 1308 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5332 (KHTML, like Gecko) Chrome/39.0.806.0 Mobile Safari/5332\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1308}, "url": "/contextually-based.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "115.26.196.19"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "115.26.196.19 - - [19/Jun/2023:16:59:14 +0000] \"GET /strategy-client-driven/eco-centric_Automated.css HTTP/1.1\" 404 56 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.01) AppleWebKit/532.35.5 (KHTML, like Gecko) Version/4.1 Safari/532.35.5\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 56}, "url": "/strategy-client-driven/eco-centric_Automated.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "113.190.34.160"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "113.190.34.160 - - [19/Jun/2023:16:59:14 +0000] \"GET /strategy/Configurable/Polarised-structure.php HTTP/1.1\" 200 2439 \"-\" \"Mozilla/5.0 (Windows CE) AppleWebKit/5321 (KHTML, like Gecko) Chrome/40.0.889.0 Mobile Safari/5321\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2439}, "url": "/strategy/Configurable/Polarised-structure.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "39.114.186.17"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "39.114.186.17 - - [19/Jun/2023:16:59:14 +0000] \"GET /attitude-oriented-Progressive/Decentralized%20Monitored/Re-engineered.css HTTP/1.1\" 200 2882 \"-\" \"Opera/10.75 (X11; Linux x86_64; en-US) Presto/2.13.263 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2882}, "url": "/attitude-oriented-Progressive/Decentralized%20Monitored/Re-engineered.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "14.7.6.88"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "14.7.6.88 - - [19/Jun/2023:16:59:14 +0000] \"GET /complexity.js HTTP/1.1\" 200 2796 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5341 (KHTML, like Gecko) Chrome/36.0.898.0 Mobile Safari/5341\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2796}, "url": "/complexity.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "205.76.205.246"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "205.76.205.246 - - [19/Jun/2023:16:59:14 +0000] \"GET /open%20architecture-orchestration%20intranet/info-mediaries.hmtl HTTP/1.1\" 200 2406 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_6 rv:7.0; en-US) AppleWebKit/531.46.3 (KHTML, like Gecko) Version/4.2 Safari/531.46.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2406}, "url": "/open%20architecture-orchestration%20intranet/info-mediaries.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "66.104.73.161"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "66.104.73.161 - - [19/Jun/2023:16:59:14 +0000] \"GET /cohesive-portal-uniform.gif HTTP/1.1\" 200 2164 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5361 (KHTML, like Gecko) Chrome/37.0.862.0 Mobile Safari/5361\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2164}, "url": "/cohesive-portal-uniform.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "93.114.229.57"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "93.114.229.57 - - [19/Jun/2023:16:59:14 +0000] \"GET /Exclusive-adapter-system-worthy%20neutral%20circuit.png HTTP/1.1\" 200 1917 \"-\" \"Opera/8.70 (Windows 95; en-US) Presto/2.8.249 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1917}, "url": "/Exclusive-adapter-system-worthy%20neutral%20circuit.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "50.134.119.175"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "50.134.119.175 - - [19/Jun/2023:16:59:14 +0000] \"GET /task-force%20Fully-configurable-protocol.png HTTP/1.1\" 200 2489 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/5361 (KHTML, like Gecko) Chrome/39.0.877.0 Mobile Safari/5361\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2489}, "url": "/task-force%20Fully-configurable-protocol.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "232.227.63.241"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "232.227.63.241 - - [19/Jun/2023:16:59:14 +0000] \"GET /Versatile/stable%20Re-contextualized/modular/Enhanced.jpg HTTP/1.1\" 200 2236 \"-\" \"Opera/10.96 (Macintosh; U; PPC Mac OS X 10_9_7; en-US) Presto/2.10.162 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2236}, "url": "/Versatile/stable%20Re-contextualized/modular/Enhanced.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "32.81.40.32"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "32.81.40.32 - - [19/Jun/2023:16:59:14 +0000] \"POST /database.jpg HTTP/1.1\" 200 1117 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.0) AppleWebKit/532.9.5 (KHTML, like Gecko) Version/4.1 Safari/532.9.5\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1117}, "url": "/database.jpg", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "55.210.59.51"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "55.210.59.51 - - [19/Jun/2023:16:59:14 +0000] \"POST /fault-tolerant_Centralized_even-keeled.htm HTTP/1.1\" 200 2183 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8 rv:6.0) Gecko/2015-01-10 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2183}, "url": "/fault-tolerant_Centralized_even-keeled.htm", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "220.194.40.25"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "220.194.40.25 - - [19/Jun/2023:16:59:14 +0000] \"HEAD /attitude-Future-proofed-Automated%20Ameliorated.gif HTTP/1.1\" 200 868 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 4.0) AppleWebKit/534.30.5 (KHTML, like Gecko) Version/6.2 Safari/534.30.5\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 868}, "url": "/attitude-Future-proofed-Automated%20Ameliorated.gif", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "87.150.255.110"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "87.150.255.110 - - [19/Jun/2023:16:59:14 +0000] \"GET /Synchronised.htm HTTP/1.1\" 200 836 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_8_0) AppleWebKit/5352 (KHTML, like Gecko) Chrome/36.0.826.0 Mobile Safari/5352\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 836}, "url": "/Synchronised.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "108.161.20.48"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "108.161.20.48 - - [19/Jun/2023:16:59:14 +0000] \"GET /pricing%20structure/forecast.hmtl HTTP/1.1\" 200 2114 \"-\" \"Mozilla/5.0 (iPad; CPU OS 8_0_1 like Mac OS X; en-US) AppleWebKit/532.23.6 (KHTML, like Gecko) Version/3.0.5 Mobile/8B119 Safari/6532.23.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2114}, "url": "/pricing%20structure/forecast.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "209.189.77.232"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "209.189.77.232 - - [19/Jun/2023:16:59:14 +0000] \"HEAD /standardization/stable/collaboration/client-server/actuating.css HTTP/1.1\" 200 856 \"-\" \"Mozilla/5.0 (iPad; CPU OS 7_0_2 like Mac OS X; en-US) AppleWebKit/534.8.8 (KHTML, like Gecko) Version/5.0.5 Mobile/8B112 Safari/6534.8.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 856}, "url": "/standardization/stable/collaboration/client-server/actuating.css", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "133.96.208.169"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "133.96.208.169 - - [19/Jun/2023:16:59:14 +0000] \"DELETE /Progressive/paradigm-system-worthy-Decentralized.php HTTP/1.1\" 200 1140 \"-\" \"Mozilla/5.0 (iPad; CPU OS 7_1_3 like Mac OS X; en-US) AppleWebKit/532.16.7 (KHTML, like Gecko) Version/4.0.5 Mobile/8B119 Safari/6532.16.7\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1140}, "url": "/Progressive/paradigm-system-worthy-Decentralized.php", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "176.235.113.250"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "176.235.113.250 - - [19/Jun/2023:16:59:14 +0000] \"POST /pricing%20structure.gif HTTP/1.1\" 200 1483 \"-\" \"Opera/9.73 (Windows NT 6.0; en-US) Presto/2.11.323 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1483}, "url": "/pricing%20structure.gif", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "20.163.132.193"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "20.163.132.193 - - [19/Jun/2023:16:59:14 +0000] \"GET /Up-sized%20implementation.png HTTP/1.1\" 200 2672 \"-\" \"Mozilla/5.0 (Windows; U; Windows 98; Win 9x 4.90) AppleWebKit/532.23.5 (KHTML, like Gecko) Version/5.0 Safari/532.23.5\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2672}, "url": "/Up-sized%20implementation.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "253.168.117.126"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "253.168.117.126 - - [19/Jun/2023:16:59:14 +0000] \"DELETE /Synergized-De-engineered-Profit-focused/directional/Profit-focused.hmtl HTTP/1.1\" 200 1539 \"-\" \"Opera/8.29 (Windows CE; en-US) Presto/2.10.255 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1539}, "url": "/Synergized-De-engineered-Profit-focused/directional/Profit-focused.hmtl", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "22.124.147.148"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "22.124.147.148 - - [19/Jun/2023:16:59:14 +0000] \"GET /Virtual_info-mediaries/parallelism/complexity%20Graphic%20Interface.svg HTTP/1.1\" 200 1579 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_7_8 rv:2.0) Gecko/1967-02-07 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1579}, "url": "/Virtual_info-mediaries/parallelism/complexity%20Graphic%20Interface.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "81.239.52.113"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "81.239.52.113 - - [19/Jun/2023:16:59:14 +0000] \"GET /Realigned/Multi-lateral/Decentralized_hub/moratorium.hmtl HTTP/1.1\" 200 2182 \"-\" \"Opera/8.91 (Windows NT 6.0; en-US) Presto/2.9.287 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2182}, "url": "/Realigned/Multi-lateral/Decentralized_hub/moratorium.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "177.149.26.248"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "177.149.26.248 - - [19/Jun/2023:16:59:14 +0000] \"GET /responsive.svg HTTP/1.1\" 200 2437 \"-\" \"Mozilla/5.0 (Windows CE) AppleWebKit/5320 (KHTML, like Gecko) Chrome/39.0.889.0 Mobile Safari/5320\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2437}, "url": "/responsive.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "4.248.99.6"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "4.248.99.6 - - [19/Jun/2023:16:59:14 +0000] \"GET /content-based/object-oriented-orchestration.svg HTTP/1.1\" 200 1580 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_6_2) AppleWebKit/5362 (KHTML, like Gecko) Chrome/39.0.814.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1580}, "url": "/content-based/object-oriented-orchestration.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "112.25.163.134"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "112.25.163.134 - - [19/Jun/2023:16:59:14 +0000] \"GET /empowering.png HTTP/1.1\" 200 2669 \"-\" \"Opera/8.65 (Macintosh; U; Intel Mac OS X 10_6_1; en-US) Presto/2.11.349 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2669}, "url": "/empowering.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "151.246.8.217"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "151.246.8.217 - - [19/Jun/2023:16:59:14 +0000] \"DELETE /responsive/intangible-internet%20solution/firmware.svg HTTP/1.1\" 200 2099 \"-\" \"Mozilla/5.0 (Windows NT 6.0; en-US; rv:1.9.2.20) Gecko/2005-21-12 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2099}, "url": "/responsive/intangible-internet%20solution/firmware.svg", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "95.27.254.182"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "95.27.254.182 - - [19/Jun/2023:16:59:14 +0000] \"GET /Face%20to%20face/Optimized/attitude-oriented_discrete.js HTTP/1.1\" 302 96 \"-\" \"Opera/8.28 (X11; Linux i686; en-US) Presto/2.8.233 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 96}, "url": "/Face%20to%20face/Optimized/attitude-oriented_discrete.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "8.138.115.75"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "8.138.115.75 - - [19/Jun/2023:16:59:14 +0000] \"PATCH /web-enabled-uniform-contextually-based%20database.png HTTP/1.1\" 200 2905 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_9) AppleWebKit/5352 (KHTML, like Gecko) Chrome/38.0.823.0 Mobile Safari/5352\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2905}, "url": "/web-enabled-uniform-contextually-based%20database.png", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "177.202.148.35"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "177.202.148.35 - - [19/Jun/2023:16:59:14 +0000] \"GET /Mandatory%20success%20high-level.svg HTTP/1.1\" 200 3081 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_8_9 rv:7.0; en-US) AppleWebKit/534.48.8 (KHTML, like Gecko) Version/5.1 Safari/534.48.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3081}, "url": "/Mandatory%20success%20high-level.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "165.230.244.99"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "165.230.244.99 - - [19/Jun/2023:16:59:14 +0000] \"PUT /tertiary-Centralized/internet%20solution.png HTTP/1.1\" 404 100 \"-\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/5322 (KHTML, like Gecko) Chrome/38.0.830.0 Mobile Safari/5322\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 100}, "url": "/tertiary-Centralized/internet%20solution.png", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "143.233.189.89"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "143.233.189.89 - - [19/Jun/2023:16:59:14 +0000] \"GET /4th%20generation/24/7%20help-desk/value-added.css HTTP/1.1\" 200 1478 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_8_10 rv:4.0) Gecko/1936-17-05 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1478}, "url": "/4th%20generation/24/7%20help-desk/value-added.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "51.230.12.56"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "51.230.12.56 - - [19/Jun/2023:16:59:14 +0000] \"GET /Horizontal/Balanced%20tangible/moratorium_radical.hmtl HTTP/1.1\" 200 1653 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1 rv:7.0) Gecko/1972-26-02 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1653}, "url": "/Horizontal/Balanced%20tangible/moratorium_radical.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "33.208.201.129"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "33.208.201.129 - - [19/Jun/2023:16:59:14 +0000] \"DELETE /asymmetric%20Decentralized/background/Versatile.jpg HTTP/1.1\" 200 2119 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_9 rv:4.0; en-US) AppleWebKit/532.2.1 (KHTML, like Gecko) Version/5.1 Safari/532.2.1\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2119}, "url": "/asymmetric%20Decentralized/background/Versatile.jpg", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "32.91.102.90"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "32.91.102.90 - - [19/Jun/2023:16:59:14 +0000] \"GET /context-sensitive%20Reduced%20matrix.jpg HTTP/1.1\" 302 34 \"-\" \"Opera/10.65 (X11; Linux x86_64; en-US) Presto/2.9.170 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 34}, "url": "/context-sensitive%20Reduced%20matrix.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "47.248.168.104"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "47.248.168.104 - - [19/Jun/2023:16:59:14 +0000] \"POST /modular.hmtl HTTP/1.1\" 400 74 \"-\" \"Opera/8.63 (X11; Linux i686; en-US) Presto/2.11.252 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 74}, "url": "/modular.hmtl", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "126.105.81.238"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "126.105.81.238 - - [19/Jun/2023:16:59:14 +0000] \"PUT /function/impactful.js HTTP/1.1\" 200 2775 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_0 rv:3.0) Gecko/1969-20-11 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2775}, "url": "/function/impactful.js", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "152.104.18.221"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "152.104.18.221 - - [19/Jun/2023:16:59:14 +0000] \"GET /analyzer/zero%20defect_Reverse-engineered.jpg HTTP/1.1\" 200 2216 \"-\" \"Opera/9.13 (X11; Linux x86_64; en-US) Presto/2.10.337 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2216}, "url": "/analyzer/zero%20defect_Reverse-engineered.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "203.244.22.114"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "203.244.22.114 - - [19/Jun/2023:16:59:14 +0000] \"GET /support-Balanced/internet%20solution/client-driven.htm HTTP/1.1\" 200 3019 \"-\" \"Opera/9.23 (X11; Linux x86_64; en-US) Presto/2.12.261 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3019}, "url": "/support-Balanced/internet%20solution/client-driven.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "197.113.56.121"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "197.113.56.121 - - [19/Jun/2023:16:59:14 +0000] \"GET /Realigned/Implemented.hmtl HTTP/1.1\" 200 2979 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5320 (KHTML, like Gecko) Chrome/39.0.891.0 Mobile Safari/5320\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2979}, "url": "/Realigned/Implemented.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "81.31.246.95"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "81.31.246.95 - - [19/Jun/2023:16:59:14 +0000] \"GET /Versatile/Organic.css HTTP/1.1\" 200 2520 \"-\" \"Opera/10.20 (Macintosh; PPC Mac OS X 10_6_3; en-US) Presto/2.12.217 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2520}, "url": "/Versatile/Organic.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "178.64.161.61"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "178.64.161.61 - - [19/Jun/2023:16:59:14 +0000] \"GET /Fully-configurable.htm HTTP/1.1\" 200 2336 \"-\" \"Mozilla/5.0 (Windows NT 6.2) AppleWebKit/5362 (KHTML, like Gecko) Chrome/37.0.872.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2336}, "url": "/Fully-configurable.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "46.85.146.167"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "46.85.146.167 - - [19/Jun/2023:16:59:14 +0000] \"GET /eco-centric-Networked/Virtual%20analyzing.svg HTTP/1.1\" 200 2729 \"-\" \"Opera/8.18 (X11; Linux i686; en-US) Presto/2.10.208 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2729}, "url": "/eco-centric-Networked/Virtual%20analyzing.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "91.190.166.211"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "91.190.166.211 - - [19/Jun/2023:16:59:14 +0000] \"PATCH /software.hmtl HTTP/1.1\" 200 2568 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:5.0) Gecko/1971-24-03 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2568}, "url": "/software.hmtl", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "182.118.94.4"}}, "@timestamp": "2023-06-19T16:59:14.000Z", "observedTimestamp": "2023-06-19T16:59:14.000Z", "body": "182.118.94.4 - - [19/Jun/2023:16:59:14 +0000] \"GET /transitional.svg HTTP/1.1\" 200 3076 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/5312 (KHTML, like Gecko) Chrome/38.0.896.0 Mobile Safari/5312\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 3076}, "url": "/transitional.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "52.5.127.202"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "52.5.127.202 - - [19/Jun/2023:16:59:15 +0000] \"GET /database_extranet.jpg HTTP/1.1\" 200 859 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_2) AppleWebKit/5340 (KHTML, like Gecko) Chrome/36.0.842.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 859}, "url": "/database_extranet.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "143.222.125.5"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "143.222.125.5 - - [19/Jun/2023:16:59:15 +0000] \"GET /Graphic%20Interface_Cross-group-Assimilated-coherent/collaboration.hmtl HTTP/1.1\" 200 2554 \"-\" \"Opera/8.50 (Windows CE; en-US) Presto/2.8.160 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2554}, "url": "/Graphic%20Interface_Cross-group-Assimilated-coherent/collaboration.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "89.21.235.99"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "89.21.235.99 - - [19/Jun/2023:16:59:15 +0000] \"GET /data-warehouse-Decentralized.png HTTP/1.1\" 200 1097 \"-\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/5330 (KHTML, like Gecko) Chrome/37.0.832.0 Mobile Safari/5330\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1097}, "url": "/data-warehouse-Decentralized.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "27.169.231.78"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "27.169.231.78 - - [19/Jun/2023:16:59:15 +0000] \"GET /data-warehouse_Ameliorated/time-frame/web-enabled.js HTTP/1.1\" 200 1756 \"-\" \"Mozilla/5.0 (Windows; U; Windows 98; Win 9x 4.90) AppleWebKit/532.40.1 (KHTML, like Gecko) Version/6.1 Safari/532.40.1\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1756}, "url": "/data-warehouse_Ameliorated/time-frame/web-enabled.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "231.81.65.24"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "231.81.65.24 - - [19/Jun/2023:16:59:15 +0000] \"PATCH /De-engineered.js HTTP/1.1\" 200 1115 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5362 (KHTML, like Gecko) Chrome/38.0.893.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1115}, "url": "/De-engineered.js", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "138.32.60.170"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "138.32.60.170 - - [19/Jun/2023:16:59:15 +0000] \"PATCH /Operative.png HTTP/1.1\" 404 74 \"-\" \"Mozilla/5.0 (Windows NT 4.0; en-US; rv:1.9.3.20) Gecko/1960-18-09 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 74}, "url": "/Operative.png", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "90.148.154.238"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "90.148.154.238 - - [19/Jun/2023:16:59:15 +0000] \"GET /Profound_initiative/holistic_Sharable/archive.jpg HTTP/1.1\" 200 2119 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5362 (KHTML, like Gecko) Chrome/36.0.817.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2119}, "url": "/Profound_initiative/holistic_Sharable/archive.jpg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "162.99.162.11"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "162.99.162.11 - - [19/Jun/2023:16:59:15 +0000] \"GET /Multi-tiered%204th%20generation.htm HTTP/1.1\" 200 1270 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5360 (KHTML, like Gecko) Chrome/38.0.872.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1270}, "url": "/Multi-tiered%204th%20generation.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "170.223.48.222"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "170.223.48.222 - - [19/Jun/2023:16:59:15 +0000] \"GET /zero%20defect_fresh-thinking%20concept-intangible.png HTTP/1.1\" 301 101 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_5_7 rv:7.0; en-US) AppleWebKit/532.7.6 (KHTML, like Gecko) Version/4.1 Safari/532.7.6\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 101}, "url": "/zero%20defect_fresh-thinking%20concept-intangible.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "24.18.78.189"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "24.18.78.189 - - [19/Jun/2023:16:59:15 +0000] \"PATCH /Horizontal/Visionary.css HTTP/1.1\" 200 918 \"-\" \"Mozilla/5.0 (Windows CE) AppleWebKit/5312 (KHTML, like Gecko) Chrome/39.0.821.0 Mobile Safari/5312\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 918}, "url": "/Horizontal/Visionary.css", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "124.167.10.87"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "124.167.10.87 - - [19/Jun/2023:16:59:15 +0000] \"DELETE /Networked.gif HTTP/1.1\" 200 2277 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5350 (KHTML, like Gecko) Chrome/39.0.817.0 Mobile Safari/5350\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2277}, "url": "/Networked.gif", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "0.182.130.112"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "0.182.130.112 - - [19/Jun/2023:16:59:15 +0000] \"PUT /Configurable-Universal/product.js HTTP/1.1\" 404 113 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_5 rv:2.0) Gecko/2017-08-12 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 113}, "url": "/Configurable-Universal/product.js", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "218.110.61.236"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "218.110.61.236 - - [19/Jun/2023:16:59:15 +0000] \"GET /approach-infrastructure.css HTTP/1.1\" 400 95 \"-\" \"Mozilla/5.0 (Windows; U; Windows 95) AppleWebKit/535.23.2 (KHTML, like Gecko) Version/6.0 Safari/535.23.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "400", "bytes": 95}, "url": "/approach-infrastructure.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "13.231.38.141"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "13.231.38.141 - - [19/Jun/2023:16:59:15 +0000] \"HEAD /dedicated/even-keeled/full-range/scalable.php HTTP/1.1\" 200 2055 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5362 (KHTML, like Gecko) Chrome/38.0.851.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2055}, "url": "/dedicated/even-keeled/full-range/scalable.php", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "186.227.113.189"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "186.227.113.189 - - [19/Jun/2023:16:59:15 +0000] \"GET /Organic/Upgradable-hierarchy/Self-enabling/Virtual.svg HTTP/1.1\" 200 2662 \"-\" \"Opera/10.26 (X11; Linux i686; en-US) Presto/2.9.174 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2662}, "url": "/Organic/Upgradable-hierarchy/Self-enabling/Virtual.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "12.155.167.255"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "12.155.167.255 - - [19/Jun/2023:16:59:15 +0000] \"GET /bandwidth-monitored-tertiary/motivating/exuding.css HTTP/1.1\" 200 943 \"-\" \"Mozilla/5.0 (Windows 98; Win 9x 4.90) AppleWebKit/5331 (KHTML, like Gecko) Chrome/37.0.858.0 Mobile Safari/5331\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 943}, "url": "/bandwidth-monitored-tertiary/motivating/exuding.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "191.109.2.142"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "191.109.2.142 - - [19/Jun/2023:16:59:15 +0000] \"GET /infrastructure.gif HTTP/1.1\" 200 1103 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5352 (KHTML, like Gecko) Chrome/40.0.833.0 Mobile Safari/5352\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1103}, "url": "/infrastructure.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "238.133.190.200"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "238.133.190.200 - - [19/Jun/2023:16:59:15 +0000] \"GET /Programmable/emulation-global.svg HTTP/1.1\" 302 38 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1) AppleWebKit/535.32.2 (KHTML, like Gecko) Version/5.1 Safari/535.32.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 38}, "url": "/Programmable/emulation-global.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "242.69.61.233"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "242.69.61.233 - - [19/Jun/2023:16:59:15 +0000] \"GET /methodology%20Up-sized_system%20engine.png HTTP/1.1\" 200 1372 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:7.0) Gecko/1934-05-02 Firefox/37.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1372}, "url": "/methodology%20Up-sized_system%20engine.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "253.69.138.122"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "253.69.138.122 - - [19/Jun/2023:16:59:15 +0000] \"POST /needs-based/scalable.hmtl HTTP/1.1\" 302 95 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5360 (KHTML, like Gecko) Chrome/37.0.850.0 Mobile Safari/5360\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "302", "bytes": 95}, "url": "/needs-based/scalable.hmtl", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "43.17.230.174"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "43.17.230.174 - - [19/Jun/2023:16:59:15 +0000] \"PATCH /Versatile.svg HTTP/1.1\" 200 2566 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_1) AppleWebKit/5340 (KHTML, like Gecko) Chrome/40.0.885.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2566}, "url": "/Versatile.svg", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "239.155.3.140"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "239.155.3.140 - - [19/Jun/2023:16:59:15 +0000] \"GET /challenge/Synergized/non-volatile/Balanced.hmtl HTTP/1.1\" 200 1659 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 7_0_2 like Mac OS X; en-US) AppleWebKit/534.38.8 (KHTML, like Gecko) Version/4.0.5 Mobile/8B115 Safari/6534.38.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1659}, "url": "/challenge/Synergized/non-volatile/Balanced.hmtl", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "158.184.44.90"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "158.184.44.90 - - [19/Jun/2023:16:59:15 +0000] \"GET /application/Synergized/implementation.png HTTP/1.1\" 200 975 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5362 (KHTML, like Gecko) Chrome/40.0.841.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 975}, "url": "/application/Synergized/implementation.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "185.25.255.192"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "185.25.255.192 - - [19/Jun/2023:16:59:15 +0000] \"GET /5th%20generation_Ergonomic-zero%20tolerance.png HTTP/1.1\" 200 2812 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_4) AppleWebKit/5342 (KHTML, like Gecko) Chrome/39.0.890.0 Mobile Safari/5342\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2812}, "url": "/5th%20generation_Ergonomic-zero%20tolerance.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "127.221.248.32"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "127.221.248.32 - - [19/Jun/2023:16:59:15 +0000] \"POST /Object-based-flexibility_6th%20generation.jpg HTTP/1.1\" 200 2504 \"-\" \"Mozilla/5.0 (Windows NT 4.0) AppleWebKit/5361 (KHTML, like Gecko) Chrome/37.0.854.0 Mobile Safari/5361\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2504}, "url": "/Object-based-flexibility_6th%20generation.jpg", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "89.49.53.86"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "89.49.53.86 - - [19/Jun/2023:16:59:15 +0000] \"GET /incremental/attitude-oriented/Public-key/analyzer/secondary.gif HTTP/1.1\" 200 1687 \"-\" \"Mozilla/5.0 (Windows 95) AppleWebKit/5350 (KHTML, like Gecko) Chrome/37.0.889.0 Mobile Safari/5350\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1687}, "url": "/incremental/attitude-oriented/Public-key/analyzer/secondary.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "98.32.71.23"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "98.32.71.23 - - [19/Jun/2023:16:59:15 +0000] \"DELETE /Universal/Visionary-6th%20generation.php HTTP/1.1\" 200 2961 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_8_9 rv:7.0; en-US) AppleWebKit/535.31.2 (KHTML, like Gecko) Version/4.1 Safari/535.31.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2961}, "url": "/Universal/Visionary-6th%20generation.php", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "213.15.220.238"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "213.15.220.238 - - [19/Jun/2023:16:59:15 +0000] \"PUT /access/Monitored%20Synergistic.htm HTTP/1.1\" 500 114 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_0) AppleWebKit/5332 (KHTML, like Gecko) Chrome/39.0.821.0 Mobile Safari/5332\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "500", "bytes": 114}, "url": "/access/Monitored%20Synergistic.htm", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "19.244.5.183"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "19.244.5.183 - - [19/Jun/2023:16:59:15 +0000] \"HEAD /reciprocal/bottom-line-multimedia.jpg HTTP/1.1\" 200 1536 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5310 (KHTML, like Gecko) Chrome/40.0.812.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1536}, "url": "/reciprocal/bottom-line-multimedia.jpg", "flavor": "1.1", "request": {"method": "HEAD"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "148.98.225.74"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "148.98.225.74 - - [19/Jun/2023:16:59:15 +0000] \"GET /zero%20administration-dynamic/Focused.php HTTP/1.1\" 200 2124 \"-\" \"Opera/10.47 (X11; Linux i686; en-US) Presto/2.11.298 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2124}, "url": "/zero%20administration-dynamic/Focused.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "105.130.160.225"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "105.130.160.225 - - [19/Jun/2023:16:59:15 +0000] \"GET /utilisation/Organic/Triple-buffered.js HTTP/1.1\" 200 1676 \"-\" \"Opera/9.66 (Windows 98; Win 9x 4.90; en-US) Presto/2.9.286 Version/12.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1676}, "url": "/utilisation/Organic/Triple-buffered.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "92.98.136.89"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "92.98.136.89 - - [19/Jun/2023:16:59:15 +0000] \"PATCH /reciprocal.jpg HTTP/1.1\" 200 1604 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_4) AppleWebKit/5310 (KHTML, like Gecko) Chrome/40.0.851.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1604}, "url": "/reciprocal.jpg", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "119.164.225.91"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "119.164.225.91 - - [19/Jun/2023:16:59:15 +0000] \"GET /Mandatory/context-sensitive%20implementation.php HTTP/1.1\" 301 37 \"-\" \"Opera/10.24 (Macintosh; PPC Mac OS X 10_6_3; en-US) Presto/2.8.336 Version/11.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 37}, "url": "/Mandatory/context-sensitive%20implementation.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "173.146.102.47"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "173.146.102.47 - - [19/Jun/2023:16:59:15 +0000] \"GET /Virtual/moderator-explicit-global/portal.gif HTTP/1.1\" 404 38 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5340 (KHTML, like Gecko) Chrome/37.0.837.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 38}, "url": "/Virtual/moderator-explicit-global/portal.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "46.52.228.210"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "46.52.228.210 - - [19/Jun/2023:16:59:15 +0000] \"POST /executive%20real-time-directional%20Expanded.gif HTTP/1.1\" 301 47 \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/5362 (KHTML, like Gecko) Chrome/37.0.833.0 Mobile Safari/5362\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 47}, "url": "/executive%20real-time-directional%20Expanded.gif", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "55.149.199.236"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "55.149.199.236 - - [19/Jun/2023:16:59:15 +0000] \"GET /groupware/forecast/motivating-clear-thinking.svg HTTP/1.1\" 200 2243 \"-\" \"Mozilla/5.0 (Macintosh; PPC Mac OS X 10_5_6 rv:7.0; en-US) AppleWebKit/536.7.7 (KHTML, like Gecko) Version/6.1 Safari/536.7.7\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2243}, "url": "/groupware/forecast/motivating-clear-thinking.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "44.22.210.220"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "44.22.210.220 - - [19/Jun/2023:16:59:15 +0000] \"PATCH /4th%20generation/Fully-configurable-definition-Mandatory.svg HTTP/1.1\" 200 2782 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_7) AppleWebKit/5311 (KHTML, like Gecko) Chrome/40.0.892.0 Mobile Safari/5311\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2782}, "url": "/4th%20generation/Fully-configurable-definition-Mandatory.svg", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "138.171.135.249"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "138.171.135.249 - - [19/Jun/2023:16:59:15 +0000] \"POST /infrastructure/Synergized-non-volatile-protocol_radical.css HTTP/1.1\" 301 32 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_5_2) AppleWebKit/5342 (KHTML, like Gecko) Chrome/40.0.899.0 Mobile Safari/5342\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 32}, "url": "/infrastructure/Synergized-non-volatile-protocol_radical.css", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "215.20.189.96"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "215.20.189.96 - - [19/Jun/2023:16:59:15 +0000] \"GET /emulation/Sharable-real-time/modular.css HTTP/1.1\" 200 1039 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.2) AppleWebKit/534.22.5 (KHTML, like Gecko) Version/6.1 Safari/534.22.5\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1039}, "url": "/emulation/Sharable-real-time/modular.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "215.119.26.223"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "215.119.26.223 - - [19/Jun/2023:16:59:15 +0000] \"GET /firmware.htm HTTP/1.1\" 200 2997 \"-\" \"Mozilla/5.0 (Windows NT 5.0) AppleWebKit/5310 (KHTML, like Gecko) Chrome/38.0.864.0 Mobile Safari/5310\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2997}, "url": "/firmware.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "209.212.134.156"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "209.212.134.156 - - [19/Jun/2023:16:59:15 +0000] \"GET /infrastructure/Face%20to%20face-conglomeration-homogeneous_Devolved.htm HTTP/1.1\" 200 2459 \"-\" \"Opera/8.27 (X11; Linux i686; en-US) Presto/2.13.211 Version/10.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2459}, "url": "/infrastructure/Face%20to%20face-conglomeration-homogeneous_Devolved.htm", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "137.138.143.237"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "137.138.143.237 - - [19/Jun/2023:16:59:15 +0000] \"GET /optimal/Operative-structure_multi-state_installation.js HTTP/1.1\" 200 2065 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:6.0) Gecko/2009-22-07 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2065}, "url": "/optimal/Operative-structure_multi-state_installation.js", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "59.34.199.255"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "59.34.199.255 - - [19/Jun/2023:16:59:15 +0000] \"PATCH /Down-sized-stable.svg HTTP/1.1\" 200 1068 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_7 rv:6.0; en-US) AppleWebKit/533.39.1 (KHTML, like Gecko) Version/5.0 Safari/533.39.1\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1068}, "url": "/Down-sized-stable.svg", "flavor": "1.1", "request": {"method": "PATCH"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "2.18.128.15"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "2.18.128.15 - - [19/Jun/2023:16:59:15 +0000] \"DELETE /Automated.png HTTP/1.1\" 200 1331 \"-\" \"Mozilla/5.0 (iPad; CPU OS 8_3_2 like Mac OS X; en-US) AppleWebKit/535.21.2 (KHTML, like Gecko) Version/3.0.5 Mobile/8B118 Safari/6535.21.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1331}, "url": "/Automated.png", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "11.181.162.63"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "11.181.162.63 - - [19/Jun/2023:16:59:15 +0000] \"GET /knowledge%20user.gif HTTP/1.1\" 200 2638 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_10) AppleWebKit/5340 (KHTML, like Gecko) Chrome/40.0.847.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2638}, "url": "/knowledge%20user.gif", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "179.29.23.170"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "179.29.23.170 - - [19/Jun/2023:16:59:15 +0000] \"GET /interactive-application/artificial%20intelligence/tangible-model.svg HTTP/1.1\" 200 1700 \"-\" \"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_8_5) AppleWebKit/5332 (KHTML, like Gecko) Chrome/36.0.830.0 Mobile Safari/5332\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1700}, "url": "/interactive-application/artificial%20intelligence/tangible-model.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "248.23.166.215"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "248.23.166.215 - - [19/Jun/2023:16:59:15 +0000] \"GET /infrastructure/Intuitive_leverage-leverage.css HTTP/1.1\" 200 987 \"-\" \"Mozilla/5.0 (Windows NT 6.0) AppleWebKit/5340 (KHTML, like Gecko) Chrome/38.0.820.0 Mobile Safari/5340\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 987}, "url": "/infrastructure/Intuitive_leverage-leverage.css", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "70.147.174.239"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "70.147.174.239 - - [19/Jun/2023:16:59:15 +0000] \"GET /asymmetric.svg HTTP/1.1\" 200 1062 \"-\" \"Mozilla/5.0 (Windows NT 5.1; en-US; rv:1.9.3.20) Gecko/1968-19-03 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1062}, "url": "/asymmetric.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "40.122.183.221"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "40.122.183.221 - - [19/Jun/2023:16:59:15 +0000] \"DELETE /Persistent-functionalities/Team-oriented/Ameliorated.gif HTTP/1.1\" 200 1452 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1) AppleWebKit/532.47.2 (KHTML, like Gecko) Version/6.2 Safari/532.47.2\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1452}, "url": "/Persistent-functionalities/Team-oriented/Ameliorated.gif", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "63.131.52.8"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "63.131.52.8 - - [19/Jun/2023:16:59:15 +0000] \"GET /infrastructure-Extended.svg HTTP/1.1\" 200 1500 \"-\" \"Mozilla/5.0 (Windows 95; en-US; rv:1.9.0.20) Gecko/1982-10-05 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1500}, "url": "/infrastructure-Extended.svg", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "136.168.18.213"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "136.168.18.213 - - [19/Jun/2023:16:59:15 +0000] \"GET /global/Extended-throughput-human-resource.php HTTP/1.1\" 200 1816 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_7 rv:3.0) Gecko/1981-09-09 Firefox/36.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1816}, "url": "/global/Extended-throughput-human-resource.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "171.33.205.93"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "171.33.205.93 - - [19/Jun/2023:16:59:15 +0000] \"GET /complexity-Face%20to%20face/Expanded/tangible-hardware.php HTTP/1.1\" 404 43 \"-\" \"Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_7_8 rv:5.0; en-US) AppleWebKit/533.9.3 (KHTML, like Gecko) Version/5.2 Safari/533.9.3\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "404", "bytes": 43}, "url": "/complexity-Face%20to%20face/Expanded/tangible-hardware.php", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "229.223.129.220"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "229.223.129.220 - - [19/Jun/2023:16:59:15 +0000] \"DELETE /Profound/Face%20to%20face/web-enabled_collaboration.jpg HTTP/1.1\" 301 76 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1_2 like Mac OS X; en-US) AppleWebKit/531.37.8 (KHTML, like Gecko) Version/4.0.5 Mobile/8B115 Safari/6531.37.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "301", "bytes": 76}, "url": "/Profound/Face%20to%20face/web-enabled_collaboration.jpg", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "194.226.176.121"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "194.226.176.121 - - [19/Jun/2023:16:59:15 +0000] \"DELETE /Cross-group%20Future-proofed/bottom-line.png HTTP/1.1\" 200 2784 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1) AppleWebKit/532.44.1 (KHTML, like Gecko) Version/5.0 Safari/532.44.1\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2784}, "url": "/Cross-group%20Future-proofed/bottom-line.png", "flavor": "1.1", "request": {"method": "DELETE"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "81.163.100.22"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "81.163.100.22 - - [19/Jun/2023:16:59:15 +0000] \"PUT /secured%20line-Progressive-Focused_executive-functionalities.css HTTP/1.1\" 200 2985 \"-\" \"Opera/9.47 (Windows NT 6.0; en-US) Presto/2.13.209 Version/13.00\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2985}, "url": "/secured%20line-Progressive-Focused_executive-functionalities.css", "flavor": "1.1", "request": {"method": "PUT"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "99.186.100.28"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "99.186.100.28 - - [19/Jun/2023:16:59:15 +0000] \"GET /synergy_Vision-oriented/help-desk.png HTTP/1.1\" 200 1452 \"-\" \"Mozilla/5.0 (Windows NT 5.2) AppleWebKit/5332 (KHTML, like Gecko) Chrome/39.0.867.0 Mobile Safari/5332\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1452}, "url": "/synergy_Vision-oriented/help-desk.png", "flavor": "1.1", "request": {"method": "GET"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "130.184.224.54"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "130.184.224.54 - - [19/Jun/2023:16:59:15 +0000] \"POST /solution%20optimal.php HTTP/1.1\" 200 1865 \"-\" \"Mozilla/5.0 (iPad; CPU OS 8_3_3 like Mac OS X; en-US) AppleWebKit/534.39.8 (KHTML, like Gecko) Version/5.0.5 Mobile/8B120 Safari/6534.39.8\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 1865}, "url": "/solution%20optimal.php", "flavor": "1.1", "request": {"method": "POST"}}}, {"span_id": "abcdef1010", "attributes": {"data_stream": {"dataset": "nginx.access", "namespace": "production", "type": "logs"}}, "event": {"result": "success", "category": ["web"], "type": ["access"], "name": "access", "domain": "nginx.access", "kind": "event"}, "communication": {"source": {"address": "127.0.0.1", "ip": "55.40.44.245"}}, "@timestamp": "2023-06-19T16:59:15.000Z", "observedTimestamp": "2023-06-19T16:59:15.000Z", "body": "55.40.44.245 - - [19/Jun/2023:16:59:15 +0000] \"HEAD /modular%20monitoring.gif HTTP/1.1\" 200 2057 \"-\" \"Mozilla/5.0 (Windows NT 5.1; en-US; rv:1.9.2.20) Gecko/1903-26-07 Firefox/35.0\"", "trace_id": "102981ABCD2901", "http": {"response": {"status_code": "200", "bytes": 2057}, "url": "/modular%20monitoring.gif", "flavor": "1.1", "request": {"method": "HEAD"}}}] \ No newline at end of file diff --git a/server/adaptors/integrations/__data__/repository/nginx/nginx-1.0.0.json b/server/adaptors/integrations/__data__/repository/nginx/nginx-1.0.0.json new file mode 100644 index 000000000..fd046e4b1 --- /dev/null +++ b/server/adaptors/integrations/__data__/repository/nginx/nginx-1.0.0.json @@ -0,0 +1,43 @@ +{ + "name": "nginx", + "version": "1.0.0", + "displayName": "NginX Dashboard", + "description": "Nginx HTTP server collector", + "license": "Apache-2.0", + "type": "logs", + "link": "https://www.nginx.com/", + "author": "OpenSearch", + "sourceUrl": "https://github.com/opensearch-project/observability/tree/2.x/integrations/nginx", + "statics": { + "logo": { + "annotation": "NginX Logo", + "path": "logo.svg" + }, + "gallery": [ + { + "annotation": "NginX Dashboard", + "path": "dashboard1.png" + } + ] + }, + "components": [ + { + "name": "communication", + "version": "1.0.0" + }, + { + "name": "http", + "version": "1.0.0" + }, + { + "name": "logs", + "version": "1.0.0" + } + ], + "assets": { + "savedObjects": { + "name": "nginx", + "version": "1.0.0" + } + } +} \ No newline at end of file diff --git a/server/adaptors/integrations/__data__/repository/nginx/nginx-1.0.1.json b/server/adaptors/integrations/__data__/repository/nginx/nginx-1.0.1.json new file mode 100644 index 000000000..eb4b642df --- /dev/null +++ b/server/adaptors/integrations/__data__/repository/nginx/nginx-1.0.1.json @@ -0,0 +1,45 @@ +{ + "name": "nginx", + "version": "1.0.1", + "displayName": "NginX Dashboard", + "description": "Nginx HTTP server collector", + "license": "Apache-2.0", + "type": "logs", + "author": "OpenSearch", + "sourceUrl": "https://github.com/opensearch-project/observability/tree/2.x/integrations/nginx", + "statics": { + "logo": { + "annotation": "NginX Logo", + "path": "logo.svg" + }, + "gallery": [ + { + "annotation": "NginX Dashboard", + "path": "dashboard1.png" + } + ] + }, + "components": [ + { + "name": "communication", + "version": "1.0.0" + }, + { + "name": "http", + "version": "1.0.0" + }, + { + "name": "logs", + "version": "1.0.0" + } + ], + "assets": { + "savedObjects": { + "name": "nginx", + "version": "1.0.1" + } + }, + "sampleData": { + "path": "sample.json" + } +} \ No newline at end of file diff --git a/server/adaptors/integrations/__data__/repository/nginx/schemas/communication-1.0.0.mapping.json b/server/adaptors/integrations/__data__/repository/nginx/schemas/communication-1.0.0.mapping.json new file mode 100644 index 000000000..f9cf853a0 --- /dev/null +++ b/server/adaptors/integrations/__data__/repository/nginx/schemas/communication-1.0.0.mapping.json @@ -0,0 +1,112 @@ +{ + "template": { + "mappings": { + "_meta": { + "version": "1.0.0", + "catalog": "observability", + "type": "logs", + "component": "communication" + }, + "properties": { + "communication": { + "properties": { + "sock.family": { + "type": "keyword", + "ignore_above": 256 + }, + "source": { + "type": "object", + "properties": { + "address": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 1024 + } + } + }, + "domain": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 1024 + } + } + }, + "bytes": { + "type": "long" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + }, + "mac": { + "type": "keyword", + "ignore_above": 1024 + }, + "packets": { + "type": "long" + } + } + }, + "destination": { + "type": "object", + "properties": { + "address": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 1024 + } + } + }, + "domain": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 1024 + } + } + }, + "bytes": { + "type": "long" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + }, + "mac": { + "type": "keyword", + "ignore_above": 1024 + }, + "packets": { + "type": "long" + }, + "geo.city_name": { + "type": "keyword" + }, + "geo.country_iso_code": { + "type": "keyword" + }, + "geo.country_name": { + "type": "keyword" + }, + "geo.location": { + "type": "geo_point" + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/server/adaptors/integrations/__data__/repository/nginx/schemas/http-1.0.0.mapping.json b/server/adaptors/integrations/__data__/repository/nginx/schemas/http-1.0.0.mapping.json new file mode 100644 index 000000000..cf70dac93 --- /dev/null +++ b/server/adaptors/integrations/__data__/repository/nginx/schemas/http-1.0.0.mapping.json @@ -0,0 +1,121 @@ +{ + "template": { + "mappings": { + "_meta": { + "version": "1.0.0", + "catalog": "observability", + "type": "logs", + "component": "http" + }, + "dynamic_templates": [ + { + "request_header_map": { + "mapping": { + "type": "keyword" + }, + "path_match": "request.header.*" + } + }, + { + "response_header_map": { + "mapping": { + "type": "keyword" + }, + "path_match": "response.header.*" + } + } + ], + "properties": { + "http": { + "properties": { + "flavor": { + "type": "keyword", + "ignore_above": 256 + }, + "user_agent": { + "type": "keyword", + "ignore_above": 2048 + }, + "url": { + "type": "keyword", + "ignore_above": 2048 + }, + "schema": { + "type": "keyword", + "ignore_above": 1024 + }, + "target": { + "type": "keyword", + "ignore_above": 1024 + }, + "route": { + "type": "keyword", + "ignore_above": 1024 + }, + "client.ip": { + "type": "ip" + }, + "resent_count": { + "type": "integer" + }, + "request": { + "type": "object", + "properties": { + "id": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "body.content": { + "type": "text" + }, + "bytes": { + "type": "long" + }, + "method": { + "type": "keyword", + "ignore_above": 256 + }, + "referrer": { + "type": "keyword", + "ignore_above": 1024 + }, + "mime_type": { + "type": "keyword", + "ignore_above": 1024 + } + } + }, + "response": { + "type": "object", + "properties": { + "id": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "body.content": { + "type": "text" + }, + "bytes": { + "type": "long" + }, + "status_code": { + "type": "integer" + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/server/adaptors/integrations/__data__/repository/nginx/schemas/logs-1.0.0.mapping.json b/server/adaptors/integrations/__data__/repository/nginx/schemas/logs-1.0.0.mapping.json new file mode 100644 index 000000000..a23d26333 --- /dev/null +++ b/server/adaptors/integrations/__data__/repository/nginx/schemas/logs-1.0.0.mapping.json @@ -0,0 +1,244 @@ +{ + "index_patterns": [ + "ss4o_logs-*-*" + ], + "priority": 900, + "data_stream": {}, + "template": { + "mappings": { + "_meta": { + "version": "1.0.0", + "catalog": "observability", + "type": "logs", + "component": "log", + "correlations": [ + { + "field": "spanId", + "foreign-schema": "traces", + "foreign-field": "spanId" + }, + { + "field": "traceId", + "foreign-schema": "traces", + "foreign-field": "traceId" + } + ] + }, + "_source": { + "enabled": true + }, + "dynamic_templates": [ + { + "resources_map": { + "mapping": { + "type": "keyword" + }, + "path_match": "resource.*" + } + }, + { + "attributes_map": { + "mapping": { + "type": "keyword" + }, + "path_match": "attributes.*" + } + }, + { + "instrumentation_scope_attributes_map": { + "mapping": { + "type": "keyword" + }, + "path_match": "instrumentationScope.attributes.*" + } + } + ], + "properties": { + "severity": { + "properties": { + "number": { + "type": "long" + }, + "text": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + } + } + }, + "attributes": { + "type": "object", + "properties": { + "data_stream": { + "properties": { + "dataset": { + "ignore_above": 128, + "type": "keyword" + }, + "namespace": { + "ignore_above": 128, + "type": "keyword" + }, + "type": { + "ignore_above": 56, + "type": "keyword" + } + } + } + } + }, + "body": { + "type": "text" + }, + "@message": { + "type": "alias", + "path": "body" + }, + "@timestamp": { + "type": "date" + }, + "observedTimestamp": { + "type": "date" + }, + "observerTime": { + "type": "alias", + "path": "observedTimestamp" + }, + "traceId": { + "ignore_above": 256, + "type": "keyword" + }, + "spanId": { + "ignore_above": 256, + "type": "keyword" + }, + "schemaUrl": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "instrumentationScope": { + "properties": { + "name": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 128 + } + } + }, + "version": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "dropped_attributes_count": { + "type": "integer" + }, + "schemaUrl": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + } + } + }, + "event": { + "properties": { + "domain": { + "ignore_above": 256, + "type": "keyword" + }, + "name": { + "ignore_above": 256, + "type": "keyword" + }, + "source": { + "ignore_above": 256, + "type": "keyword" + }, + "category": { + "ignore_above": 256, + "type": "keyword" + }, + "type": { + "ignore_above": 256, + "type": "keyword" + }, + "kind": { + "ignore_above": 256, + "type": "keyword" + }, + "result": { + "ignore_above": 256, + "type": "keyword" + }, + "exception": { + "properties": { + "message": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 256, + "type": "keyword" + }, + "stacktrace": { + "type": "text" + } + } + } + } + } + } + }, + "settings": { + "index": { + "mapping": { + "total_fields": { + "limit": 10000 + } + }, + "refresh_interval": "5s" + } + } + }, + "composed_of": [ + "communication", + "http" + ], + "version": 1, + "_meta": { + "description": "Simple Schema For Observability", + "catalog": "observability", + "type": "logs", + "correlations": [ + { + "field": "spanId", + "foreign-schema": "traces", + "foreign-field": "spanId" + }, + { + "field": "traceId", + "foreign-schema": "traces", + "foreign-field": "traceId" + } + ] + } +} \ No newline at end of file diff --git a/server/adaptors/integrations/__data__/repository/nginx/static/dashboard1.png b/server/adaptors/integrations/__data__/repository/nginx/static/dashboard1.png new file mode 100644 index 000000000..26ed3bebe Binary files /dev/null and b/server/adaptors/integrations/__data__/repository/nginx/static/dashboard1.png differ diff --git a/server/adaptors/integrations/__data__/repository/nginx/static/logo.svg b/server/adaptors/integrations/__data__/repository/nginx/static/logo.svg new file mode 100644 index 000000000..13abd6470 --- /dev/null +++ b/server/adaptors/integrations/__data__/repository/nginx/static/logo.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/server/adaptors/integrations/integrations_adaptor.ts b/server/adaptors/integrations/integrations_adaptor.ts new file mode 100644 index 000000000..cf7f4853e --- /dev/null +++ b/server/adaptors/integrations/integrations_adaptor.ts @@ -0,0 +1,34 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +export interface IntegrationsAdaptor { + getIntegrationTemplates: ( + query?: IntegrationTemplateQuery + ) => Promise; + + getIntegrationInstances: ( + query?: IntegrationInstanceQuery + ) => Promise; + + getIntegrationInstance: (query?: IntegrationInstanceQuery) => Promise; + + loadIntegrationInstance: ( + templateName: string, + name: string, + dataSource: string + ) => Promise; + + deleteIntegrationInstance: (id: string) => Promise; + + getStatic: (templateName: string, path: string) => Promise; + + getSchemas: ( + templateName: string + ) => Promise<{ mappings: { [key: string]: unknown }; schemas: { [key: string]: unknown } }>; + + getAssets: (templateName: string) => Promise<{ savedObjects?: unknown }>; + + getSampleData: (templateName: string) => Promise<{ sampleData: object[] | null }>; +} diff --git a/server/adaptors/integrations/integrations_kibana_backend.ts b/server/adaptors/integrations/integrations_kibana_backend.ts new file mode 100644 index 000000000..f28c883ec --- /dev/null +++ b/server/adaptors/integrations/integrations_kibana_backend.ts @@ -0,0 +1,204 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import path from 'path'; +import { addRequestToMetric } from '../../../server/common/metrics/metrics_helper'; +import { IntegrationsAdaptor } from './integrations_adaptor'; +import { SavedObject, SavedObjectsClientContract } from '../../../../../src/core/server/types'; +import { IntegrationInstanceBuilder } from './integrations_builder'; +import { Repository } from './repository/repository'; + +export class IntegrationsKibanaBackend implements IntegrationsAdaptor { + client: SavedObjectsClientContract; + instanceBuilder: IntegrationInstanceBuilder; + repository: Repository; + + constructor(client: SavedObjectsClientContract, repository?: Repository) { + this.client = client; + this.repository = repository ?? new Repository(path.join(__dirname, '__data__/repository')); + this.instanceBuilder = new IntegrationInstanceBuilder(this.client); + } + + deleteIntegrationInstance = async (id: string): Promise => { + let children: any; + try { + children = await this.client.get('integration-instance', id); + } catch (err: any) { + return err.output?.statusCode === 404 ? Promise.resolve([id]) : Promise.reject(err); + } + + const toDelete = children.attributes.assets + .filter((i: any) => i.assetId) + .map((i: any) => { + return { id: i.assetId, type: i.assetType }; + }); + toDelete.push({ id, type: 'integration-instance' }); + + const result = Promise.all( + toDelete.map( + async (asset: { type: string; id: string }): Promise => { + try { + await this.client.delete(asset.type, asset.id); + return Promise.resolve(asset.id); + } catch (err: any) { + addRequestToMetric('integrations', 'delete', err); + return err.output?.statusCode === 404 ? Promise.resolve(asset.id) : Promise.reject(err); + } + } + ) + ); + addRequestToMetric('integrations', 'delete', 'count'); + return result; + }; + + getIntegrationTemplates = async ( + query?: IntegrationTemplateQuery + ): Promise => { + if (query?.name) { + const integration = await this.repository.getIntegration(query.name); + const config = await integration?.getConfig(); + return Promise.resolve({ hits: config ? [config] : [] }); + } + const integrationList = await this.repository.getIntegrationList(); + const configList = await Promise.all(integrationList.map((x) => x.getConfig())); + return Promise.resolve({ hits: configList.filter((x) => x !== null) as IntegrationTemplate[] }); + }; + + getIntegrationInstances = async ( + _query?: IntegrationInstanceQuery + ): Promise => { + addRequestToMetric('integrations', 'get', 'count'); + const result = await this.client.find({ type: 'integration-instance' }); + return Promise.resolve({ + total: result.total, + hits: result.saved_objects?.map((x) => ({ + ...x.attributes!, + id: x.id, + })) as IntegrationInstanceResult[], + }); + }; + + getIntegrationInstance = async ( + query?: IntegrationInstanceQuery + ): Promise => { + addRequestToMetric('integrations', 'get', 'count'); + const result = await this.client.get('integration-instance', `${query!.id}`); + return Promise.resolve(this.buildInstanceResponse(result)); + }; + + buildInstanceResponse = async ( + savedObj: SavedObject + ): Promise => { + const assets: AssetReference[] | undefined = (savedObj.attributes as any)?.assets; + const status: string = assets ? await this.getAssetStatus(assets) : 'available'; + + return { + id: savedObj.id, + status, + ...(savedObj.attributes as any), + }; + }; + + getAssetStatus = async (assets: AssetReference[]): Promise => { + const statuses: Array<{ id: string; status: string }> = await Promise.all( + assets.map(async (asset) => { + try { + await this.client.get(asset.assetType, asset.assetId); + return { id: asset.assetId, status: 'available' }; + } catch (err: any) { + const statusCode = err.output?.statusCode; + if (statusCode && 400 <= statusCode && statusCode < 500) { + return { id: asset.assetId, status: 'unavailable' }; + } + console.error('Failed to get asset status', err); + return { id: asset.assetId, status: 'unknown' }; + } + }) + ); + + const [available, unavailable, unknown] = [ + statuses.filter((x) => x.status === 'available').length, + statuses.filter((x) => x.status === 'unavailable').length, + statuses.filter((x) => x.status === 'unknown').length, + ]; + if (unknown > 0) return 'unknown'; + if (unavailable > 0 && available > 0) return 'partially-available'; + if (unavailable > 0) return 'unavailable'; + return 'available'; + }; + + loadIntegrationInstance = async ( + templateName: string, + name: string, + dataSource: string + ): Promise => { + const template = await this.repository.getIntegration(templateName); + if (template === null) { + return Promise.reject({ + message: `Template ${templateName} not found`, + statusCode: 404, + }); + } + try { + addRequestToMetric('integrations', 'create', 'count'); + const result = await this.instanceBuilder.build(template, { + name, + dataSource, + }); + const test = await this.client.create('integration-instance', result); + return Promise.resolve({ ...result, id: test.id }); + } catch (err: any) { + addRequestToMetric('integrations', 'create', err); + return Promise.reject({ + message: err.message, + statusCode: 500, + }); + } + }; + + getStatic = async (templateName: string, staticPath: string): Promise => { + const data = await (await this.repository.getIntegration(templateName))?.getStatic(staticPath); + if (!data) { + return Promise.reject({ + message: `Asset ${staticPath} not found`, + statusCode: 404, + }); + } + return Promise.resolve(data); + }; + + getSchemas = async (templateName: string): Promise => { + const integration = await this.repository.getIntegration(templateName); + if (integration === null) { + return Promise.reject({ + message: `Template ${templateName} not found`, + statusCode: 404, + }); + } + return Promise.resolve(integration.getSchemas()); + }; + + getAssets = async (templateName: string): Promise<{ savedObjects?: any }> => { + const integration = await this.repository.getIntegration(templateName); + if (integration === null) { + return Promise.reject({ + message: `Template ${templateName} not found`, + statusCode: 404, + }); + } + return Promise.resolve(integration.getAssets()); + }; + + getSampleData = async (templateName: string): Promise<{ sampleData: object[] | null }> => { + const integration = await this.repository.getIntegration(templateName); + if (integration === null) { + return Promise.reject({ + message: `Template ${templateName} not found`, + statusCode: 404, + }); + } + return Promise.resolve(integration.getSampleData()); + }; +} diff --git a/server/adaptors/integrations/repository/__test__/integration.test.ts b/server/adaptors/integrations/repository/__test__/integration.test.ts new file mode 100644 index 000000000..4474fc48f --- /dev/null +++ b/server/adaptors/integrations/repository/__test__/integration.test.ts @@ -0,0 +1,246 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import * as fs from 'fs/promises'; +import { Integration } from '../integration'; +import { Dirent, Stats } from 'fs'; +import * as path from 'path'; + +jest.mock('fs/promises'); + +describe('Integration', () => { + let integration: Integration; + const sampleIntegration: IntegrationTemplate = { + name: 'sample', + version: '2.0.0', + license: 'Apache-2.0', + type: '', + components: [], + assets: { + savedObjects: { + name: 'sample', + version: '1.0.1', + }, + }, + }; + + beforeEach(() => { + integration = new Integration('./sample'); + }); + + describe('check', () => { + it('should return false if the directory does not exist', async () => { + const spy = jest.spyOn(fs, 'stat').mockResolvedValue({ isDirectory: () => false } as Stats); + + const result = await integration.check(); + + expect(spy).toHaveBeenCalled(); + expect(result).toBe(false); + }); + + it('should return true if the directory exists and getConfig returns a valid template', async () => { + jest.spyOn(fs, 'stat').mockResolvedValue({ isDirectory: () => true } as Stats); + integration.getConfig = jest.fn().mockResolvedValue(sampleIntegration); + + const result = await integration.check(); + + expect(result).toBe(true); + }); + + it('should return false if the directory exists but getConfig returns null', async () => { + jest.spyOn(fs, 'stat').mockResolvedValue({ isDirectory: () => true } as Stats); + integration.getConfig = jest.fn().mockResolvedValue(null); + + const result = await integration.check(); + + expect(result).toBe(false); + }); + }); + + describe('getLatestVersion', () => { + it('should return the latest version if there are JSON files matching the integration name', async () => { + const files: unknown[] = ['sample-1.0.0.json', 'sample-2.0.0.json']; + jest.spyOn(fs, 'readdir').mockResolvedValue(files as Dirent[]); + + const result = await integration.getLatestVersion(); + + expect(result).toBe('2.0.0'); + }); + + it('should return null if there are no JSON files matching the integration name', async () => { + const files: unknown[] = ['other-1.0.0.json', 'other-2.0.0.json']; + jest.spyOn(fs, 'readdir').mockResolvedValue(files as Dirent[]); + + const result = await integration.getLatestVersion(); + + expect(result).toBeNull(); + }); + + it('should ignore files without a decimal version', async () => { + const files: unknown[] = ['sample-1.0.0.json', 'sample-2.0.two.json', 'sample-three.json']; + jest.spyOn(fs, 'readdir').mockResolvedValue(files as Dirent[]); + + const result = await integration.getLatestVersion(); + + expect(result).toBe('1.0.0'); + }); + }); + + describe('getConfig', () => { + it('should return the parsed config template if it is valid', async () => { + jest.spyOn(fs, 'readFile').mockResolvedValue(JSON.stringify(sampleIntegration)); + + const result = await integration.getConfig(sampleIntegration.version); + + expect(result).toEqual(sampleIntegration); + }); + + it('should return null and log validation errors if the config template is invalid', async () => { + const invalidTemplate = { ...sampleIntegration, version: 2 }; + jest.spyOn(fs, 'readFile').mockResolvedValue(JSON.stringify(invalidTemplate)); + const logValidationErrorsMock = jest.spyOn(console, 'error'); + + const result = await integration.getConfig(sampleIntegration.version); + + expect(result).toBeNull(); + expect(logValidationErrorsMock).toHaveBeenCalledWith(expect.any(String), expect.any(Array)); + }); + + it('should return null and log syntax errors if the config file has syntax errors', async () => { + jest.spyOn(fs, 'readFile').mockResolvedValue('Invalid JSON'); + const logSyntaxErrorsMock = jest.spyOn(console, 'error'); + + const result = await integration.getConfig(sampleIntegration.version); + + expect(result).toBeNull(); + expect(logSyntaxErrorsMock).toHaveBeenCalledWith(expect.any(String), expect.any(SyntaxError)); + }); + + it('should return null and log errors if the integration config does not exist', async () => { + integration.directory = './non-existing-directory'; + const logErrorsMock = jest.spyOn(console, 'error'); + jest.spyOn(fs, 'readFile').mockImplementation((..._args) => { + // Can't find any information on how to mock an actual file not found error, + // But at least according to the current implementation this should be equivalent. + const error: any = new Error('ENOENT: File not found'); + error.code = 'ENOENT'; + return Promise.reject(error); + }); + + const result = await integration.getConfig(sampleIntegration.version); + + expect(jest.spyOn(fs, 'readFile')).toHaveBeenCalled(); + expect(logErrorsMock).toHaveBeenCalledWith(expect.any(String)); + expect(result).toBeNull(); + }); + }); + + describe('getAssets', () => { + it('should return linked saved object assets when available', async () => { + integration.getConfig = jest.fn().mockResolvedValue(sampleIntegration); + jest.spyOn(fs, 'readFile').mockResolvedValue('{"name":"asset1"}\n{"name":"asset2"}'); + + const result = await integration.getAssets(sampleIntegration.version); + + expect(result.savedObjects).toEqual([{ name: 'asset1' }, { name: 'asset2' }]); + }); + + it('should reject a return if the provided version has no config', async () => { + integration.getConfig = jest.fn().mockResolvedValue(null); + + expect(integration.getAssets()).rejects.toThrowError(); + }); + + it('should log an error if the saved object assets are invalid', async () => { + const logErrorsMock = jest.spyOn(console, 'error'); + integration.getConfig = jest.fn().mockResolvedValue(sampleIntegration); + jest.spyOn(fs, 'readFile').mockResolvedValue('{"unclosed":'); + + const result = await integration.getAssets(sampleIntegration.version); + + expect(logErrorsMock).toHaveBeenCalledWith(expect.any(String), expect.any(Error)); + expect(result.savedObjects).toBeUndefined(); + }); + }); + + describe('getSchemas', () => { + it('should retrieve mappings and schemas for all components in the config', async () => { + const sampleConfig = { + components: [ + { name: 'component1', version: '1.0.0' }, + { name: 'component2', version: '2.0.0' }, + ], + }; + integration.getConfig = jest.fn().mockResolvedValue(sampleConfig); + + const mappingFile1 = 'component1-1.0.0.mapping.json'; + const mappingFile2 = 'component2-2.0.0.mapping.json'; + + jest + .spyOn(fs, 'readFile') + .mockResolvedValueOnce(JSON.stringify({ mapping: 'mapping1' })) + .mockResolvedValueOnce(JSON.stringify({ mapping: 'mapping2' })); + + const result = await integration.getSchemas(); + + expect(result).toEqual({ + mappings: { + component1: { mapping: 'mapping1' }, + component2: { mapping: 'mapping2' }, + }, + }); + + expect(fs.readFile).toHaveBeenCalledWith( + path.join(integration.directory, 'schemas', mappingFile1), + { encoding: 'utf-8' } + ); + expect(fs.readFile).toHaveBeenCalledWith( + path.join(integration.directory, 'schemas', mappingFile2), + { encoding: 'utf-8' } + ); + }); + + it('should reject with an error if the config is null', async () => { + integration.getConfig = jest.fn().mockResolvedValue(null); + + await expect(integration.getSchemas()).rejects.toThrowError( + 'Attempted to get assets of invalid config' + ); + }); + + it('should reject with an error if a mapping file is invalid', async () => { + const sampleConfig = { + components: [{ name: 'component1', version: '1.0.0' }], + }; + integration.getConfig = jest.fn().mockResolvedValue(sampleConfig); + jest.spyOn(fs, 'readFile').mockRejectedValueOnce(new Error('Could not load schema')); + + await expect(integration.getSchemas()).rejects.toThrowError('Could not load schema'); + }); + }); + + describe('getStatic', () => { + it('should return data as a buffer if the static is present', async () => { + const readFileMock = jest + .spyOn(fs, 'readFile') + .mockResolvedValue(Buffer.from('logo data', 'ascii')); + expect(await integration.getStatic('/logo.png')).toStrictEqual( + Buffer.from('logo data', 'ascii') + ); + expect(readFileMock).toBeCalledWith(path.join('sample', 'static', 'logo.png')); + }); + + it('should return null and log an error if the static file is not found', async () => { + const logErrorsMock = jest.spyOn(console, 'error'); + jest.spyOn(fs, 'readFile').mockImplementation((..._args) => { + const error: any = new Error('ENOENT: File not found'); + error.code = 'ENOENT'; + return Promise.reject(error); + }); + expect(await integration.getStatic('/logo.png')).toBeNull(); + expect(logErrorsMock).toBeCalledWith(expect.any(String)); + }); + }); +}); diff --git a/server/adaptors/integrations/repository/__test__/repository.test.ts b/server/adaptors/integrations/repository/__test__/repository.test.ts new file mode 100644 index 000000000..913968f49 --- /dev/null +++ b/server/adaptors/integrations/repository/__test__/repository.test.ts @@ -0,0 +1,85 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import * as fs from 'fs/promises'; +import { Repository } from '../repository'; +import { Integration } from '../integration'; +import { Dirent, Stats } from 'fs'; +import path from 'path'; + +jest.mock('fs/promises'); + +describe('Repository', () => { + let repository: Repository; + + beforeEach(() => { + repository = new Repository('path/to/directory'); + }); + + describe('getIntegrationList', () => { + it('should return an array of Integration instances', async () => { + // Mock fs.readdir to return a list of folders + jest.spyOn(fs, 'readdir').mockResolvedValue((['folder1', 'folder2'] as unknown) as Dirent[]); + + // Mock fs.lstat to return a directory status + jest.spyOn(fs, 'lstat').mockResolvedValue({ isDirectory: () => true } as Stats); + + // Mock Integration check method to always return true + jest.spyOn(Integration.prototype, 'check').mockResolvedValue(true); + + const integrations = await repository.getIntegrationList(); + + expect(integrations).toHaveLength(2); + expect(integrations[0]).toBeInstanceOf(Integration); + expect(integrations[1]).toBeInstanceOf(Integration); + }); + + it('should filter out null values from the integration list', async () => { + jest.spyOn(fs, 'readdir').mockResolvedValue((['folder1', 'folder2'] as unknown) as Dirent[]); + + // Mock fs.lstat to return a mix of directories and files + jest.spyOn(fs, 'lstat').mockImplementation(async (toLstat) => { + if (toLstat === path.join('path', 'to', 'directory', 'folder1')) { + return { isDirectory: () => true } as Stats; + } else { + return { isDirectory: () => false } as Stats; + } + }); + + jest.spyOn(Integration.prototype, 'check').mockResolvedValue(true); + + const integrations = await repository.getIntegrationList(); + + expect(integrations).toHaveLength(1); + expect(integrations[0]).toBeInstanceOf(Integration); + }); + + it('should handle errors and return an empty array', async () => { + jest.spyOn(fs, 'readdir').mockRejectedValue(new Error('Mocked error')); + + const integrations = await repository.getIntegrationList(); + + expect(integrations).toEqual([]); + }); + }); + + describe('getIntegration', () => { + it('should return an Integration instance if it exists and passes the check', async () => { + jest.spyOn(Integration.prototype, 'check').mockResolvedValue(true); + + const integration = await repository.getIntegration('integrationName'); + + expect(integration).toBeInstanceOf(Integration); + }); + + it('should return null if the integration does not exist or fails the check', async () => { + jest.spyOn(Integration.prototype, 'check').mockResolvedValue(false); + + const integration = await repository.getIntegration('invalidIntegration'); + + expect(integration).toBeNull(); + }); + }); +}); diff --git a/server/adaptors/integrations/repository/integration.ts b/server/adaptors/integrations/repository/integration.ts new file mode 100644 index 000000000..24388eff1 --- /dev/null +++ b/server/adaptors/integrations/repository/integration.ts @@ -0,0 +1,326 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import * as fs from 'fs/promises'; +import path from 'path'; +import { ValidateFunction } from 'ajv'; +import { templateValidator } from '../validators'; + +/** + * Helper function to compare version numbers. + * Assumes that the version numbers are valid, produces undefined behavior otherwise. + * + * @param a Left-hand number + * @param b Right-hand number + * @returns -1 if a > b, 1 if a < b, 0 otherwise. + */ +function compareVersions(a: string, b: string): number { + const aParts = a.split('.').map(Number.parseInt); + const bParts = b.split('.').map(Number.parseInt); + + for (let i = 0; i < Math.max(aParts.length, bParts.length); i++) { + const aValue = i < aParts.length ? aParts[i] : 0; + const bValue = i < bParts.length ? bParts[i] : 0; + + if (aValue > bValue) { + return -1; // a > b + } else if (aValue < bValue) { + return 1; // a < b + } + } + + return 0; // a == b +} + +/** + * Helper function to check if the given path is a directory + * + * @param dirPath The directory to check. + * @returns True if the path is a directory. + */ +async function isDirectory(dirPath: string): Promise { + try { + const stats = await fs.stat(dirPath); + return stats.isDirectory(); + } catch { + return false; + } +} + +/** + * Helper function to log validation errors. + * Relies on the `ajv` package for validation error logs.. + * + * @param integration The name of the component that failed validation. + * @param validator A failing ajv validator. + */ +function logValidationErrors(integration: string, validator: ValidateFunction) { + const errors = validator.errors?.map((e) => e.message); + console.error(`Validation errors in ${integration}`, errors); +} + +/** + * The Integration class represents the data for Integration Templates. + * It is backed by the repository file system. + * It includes accessor methods for integration configs, as well as helpers for nested components. + */ +export class Integration { + directory: string; + name: string; + + constructor(directory: string) { + this.directory = directory; + this.name = path.basename(directory); + } + + /** + * Check the integration for validity. + * This is not a deep check, but a quick check to verify that the integration is a valid directory and has a config file. + * + * @returns true if the integration is valid. + */ + async check(): Promise { + if (!(await isDirectory(this.directory))) { + return false; + } + return (await this.getConfig()) !== null; + } + + /** + * Like check(), but thoroughly checks all nested integration dependencies. + * + * @returns true if the integration is valid. + */ + async deepCheck(): Promise { + if (!(await this.check())) { + console.error('check failed'); + return false; + } + + try { + // An integration must have at least one mapping + const schemas = await this.getSchemas(); + if (Object.keys(schemas.mappings).length === 0) { + return false; + } + // An integration must have at least one asset + const assets = await this.getAssets(); + if (Object.keys(assets).length === 0) { + return false; + } + } catch (err: any) { + // Any loading errors are considered invalid + console.error('Deep check failed for exception', err); + return false; + } + + return true; + } + + /** + * Get the latest version of the integration available. + * This method relies on the fact that integration configs have their versions in their name. + * Any files that don't match the config naming convention will be ignored. + * + * @returns A string with the latest version, or null if no versions are available. + */ + async getLatestVersion(): Promise { + const files = await fs.readdir(this.directory); + const versions: string[] = []; + + for (const file of files) { + if (path.extname(file) === '.json' && file.startsWith(`${this.name}-`)) { + const version = file.substring(this.name.length + 1, file.length - 5); + if (!version.match(/^\d+(\.\d+)*$/)) { + continue; + } + versions.push(version); + } + } + + versions.sort((a, b) => compareVersions(a, b)); + + return versions.length > 0 ? versions[0] : null; + } + + /** + * Get the configuration of the current integration. + * + * @param version The version of the config to retrieve. + * @returns The config if a valid config matching the version is present, otherwise null. + */ + async getConfig(version?: string): Promise { + const maybeVersion: string | null = version ? version : await this.getLatestVersion(); + + if (maybeVersion === null) { + return null; + } + + const configFile = `${this.name}-${maybeVersion}.json`; + const configPath = path.join(this.directory, configFile); + + try { + const config = await fs.readFile(configPath, { encoding: 'utf-8' }); + const possibleTemplate = JSON.parse(config); + + if (!templateValidator(possibleTemplate)) { + logValidationErrors(configFile, templateValidator); + return null; + } + + return possibleTemplate; + } catch (err: any) { + if (err instanceof SyntaxError) { + console.error(`Syntax errors in ${configFile}`, err); + return null; + } + if (err instanceof Error && (err as { code?: string }).code === 'ENOENT') { + console.error(`Attempted to retrieve non-existent config ${configFile}`); + return null; + } + throw new Error('Could not load integration', { cause: err }); + } + } + + /** + * Retrieve assets associated with the integration. + * This method greedily retrieves all assets. + * If the version is invalid, an error is thrown. + * If an asset is invalid, it will be skipped. + * + * @param version The version of the integration to retrieve assets for. + * @returns An object containing the different types of assets. + */ + async getAssets( + version?: string + ): Promise<{ + savedObjects?: object[]; + }> { + const config = await this.getConfig(version); + if (config === null) { + return Promise.reject(new Error('Attempted to get assets of invalid config')); + } + const result: { savedObjects?: object[] } = {}; + if (config.assets.savedObjects) { + const sobjPath = path.join( + this.directory, + 'assets', + `${config.assets.savedObjects.name}-${config.assets.savedObjects.version}.ndjson` + ); + try { + const ndjson = await fs.readFile(sobjPath, { encoding: 'utf-8' }); + const asJson = '[' + ndjson.replace(/\n/g, ',') + ']'; + const parsed = JSON.parse(asJson); + result.savedObjects = parsed; + } catch (err: any) { + console.error("Failed to load saved object assets, proceeding as if it's absent", err); + } + } + return result; + } + + /** + * Retrieve sample data associated with the integration. + * If the version is invalid, an error is thrown. + * If the sample data is invalid, null will be returned + * + * @param version The version of the integration to retrieve assets for. + * @returns An object containing a list of sample data with adjusted timestamps. + */ + async getSampleData( + version?: string + ): Promise<{ + sampleData: object[] | null; + }> { + const config = await this.getConfig(version); + if (config === null) { + return Promise.reject(new Error('Attempted to get assets of invalid config')); + } + const result: { sampleData: object[] | null } = { sampleData: null }; + if (config.sampleData) { + const sobjPath = path.join(this.directory, 'data', config.sampleData?.path); + try { + const jsonContent = await fs.readFile(sobjPath, { encoding: 'utf-8' }); + const parsed = JSON.parse(jsonContent) as object[]; + for (const value of parsed) { + if (!('@timestamp' in value)) { + continue; + } + // Randomly scatter timestamps across last 10 minutes + // Assume for now that the ordering of events isn't important, can change to a sequence if needed + // Also doesn't handle fields like `observedTimestamp` if present + Object.assign(value, { + '@timestamp': new Date( + Date.now() - Math.floor(Math.random() * 1000 * 60 * 10) + ).toISOString(), + }); + } + result.sampleData = parsed; + } catch (err: any) { + console.error("Failed to load saved object assets, proceeding as if it's absent", err); + } + } + return result; + } + + /** + * Retrieve schema data associated with the integration. + * This method greedily retrieves all mappings and schemas. + * It's assumed that a valid version will be provided. + * If the version is invalid, an error is thrown. + * If a schema is invalid, an error will be thrown. + * + * @param version The version of the integration to retrieve assets for. + * @returns An object containing the different types of assets. + */ + async getSchemas( + version?: string + ): Promise<{ + mappings: { [key: string]: any }; + }> { + const config = await this.getConfig(version); + if (config === null) { + return Promise.reject(new Error('Attempted to get assets of invalid config')); + } + const result: { mappings: { [key: string]: any } } = { + mappings: {}, + }; + try { + for (const component of config.components) { + const schemaFile = `${component.name}-${component.version}.mapping.json`; + const rawSchema = await fs.readFile(path.join(this.directory, 'schemas', schemaFile), { + encoding: 'utf-8', + }); + const parsedSchema = JSON.parse(rawSchema); + result.mappings[component.name] = parsedSchema; + } + } catch (err: any) { + // It's not clear that an invalid schema can be recovered from. + // For integrations to function, we need schemas to be valid. + console.error('Error loading schema', err); + return Promise.reject(new Error('Could not load schema', { cause: err })); + } + return result; + } + + /** + * Retrieves the data for a static file associated with the integration. + * + * @param staticPath The path of the static to retrieve. + * @returns A buffer with the static's data if present, otherwise null. + */ + async getStatic(staticPath: string): Promise { + const fullStaticPath = path.join(this.directory, 'static', staticPath); + try { + return await fs.readFile(fullStaticPath); + } catch (err: any) { + if (err instanceof Error && (err as { code?: string }).code === 'ENOENT') { + console.error(`Static not found: ${staticPath}`); + return null; + } + throw err; + } + } +} diff --git a/server/adaptors/integrations/repository/repository.ts b/server/adaptors/integrations/repository/repository.ts new file mode 100644 index 000000000..00d241327 --- /dev/null +++ b/server/adaptors/integrations/repository/repository.ts @@ -0,0 +1,41 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import * as fs from 'fs/promises'; +import * as path from 'path'; +import { Integration } from './integration'; + +export class Repository { + directory: string; + + constructor(directory: string) { + this.directory = directory; + } + + async getIntegrationList(): Promise { + try { + const folders = await fs.readdir(this.directory); + const integrations = Promise.all( + folders.map(async (folder) => { + const integPath = path.join(this.directory, folder); + if (!(await fs.lstat(integPath)).isDirectory()) { + return null; + } + const integ = new Integration(integPath); + return (await integ.check()) ? integ : null; + }) + ); + return (await integrations).filter((x) => x !== null) as Integration[]; + } catch (error) { + console.error(`Error reading integration directories in: ${this.directory}`, error); + return []; + } + } + + async getIntegration(name: string): Promise { + const integ = new Integration(path.join(this.directory, name)); + return (await integ.check()) ? integ : null; + } +} diff --git a/server/adaptors/integrations/types.ts b/server/adaptors/integrations/types.ts new file mode 100644 index 000000000..58293580f --- /dev/null +++ b/server/adaptors/integrations/types.ts @@ -0,0 +1,86 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +interface IntegrationTemplate { + name: string; + version: string; + displayName?: string; + license: string; + type: string; + author?: string; + description?: string; + sourceUrl?: string; + statics?: { + logo?: StaticAsset; + gallery?: StaticAsset[]; + darkModeLogo?: StaticAsset; + darkModeGallery?: StaticAsset[]; + }; + components: IntegrationComponent[]; + assets: { + savedObjects?: { + name: string; + version: string; + }; + }; + sampleData?: { + path: string; + }; +} + +interface StaticAsset { + annotation?: string; + path: string; +} + +interface IntegrationComponent { + name: string; + version: string; +} + +interface DisplayAsset { + body: string; +} + +interface IntegrationTemplateSearchResult { + hits: IntegrationTemplate[]; +} + +interface IntegrationTemplateQuery { + name?: string; +} + +interface IntegrationInstance { + name: string; + templateName: string; + dataSource: { + sourceType: string; + dataset: string; + namespace: string; + }; + creationDate: string; + assets: AssetReference[]; +} + +interface IntegrationInstanceResult extends IntegrationInstance { + id: string; + status: string; +} + +interface AssetReference { + assetType: string; + assetId: string; + isDefaultAsset: boolean; + description: string; +} + +interface IntegrationInstancesSearchResult { + hits: IntegrationInstanceResult[]; +} + +interface IntegrationInstanceQuery { + added?: boolean; + id?: string; +} diff --git a/server/adaptors/integrations/validators.ts b/server/adaptors/integrations/validators.ts new file mode 100644 index 000000000..0bc7029b0 --- /dev/null +++ b/server/adaptors/integrations/validators.ts @@ -0,0 +1,119 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import Ajv, { JSONSchemaType } from 'ajv'; + +const ajv = new Ajv(); + +const staticAsset: JSONSchemaType = { + type: 'object', + properties: { + path: { type: 'string' }, + annotation: { type: 'string', nullable: true }, + }, + required: ['path'], + additionalProperties: false, +}; + +const templateSchema: JSONSchemaType = { + type: 'object', + properties: { + name: { type: 'string' }, + version: { type: 'string' }, + displayName: { type: 'string', nullable: true }, + license: { type: 'string' }, + type: { type: 'string' }, + author: { type: 'string', nullable: true }, + description: { type: 'string', nullable: true }, + sourceUrl: { type: 'string', nullable: true }, + statics: { + type: 'object', + properties: { + logo: { ...staticAsset, nullable: true }, + gallery: { type: 'array', items: staticAsset, nullable: true }, + darkModeLogo: { ...staticAsset, nullable: true }, + darkModeGallery: { type: 'array', items: staticAsset, nullable: true }, + }, + additionalProperties: false, + nullable: true, + }, + components: { + type: 'array', + items: { + type: 'object', + properties: { + name: { type: 'string' }, + version: { type: 'string' }, + }, + required: ['name', 'version'], + }, + }, + assets: { + type: 'object', + properties: { + savedObjects: { + type: 'object', + properties: { + name: { type: 'string' }, + version: { type: 'string' }, + }, + required: ['name', 'version'], + nullable: true, + additionalProperties: false, + }, + }, + additionalProperties: false, + }, + sampleData: { + type: 'object', + properties: { + path: { + type: 'string', + }, + }, + required: ['path'], + additionalProperties: false, + nullable: true, + }, + }, + required: ['name', 'version', 'license', 'type', 'components', 'assets'], + additionalProperties: false, +}; + +const instanceSchema: JSONSchemaType = { + type: 'object', + properties: { + name: { type: 'string' }, + templateName: { type: 'string' }, + dataSource: { + type: 'object', + properties: { + sourceType: { type: 'string' }, + dataset: { type: 'string' }, + namespace: { type: 'string' }, + }, + required: ['sourceType', 'dataset', 'namespace'], + additionalProperties: false, + }, + creationDate: { type: 'string' }, + assets: { + type: 'array', + items: { + type: 'object', + properties: { + assetType: { type: 'string' }, + assetId: { type: 'string' }, + isDefaultAsset: { type: 'boolean' }, + description: { type: 'string' }, + }, + required: ['assetType', 'assetId', 'isDefaultAsset', 'description'], + }, + }, + }, + required: ['name', 'templateName', 'dataSource', 'creationDate', 'assets'], +}; + +export const templateValidator = ajv.compile(templateSchema); +export const instanceValidator = ajv.compile(instanceSchema); diff --git a/server/adaptors/opensearch_observability_plugin.ts b/server/adaptors/opensearch_observability_plugin.ts index 2a99187c6..fbdbac72b 100644 --- a/server/adaptors/opensearch_observability_plugin.ts +++ b/server/adaptors/opensearch_observability_plugin.ts @@ -3,13 +3,9 @@ * SPDX-License-Identifier: Apache-2.0 */ -import { OPENSEARCH_PANELS_API } from "../../common/constants/shared"; +import { OPENSEARCH_PANELS_API } from '../../common/constants/shared'; -export function OpenSearchObservabilityPlugin( - Client: any, - config: any, - components: any -) { +export function OpenSearchObservabilityPlugin(Client: any, config: any, components: any) { const clientAction = components.clientAction.factory; Client.prototype.observability = components.clientAction.namespaceFactory(); @@ -21,38 +17,38 @@ export function OpenSearchObservabilityPlugin( fmt: OPENSEARCH_PANELS_API.OBJECT, params: { objectId: { - type: "string", + type: 'string', }, objectIdList: { - type: "string", + type: 'string', }, objectType: { - type: "string", + type: 'string', }, sortField: { - type: "string", + type: 'string', }, sortOrder: { - type: "string", + type: 'string', }, fromIndex: { - type: "number", + type: 'number', }, maxItems: { - type: "number", + type: 'number', }, name: { - type: "string", + type: 'string', }, lastUpdatedTimeMs: { - type: "string", + type: 'string', }, createdTimeMs: { - type: "string", + type: 'string', }, }, }, - method: "GET", + method: 'GET', }); // Get Object by Id @@ -61,12 +57,12 @@ export function OpenSearchObservabilityPlugin( fmt: `${OPENSEARCH_PANELS_API.OBJECT}/<%=objectId%>`, req: { objectId: { - type: "string", + type: 'string', required: true, }, }, }, - method: "GET", + method: 'GET', }); // Create new Object @@ -74,7 +70,7 @@ export function OpenSearchObservabilityPlugin( url: { fmt: OPENSEARCH_PANELS_API.OBJECT, }, - method: "POST", + method: 'POST', needBody: true, }); @@ -84,12 +80,12 @@ export function OpenSearchObservabilityPlugin( fmt: `${OPENSEARCH_PANELS_API.OBJECT}/<%=objectId%>`, req: { objectId: { - type: "string", + type: 'string', required: true, }, }, }, - method: "PUT", + method: 'PUT', needBody: true, }); @@ -99,12 +95,12 @@ export function OpenSearchObservabilityPlugin( fmt: `${OPENSEARCH_PANELS_API.OBJECT}/<%=objectId%>`, req: { objectId: { - type: "string", + type: 'string', required: true, }, }, }, - method: "DELETE", + method: 'DELETE', }); // Delete Object by Id List @@ -113,11 +109,11 @@ export function OpenSearchObservabilityPlugin( fmt: OPENSEARCH_PANELS_API.OBJECT, params: { objectIdList: { - type: "string", + type: 'string', required: true, }, }, }, - method: "DELETE", + method: 'DELETE', }); } diff --git a/server/common/metrics/constants.ts b/server/common/metrics/constants.ts index 2065ed976..940dbbd4e 100644 --- a/server/common/metrics/constants.ts +++ b/server/common/metrics/constants.ts @@ -11,17 +11,16 @@ export const INTERVAL = 60; export const CAPACITY = (WINDOW / INTERVAL) * 2; export const MILLIS_MULTIPLIER = 1000; -const commonRequests = ['create', 'get', 'update', 'delete', 'add_samples'] as const; - -// object of each component and its specific requests -export const COMPONENTS = { - application_analytics: commonRequests, - operational_panels: [...commonRequests, 'fetch_visualization'], - event_analytics: commonRequests, - notebooks: [...commonRequests, 'run_sql_query', 'run_ppl_query', 'fetch_visualization'], - trace_analytics: commonRequests, - metrics_analytics: commonRequests, -} as const; +export const COMPONENTS = [ + 'application_analytics', + 'operational_panels', + 'event_analytics', + 'notebooks', + 'trace_analytics', + 'metrics_analytics', + 'integrations', +] as const; +export const REQUESTS = ['create', 'get', 'update', 'delete'] as const; export const GLOBAL_BASIC_COUNTER: CounterType = (() => { const counter = {} as CounterType; diff --git a/server/routes/index.ts b/server/routes/index.ts index 31e5c0456..4830bf58c 100644 --- a/server/routes/index.ts +++ b/server/routes/index.ts @@ -20,16 +20,16 @@ import { registerSqlRoute } from './notebooks/sqlRouter'; import { registerEventAnalyticsRouter } from './event_analytics/event_analytics_router'; import { registerAppAnalyticsRouter } from './application_analytics/app_analytics_router'; import { registerMetricsRoute } from './metrics/metrics_rounter'; - +import { registerIntegrationsRoute } from './integrations/integrations_router'; export function setupRoutes({ router, client }: { router: IRouter; client: ILegacyClusterClient }) { PanelsRouter(router); VisualizationsRouter(router); registerPplRoute({ router, facet: new PPLFacet(client) }); - registerDslRoute({ router, facet: new DSLFacet(client)}); + registerDslRoute({ router, facet: new DSLFacet(client) }); registerEventAnalyticsRouter({ router, savedObjectFacet: new SavedObjectFacet(client) }); registerAppAnalyticsRouter(router); - + // TODO remove trace analytics route when DSL route for autocomplete is added registerTraceAnalyticsDslRouter(router); @@ -41,4 +41,5 @@ export function setupRoutes({ router, client }: { router: IRouter; client: ILega registerSqlRoute(router, queryService); registerMetricsRoute(router); -}; + registerIntegrationsRoute(router); +} diff --git a/server/routes/integrations/__tests__/integrations_router.test.ts b/server/routes/integrations/__tests__/integrations_router.test.ts new file mode 100644 index 000000000..c74a2e8db --- /dev/null +++ b/server/routes/integrations/__tests__/integrations_router.test.ts @@ -0,0 +1,53 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { OpenSearchDashboardsResponseFactory } from '../../../../../../src/core/server/http/router'; +import { handleWithCallback } from '../integrations_router'; +import { IntegrationsAdaptor } from 'server/adaptors/integrations/integrations_adaptor'; + +describe('handleWithCallback', () => { + let adaptorMock: jest.Mocked; + let responseMock: jest.Mocked; + + beforeEach(() => { + adaptorMock = {} as any; + responseMock = { + custom: jest.fn((data) => data), + ok: jest.fn((data) => data), + } as any; + }); + + it('retrieves data from the callback method', async () => { + const callback = jest.fn((_) => { + return { test: 'data' }; + }); + + const result = await handleWithCallback( + adaptorMock as IntegrationsAdaptor, + responseMock as OpenSearchDashboardsResponseFactory, + callback + ); + + expect(callback).toHaveBeenCalled(); + expect(responseMock.ok).toHaveBeenCalled(); + expect(result.body.data).toEqual({ test: 'data' }); + }); + + it('passes callback errors through', async () => { + const callback = jest.fn((_) => { + throw new Error('test error'); + }); + + const result = await handleWithCallback( + adaptorMock as IntegrationsAdaptor, + responseMock as OpenSearchDashboardsResponseFactory, + callback + ); + + expect(callback).toHaveBeenCalled(); + expect(responseMock.custom).toHaveBeenCalled(); + expect(result.body).toEqual('test error'); + }); +}); diff --git a/server/routes/integrations/integrations_router.ts b/server/routes/integrations/integrations_router.ts new file mode 100644 index 000000000..179fb6d77 --- /dev/null +++ b/server/routes/integrations/integrations_router.ts @@ -0,0 +1,252 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { schema } from '@osd/config-schema'; +import * as mime from 'mime'; +import sanitize from 'sanitize-filename'; +import { IRouter, RequestHandlerContext } from '../../../../../src/core/server'; +import { INTEGRATIONS_BASE } from '../../../common/constants/shared'; +import { IntegrationsAdaptor } from '../../adaptors/integrations/integrations_adaptor'; +import { + OpenSearchDashboardsRequest, + OpenSearchDashboardsResponseFactory, +} from '../../../../../src/core/server/http/router'; + +/** + * Handle an `OpenSearchDashboardsRequest` using the provided `callback` function. + * This is a convenience method that handles common error handling and response formatting. + * The callback must accept a `IntegrationsAdaptor` as its first argument. + * + * If the callback throws an error, + * the `OpenSearchDashboardsResponse` will be formatted using the error's `statusCode` and `message` properties. + * Otherwise, the callback's return value will be formatted in a JSON object under the `data` field. + * + * @param {IntegrationsAdaptor} adaptor The adaptor instance to use for making requests. + * @param {OpenSearchDashboardsResponseFactory} response The factory to use for creating responses. + * @callback callback A callback that will invoke a request on a provided adaptor. + * @returns {Promise} An `OpenSearchDashboardsResponse` with the return data from the callback. + */ +export const handleWithCallback = async ( + adaptor: IntegrationsAdaptor, + response: OpenSearchDashboardsResponseFactory, + callback: (a: IntegrationsAdaptor) => any +): Promise => { + try { + const data = await callback(adaptor); + return response.ok({ + body: { + data, + }, + }); + } catch (err: any) { + console.error(`handleWithCallback: callback failed with error "${err.message}"`); + return response.custom({ + statusCode: err.statusCode || 500, + body: err.message, + }); + } +}; + +const getAdaptor = ( + context: RequestHandlerContext, + _request: OpenSearchDashboardsRequest +): IntegrationsAdaptor => { + // Stub + return {} as IntegrationsAdaptor; +}; + +export function registerIntegrationsRoute(router: IRouter) { + router.get( + { + path: `${INTEGRATIONS_BASE}/repository`, + validate: false, + }, + async (context, request, response): Promise => { + const adaptor = getAdaptor(context, request); + return handleWithCallback(adaptor, response, async (a: IntegrationsAdaptor) => + a.getIntegrationTemplates() + ); + } + ); + + router.post( + { + path: `${INTEGRATIONS_BASE}/store/{templateName}`, + validate: { + params: schema.object({ + templateName: schema.string(), + }), + body: schema.object({ + name: schema.string(), + dataSource: schema.string(), + }), + }, + }, + async (context, request, response): Promise => { + const adaptor = getAdaptor(context, request); + return handleWithCallback(adaptor, response, async (a: IntegrationsAdaptor) => { + return a.loadIntegrationInstance( + request.params.templateName, + request.body.name, + request.body.dataSource + ); + }); + } + ); + + router.get( + { + path: `${INTEGRATIONS_BASE}/repository/{name}`, + validate: { + params: schema.object({ + name: schema.string(), + }), + }, + }, + async (context, request, response): Promise => { + const adaptor = getAdaptor(context, request); + return handleWithCallback( + adaptor, + response, + async (a: IntegrationsAdaptor) => + ( + await a.getIntegrationTemplates({ + name: request.params.name, + }) + ).hits[0] + ); + } + ); + + router.get( + { + path: `${INTEGRATIONS_BASE}/repository/{id}/static/{path}`, + validate: { + params: schema.object({ + id: schema.string(), + path: schema.string(), + }), + }, + }, + async (context, request, response): Promise => { + const adaptor = getAdaptor(context, request); + try { + const requestPath = sanitize(request.params.path); + const result = await adaptor.getStatic(request.params.id, requestPath); + return response.ok({ + headers: { + 'Content-Type': mime.getType(request.params.path), + }, + body: result, + }); + } catch (err: any) { + return response.custom({ + statusCode: err.statusCode ? err.statusCode : 500, + body: err.message, + }); + } + } + ); + + router.get( + { + path: `${INTEGRATIONS_BASE}/repository/{id}/schema`, + validate: { + params: schema.object({ + id: schema.string(), + }), + }, + }, + async (context, request, response): Promise => { + const adaptor = getAdaptor(context, request); + return handleWithCallback(adaptor, response, async (a: IntegrationsAdaptor) => + a.getSchemas(request.params.id) + ); + } + ); + + router.get( + { + path: `${INTEGRATIONS_BASE}/repository/{id}/assets`, + validate: { + params: schema.object({ + id: schema.string(), + }), + }, + }, + async (context, request, response): Promise => { + const adaptor = getAdaptor(context, request); + return handleWithCallback(adaptor, response, async (a: IntegrationsAdaptor) => + a.getAssets(request.params.id) + ); + } + ); + + router.get( + { + path: `${INTEGRATIONS_BASE}/repository/{id}/data`, + validate: { + params: schema.object({ + id: schema.string(), + }), + }, + }, + async (context, request, response): Promise => { + const adaptor = getAdaptor(context, request); + return handleWithCallback(adaptor, response, async (a: IntegrationsAdaptor) => + a.getSampleData(request.params.id) + ); + } + ); + + router.get( + { + path: `${INTEGRATIONS_BASE}/store`, + validate: false, + }, + async (context, request, response): Promise => { + const adaptor = getAdaptor(context, request); + return handleWithCallback(adaptor, response, async (a: IntegrationsAdaptor) => + a.getIntegrationInstances({}) + ); + } + ); + + router.delete( + { + path: `${INTEGRATIONS_BASE}/store/{id}`, + validate: { + params: schema.object({ + id: schema.string(), + }), + }, + }, + async (context, request, response): Promise => { + const adaptor = getAdaptor(context, request); + return handleWithCallback(adaptor, response, async (a: IntegrationsAdaptor) => + a.deleteIntegrationInstance(request.params.id) + ); + } + ); + + router.get( + { + path: `${INTEGRATIONS_BASE}/store/{id}`, + validate: { + params: schema.object({ + id: schema.string(), + }), + }, + }, + async (context, request, response): Promise => { + const adaptor = getAdaptor(context, request); + return handleWithCallback(adaptor, response, async (a: IntegrationsAdaptor) => + a.getIntegrationInstance({ + id: request.params.id, + }) + ); + } + ); +} diff --git a/yarn.lock b/yarn.lock index 3abffd724..d089b7744 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3,69 +3,73 @@ "@algolia/autocomplete-core@^1.4.1": - version "1.4.1" - resolved "https://registry.yarnpkg.com/@algolia/autocomplete-core/-/autocomplete-core-1.4.1.tgz#b17ef0e3299d6159ab6041365893384ec75de204" - integrity sha512-LPX4nFA5HzS07UfEAzdXHi6vSUfwqJe8mikcg81ZnMTv+khRAMh3VxHAMUISAnHqI5NzEImbyPdSDpjgh9IPGQ== + version "1.9.4" + resolved "https://registry.yarnpkg.com/@algolia/autocomplete-core/-/autocomplete-core-1.9.4.tgz#4dfea22c8558c90f4ff107633efb298df382aef3" + integrity sha512-sakE1Lks15UXKHkjDyxZ7yT/fGrHrmvlfQ1Fz3m/cqXxBUhBtD5AKuuSpPUW0M/SaTnGSOf/8jJnOcyjznZ1UA== dependencies: - "@algolia/autocomplete-shared" "1.4.1" + "@algolia/autocomplete-plugin-algolia-insights" "1.9.4" + "@algolia/autocomplete-shared" "1.9.4" -"@algolia/autocomplete-shared@1.4.1": - version "1.4.1" - resolved "https://registry.yarnpkg.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.4.1.tgz#d8f3b71dee1474a89989d359b434addacf140cdb" - integrity sha512-MGLj6on/809+xQi5dfOPv4EB6KruTfbkg1rZWQzDX5KrJuiu6CPHp/kk2JNyrEr2luiT0v7rxXWOz9XfxVReiQ== +"@algolia/autocomplete-plugin-algolia-insights@1.9.4": + version "1.9.4" + resolved "https://registry.yarnpkg.com/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.9.4.tgz#57181d5b88ea750826b74e1f58d17a826c9d12a2" + integrity sha512-1ZzFX3wDYWUPPwEWmjEjBlYa4oWaI57ntPIEMVNB+vdPYLy9QCroRsKruCHgmD1+GekAdEj7ayYkDlbB//kdiw== + dependencies: + "@algolia/autocomplete-shared" "1.9.4" + +"@algolia/autocomplete-shared@1.9.4": + version "1.9.4" + resolved "https://registry.yarnpkg.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.9.4.tgz#7b008675d6fd26e31e35629a78b531faa8cba672" + integrity sha512-4iEdI9K2BXEATYeptL2ZVJPNQ5Zd42WTqjnLPsuJCUwPTnrnpHZEJcmUQYktnMnbgvvVzIByRrRJ1NSLQOno3w== "@algolia/autocomplete-theme-classic@^1.2.1": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@algolia/autocomplete-theme-classic/-/autocomplete-theme-classic-1.3.0.tgz#68657b214ea49715116f702ae3eae2a5d6b8983d" - integrity sha512-npQlljLXAAdXL9chj98xvhNOIgInaX27SUfBfFeCds3YtnwI+ZOATiYUOl7/WkyzxXvwEMUIO1sUenlZuH8o0A== + version "1.9.4" + resolved "https://registry.yarnpkg.com/@algolia/autocomplete-theme-classic/-/autocomplete-theme-classic-1.9.4.tgz#6400359de17fe0c698eb65303f67cea53175bb08" + integrity sha512-ydeYji3VKIPRFHTnIBVbwocFs9FOKLJnQtYIqmT3z3SVhsceeju2XUD9v3jZRrKb9FVrs1oKQaw0MsessZXMkw== "@babel/code-frame@^7.0.0": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789" - integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg== + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.5.tgz#234d98e1551960604f1246e6475891a570ad5658" + integrity sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ== dependencies: - "@babel/highlight" "^7.16.7" + "@babel/highlight" "^7.22.5" -"@babel/helper-validator-identifier@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad" - integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw== +"@babel/helper-validator-identifier@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193" + integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ== -"@babel/highlight@^7.16.7": - version "7.17.9" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.17.9.tgz#61b2ee7f32ea0454612def4fccdae0de232b73e3" - integrity sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg== +"@babel/highlight@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.5.tgz#aa6c05c5407a67ebce408162b7ede789b4d22031" + integrity sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw== dependencies: - "@babel/helper-validator-identifier" "^7.16.7" + "@babel/helper-validator-identifier" "^7.22.5" chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/runtime@^7.1.2", "@babel/runtime@^7.3.1": - version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.15.4.tgz#fd17d16bfdf878e6dd02d19753a39fa8a8d9c84a" - integrity sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw== +"@babel/runtime@^7.1.2", "@babel/runtime@^7.3.1", "@babel/runtime@^7.9.2": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.5.tgz#8564dd588182ce0047d55d7a75e93921107b57ec" + integrity sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA== dependencies: - regenerator-runtime "^0.13.4" + regenerator-runtime "^0.13.11" -"@babel/runtime@^7.9.2": - version "7.14.8" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.14.8.tgz#7119a56f421018852694290b9f9148097391b446" - integrity sha512-twj3L8Og5SaCRCErB4x4ajbvBIVV77CGeFglHpeg5WC5FF8TZzBWXtTJ4MqaD9QszLYTtr+IsaAL2rEUevb+eg== +"@blueprintjs/colors@^4.0.0-alpha.3": + version "4.2.1" + resolved "https://registry.yarnpkg.com/@blueprintjs/colors/-/colors-4.2.1.tgz#603b2512caee84feddcb3dbd536534c140b9a1f3" + integrity sha512-Cx7J2YnUuxn+fi+y5XtXnBB7+cFHN4xBrRkaAetp78i3VTCXjUk+d1omrOr8TqbRucUXTdrhbZOUHpzRLFcJpQ== dependencies: - regenerator-runtime "^0.13.4" - -"@blueprintjs/colors@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@blueprintjs/colors/-/colors-3.0.0.tgz#f121dc1bc24cc367668a425911fa8ff52e87014a" - integrity sha512-8rRkIcnnOwMEMAGDciKFdVQ3dZXvCkSGcgEzVR2ijopCvLZrrHf+ySzn8v7Y2d60A2Q2A3Of8NDrYbV32sBssg== + tslib "~2.5.0" -"@blueprintjs/core@^3.49.1", "@blueprintjs/core@^3.7.0": - version "3.49.1" - resolved "https://registry.yarnpkg.com/@blueprintjs/core/-/core-3.49.1.tgz#6824ddb11ce2858f0b009c8ae0c774547e3edb0a" - integrity sha512-H6UAYZeBZcGDQb24vEkFps0eKlkyKvy/B/OJ2elZjHC1B1Regv7TwIDjju9wgzZvzKCcCVZzUg9OqtH43V+1yA== +"@blueprintjs/core@^3.54.0", "@blueprintjs/core@^3.7.0": + version "3.54.0" + resolved "https://registry.yarnpkg.com/@blueprintjs/core/-/core-3.54.0.tgz#7269f34eccdf0d2874377c5ad973ca2a31562221" + integrity sha512-u2c1s6MNn0ocxhnC6CuiG5g3KV6b4cKUvSobznepA9SC3/AL1s3XOvT7DLWoHRv2B/vBOHFYEDzLw2/vlcGGZg== dependencies: - "@blueprintjs/colors" "^3.0.0" - "@blueprintjs/icons" "^3.29.0" + "@blueprintjs/colors" "^4.0.0-alpha.3" + "@blueprintjs/icons" "^3.33.0" + "@juggle/resize-observer" "^3.3.1" "@types/dom4" "^2.0.1" classnames "^2.2" dom4 "^2.1.5" @@ -74,25 +78,24 @@ react-lifecycles-compat "^3.0.4" react-popper "^1.3.7" react-transition-group "^2.9.0" - resize-observer-polyfill "^1.5.1" - tslib "~1.13.0" + tslib "~2.3.1" -"@blueprintjs/icons@^3.29.0": - version "3.29.0" - resolved "https://registry.yarnpkg.com/@blueprintjs/icons/-/icons-3.29.0.tgz#2e786c6264a1783f2df9423749236189a84c436e" - integrity sha512-FDpPsEBwzsFBsxDXNsea+u+bU+iFWcVTbKH05+jtGEpvDEOrpOsOwUYvkBvVaReR0DORREVye2/NL0/uvLCRrg== +"@blueprintjs/icons@^3.33.0": + version "3.33.0" + resolved "https://registry.yarnpkg.com/@blueprintjs/icons/-/icons-3.33.0.tgz#4dacdb7731abdf08d1ab240f3a23a185df60918b" + integrity sha512-Q6qoSDIm0kRYQZISm59UUcDCpV3oeHulkLuh3bSlw0HhcSjvEQh2PSYbtaifM60Q4aK4PCd6bwJHg7lvF1x5fQ== dependencies: classnames "^2.2" - tslib "~1.13.0" + tslib "~2.3.1" "@blueprintjs/select@^3.2.0": - version "3.18.1" - resolved "https://registry.yarnpkg.com/@blueprintjs/select/-/select-3.18.1.tgz#655219326c09c80adf2711c0dd17191034c92248" - integrity sha512-WwPkNLlNBy0Et0VuQDuxyo0UtBd6JPiWhR2F/xub8ZlYX7tayvXW5DaedtFlnS1OhNlPsolJTcJVoAgYy4Lnbw== + version "3.19.1" + resolved "https://registry.yarnpkg.com/@blueprintjs/select/-/select-3.19.1.tgz#b5e8baa6f182a0647651a57fde8d1d97eaa1e997" + integrity sha512-8UJIZMaWXRMQHr14wbmzJc/CklcSKxOU5JUux0xXKQz/hDW/g1a650tlwJmnxufvRdShbGinlVfHupCs0EL6sw== dependencies: - "@blueprintjs/core" "^3.49.1" + "@blueprintjs/core" "^3.54.0" classnames "^2.2" - tslib "~1.13.0" + tslib "~2.3.1" "@cypress/listr-verbose-renderer@^0.4.1": version "0.4.1" @@ -175,6 +178,11 @@ "@types/yargs" "^17.0.8" chalk "^4.0.0" +"@juggle/resize-observer@^3.3.1": + version "3.4.0" + resolved "https://registry.yarnpkg.com/@juggle/resize-observer/-/resize-observer-3.4.0.tgz#08d6c5e20cf7e4cc02fd181c4b0c225cd31dbb60" + integrity sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA== + "@nteract/markdown@^4.5.2": version "4.6.2" resolved "https://registry.yarnpkg.com/@nteract/markdown/-/markdown-4.6.2.tgz#5e3dc44047f7af761b3fb8cf76f6d239e7bb65c3" @@ -202,9 +210,9 @@ react-json-tree "^0.12.1" "@nteract/presentational-components@^3.3.11", "@nteract/presentational-components@^3.4.3": - version "3.4.11" - resolved "https://registry.yarnpkg.com/@nteract/presentational-components/-/presentational-components-3.4.11.tgz#4ab477d7cf4f7130d478f9bcf32b3c025bf48cd0" - integrity sha512-2lYcsYI6W0RLEs0ZUDn9kFJB8nCsnNtLDvOPSXuWaqhsSYo6Ml6nB/BFZeO9LZePvD/vTKQ4uJpR0INwLorU6Q== + version "3.4.12" + resolved "https://registry.yarnpkg.com/@nteract/presentational-components/-/presentational-components-3.4.12.tgz#29c5301ccb2298d7bfc4894c4b3f9ac3f079664f" + integrity sha512-gIZlHj2ZJ3glmRslyJh2HWmJftgk18w1CyOJVrxh9ovyso0Nw6CwPNEEKVdjouJvU4OCB7dpINIBLy/w4SxtRA== dependencies: "@blueprintjs/core" "^3.7.0" "@blueprintjs/select" "^3.2.0" @@ -214,14 +222,14 @@ react-toggle "^4.1.1" "@reduxjs/toolkit@^1.6.1": - version "1.6.1" - resolved "https://registry.yarnpkg.com/@reduxjs/toolkit/-/toolkit-1.6.1.tgz#7bc83b47352a663bf28db01e79d17ba54b98ade9" - integrity sha512-pa3nqclCJaZPAyBhruQtiRwtTjottRrVJqziVZcWzI73i6L3miLTtUyWfauwv08HWtiXLx1xGyGt+yLFfW/d0A== + version "1.9.5" + resolved "https://registry.yarnpkg.com/@reduxjs/toolkit/-/toolkit-1.9.5.tgz#d3987849c24189ca483baa7aa59386c8e52077c4" + integrity sha512-Rt97jHmfTeaxL4swLRNPD/zV4OxTes4la07Xc4hetpUW/vc75t5m1ANyxG6ymnEQ2FsLQsoMlYB2vV1sO3m8tQ== dependencies: - immer "^9.0.1" - redux "^4.1.0" - redux-thunk "^2.3.0" - reselect "^4.0.0" + immer "^9.0.21" + redux "^4.2.1" + redux-thunk "^2.4.2" + reselect "^4.1.8" "@samverschueren/stream-to-observable@^0.3.0": version "0.3.1" @@ -236,17 +244,12 @@ integrity sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ== "@types/cheerio@*": - version "0.22.30" - resolved "https://registry.yarnpkg.com/@types/cheerio/-/cheerio-0.22.30.tgz#6c1ded70d20d890337f0f5144be2c5e9ce0936e6" - integrity sha512-t7ZVArWZlq3dFa9Yt33qFBQIK4CQd1Q3UJp0V+UhP6vgLWLM6Qug7vZuRSGXg45zXeB1Fm5X2vmBkEX58LV2Tw== + version "0.22.31" + resolved "https://registry.yarnpkg.com/@types/cheerio/-/cheerio-0.22.31.tgz#b8538100653d6bb1b08a1e46dec75b4f2a5d5eb6" + integrity sha512-Kt7Cdjjdi2XWSfrZ53v4Of0wG3ZcmaegFXjMmz9tfNrZSkzzo36G0AL1YqSdcIA78Etjt6E609pt5h1xnQkPUw== dependencies: "@types/node" "*" -"@types/d3@^3": - version "3.5.45" - resolved "https://registry.yarnpkg.com/@types/d3/-/d3-3.5.45.tgz#cceb1cd8f468b0ed1c96546ddefff3408d7463a7" - integrity sha512-wLICfMtjDEoAJie1MF6OuksAzOapRXgJy+l5HQVpyC1yMAlvHz2QKrrasUHru8xD6cbgQNGeO+CeyjOlKtly2A== - "@types/dom4@^2.0.1": version "2.0.2" resolved "https://registry.yarnpkg.com/@types/dom4/-/dom4-2.0.2.tgz#6495303f049689ce936ed328a3e5ede9c51408ee" @@ -260,12 +263,12 @@ "@types/enzyme" "*" "@types/enzyme@*": - version "3.10.9" - resolved "https://registry.yarnpkg.com/@types/enzyme/-/enzyme-3.10.9.tgz#b2d7c7429a37d994c156b6f361e83f271a60c8aa" - integrity sha512-dx5UvcWe2Vtye6S9Hw2rFB7Ul9uMXOAje2FAbXvVYieQDNle9qPAo7DfvFMSztZ9NFiD3dVZ4JsRYGTrSLynJg== + version "3.10.13" + resolved "https://registry.yarnpkg.com/@types/enzyme/-/enzyme-3.10.13.tgz#332c0ed59b01f7b1c398c532a1c21a5feefabeb1" + integrity sha512-FCtoUhmFsud0Yx9fmZk179GkdZ4U9B0GFte64/Md+W/agx0L5SxsIIbhLBOxIb9y2UfBA4WQnaG1Od/UsUQs9Q== dependencies: "@types/cheerio" "*" - "@types/react" "*" + "@types/react" "^16" "@types/hast@^2.0.0": version "2.3.4" @@ -293,10 +296,15 @@ dependencies: "@types/istanbul-lib-report" "*" +"@types/mime@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.1.tgz#5f8f2bca0a5863cb69bc0b0acd88c96cb1d4ae10" + integrity sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA== + "@types/node@*": - version "16.7.2" - resolved "https://registry.yarnpkg.com/@types/node/-/node-16.7.2.tgz#0465a39b5456b61a04d98bd5545f8b34be340cb7" - integrity sha512-TbG4TOx9hng8FKxaVrCisdaxKxqEwJ3zwHoCWXZ0Jw6mnvTInpaB99/2Cy4+XxpXtjNv9/TgfGSvZFyfV/t8Fw== + version "20.3.2" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.3.2.tgz#fa6a90f2600e052a03c18b8cb3fd83dd4e599898" + integrity sha512-vOBLVQeCQfIcF/2Y7eKFTqrMnizK5lRNQ7ykML/5RuwVXVWxYkgwS7xbt4B6fKCUPgbSL5FSsjHQpaGQP/dQmw== "@types/node@12.12.50": version "12.12.50" @@ -304,21 +312,19 @@ integrity sha512-5ImO01Fb8YsEOYpV+aeyGYztcYcjGsBvN4D7G5r1ef2cuQOpymjWNQi5V0rKHE6PC2ru3HkoUr/Br2/8GUA84w== "@types/plotly.js@*": - version "1.54.14" - resolved "https://registry.yarnpkg.com/@types/plotly.js/-/plotly.js-1.54.14.tgz#738f3507f49a707c03aae4fd5d568571ddf8bf31" - integrity sha512-vYevenBloZ3B4i831i+ccS9u782JSnkJpBG/c/qPRJNDW6s25udnrmoHkFhbBl7jkzBy8pO2lPNhpMrQJV7ETA== - dependencies: - "@types/d3" "^3" + version "2.12.18" + resolved "https://registry.yarnpkg.com/@types/plotly.js/-/plotly.js-2.12.18.tgz#7a231ce72a73fafe4842096b8c99d10a41b60962" + integrity sha512-ff+CIEWnqZNjZqHtQZvkEAVuLs9fkm1f54QnPVmgoET7wMHdSqUka2hasVN4e5yfHD05YwGjsAtCseewJh/BMw== "@types/prop-types@*": - version "15.7.4" - resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.4.tgz#fcf7205c25dff795ee79af1e30da2c9790808f11" - integrity sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ== + version "15.7.5" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" + integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== "@types/react-plotly.js@^2.5.0": - version "2.5.0" - resolved "https://registry.yarnpkg.com/@types/react-plotly.js/-/react-plotly.js-2.5.0.tgz#bf7793ed16db13a2bd775ff8fa8f9595e82e8597" - integrity sha512-bda7N/Y65d1x0FfwhgUXAugGeG9CRIxmkW/yBL8PVFUMvZGpfEnw4bXKjDozBYlOskVfxj6UQ9IKmZI6CZ7/QQ== + version "2.6.0" + resolved "https://registry.yarnpkg.com/@types/react-plotly.js/-/react-plotly.js-2.6.0.tgz#1b856c2ed1219babda3e95ef3270091f156ff987" + integrity sha512-nJJ57U0/CNDAO+F3dpnMgM8PtjLE/O1I3O6gq4+5Q13uKqrPnHGYOttfdzQJ4D7KYgF609miVzEYakUS2zds8w== dependencies: "@types/plotly.js" "*" "@types/react" "*" @@ -331,27 +337,34 @@ "@types/react" "^16" "@types/react@*": - version "17.0.17" - resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.17.tgz#1772d3d5425128e0635a716f49ef57c2955df055" - integrity sha512-nrfi7I13cAmrd0wje8czYpf5SFbryczCtPzFc6ijqvdjKcyA3tCvGxwchOUlxb2ucBPuJ9Y3oUqKrRqZvrz0lw== + version "18.2.14" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.14.tgz#fa7a6fecf1ce35ca94e74874f70c56ce88f7a127" + integrity sha512-A0zjq+QN/O0Kpe30hA1GidzyFjatVvrpIvWLxD+xv67Vt91TWWgco9IvrJBkeyHm1trGaFS/FSGqPlhyeZRm0g== dependencies: "@types/prop-types" "*" "@types/scheduler" "*" csstype "^3.0.2" "@types/react@^16": - version "16.14.14" - resolved "https://registry.yarnpkg.com/@types/react/-/react-16.14.14.tgz#853de95a32a6a0e719192e222eacad024add2b8e" - integrity sha512-uwIWDYW8LznHzEMJl7ag9St1RsK0gw/xaFZ5+uI1ZM1HndwUgmPH3/wQkSb87GkOVg7shUxnpNW8DcN0AzvG5Q== + version "16.14.43" + resolved "https://registry.yarnpkg.com/@types/react/-/react-16.14.43.tgz#bc6e7a0e99826809591d38ddf1193955de32c446" + integrity sha512-7zdjv7jvoLLQg1tTvpQsm+hyNUMT2mPlNV1+d0I8fbGhkJl82spopMyBlu4wb1dviZAxpGdk5eHu/muacknnfw== dependencies: "@types/prop-types" "*" "@types/scheduler" "*" csstype "^3.0.2" +"@types/sanitize-filename@^1.6.3": + version "1.6.3" + resolved "https://registry.yarnpkg.com/@types/sanitize-filename/-/sanitize-filename-1.6.3.tgz#182ebd5658fbd3fe36bcb771daad8b2623371705" + integrity sha512-1dAV8Va7KsiXNAstV2JmF4CRVG3Fsyl+VnBw87C9cCMccekpOqJBezS7MUnHYPChNAFee1WakwBXdfn7QJxzVg== + dependencies: + sanitize-filename "*" + "@types/scheduler@*": - version "0.16.2" - resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" - integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== + version "0.16.3" + resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.3.tgz#cef09e3ec9af1d63d2a6cc5b383a737e24e6dcf5" + integrity sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ== "@types/sinonjs__fake-timers@^6.0.1": version "6.0.3" @@ -402,6 +415,14 @@ ag-grid-react@^27.3.0: dependencies: prop-types "^15.8.1" +aggregate-error@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" + integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== + dependencies: + clean-stack "^2.0.0" + indent-string "^4.0.0" + ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.3: version "6.12.6" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" @@ -412,6 +433,16 @@ ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.3: json-schema-traverse "^0.4.1" uri-js "^4.2.2" +ajv@^8.11.0: + version "8.12.0" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.12.0.tgz#d1a0527323e22f53562c567c00991577dfbe19d1" + integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.2.2" + anser@^1.4.1: version "1.4.10" resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.10.tgz#befa3eddf282684bd03b63dcda3927aef8c2e35b" @@ -422,14 +453,14 @@ ansi-escapes@^3.0.0: resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== -ansi-escapes@^4.2.1: +ansi-escapes@^4.2.1, ansi-escapes@^4.3.0: version "4.3.2" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== dependencies: type-fest "^0.21.3" -ansi-regex@^2.0.0, ansi-regex@^3.0.0, ansi-regex@^4.1.0, ansi-regex@^5.0.0, ansi-regex@^5.0.1: +ansi-regex@^2.0.0, ansi-regex@^3.0.0, ansi-regex@^4.1.0, ansi-regex@^5.0.1, ansi-regex@^6.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== @@ -446,13 +477,18 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1: dependencies: color-convert "^1.9.0" -ansi-styles@^4.1.0: +ansi-styles@^4.0.0, ansi-styles@^4.1.0: version "4.3.0" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== dependencies: color-convert "^2.0.1" +ansi-styles@^6.0.0: + version "6.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" + integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== + ansi-to-react@^6.0.5: version "6.1.6" resolved "https://registry.yarnpkg.com/ansi-to-react/-/ansi-to-react-6.1.6.tgz#d6fe15ecd4351df626a08121b1646adfe6c02ccb" @@ -502,36 +538,41 @@ argparse@^1.0.7: sprintf-js "~1.0.2" asn1@~0.2.3: - version "0.2.4" - resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" - integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== + version "0.2.6" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.6.tgz#0d3a7bb6e64e02a90c0303b31f292868ea09a08d" + integrity sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ== dependencies: safer-buffer "~2.1.0" assert-plus@1.0.0, assert-plus@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" - integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= + integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== astral-regex@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== +astral-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" + integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== + async-wait-until@1.2.6: version "1.2.6" resolved "https://registry.yarnpkg.com/async-wait-until/-/async-wait-until-1.2.6.tgz#b6d8ada89913028af1928ee078925af75862b108" integrity sha512-7I1zd0bnMEo7WfLfDoLZp+iPYKv/dl7kcW8wphazZn+BAElTGvtkDuQuonr480JzkS7f42VcGyP90mk3+3IfWA== async@^3.2.0: - version "3.2.3" - resolved "https://registry.yarnpkg.com/async/-/async-3.2.3.tgz#ac53dafd3f4720ee9e8a160628f18ea91df196c9" - integrity sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g== + version "3.2.4" + resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c" + integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ== asynckit@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" - integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= + integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== at-least-node@^1.0.0: version "1.0.0" @@ -541,12 +582,12 @@ at-least-node@^1.0.0: aws-sign2@~0.7.0: version "0.7.0" resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" - integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= + integrity sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA== aws4@^1.8.0: - version "1.11.0" - resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59" - integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA== + version "1.12.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.12.0.tgz#ce1c9d143389679e253b314241ea9aa5cec980d3" + integrity sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg== bail@^1.0.0: version "1.0.5" @@ -561,12 +602,12 @@ balanced-match@^1.0.0: base16@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/base16/-/base16-1.0.0.tgz#e297f60d7ec1014a7a971a39ebc8a98c0b681e70" - integrity sha1-4pf2DX7BAUp6lxo568ipjAtoHnA= + integrity sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ== bcrypt-pbkdf@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" - integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= + integrity sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w== dependencies: tweetnacl "^0.14.3" @@ -593,7 +634,7 @@ brace-expansion@^1.1.7: balanced-match "^1.0.0" concat-map "0.0.1" -braces@~3.0.2: +braces@^3.0.2, braces@~3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== @@ -610,7 +651,7 @@ bs-logger@0.x: buffer-crc32@~0.2.3: version "0.2.13" resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" - integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI= + integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== buffer-from@^1.0.0: version "1.1.2" @@ -638,7 +679,12 @@ callsites@^3.0.0: caseless@~0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" - integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= + integrity sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw== + +chalk@5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz#249623b7d66869c673699fb66d65723e54dfcfb3" + integrity sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA== chalk@^1.0.0, chalk@^1.1.3: version "1.1.3" @@ -691,7 +737,7 @@ chardet@^0.7.0: check-more-types@^2.24.0: version "2.24.0" resolved "https://registry.yarnpkg.com/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600" - integrity sha1-FCD/sQ/URNz8ebQ4kbv//TKoRgA= + integrity sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA== chokidar@3.5.3: version "3.5.3" @@ -719,9 +765,14 @@ ci-info@^3.2.0: integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw== classnames@^2.2, classnames@^2.2.5, classnames@^2.2.6: - version "2.3.1" - resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.3.1.tgz#dfcfa3891e306ec1dad105d0e88f4417b8535e8e" - integrity sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA== + version "2.3.2" + resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.3.2.tgz#351d813bf0137fcc6a76a16b88208d2560a0d924" + integrity sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw== + +clean-stack@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" + integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== cli-cursor@^1.0.2: version "1.0.2" @@ -762,6 +813,22 @@ cli-truncate@^0.2.1: slice-ansi "0.0.4" string-width "^1.0.1" +cli-truncate@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7" + integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg== + dependencies: + slice-ansi "^3.0.0" + string-width "^4.2.0" + +cli-truncate@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-3.1.0.tgz#3f23ab12535e3d73e839bb43e73c9de487db1389" + integrity sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA== + dependencies: + slice-ansi "^5.0.0" + string-width "^5.0.0" + cli-width@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" @@ -794,13 +861,18 @@ color-convert@^2.0.1: color-name@1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== color-name@~1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== +colorette@^2.0.19: + version "2.0.20" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" + integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== + colors@^1.1.2: version "1.4.0" resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78" @@ -818,20 +890,25 @@ comma-separated-tokens@^1.0.0: resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz#632b80b6117867a158f1080ad498b2fbe7e3f5ea" integrity sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw== +commander@^10.0.0: + version "10.0.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06" + integrity sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug== + commander@^5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae" integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg== common-tags@^1.8.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.0.tgz#8e3153e542d4a39e9b10554434afaaf98956a937" - integrity sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw== + version "1.8.2" + resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.2.tgz#94ebb3c076d26032745fd54face7f688ef5ac9c6" + integrity sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA== concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== concat-stream@^1.6.2: version "1.6.2" @@ -846,7 +923,7 @@ concat-stream@^1.6.2: core-util-is@1.0.2, core-util-is@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" - integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= + integrity sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ== cross-spawn@^6.0.5: version "6.0.5" @@ -859,7 +936,7 @@ cross-spawn@^6.0.5: shebang-command "^1.2.0" which "^1.2.9" -cross-spawn@^7.0.0: +cross-spawn@^7.0.0, cross-spawn@^7.0.3: version "7.0.3" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== @@ -869,9 +946,9 @@ cross-spawn@^7.0.0: which "^2.0.1" csstype@^3.0.2: - version "3.0.8" - resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.8.tgz#d2266a792729fb227cd216fb572f43728e1ad340" - integrity sha512-jXKhWqXPmlUeoQnF/EhTtTl4C9SnrxSH/jZUih3jmO6lBKr99rP3/+FmrMj4EFpOXzMtXHAZkd3x0E6h6Fgflw== + version "3.1.2" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b" + integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ== cypress-watch-and-reload@^1.10.6: version "1.10.6" @@ -931,7 +1008,7 @@ cypress@^6.0.0: dashdash@^1.12.0: version "1.14.1" resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" - integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= + integrity sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g== dependencies: assert-plus "^1.0.0" @@ -945,7 +1022,7 @@ dayjs@^1.9.3: resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.7.tgz#4b296922642f70999544d1144a2c25730fce63e2" integrity sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ== -debug@4.3.2, debug@^2.6.9, debug@^3.1.0, debug@^4.0.1: +debug@4.3.2, debug@^2.6.9, debug@^3.1.0, debug@^4.0.1, debug@^4.3.4: version "3.2.7" resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== @@ -969,17 +1046,18 @@ deep-is@~0.1.3: resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== -define-properties@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" - integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== +define-properties@^1.1.3, define-properties@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5" + integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA== dependencies: - object-keys "^1.0.12" + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" delayed-stream@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" - integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= + integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== doctrine@^3.0.0: version "3.0.0" @@ -995,52 +1073,50 @@ dom-helpers@^3.4.0: dependencies: "@babel/runtime" "^7.1.2" -dom-serializer@^1.0.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.3.2.tgz#6206437d32ceefaec7161803230c7a20bc1b4d91" - integrity sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig== +dom-serializer@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53" + integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== dependencies: - domelementtype "^2.0.1" - domhandler "^4.2.0" - entities "^2.0.0" + domelementtype "^2.3.0" + domhandler "^5.0.2" + entities "^4.2.0" dom4@^2.1.5: version "2.1.6" resolved "https://registry.yarnpkg.com/dom4/-/dom4-2.1.6.tgz#c90df07134aa0dbd81ed4d6ba1237b36fc164770" integrity sha512-JkCVGnN4ofKGbjf5Uvc8mmxaATIErKQKSgACdBXpsQ3fY6DlIpAyWfiBSrGkttATssbDCp3psiAKWXk5gmjycA== -domelementtype@^2.0.1, domelementtype@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.2.0.tgz#9a0b6c2782ed6a1c7323d42267183df9bd8b1d57" - integrity sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A== +domelementtype@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" + integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== -domhandler@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-3.3.0.tgz#6db7ea46e4617eb15cf875df68b2b8524ce0037a" - integrity sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA== +domhandler@^5.0, domhandler@^5.0.2, domhandler@^5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31" + integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== dependencies: - domelementtype "^2.0.1" + domelementtype "^2.3.0" -domhandler@^4.2.0: - version "4.2.2" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.2.2.tgz#e825d721d19a86b8c201a35264e226c678ee755f" - integrity sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w== +domutils@^3.0.1: + version "3.1.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.1.0.tgz#c47f551278d3dc4b0b1ab8cbb42d751a6f0d824e" + integrity sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA== dependencies: - domelementtype "^2.2.0" + dom-serializer "^2.0.0" + domelementtype "^2.3.0" + domhandler "^5.0.3" -domutils@^2.4.2: - version "2.8.0" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" - integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== - dependencies: - dom-serializer "^1.0.1" - domelementtype "^2.2.0" - domhandler "^4.2.0" +eastasianwidth@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" + integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== ecc-jsbn@~0.1.1: version "0.1.2" resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" - integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= + integrity sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw== dependencies: jsbn "~0.1.0" safer-buffer "^2.1.0" @@ -1060,6 +1136,11 @@ emoji-regex@^8.0.0: resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== +emoji-regex@^9.2.2: + version "9.2.2" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" + integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== + end-of-stream@^1.1.0: version "1.4.4" resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" @@ -1067,20 +1148,20 @@ end-of-stream@^1.1.0: dependencies: once "^1.4.0" -entities@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" - integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== +entities@^4.2.0, entities@^4.4.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" + integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== escape-carriage@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/escape-carriage/-/escape-carriage-1.3.0.tgz#71006b2d4da8cb6828686addafcb094239c742f3" - integrity sha512-ATWi5MD8QlAGQOeMgI8zTp671BG8aKvAC0M7yenlxU4CRLGO/sKthxVUyjiOFKjHdIo+6dZZUNFgHFeVEaKfGQ== + version "1.3.1" + resolved "https://registry.yarnpkg.com/escape-carriage/-/escape-carriage-1.3.1.tgz#842658e5422497b1232585e517dc813fc6a86170" + integrity sha512-GwBr6yViW3ttx1kb7/Oh+gKQ1/TrhYwxKqVmg5gS+BK+Qe2KrOa/Vh7w3HPBvgGf0LfcDGoY9I6NHKoA5Hozhw== escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== eslint-scope@^5.0.0: version "5.1.1" @@ -1160,9 +1241,9 @@ esprima@^4.0.0: integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== esquery@^1.0.1: - version "1.4.0" - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" - integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== + version "1.5.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" + integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== dependencies: estraverse "^5.1.0" @@ -1208,6 +1289,21 @@ execa@^4.0.2: signal-exit "^3.0.2" strip-final-newline "^2.0.0" +execa@^7.0.0: + version "7.1.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-7.1.1.tgz#3eb3c83d239488e7b409d48e8813b76bb55c9c43" + integrity sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q== + dependencies: + cross-spawn "^7.0.3" + get-stream "^6.0.1" + human-signals "^4.3.0" + is-stream "^3.0.0" + merge-stream "^2.0.0" + npm-run-path "^5.1.0" + onetime "^6.0.0" + signal-exit "^3.0.7" + strip-final-newline "^3.0.0" + executable@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/executable/-/executable-4.1.1.tgz#41532bff361d3e57af4d763b70582db18f5d133c" @@ -1247,12 +1343,12 @@ extract-zip@^1.7.0: extsprintf@1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" - integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= + integrity sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g== extsprintf@^1.2.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" - integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= + version "1.4.1" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.1.tgz#8d172c064867f235c0c84a596806d279bf4bcc07" + integrity sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA== fast-deep-equal@^3.1.1: version "3.1.3" @@ -1267,12 +1363,7 @@ fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0: fast-levenshtein@~2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" - integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= - -fast-memoize@^2.5.1: - version "2.5.2" - resolved "https://registry.yarnpkg.com/fast-memoize/-/fast-memoize-2.5.2.tgz#79e3bb6a4ec867ea40ba0e7146816f6cdce9b57e" - integrity sha512-Ue0LwpDYErFbmNnZSF0UH6eImUwDmogUO1jyE+JbN2gsQz/jICm1Ve7t9QT0rNSsfJt+Hs4/S3GnsDVjL4HVrw== + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== fault@^1.0.0: version "1.0.4" @@ -1284,7 +1375,7 @@ fault@^1.0.0: fd-slicer@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" - integrity sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4= + integrity sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g== dependencies: pend "~1.2.0" @@ -1341,7 +1432,7 @@ flatted@^2.0.0: forever-agent@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" - integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= + integrity sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw== form-data@~2.3.2: version "2.3.3" @@ -1355,7 +1446,7 @@ form-data@~2.3.2: format@^0.2.0: version "0.2.2" resolved "https://registry.yarnpkg.com/format/-/format-0.2.2.tgz#d6170107e9efdc4ed30c9dc39016df942b5cb58b" - integrity sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs= + integrity sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww== fs-extra@^9.0.1: version "9.1.0" @@ -1370,7 +1461,7 @@ fs-extra@^9.0.1: fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== fsevents@~2.3.2: version "2.3.2" @@ -1385,16 +1476,22 @@ function-bind@^1.1.1: functional-red-black-tree@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" - integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= + integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g== -get-intrinsic@^1.0.2: - version "1.1.1" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" - integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== +functions-have-names@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + +get-intrinsic@^1.0.2, get-intrinsic@^1.1.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" + integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== dependencies: function-bind "^1.1.1" has "^1.0.3" - has-symbols "^1.0.1" + has-proto "^1.0.1" + has-symbols "^1.0.3" get-stream@^5.0.0: version "5.2.0" @@ -1403,6 +1500,11 @@ get-stream@^5.0.0: dependencies: pump "^3.0.0" +get-stream@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + getos@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/getos/-/getos-3.2.1.tgz#0134d1f4e00eb46144c5a9c0ac4dc087cbb27dc5" @@ -1413,7 +1515,7 @@ getos@^3.2.1: getpass@^0.1.1: version "0.1.7" resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" - integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= + integrity sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng== dependencies: assert-plus "^1.0.0" @@ -1424,19 +1526,7 @@ glob-parent@^5.0.0, glob-parent@^6.0.1, glob-parent@~5.1.2: dependencies: is-glob "^4.0.3" -glob@^7.1.3: - version "7.1.7" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" - integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - -glob@^7.1.7: +glob@^7.1.3, glob@^7.1.7: version "7.2.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== @@ -1462,12 +1552,7 @@ globals@^12.1.0: dependencies: type-fest "^0.8.1" -graceful-fs@^4.1.6, graceful-fs@^4.2.0: - version "4.2.8" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz#e412b8d33f5e006593cbd3cee6df9f2cebbe802a" - integrity sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg== - -graceful-fs@^4.2.9: +graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.9: version "4.2.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== @@ -1500,17 +1585,29 @@ has-ansi@^2.0.0: has-flag@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== has-flag@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== -has-symbols@^1.0.1, has-symbols@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" - integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== +has-property-descriptors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" + integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== + dependencies: + get-intrinsic "^1.1.1" + +has-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" + integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== + +has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== has-tostringtag@^1.0.0: version "1.0.0" @@ -1548,24 +1645,23 @@ highlight.js@^10.4.1, highlight.js@~10.7.0: integrity sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A== html-to-react@^1.3.4: - version "1.4.5" - resolved "https://registry.yarnpkg.com/html-to-react/-/html-to-react-1.4.5.tgz#59091c11021d1ef315ef738460abb6a4a41fe1ce" - integrity sha512-KONZUDFPg5OodWaQu2ymfkDmU0JA7zB1iPfvyHehTmMUZnk0DS7/TyCMTzsLH6b4BvxX15g88qZCXFhJWktsmA== + version "1.6.0" + resolved "https://registry.yarnpkg.com/html-to-react/-/html-to-react-1.6.0.tgz#568c38b85e81086ed1dedacd031f42dd5616b557" + integrity sha512-W7HvCu2fipgz3F7fpEtIt2Ty6XcqFGQXOorR4+HQAk72y9mTtUH3BmJ43BEvXQHO+bt//z1Hbfe6JzojpSC/9w== dependencies: - domhandler "^3.3.0" - htmlparser2 "^5.0" + domhandler "^5.0" + htmlparser2 "^8.0" lodash.camelcase "^4.3.0" - ramda "^0.27.1" -htmlparser2@^5.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-5.0.1.tgz#7daa6fc3e35d6107ac95a4fc08781f091664f6e7" - integrity sha512-vKZZra6CSe9qsJzh0BjBGXo8dvzNsq/oGvsjfRdOrrryfeD9UOBEEQdeoqCRmKZchF5h2zOBMQ6YuQ0uRUmdbQ== +htmlparser2@^8.0: + version "8.0.2" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-8.0.2.tgz#f002151705b383e62433b5cf466f5b716edaec21" + integrity sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA== dependencies: - domelementtype "^2.0.1" - domhandler "^3.3.0" - domutils "^2.4.2" - entities "^2.0.0" + domelementtype "^2.3.0" + domhandler "^5.0.3" + domutils "^3.0.1" + entities "^4.4.0" http-signature@~1.2.0: version "1.2.0" @@ -1581,6 +1677,11 @@ human-signals@^1.1.1: resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== +human-signals@^4.3.0: + version "4.3.1" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-4.3.1.tgz#ab7f811e851fca97ffbd2c1fe9a958964de321b2" + integrity sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ== + iconv-lite@^0.4.24: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" @@ -1593,10 +1694,10 @@ ignore@^4.0.6: resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== -immer@^9.0.1: - version "9.0.6" - resolved "https://registry.yarnpkg.com/immer/-/immer-9.0.6.tgz#7a96bf2674d06c8143e327cbf73539388ddf1a73" - integrity sha512-G95ivKpy+EvVAnAab4fVa4YGYn24J1SpEktnJX7JJ45Bd7xqME/SCplFzYFmTbrkwZbQ4xJK1xMTUYBkN6pWsQ== +immer@^9.0.21: + version "9.0.21" + resolved "https://registry.yarnpkg.com/immer/-/immer-9.0.21.tgz#1e025ea31a40f24fb064f1fef23e931496330176" + integrity sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA== import-fresh@^3.0.0: version "3.3.0" @@ -1609,17 +1710,22 @@ import-fresh@^3.0.0: imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== indent-string@^3.0.0: version "3.2.0" resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" integrity sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok= +indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + inflight@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== dependencies: once "^1.3.0" wrappy "1" @@ -1708,7 +1814,7 @@ is-decimal@^1.0.0: is-extglob@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== is-fullwidth-code-point@^1.0.0: version "1.0.0" @@ -1720,13 +1826,18 @@ is-fullwidth-code-point@^1.0.0: is-fullwidth-code-point@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" - integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= + integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w== is-fullwidth-code-point@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== +is-fullwidth-code-point@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz#fae3167c729e7463f8461ce512b080a49268aa88" + integrity sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ== + is-glob@^4.0.0, is-glob@^4.0.3, is-glob@~4.0.1: version "4.0.3" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" @@ -1767,7 +1878,7 @@ is-path-inside@^3.0.1: is-plain-obj@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" - integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= + integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== is-promise@^2.1.0: version "2.2.2" @@ -1792,10 +1903,15 @@ is-stream@^2.0.0: resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== +is-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac" + integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== + is-typedarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" - integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= + integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== is-unicode-supported@^0.1.0: version "0.1.0" @@ -1820,12 +1936,12 @@ isarray@~1.0.0: isexe@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== isstream@~0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" - integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= + integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g== jest-dom@^4.0.0: version "4.0.0" @@ -1860,13 +1976,18 @@ js-yaml@^3.13.1: jsbn@~0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" - integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= + integrity sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg== json-schema-traverse@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + json-schema@0.2.3, json-schema@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz#f7de4cf6efab838ebaeb3236474cbba5a1930ab5" @@ -1875,12 +1996,12 @@ json-schema@0.2.3, json-schema@^0.4.0: json-stable-stringify-without-jsonify@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" - integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= + integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== json-stringify-safe@~5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" - integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= + integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== json5@^2.2.3: version "2.2.3" @@ -1909,16 +2030,40 @@ jsprim@^1.2.2: lazy-ass@^1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513" - integrity sha1-eZllXoZGwX8In90YfRUNMyTVRRM= + integrity sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw== levn@^0.3.0, levn@~0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" - integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= + integrity sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA== dependencies: prelude-ls "~1.1.2" type-check "~0.3.2" +lilconfig@2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" + integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== + +lint-staged@^13.1.0: + version "13.2.3" + resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-13.2.3.tgz#f899aad6c093473467e9c9e316e3c2d8a28f87a7" + integrity sha512-zVVEXLuQIhr1Y7R7YAWx4TZLdvuzk7DnmrsTNL0fax6Z3jrpFcas+vKbzxhhvp6TA55m1SQuWkpzI1qbfDZbAg== + dependencies: + chalk "5.2.0" + cli-truncate "^3.1.0" + commander "^10.0.0" + debug "^4.3.4" + execa "^7.0.0" + lilconfig "2.1.0" + listr2 "^5.0.7" + micromatch "^4.0.5" + normalize-path "^3.0.0" + object-inspect "^1.12.3" + pidtree "^0.6.0" + string-argv "^0.3.1" + yaml "^2.2.2" + listr-silent-renderer@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" @@ -1948,6 +2093,20 @@ listr-verbose-renderer@^0.5.0: date-fns "^1.27.2" figures "^2.0.0" +listr2@^5.0.7: + version "5.0.8" + resolved "https://registry.yarnpkg.com/listr2/-/listr2-5.0.8.tgz#a9379ffeb4bd83a68931a65fb223a11510d6ba23" + integrity sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA== + dependencies: + cli-truncate "^2.1.0" + colorette "^2.0.19" + log-update "^4.0.0" + p-map "^4.0.0" + rfdc "^1.3.0" + rxjs "^7.8.0" + through "^2.3.8" + wrap-ansi "^7.0.0" + listr@^0.14.3: version "0.14.3" resolved "https://registry.yarnpkg.com/listr/-/listr-0.14.3.tgz#2fea909604e434be464c50bddba0d496928fa586" @@ -1966,22 +2125,22 @@ listr@^0.14.3: load-script@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/load-script/-/load-script-1.0.0.tgz#0491939e0bee5643ee494a7e3da3d2bac70c6ca4" - integrity sha1-BJGTngvuVkPuSUp+PaPSuscMbKQ= + integrity sha512-kPEjMFtZvwL9TaZo0uZ2ml+Ye9HUMmPwbYRJ324qF9tqMejwykJ5ggTyvzmrbBeapCAbk98BSbTeovHEEP1uCA== lodash.camelcase@^4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" - integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY= + integrity sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA== lodash.curry@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/lodash.curry/-/lodash.curry-4.1.1.tgz#248e36072ede906501d75966200a86dab8b23170" - integrity sha1-JI42By7ekGUB11lmIAqG2riyMXA= + integrity sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA== lodash.flow@^3.5.0: version "3.5.0" resolved "https://registry.yarnpkg.com/lodash.flow/-/lodash.flow-3.5.0.tgz#87bf40292b8cf83e4e8ce1a3ae4209e20071675a" - integrity sha1-h79AKSuM+D5OjOGjrkIJ4gBxZ1o= + integrity sha512-ff3BX/tSioo+XojX4MOsOMhJw0nZoUEF011LX8g8d3gvjVbxd89cCio4BCXronjxcTUIJUoqKEUA+n4CqvvRPw== lodash.memoize@4.x: version "4.1.2" @@ -1991,7 +2150,7 @@ lodash.memoize@4.x: lodash.once@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" - integrity sha1-DdOXEhPHxW34gJd9UEyI+0cal6w= + integrity sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg== lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.21: version "4.17.21" @@ -2022,6 +2181,16 @@ log-update@^2.3.0: cli-cursor "^2.0.0" wrap-ansi "^3.0.1" +log-update@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1" + integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg== + dependencies: + ansi-escapes "^4.3.0" + cli-cursor "^3.1.0" + slice-ansi "^4.0.0" + wrap-ansi "^6.2.0" + loose-envify@^1.0.0, loose-envify@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" @@ -2066,17 +2235,30 @@ merge-stream@^2.0.0: resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== -mime-db@1.49.0: - version "1.49.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.49.0.tgz#f3dfde60c99e9cf3bc9701d687778f537001cbed" - integrity sha512-CIc8j9URtOVApSFCQIF+VBkX1RwXp/oMMOrqdyXSBXq5RWNEsRfyj1kiRnQgmNXmHxPoFIxOroKA3zcU9P+nAA== +micromatch@^4.0.5: + version "4.0.5" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" + integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + dependencies: + braces "^3.0.2" + picomatch "^2.3.1" + +mime-db@1.52.0: + version "1.52.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== mime-types@^2.1.12, mime-types@~2.1.19: - version "2.1.32" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.32.tgz#1d00e89e7de7fe02008db61001d9e02852670fd5" - integrity sha512-hJGaVS4G4c9TSMYh2n6SQAGrC4RnfU+daP8G7cSCmaqNjiOoUY0VHCMS42pxnQmVF1GWwFhbHWn3RIxCqTmZ9A== + version "2.1.35" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== dependencies: - mime-db "1.49.0" + mime-db "1.52.0" + +mime@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-3.0.0.tgz#b374550dca3a0c18443b0c950a6a58f1931cf7a7" + integrity sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A== mimic-fn@^1.0.0: version "1.2.0" @@ -2088,6 +2270,11 @@ mimic-fn@^2.1.0: resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== +mimic-fn@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc" + integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== + minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1: version "3.1.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" @@ -2096,9 +2283,9 @@ minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1: brace-expansion "^1.1.7" minimist@^1.2.5, minimist@^1.2.6: - version "1.2.6" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" - integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== + version "1.2.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== mkdirp@^0.5.1: version "0.5.6" @@ -2114,6 +2301,11 @@ mkdirp@^0.5.4: dependencies: minimist "^1.2.5" +mock-fs@^4.12.0: + version "4.14.0" + resolved "https://registry.yarnpkg.com/mock-fs/-/mock-fs-4.14.0.tgz#ce5124d2c601421255985e6e94da80a7357b1b18" + integrity sha512-qYvlv/exQ4+svI3UOvPUpLDF0OMX5euvUH0Ny4N5QyRyhNdgAgUrVH3iUINSzEPLvx0kbo/Bp28GJKIqvE7URw== + moment@^2.29.1: version "2.29.4" resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.4.tgz#3dbe052889fe7c1b2ed966fcb3a77328964ef108" @@ -2132,7 +2324,7 @@ mute-stream@0.0.8: natural-compare@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" - integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== nice-try@^1.0.4: version "1.0.5" @@ -2156,6 +2348,13 @@ npm-run-path@^4.0.0: dependencies: path-key "^3.0.0" +npm-run-path@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.1.0.tgz#bc62f7f3f6952d9894bd08944ba011a6ee7b7e00" + integrity sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q== + dependencies: + path-key "^4.0.0" + number-is-nan@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" @@ -2169,7 +2368,12 @@ oauth-sign@~0.9.0: object-assign@^4.1.0, object-assign@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" - integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + +object-inspect@^1.12.3: + version "1.12.3" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" + integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== object-is@^1.0.1: version "1.1.5" @@ -2179,7 +2383,7 @@ object-is@^1.0.1: call-bind "^1.0.2" define-properties "^1.1.3" -object-keys@^1.0.12, object-keys@^1.1.1: +object-keys@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== @@ -2187,7 +2391,7 @@ object-keys@^1.0.12, object-keys@^1.1.1: once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== dependencies: wrappy "1" @@ -2210,6 +2414,13 @@ onetime@^5.1.0: dependencies: mimic-fn "^2.1.0" +onetime@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-6.0.0.tgz#7c24c18ed1fd2e9bca4bd26806a33613c77d34b4" + integrity sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ== + dependencies: + mimic-fn "^4.0.0" + optionator@^0.8.3: version "0.8.3" resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" @@ -2225,18 +2436,25 @@ optionator@^0.8.3: os-tmpdir@~1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" - integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= + integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== ospath@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/ospath/-/ospath-1.2.2.tgz#1276639774a3f8ef2572f7fe4280e0ea4550c07b" - integrity sha1-EnZjl3Sj+O8lcvf+QoDg6kVQwHs= + integrity sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA== p-map@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175" integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw== +p-map@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" + integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== + dependencies: + aggregate-error "^3.0.0" + parent-module@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" @@ -2271,42 +2489,52 @@ parse-entities@^2.0.0: path-is-absolute@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== path-key@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" - integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= + integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== path-key@^3.0.0, path-key@^3.1.0: version "3.1.1" resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== +path-key@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18" + integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== + pend@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" - integrity sha1-elfrVQpng/kRUzH89GY9XI4AelA= + integrity sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg== performance-now@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" - integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= + integrity sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow== -picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3: +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== +pidtree@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.6.0.tgz#90ad7b6d42d5841e69e0a2419ef38f8883aa057c" + integrity sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g== + pify@^2.2.0: version "2.3.0" resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" - integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= + integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== plotly.js-dist@^2.2.0: - version "2.4.1" - resolved "https://registry.yarnpkg.com/plotly.js-dist/-/plotly.js-dist-2.4.1.tgz#0afaf84132427720eda625c5908d9981318ab348" - integrity sha512-OsZgXlUJaxib+6HjrEaux61FaqNVLDiotNKF5JdoacigvAWoiTRUAD/K1x560jFR3fDzXaZ4mpXBbJukc5i3HQ== + version "2.24.2" + resolved "https://registry.yarnpkg.com/plotly.js-dist/-/plotly.js-dist-2.24.2.tgz#31d067343cdd944f20ce78e7d16fef7f0ec90efd" + integrity sha512-J5Jg6mAkMwzjHsfLlZaZiS11ntKvdkyP5C1Re2SFL5dXL7Nb66BGGpu3UopbIUaopLVJBiYu9kvOfUTjy0rHFQ== popper.js@^1.14.4, popper.js@^1.16.1: version "1.16.1" @@ -2327,17 +2555,17 @@ postinstall@^0.7.4: prelude-ls@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" - integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= + integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== pretty-bytes@^5.4.1: version "5.6.0" resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== -prismjs@^1.22.0, prismjs@~1.24.0: - version "1.27.0" - resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.27.0.tgz#bb6ee3138a0b438a3653dd4d6ce0cc6510a45057" - integrity sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA== +prismjs@^1.22.0, prismjs@^1.27.0, prismjs@~1.27.0: + version "1.29.0" + resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.29.0.tgz#f113555a8fa9b57c35e637bba27509dcf802dd12" + integrity sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q== process-nextick-args@~2.0.0: version "2.0.1" @@ -2349,16 +2577,7 @@ progress@^2.0.0: resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== -prop-types@^15.5.10, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2: - version "15.7.2" - resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" - integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== - dependencies: - loose-envify "^1.4.0" - object-assign "^4.1.1" - react-is "^16.8.1" - -prop-types@^15.8.1: +prop-types@^15, prop-types@^15.5.10, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1: version "15.8.1" resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== @@ -2393,14 +2612,14 @@ punycode@1.3.2: integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= punycode@^2.1.0, punycode@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" - integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + version "2.3.0" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" + integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== pure-color@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/pure-color/-/pure-color-1.3.0.tgz#1fe064fb0ac851f0de61320a8bf796836422f33e" - integrity sha1-H+Bk+wrIUfDeYTIKi/eWg2Qi8z4= + integrity sha512-QFADYnsVoBMw1srW7OVKEYjG+MbIa49s54w1MA1EDY6r2r/sTcKKYqRX1f4GYvnXP7eN/Pe9HFcX+hwzmrXRHA== qs@~6.5.2, qs@~6.5.3: version "6.5.3" @@ -2417,22 +2636,15 @@ querystringify@^2.1.1: resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== -ramda@^0.27.1: - version "0.27.1" - resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.27.1.tgz#66fc2df3ef873874ffc2da6aa8984658abacf5c9" - integrity sha512-PgIdVpn5y5Yns8vqb8FzBUEYn98V3xcPgawAkkgj0YJ0qDsnHCiNmZYfOGMgOvoB0eWFLpYbhxUR3mxfDIMvpw== - ramda@~0.27.1: version "0.27.2" resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.27.2.tgz#84463226f7f36dc33592f6f4ed6374c48306c3f1" integrity sha512-SbiLPU40JuJniHexQSAgad32hfwd+DRUdwF2PlVuI5RZD0/vahUco7R8vD86J/tcEKKF9vZrUVwgtmGCqlCKyA== re-resizable@^6.5.0: - version "6.9.0" - resolved "https://registry.yarnpkg.com/re-resizable/-/re-resizable-6.9.0.tgz#9c3059b389ced6ade602234cc5bb1e12d231cd47" - integrity sha512-3cUDG81ylyqI0Pdgle/RHwwRYq0ORZzsUaySOCO8IbEtNyaRtrIHYm/jMQ5pjcNiKCxR3vsSymIQZHwJq4gg2Q== - dependencies: - fast-memoize "^2.5.1" + version "6.9.9" + resolved "https://registry.yarnpkg.com/re-resizable/-/re-resizable-6.9.9.tgz#99e8b31c67a62115dc9c5394b7e55892265be216" + integrity sha512-l+MBlKZffv/SicxDySKEEh42hR6m5bAHfNu3Tvxks2c4Ah+ldnWjfnVRwxo/nxF27SsUsxDS0raAzFuJNKABXA== react-base16-styling@^0.7.0: version "0.7.0" @@ -2455,7 +2667,7 @@ react-graph-vis@^1.0.5: vis-data "^7.1.2" vis-network "^9.0.0" -react-is@^16.13.1, react-is@^16.8.1, react-is@^16.8.6: +react-is@^16.13.1, react-is@^16.8.6: version "16.13.1" resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== @@ -2488,18 +2700,18 @@ react-markdown@^4.0.0: xtend "^4.0.1" react-paginate@^8.1.3: - version "8.1.3" - resolved "https://registry.yarnpkg.com/react-paginate/-/react-paginate-8.1.3.tgz#cd6f3cb8a56b47617a61a6a52e3d7c662ad9b91b" - integrity sha512-zBp80DBRcaeBnAeHUfbGKD0XHfbGNUolQ+S60Ymfs8o7rusYaJYZMAt1j93ADDNLlzRmJ0tMF/NeTlcdKf7dlQ== + version "8.2.0" + resolved "https://registry.yarnpkg.com/react-paginate/-/react-paginate-8.2.0.tgz#947c3dcb444a6c16c1bcf8361871aa135baa3dcd" + integrity sha512-sJCz1PW+9PNIjUSn919nlcRVuleN2YPoFBOvL+6TPgrH/3lwphqiSOgdrLafLdyLDxsgK+oSgviqacF4hxsDIw== dependencies: - prop-types "^15.6.1" + prop-types "^15" react-plotly.js@^2.5.1: - version "2.5.1" - resolved "https://registry.yarnpkg.com/react-plotly.js/-/react-plotly.js-2.5.1.tgz#11182bf599ef11a0dbfcd171c6f5645535a2b486" - integrity sha512-Oya14whSHvPsYXdI0nHOGs1pZhMzV2edV7HAW1xFHD58Y73m/LbG2Encvyz1tztL0vfjph0JNhiwO8cGBJnlhg== + version "2.6.0" + resolved "https://registry.yarnpkg.com/react-plotly.js/-/react-plotly.js-2.6.0.tgz#ad6b68ee64f1b5cfa142ee92c59687f9c2c09209" + integrity sha512-g93xcyhAVCSt9kV1svqG1clAEdL6k3U+jjuSzfTV7owaSU9Go6Ph8bl25J+jKfKvIGAEYpe4qj++WHJuc9IaeA== dependencies: - prop-types "^15.7.2" + prop-types "^15.8.1" react-popper@^1.3.7: version "1.3.11" @@ -2515,20 +2727,20 @@ react-popper@^1.3.7: warning "^4.0.2" react-syntax-highlighter@^13.0.0, react-syntax-highlighter@^15.4.3: - version "15.4.4" - resolved "https://registry.yarnpkg.com/react-syntax-highlighter/-/react-syntax-highlighter-15.4.4.tgz#dc9043f19e7bd063ff3ea78986d22a6eaa943b2a" - integrity sha512-PsOFHNTzkb3OroXdoR897eKN5EZ6grht1iM+f1lJSq7/L0YVnkJaNVwC3wEUYPOAmeyl5xyer1DjL6MrumO6Zw== + version "15.5.0" + resolved "https://registry.yarnpkg.com/react-syntax-highlighter/-/react-syntax-highlighter-15.5.0.tgz#4b3eccc2325fa2ec8eff1e2d6c18fa4a9e07ab20" + integrity sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg== dependencies: "@babel/runtime" "^7.3.1" highlight.js "^10.4.1" lowlight "^1.17.0" - prismjs "^1.22.0" - refractor "^3.2.0" + prismjs "^1.27.0" + refractor "^3.6.0" react-toggle@^4.1.1: - version "4.1.2" - resolved "https://registry.yarnpkg.com/react-toggle/-/react-toggle-4.1.2.tgz#b00500832f925ad524356d909821821ae39f6c52" - integrity sha512-4Ohw31TuYQdhWfA6qlKafeXx3IOH7t4ZHhmRdwsm1fQREwOBGxJT+I22sgHqR/w8JRdk+AeMCJXPImEFSrNXow== + version "4.1.3" + resolved "https://registry.yarnpkg.com/react-toggle/-/react-toggle-4.1.3.tgz#99193392cca8e495710860c49f55e74c4e6cf452" + integrity sha512-WoPrvbwfQSvoagbrDnXPrlsxwzuhQIrs+V0I162j/s+4XPgY/YDAUmHSeWiroznfI73wj+MBydvW95zX8ABbSg== dependencies: classnames "^2.2.5" @@ -2567,39 +2779,40 @@ redux-persist@^6.0.0: resolved "https://registry.yarnpkg.com/redux-persist/-/redux-persist-6.0.0.tgz#b4d2972f9859597c130d40d4b146fecdab51b3a8" integrity sha512-71LLMbUq2r02ng2We9S215LtPu3fY0KgaGE0k8WRgl6RkqxtGfl7HUozz1Dftwsb0D/5mZ8dwAaPbtnzfvbEwQ== -redux-thunk@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/redux-thunk/-/redux-thunk-2.3.0.tgz#51c2c19a185ed5187aaa9a2d08b666d0d6467622" - integrity sha512-km6dclyFnmcvxhAcrQV2AkZmPQjzPDjgVlQtR0EQjxZPyJ0BnMf3in1ryuR8A2qU0HldVRfxYXbFSKlI3N7Slw== +redux-thunk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/redux-thunk/-/redux-thunk-2.4.2.tgz#b9d05d11994b99f7a91ea223e8b04cf0afa5ef3b" + integrity sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q== -redux@^4.1.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/redux/-/redux-4.1.1.tgz#76f1c439bb42043f985fbd9bf21990e60bd67f47" - integrity sha512-hZQZdDEM25UY2P493kPYuKqviVwZ58lEmGQNeQ+gXa+U0gYPUBf7NKYazbe3m+bs/DzM/ahN12DbF+NG8i0CWw== +redux@^4.2.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/redux/-/redux-4.2.1.tgz#c08f4306826c49b5e9dc901dee0452ea8fce6197" + integrity sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w== dependencies: "@babel/runtime" "^7.9.2" -refractor@^3.2.0: - version "3.4.0" - resolved "https://registry.yarnpkg.com/refractor/-/refractor-3.4.0.tgz#62bd274b06c942041f390c371b676eb67cb0a678" - integrity sha512-dBeD02lC5eytm9Gld2Mx0cMcnR+zhSnsTfPpWqFaMgUMJfC9A6bcN3Br/NaXrnBJcuxnLFR90k1jrkaSyV8umg== +refractor@^3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/refractor/-/refractor-3.6.0.tgz#ac318f5a0715ead790fcfb0c71f4dd83d977935a" + integrity sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA== dependencies: hastscript "^6.0.0" parse-entities "^2.0.0" - prismjs "~1.24.0" + prismjs "~1.27.0" -regenerator-runtime@^0.13.4: - version "0.13.9" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" - integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== +regenerator-runtime@^0.13.11: + version "0.13.11" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" + integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== regexp.prototype.flags@^1.2.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz#7ef352ae8d159e758c0eadca6f8fcb4eef07be26" - integrity sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA== + version "1.5.0" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz#fe7ce25e7e4cca8db37b6634c8a2c7009199b9cb" + integrity sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA== dependencies: call-bind "^1.0.2" - define-properties "^1.1.3" + define-properties "^1.2.0" + functions-have-names "^1.2.3" regexpp@^2.0.1: version "2.0.1" @@ -2630,34 +2843,34 @@ remark-parse@^5.0.0: repeat-string@^1.5.4: version "1.6.1" resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" - integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= + integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== replace-ext@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" - integrity sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs= + integrity sha512-vuNYXC7gG7IeVNBC1xUllqCcZKRbJoSPOBhnTEcAIiKCsbuef6zO3F0Rve3isPMMoNoQRWjQwbAgAjHUHniyEA== request-progress@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/request-progress/-/request-progress-3.0.0.tgz#4ca754081c7fec63f505e4faa825aa06cd669dbe" - integrity sha1-TKdUCBx/7GP1BeT6qCWqBs1mnb4= + integrity sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg== dependencies: throttleit "^1.0.0" +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + requires-port@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== -reselect@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/reselect/-/reselect-4.0.0.tgz#f2529830e5d3d0e021408b246a206ef4ea4437f7" - integrity sha512-qUgANli03jjAyGlnbYVAV5vvnOmJnODyABz51RdBN7M4WaVu8mecZWgyQNkG8Yqe3KRGRt0l4K4B3XVEULC4CA== - -resize-observer-polyfill@^1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464" - integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg== +reselect@^4.1.8: + version "4.1.8" + resolved "https://registry.yarnpkg.com/reselect/-/reselect-4.1.8.tgz#3f5dc671ea168dccdeb3e141236f69f02eaec524" + integrity sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ== resolve-from@^4.0.0: version "4.0.0" @@ -2700,6 +2913,11 @@ restore-cursor@^3.1.0: onetime "^5.1.0" signal-exit "^3.0.2" +rfdc@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.3.0.tgz#d0b7c441ab2720d05dc4cf26e01c89631d9da08b" + integrity sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA== + rimraf@2.6.3: version "2.6.3" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" @@ -2726,6 +2944,13 @@ rxjs@^6.3.3, rxjs@^6.6.0: dependencies: tslib "^1.9.0" +rxjs@^7.8.0: + version "7.8.1" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543" + integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== + dependencies: + tslib "^2.1.0" + safe-buffer@^5.0.1, safe-buffer@^5.1.2: version "5.2.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" @@ -2741,6 +2966,13 @@ safe-buffer@~5.1.0, safe-buffer@~5.1.1: resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== +sanitize-filename@*, sanitize-filename@^1.6.3: + version "1.6.3" + resolved "https://registry.yarnpkg.com/sanitize-filename/-/sanitize-filename-1.6.3.tgz#755ebd752045931977e30b2025d340d7c9090378" + integrity sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg== + dependencies: + truncate-utf8-bytes "^1.0.0" + semver@7.x, semver@^5.5.0, semver@^6.1.2, semver@^7.5.2: version "7.5.4" resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" @@ -2751,7 +2983,7 @@ semver@7.x, semver@^5.5.0, semver@^6.1.2, semver@^7.5.2: shebang-command@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" - integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= + integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg== dependencies: shebang-regex "^1.0.0" @@ -2765,17 +2997,17 @@ shebang-command@^2.0.0: shebang-regex@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" - integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= + integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ== shebang-regex@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== -signal-exit@^3.0.2: - version "3.0.3" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" - integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== +signal-exit@^3.0.2, signal-exit@^3.0.7: + version "3.0.7" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== slice-ansi@0.0.4: version "0.0.4" @@ -2791,6 +3023,32 @@ slice-ansi@^2.1.0: astral-regex "^1.0.0" is-fullwidth-code-point "^2.0.0" +slice-ansi@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" + integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + +slice-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" + integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + +slice-ansi@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-5.0.0.tgz#b73063c57aa96f9cd881654b15294d95d285c42a" + integrity sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ== + dependencies: + ansi-styles "^6.0.0" + is-fullwidth-code-point "^4.0.0" + space-separated-tokens@^1.0.0: version "1.1.5" resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz#85f32c3d10d9682007e917414ddc5c26d1aa6899" @@ -2799,7 +3057,7 @@ space-separated-tokens@^1.0.0: sprintf-js@~1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" - integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= + integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== sshpk@^1.7.0: version "1.16.1" @@ -2821,6 +3079,11 @@ state-toggle@^1.0.0: resolved "https://registry.yarnpkg.com/state-toggle/-/state-toggle-1.0.3.tgz#e123b16a88e143139b09c6852221bc9815917dfe" integrity sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ== +string-argv@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.2.tgz#2b6d0ef24b656274d957d54e0a4bbf6153dc02b6" + integrity sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q== + string-width@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" @@ -2847,7 +3110,7 @@ string-width@^3.0.0: is-fullwidth-code-point "^2.0.0" strip-ansi "^5.1.0" -string-width@^4.1.0: +string-width@^4.1.0, string-width@^4.2.0: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -2856,14 +3119,14 @@ string-width@^4.1.0: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.1" -string-width@^4.2.0: - version "4.2.2" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5" - integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA== +string-width@^5.0.0: + version "5.1.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" + integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.0" + eastasianwidth "^0.2.0" + emoji-regex "^9.2.2" + strip-ansi "^7.0.1" string_decoder@~1.1.1: version "1.1.1" @@ -2893,25 +3156,30 @@ strip-ansi@^5.1.0, strip-ansi@^5.2.0: dependencies: ansi-regex "^4.1.0" -strip-ansi@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" - integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== - dependencies: - ansi-regex "^5.0.0" - -strip-ansi@^6.0.1: +strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== dependencies: ansi-regex "^5.0.1" +strip-ansi@^7.0.1: + version "7.1.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" + integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== + dependencies: + ansi-regex "^6.0.1" + strip-final-newline@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== +strip-final-newline@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd" + integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== + strip-json-comments@^3.0.1: version "3.1.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" @@ -2954,17 +3222,17 @@ table@^5.2.3: text-table@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" - integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== throttleit@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-1.0.0.tgz#9e785836daf46743145a5984b6268d828528ac6c" - integrity sha1-nnhYNtr0Z0MUWlmEtiaNgoUorGw= + integrity sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g== -through@^2.3.6: +through@^2.3.6, through@^2.3.8: version "2.3.8" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== tmp@^0.0.33: version "0.0.33" @@ -3012,6 +3280,13 @@ trough@^1.0.0: resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.5.tgz#b8b639cefad7d0bb2abd37d433ff8293efa5f406" integrity sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA== +truncate-utf8-bytes@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz#405923909592d56f78a5818434b0b78489ca5f2b" + integrity sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ== + dependencies: + utf8-byte-length "^1.0.1" + ts-jest@^29.1.0: version "29.1.0" resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.1.0.tgz#4a9db4104a49b76d2b368ea775b6c9535c603891" @@ -3031,27 +3306,37 @@ tslib@^1.9.0: resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== -tslib@~1.13.0: - version "1.13.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" - integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== +tslib@^2.1.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.0.tgz#b295854684dbda164e181d259a22cd779dcd7bc3" + integrity sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA== + +tslib@~2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01" + integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== + +tslib@~2.5.0: + version "2.5.3" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.3.tgz#24944ba2d990940e6e982c4bea147aba80209913" + integrity sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w== tunnel-agent@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" - integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= + integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== dependencies: safe-buffer "^5.0.1" tweetnacl@^0.14.3, tweetnacl@~0.14.0: version "0.14.5" resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" - integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= + integrity sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA== type-check@~0.3.2: version "0.3.2" resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" - integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= + integrity sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg== dependencies: prelude-ls "~1.1.2" @@ -3169,6 +3454,11 @@ url@^0.11.0: punycode "1.3.2" querystring "0.2.0" +utf8-byte-length@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/utf8-byte-length/-/utf8-byte-length-1.0.4.tgz#f45f150c4c66eee968186505ab93fcbb8ad6bf61" + integrity sha512-4+wkEYLBbWxqTahEsWrhxepcoVOJ+1z5PGIjPZxRkytcdSUaNjIjBM7Xn8E+pdSuV7SzvWovBFA54FO0JSoqhA== + util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" @@ -3177,7 +3467,7 @@ util-deprecate@~1.0.1: uuid@^2.0.1: version "2.0.3" resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" - integrity sha1-Z+LoY3lyFVMN/zGOW/nc6/1Hsho= + integrity sha512-FULf7fayPdpASncVy4DLh3xydlXEJJpvIELjYjNeQWYUZ9pclcpvCZSr2gkmN2FrrGcI7G/cJsIEwk5/8vfXpg== uuid@^3.3.2: version "3.4.0" @@ -3192,7 +3482,7 @@ v8-compile-cache@^2.0.3: verror@1.10.0: version "1.10.0" resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" - integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= + integrity sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw== dependencies: assert-plus "^1.0.0" core-util-is "1.0.2" @@ -3221,14 +3511,14 @@ vfile@^2.0.0: vfile-message "^1.0.0" vis-data@^7.1.2: - version "7.1.2" - resolved "https://registry.yarnpkg.com/vis-data/-/vis-data-7.1.2.tgz#b7d076ac79cb54f7c5e9c80f5b03b93cc8cc1fda" - integrity sha512-RPSegFxEcnp3HUEJSzhS2vBdbJ2PSsrYYuhRlpHp2frO/MfRtTYbIkkLZmPkA/Sg3pPfBlR235gcoKbtdm4mbw== + version "7.1.6" + resolved "https://registry.yarnpkg.com/vis-data/-/vis-data-7.1.6.tgz#81dcf4d024d23183cacb680ad605e644cdd6ee6c" + integrity sha512-lG7LJdkawlKSXsdcEkxe/zRDyW29a4r7N7PMwxCPxK12/QIdqxJwcMxwjVj9ozdisRhP5TyWDHZwsgjmj0g6Dg== vis-network@^9.0.0: - version "9.1.0" - resolved "https://registry.yarnpkg.com/vis-network/-/vis-network-9.1.0.tgz#511db833b68060f279bedc4a852671261d40204e" - integrity sha512-rx96L144RJWcqOa6afjiFyxZKUerRRbT/YaNMpsusHdwzxrVTO2LlduR45PeJDEztrAf3AU5l2zmiG+1ydUZCw== + version "9.1.6" + resolved "https://registry.yarnpkg.com/vis-network/-/vis-network-9.1.6.tgz#943df07e829248943656a2f19a7ec87cc1b707de" + integrity sha512-Eiwx1JleAsUqfy4pzcsFngCVlCEdjAtRPB/OwCV7PHBm+o2jtE4IZPcPITAEGUlxvL4Fdw7/lZsfD32dL+IL6g== warning@^4.0.2, warning@^4.0.3: version "4.0.3" @@ -3264,10 +3554,28 @@ wrap-ansi@^3.0.1: string-width "^2.1.1" strip-ansi "^4.0.0" +wrap-ansi@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" + integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + wrappy@1: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== write@1.0.3: version "1.0.3" @@ -3284,7 +3592,7 @@ ws@8.13.0: x-is-string@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/x-is-string/-/x-is-string-0.1.0.tgz#474b50865af3a49a9c4657f05acd145458f77d82" - integrity sha1-R0tQhlrzpJqcRlfwWs0UVFj3fYI= + integrity sha512-GojqklwG8gpzOVEVki5KudKNoq7MbbjYZCbyWzEz7tyPA7eleiE0+ePwOWQQRb5fm86rD3S8Tc0tSFf3AOv50w== xtend@^4.0.0, xtend@^4.0.1: version "4.0.2" @@ -3296,6 +3604,11 @@ yallist@^4.0.0: resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== +yaml@^2.2.2: + version "2.3.1" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.1.tgz#02fe0975d23cd441242aa7204e09fc28ac2ac33b" + integrity sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ== + yargs-parser@^21.0.1: version "21.1.1" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" @@ -3304,7 +3617,7 @@ yargs-parser@^21.0.1: yauzl@^2.10.0: version "2.10.0" resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" - integrity sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk= + integrity sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g== dependencies: buffer-crc32 "~0.2.3" fd-slicer "~1.1.0"