Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/ppbgdi/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
changes:
- description: Rename http.<request|response>.headers to http.<request|response>.header for OTEL compatibility
type: enhancement
link: https://github.com/geoadmin/infra-elastic-integrations/pull/48
link: https://github.com/geoadmin/infra-elastic-integrations/pull/50
- version: "1.9.0"
changes:
- description: Added tracing fields to logs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
- name: http.response.header.*
type: keyword
description: Not yet but already in use ecs fields
- name: http.response.header.*
- name: http.response.headers.*
type: keyword
description: Not yet but already in use ecs fields (deprecated)
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
- name: http.response.header.*
type: keyword
description: Not yet but already in use ecs fields
- name: http.response.header.*
- name: http.response.headers.*
type: keyword
description: Not yet but already in use ecs fields (deprecated)
- name: user_agent.device.type
Expand Down
2 changes: 2 additions & 0 deletions packages/ppbgdi/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,9 @@ An example event for `python` looks as following:
| data_stream.namespace | A user defined namespace. Namespaces are useful to allow grouping of data. Many users already organize their indices this way, and the data stream naming scheme now provides this best practice as a default. Many users will populate this field with `default`. If no value is used, it falls back to `default`. Beyond the Elasticsearch index naming criteria noted above, `namespace` value has the additional restrictions: \* Must not contain `-` \* No longer than 100 characters | constant_keyword |
| data_stream.type | An overarching type for the data stream. Currently allowed values are "logs" and "metrics". We expect to also add "traces" and "synthetics" in the near future. | constant_keyword |
| http.request.header.\* | Not yet but already in use ecs fields | keyword |
| http.request.headers.\* | Not yet but already in use ecs fields (deprecated) | keyword |
| http.response.header.\* | Not yet but already in use ecs fields | keyword |
| http.response.headers.\* | Not yet but already in use ecs fields (deprecated) | keyword |
| k8s.namespace.labels.env | Kubernetes namespace-label 'env' | keyword |
| k8s.namespace.labels.service | Kubernetes namespace-label 'service' | keyword |
| k8s.namespace.labels.system | Kubernetes namespace-label 'system' | keyword |
Expand Down