Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func SetSpanStatus ¶
SetSpanStatus sets `span.SetStatus` to the proper status depending on `err`. If `err` is `nil` assumes `trace.StatusCodeOk`.
Types ¶
type LogrusExporter ¶
type LogrusExporter struct { }
LogrusExporter is an OpenCensus `trace.Exporter` that exports `trace.SpanData` to logrus output.
func (*LogrusExporter) ExportSpan ¶
func (le *LogrusExporter) ExportSpan(s *trace.SpanData)
ExportSpan exports `s` based on the the following rules:
1. All output will contain `s.Attributes`, `s.TraceID`, `s.SpanID`, `s.ParentSpanID` for correlation
2. Any calls to .Annotate will not be supported.
3. The span itself will be written at `logrus.InfoLevel` unless `s.Status.Code != 0` in which case it will be written at `logrus.ErrorLevel` providing `s.Status.Message` as the error value.
Click to show internal directories.
Click to hide internal directories.