Skip to content
Open
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
- Produce Span V2 Kafka messages. ([#5151](https://github.com/getsentry/relay/pull/5151), [#5173](https://github.com/getsentry/relay/pull/5173), [#5199](https://github.com/getsentry/relay/pull/5199))
- Extract additional `user.geo.*` attributes on spans. ([#5194](https://github.com/getsentry/relay/pull/5194))
- Modernize session processing and move to Relay's new processing framework. ([#5201](https://github.com/getsentry/relay/pull/5201))
- Add vercel log drain transform. ([#5209](https://github.com/getsentry/relay/pull/5209))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IMO this PR does not require a changelog entry, should be enough to add it in #5212 (you can add the skip changelog label to the PR).

Suggested change
- Add vercel log drain transform. ([#5209](https://github.com/getsentry/relay/pull/5209))


## 25.9.0

Expand Down
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions relay-conventions/src/consts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,14 @@ convention_attributes!(
HTTP_ROUTE => "http.route",
HTTP_TARGET => "http.target",
MESSAGING_SYSTEM => "messaging.system",
ENVIRONMENT => "sentry.environment",
OBSERVED_TIMESTAMP_NANOS => "sentry.observed_timestamp_nanos",
OP => "sentry.op",
ORIGIN => "sentry.origin",
PLATFORM => "sentry.platform",
PROFILE_ID => "sentry.profile_id",
RELEASE => "sentry.release",
SERVER_ADDRESS => "server.address",
RPC_GRPC_STATUS_CODE => "rpc.grpc.status_code",
RPC_SERVICE => "rpc.service",
SEGMENT_ID => "sentry.segment.id",
Expand Down
1 change: 1 addition & 0 deletions relay-ourlogs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ relay-event-schema = { workspace = true }
relay-otel = { workspace = true }
relay-protocol = { workspace = true }
relay-common = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }

[dev-dependencies]
Expand Down
2 changes: 2 additions & 0 deletions relay-ourlogs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@

mod otel_to_sentry;
mod size;
mod vercel_to_sentry;

pub use self::otel_to_sentry::otel_to_sentry_log;
pub use self::size::calculate_size;
pub use self::vercel_to_sentry::vercel_log_to_sentry_log;

pub use opentelemetry_proto::tonic::logs::v1 as otel_logs;
Loading
Loading