opentelemetry support AgentHost, AgentPort
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
package trace
|
||||
|
||||
import "fmt"
|
||||
|
||||
// TraceName represents the tracing name.
|
||||
const TraceName = "go-zero"
|
||||
|
||||
@@ -10,5 +12,16 @@ type Config struct {
|
||||
AgentPort string `json:",optional"`
|
||||
Endpoint string `json:",optional"`
|
||||
Sampler float64 `json:",default=1.0"`
|
||||
Batcher string `json:",default=jaeger,options=jaeger|zipkin|otlpgrpc|otlphttp"`
|
||||
Batcher string `json:",default=jaeger,options=jaeger|jaegerudp|zipkin|otlpgrpc|otlphttp"`
|
||||
}
|
||||
|
||||
func (c *Config) isAgentEndPoint() bool {
|
||||
return len(c.AgentHost) != 0 && len(c.AgentPort) != 0
|
||||
}
|
||||
|
||||
func (c *Config) getEndpoint() string {
|
||||
if c.isAgentEndPoint() {
|
||||
return fmt.Sprintf("%s:%s", c.AgentHost, c.AgentPort)
|
||||
}
|
||||
return c.Endpoint
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user