2021-10-03 20:53:50 +08:00
|
|
|
package trace
|
2021-08-22 10:03:56 +08:00
|
|
|
|
2021-09-04 12:16:30 +08:00
|
|
|
// TraceName represents the tracing name.
|
2021-08-24 10:04:12 +08:00
|
|
|
const TraceName = "go-zero"
|
2021-08-22 10:03:56 +08:00
|
|
|
|
2022-11-04 21:55:17 +08:00
|
|
|
// A Config is an opentelemetry config.
|
2021-08-22 10:03:56 +08:00
|
|
|
type Config struct {
|
2023-05-09 22:58:40 +08:00
|
|
|
Name string `json:",optional"`
|
|
|
|
Endpoint string `json:",optional"`
|
|
|
|
Sampler float64 `json:",default=1.0"`
|
2023-05-29 18:24:59 +08:00
|
|
|
Batcher string `json:",default=jaeger,options=jaeger|zipkin|otlpgrpc|otlphttp|file"`
|
2023-05-09 22:58:40 +08:00
|
|
|
// OtlpHeaders represents the headers for OTLP gRPC or HTTP transport.
|
|
|
|
// For example:
|
|
|
|
// uptrace-dsn: 'http://project2_secret_token@localhost:14317/2'
|
|
|
|
OtlpHeaders map[string]string `json:",optional"`
|
2023-05-23 11:11:58 +08:00
|
|
|
// OtlpHttpPath represents the path for OTLP HTTP transport.
|
|
|
|
// For example
|
|
|
|
// /v1/traces
|
2023-05-28 19:41:48 +08:00
|
|
|
OtlpHttpPath string `json:",optional"`
|
2023-05-28 21:31:36 +08:00
|
|
|
// Disabled indicates whether StartAgent starts the agent.
|
|
|
|
Disabled bool `json:",optional"`
|
2021-08-22 10:03:56 +08:00
|
|
|
}
|