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

Fix name of jaeger_remote polling interval property #5100

Merged
merged 1 commit into from
Aug 26, 2024
Merged
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
4 changes: 2 additions & 2 deletions content/en/docs/languages/sdk-configuration/general.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,11 @@ be set as follows:
- For `jaeger_remote` and `parentbased_jaeger_remote`: The value is a comma
separated list:
- Example:
`"endpoint=http://localhost:14250,pollingIntervalMs=5000,initialSamplingRate=0.25"`
`"endpoint=http://localhost:14250,pollingInterval=5000,initialSamplingRate=0.25"`
- `endpoint`: the endpoint in form of `scheme://host:port` of gRPC server that
serves the sampling strategy for the service
([sampling.proto](https://github.com/jaegertracing/jaeger-idl/blob/main/proto/api_v2/sampling.proto)).
- `pollingIntervalMs`: in milliseconds indicating how often the sampler will
- `pollingInterval`: in milliseconds indicating how often the sampler will
poll the backend for updates to sampling strategy.
- `initialSamplingRate`: in the [0..1] range, which is used as the sampling
probability when the backend cannot be reached to retrieve a sampling
Expand Down