We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8354241 commit 5763d2dCopy full SHA for 5763d2d
healthcheck/root.go
@@ -76,6 +76,9 @@ func (c *Component) startWrapper(w *Wrapper) {
76
span.SetStatus(codes.Error, "healthcheck failure")
77
}
78
span.SetAttributes(attribute.String("cabourotte.healthcheck.status", status))
79
+ for k, v := range w.healthcheck.Base().Labels {
80
+ span.SetAttributes(attribute.String(fmt.Sprintf("cabourotte.healthcheck.label.%s", k), v))
81
+ }
82
span.End()
83
histoLabels := map[string]string{
84
"name": w.healthcheck.Base().Name,
0 commit comments