Config
This class represents the configuration for telemetry exporters and samplers. It allows specifying the type of exporter (e.g., noop, file, Jaeger, OTLP gRPC, OTLP HTTP) and provides nested configurations for each specific exporter type, as well as for the tracer's sampler.
Attributes
| Attribute | Type | Description |
|---|---|---|
| ExporterType | Sets the type of exporter to configure [noop/file/jaeger/otlpgrpc/otlphttp]. | |
| FileConfig | Configuration for exporting telemetry traces to a file. | |
| JaegerConfig | Configuration for exporting telemetry traces to a jaeger. | |
| OtlpGrpcConfig | Configuration for exporting telemetry traces to an OTLP gRPC collector. | |
| OtlpHttpConfig | Configuration for exporting telemetry traces to an OTLP HTTP collector. | |
| SamplerConfig | Configuration for the sampler to use for the tracer. |