Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add otel code.stacktrace field #12096

Merged
merged 8 commits into from
Jan 15, 2024
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
3 changes: 3 additions & 0 deletions apmpackage/apm/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
- description: Remove unsupported 7.x data stream migration pipeline
type: enhancement
link: https://github.com/elastic/apm-server/pull/12102
- description: Add span.code.stacktrace
type: enhancement
link: https://github.com/elastic/apm-server/pull/12096
- version: 8.11.0
changes:
- description: Add geoip processing to add client.geo.* fields for app_logs
Expand Down
4 changes: 4 additions & 0 deletions apmpackage/apm/data_stream/traces/fields/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,10 @@
description: |
The approximate number of spans represented, based on the inverse sampling rate.
This will only be set when the sampling rate is known.
- name: code.stacktrace
type: text
description: |
OTel stack trace
- name: timestamp.us
type: long
description: |
Expand Down
1 change: 1 addition & 0 deletions changelogs/head.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ https://github.com/elastic/apm-server/compare/8.12\...main[View commits]
[float]
==== Added
- map OTel's `span.Status: Unset` to `event.outcome: success` instead of `event.outcome: unknown`
- Add support for Otel code.stacktrace {pull}12096[12096]