1
0
Fork 0

Add Metrics

This commit is contained in:
Michael 2019-07-18 21:36:05 +02:00 committed by Traefiker Bot
parent 4dc448056c
commit 8e97af8dc3
121 changed files with 8364 additions and 3811 deletions

View file

@ -119,3 +119,9 @@ type StartSpanConfig struct {
// then this will also set the TraceID to the same value.
SpanID uint64
}
// Logger implementations are able to log given messages that the tracer might output.
type Logger interface {
// Log prints the given message.
Log(msg string)
}