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
- Rename configuration element from sampler to sampling
- Update documentation, and samples with new config element name
- Reversed conditional flow order
- Updated error message
- Removed duplicate default sampler creation
- Updated developer comments
Signed-off-by: Rodrigo Pastrana <[email protected]>
Copy file name to clipboardExpand all lines: helm/examples/tracing/README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -13,10 +13,10 @@ All configuration options detailed here are part of the HPCC Systems Helm chart,
13
13
- optAlwaysCreateTraceIds - If true components generate trace/span ids if none are provided by the remote caller.
14
14
- enableDefaultLogExporter - If true, creates a trace exporter outputting to the log using the default options
15
15
- enableOTELDebugLogging - If true, OTel library logging level set to debug, otherwise warning
16
-
-sampler - Defines head sampling strategy. Decision to sample or drop a span or trace is not made by inspecting the trace as a whole. https://opentelemetry.io/docs/concepts/sampling/
16
+
-sampling - Defines head sampling strategy. Decision to sample or drop a span or trace is not made by inspecting the trace as a whole. https://opentelemetry.io/docs/concepts/sampling/
17
17
- type "AlwaysOff" | "AlwaysOn" | "Ratio"
18
-
- argument - Optional sampler type configuration value. Currently, only supported value applies to the "Ratio" sampler type. The argument value is a string representing a numeric value betwen 0.0 and 1.0. This value represents the ratio of trace/spans to sample
19
-
- parentBased - Optional boolean. Determines if the sampler policy honors the remote root span sampled flag
18
+
- argument - Optional sampling type configuration value. Currently, only supported value applies to the "Ratio" sampling type. The argument value is a string representing a numeric value betwen 0.0 and 1.0. This value represents the ratio of trace/spans to sample
19
+
- parentBased - Optional boolean. Determines if the sampling policy honors the remote root span sampled flag
20
20
- resourceAttributes: - Defines OTel specific resource attribute configuration values
21
21
which are appended to the runtime OTEL_RESOURCE_ATTRIBUTES. See OTel doc: https://opentelemetry.io/docs/specs/otel/configuration/sdk-environment-variables/#general-sdk-configuration
22
22
- deploymentEnvironment - Defines deployment.environment, which is used to specify
0 commit comments