-
Notifications
You must be signed in to change notification settings - Fork 8.5k
Closed
Labels
Feature:LoggingTeam:CorePlatform Core services: plugins, logging, config, saved objects, http, ES client, i18n, etc t//Platform Core services: plugins, logging, config, saved objects, http, ES client, i18n, etc t//
Description
Log records emitted in JSON layout contain meta key with additional information (HTTP request/response, process identifier) attached:
kibana/src/core/server/logging/layouts/json_layout.test.ts
Lines 99 to 104 in ab92bbb
| meta: { | |
| version: { | |
| from: 'v7', | |
| to: 'v8', | |
| }, | |
| }, |
This structure doesn't follow ECS format. The logging system should restructure additional information from meta key to ECS format as close as possible:
before:
meta: {
http: {
request: {
method: 'GET'
},
}
}after:
http: {
request: {
method: 'GET'
},
}Metadata
Metadata
Assignees
Labels
Feature:LoggingTeam:CorePlatform Core services: plugins, logging, config, saved objects, http, ES client, i18n, etc t//Platform Core services: plugins, logging, config, saved objects, http, ES client, i18n, etc t//