You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tracing_test.go:106: total IDs sampled: 49 out of 10000
Example run on amd64 (using golang:1.22 docker container):
tracing_test.go:106: total IDs sampled: 4987 out of 10000
This huge difference in sampled trace IDs is due to the conversion from float64 to int64 that occurs in the sampler, which is platform dependent with high values such as trace IDs.
The text was updated successfully, but these errors were encountered:
I've written a test to demonstrate the behaviour:
Example run on arm64:
Example run on amd64 (using golang:1.22 docker container):
This huge difference in sampled trace IDs is due to the conversion from float64 to int64 that occurs in the sampler, which is platform dependent with high values such as trace IDs.
The text was updated successfully, but these errors were encountered: