2020-03-24 13:15:01 +00:00
|
|
|
package log
|
|
|
|
|
|
|
|
import (
|
2022-04-28 12:44:13 +00:00
|
|
|
"strconv"
|
|
|
|
|
2021-08-10 05:27:27 +00:00
|
|
|
stdout "go.opentelemetry.io/otel/exporters/stdout/stdouttrace"
|
2020-11-20 06:57:39 +00:00
|
|
|
sdk_trace "go.opentelemetry.io/otel/sdk/trace"
|
2022-04-28 12:44:13 +00:00
|
|
|
|
|
|
|
"github.com/zitadel/zitadel/internal/errors"
|
|
|
|
"github.com/zitadel/zitadel/internal/telemetry/tracing"
|
|
|
|
"github.com/zitadel/zitadel/internal/telemetry/tracing/otel"
|
2020-03-24 13:15:01 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Config struct {
|
2020-11-20 06:57:39 +00:00
|
|
|
Fraction float64
|
|
|
|
MetricPrefix string
|
|
|
|
}
|
|
|
|
|
2022-04-28 12:44:13 +00:00
|
|
|
func NewTracer(rawConfig map[string]interface{}) (err error) {
|
|
|
|
c := new(Config)
|
|
|
|
c.MetricPrefix, _ = rawConfig["metricprefix"].(string)
|
|
|
|
fraction, ok := rawConfig["fraction"].(string)
|
|
|
|
if ok {
|
|
|
|
c.Fraction, err = strconv.ParseFloat(fraction, 32)
|
|
|
|
if err != nil {
|
|
|
|
return errors.ThrowInternal(err, "LOG-Dsag3", "could not map fraction")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.NewTracer()
|
|
|
|
}
|
|
|
|
|
2020-11-20 06:57:39 +00:00
|
|
|
type Tracer struct {
|
|
|
|
otel.Tracer
|
2020-03-24 13:15:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Config) NewTracer() error {
|
2020-11-20 06:57:39 +00:00
|
|
|
sampler := sdk_trace.ParentBased(sdk_trace.TraceIDRatioBased(c.Fraction))
|
2021-08-10 05:27:27 +00:00
|
|
|
exporter, err := stdout.New(stdout.WithPrettyPrint())
|
2020-11-20 06:57:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
2020-03-24 13:15:01 +00:00
|
|
|
}
|
|
|
|
|
2020-11-20 06:57:39 +00:00
|
|
|
tracing.T = &Tracer{Tracer: *(otel.NewTracer(c.MetricPrefix, sampler, exporter))}
|
|
|
|
return nil
|
2020-03-24 13:15:01 +00:00
|
|
|
}
|