add jaeger.WithAgentEndpoint

master
xiandong 2 years ago committed by Kevin Wan
parent 0fe84b225c
commit e575bf8317

@ -57,7 +57,11 @@ func createExporter(c Config) (sdktrace.SpanExporter, error) {
// Just support jaeger and zipkin now, more for later // Just support jaeger and zipkin now, more for later
switch c.Batcher { switch c.Batcher {
case kindJaeger: case kindJaeger:
return jaeger.New(jaeger.WithCollectorEndpoint(jaeger.WithEndpoint(c.Endpoint))) if c.AgentHost != "" && c.AgentPort != "" {
return jaeger.New(jaeger.WithAgentEndpoint(jaeger.WithAgentHost(c.AgentHost), jaeger.WithAgentPort(c.AgentPort)))
} else {
return jaeger.New(jaeger.WithCollectorEndpoint(jaeger.WithEndpoint(c.Endpoint)))
}
case kindZipkin: case kindZipkin:
return zipkin.New(c.Endpoint) return zipkin.New(c.Endpoint)
case kindOtlpGrpc: case kindOtlpGrpc:

@ -5,8 +5,10 @@ const TraceName = "go-zero"
// A Config is an opentelemetry config. // A Config is an opentelemetry config.
type Config struct { type Config struct {
Name string `json:",optional"` Name string `json:",optional"`
Endpoint string `json:",optional"` AgentHost string `json:",optional"`
Sampler float64 `json:",default=1.0"` AgentPort string `json:",optional"`
Batcher string `json:",default=jaeger,options=jaeger|zipkin|otlpgrpc|otlphttp"` Endpoint string `json:",optional"`
Sampler float64 `json:",default=1.0"`
Batcher string `json:",default=jaeger,options=jaeger|zipkin|otlpgrpc|otlphttp"`
} }

Loading…
Cancel
Save