This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func (tm *TracedServeMux) AddHandler(pattern string, handler http.Handler) { | |
middleware := nethttp.Middleware(tm.tracer, handler, | |
nethttp.MWSpanObserver(func(span opentracing.Span, r *http.Request) { | |
if !tm.copyBaggage { | |
return | |
} | |
bag := baggage.FromContext(r.Context()) | |
for _, m := range bag.Members() { | |
span.SetBaggageItem(m.Key(), m.Value()) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"parent": "node_0", | |
"child": "node_7", | |
"callCount": 4 | |
}, | |
{ | |
"parent": "node_0", | |
"child": "node_13", | |
"callCount": 10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# HELP jaeger_cassandra_attempts_total attempts | |
# TYPE jaeger_cassandra_attempts_total counter | |
jaeger_cassandra_attempts_total{table="dependencies"} 0 | |
jaeger_cassandra_attempts_total{table="duration_index"} 0 | |
jaeger_cassandra_attempts_total{table="operation_names_v2"} 0 | |
jaeger_cassandra_attempts_total{table="service_name_index"} 0 | |
jaeger_cassandra_attempts_total{table="service_names"} 0 | |
jaeger_cassandra_attempts_total{table="service_operation_index"} 0 | |
jaeger_cassandra_attempts_total{table="tag_index"} 0 | |
jaeger_cassandra_attempts_total{table="traces"} 0 |
OlderNewer