# README
tracing
tracing package helps to create ydb-go-sdk opentracing traces
Usage
import (
"github.com/ydb-platform/ydb-go-sdk/v3"
"github.com/ydb-platform/ydb-go-sdk/v3/trace"
ydbOpentracing "github.com/ydb-platform/ydb-go-sdk-opentracing"
jaegerConfig "github.com/uber/jaeger-client-go/config"
)
...
// init jaeger client
tracer, closer, err := jaegerConfig.Configuration{
ServiceName: serviceName,
Sampler: &jaegerConfig.SamplerConfig{
Type: "const",
Param: 1,
},
Reporter: &jaegerConfig.ReporterConfig{
LogSpans: true,
BufferFlushInterval: 1 * time.Second,
LocalAgentHostPort: tracerURL,
},
}.NewTracer()
if err != nil {
panic(err)
}
db, err := ydb.Open(
ctx,
os.Getenv("YDB_CONNECTION_STRING"),
ydbOpentracing.WithTraces(trace.DetailsAll),
)
# Functions
No description provided by the author
DatabaseSQL makes trace.DatabaseSQL with logging events from details.
No description provided by the author
Driver makes Driver with publishing traces.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Table makes table.ClientTrace with solomon metrics publishing.
No description provided by the author