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
6 changes: 6 additions & 0 deletions .changesets/breaking_lb_next_apollo_otel_default.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
### Default to Apollo reporting over OTel ([PR #5741](https://github.com/apollographql/router/pull/5741))

BREAKING CHANGE: This change will cause traces in Apollo Studio to appear differently
Copy link
Contributor

Choose a reason for hiding this comment

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

Should we include the config snippet to turn this back off?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

great idea, i don't know the answer. it's possible that by the time 2.0 is GA, the option will be removed entirely, so i'm not going to worry about it right now



By [@lennyburdette](https://github.com/lennyburdette) in https://github.com/apollographql/router/pull/5741
2 changes: 1 addition & 1 deletion apollo-router/src/plugins/telemetry/apollo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ const fn default_field_level_instrumentation_sampler() -> SamplerOption {
}

const fn default_experimental_otlp_tracing_sampler() -> SamplerOption {
SamplerOption::Always(Sampler::AlwaysOff)
SamplerOption::Always(Sampler::AlwaysOn)
}

fn endpoint_default() -> Url {
Expand Down