You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
786 B
31 lines
786 B
5 years ago
|
package zipkin
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
"github.com/bilibili/kratos/pkg/conf/env"
|
||
|
"github.com/bilibili/kratos/pkg/net/trace"
|
||
|
xtime "github.com/bilibili/kratos/pkg/time"
|
||
|
)
|
||
|
|
||
|
// Config config.
|
||
|
// url should be the endpoint to send the spans to, e.g.
|
||
|
// http://localhost:9411/api/v2/spans
|
||
|
type Config struct {
|
||
|
Endpoint string `dsn:"endpoint"`
|
||
|
BatchSize int `dsn:"query.batch_size,100"`
|
||
|
Timeout xtime.Duration `dsn:"query.timeout,200ms"`
|
||
|
DisableSample bool `dsn:"query.disable_sample"`
|
||
|
}
|
||
|
|
||
|
// Init init trace report.
|
||
|
func Init(c *Config) {
|
||
|
if c.BatchSize == 0 {
|
||
|
c.BatchSize = 100
|
||
|
}
|
||
|
if c.Timeout == 0 {
|
||
|
c.Timeout = xtime.Duration(200 * time.Millisecond)
|
||
|
}
|
||
|
trace.SetGlobalTracer(trace.NewTracer(env.AppID, newReport(c), c.DisableSample))
|
||
|
}
|