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

[v1.63.1] internal: Fixing _dd.p.dm decision maker collision on number 10 #2673

Merged
merged 1 commit into from
Apr 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions internal/samplernames/samplernames.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,11 @@ const (
// span sampling rules.
SingleSpan SamplerName = 8
// Sampler name 9 is reserved/used by OTel ingestion.
// Sampler name 10 is reserved for Data jobs (spark, databricks etc)
// RemoteUserRule specifies that the span was sampled by a rule the user configured remotely
// through Datadog UI.
RemoteUserRule SamplerName = 10
RemoteUserRule SamplerName = 11
// RemoteDynamicRule specifies that the span was sampled by a rule configured by Datadog
// Dynamic Sampling.
RemoteDynamicRule SamplerName = 11
RemoteDynamicRule SamplerName = 12
)