mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
18 lines
431 B
Go
18 lines
431 B
Go
package oc
|
|
|
|
import (
|
|
"go.opencensus.io/trace"
|
|
)
|
|
|
|
// SetSpanStatus sets `span.SetStatus` to the proper status depending on `err`. If
|
|
// `err` is `nil` assumes `trace.StatusCodeOk`.
|
|
func SetSpanStatus(span *trace.Span, err error) {
|
|
status := trace.Status{}
|
|
if err != nil {
|
|
// TODO: JTERRY75 - Handle errors in a non-generic way
|
|
status.Code = trace.StatusCodeUnknown
|
|
status.Message = err.Error()
|
|
}
|
|
span.SetStatus(status)
|
|
}
|