go-zero/core/trace/config.go

13 lines
346 B
Go
Raw Normal View History

package trace
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"
2022-11-04 21:55:17 +08:00
// A Config is an opentelemetry config.
type Config struct {
Name string `json:",optional"`
Endpoint string `json:",optional"`
Sampler float64 `json:",default=1.0"`
Batcher string `json:",default=jaeger,options=jaeger|zipkin|otlpgrpc|otlphttp"`
}