package oc

import "github.com/Microsoft/hcsshim/internal/oc"

Index

Functions

func SetSpanStatus

func SetSpanStatus(span *trace.Span, err error)

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.

Source Files

exporter.go span.go

Version
v0.9.7
Published
Feb 21, 2023
Platform
darwin/amd64
Imports
2 packages
Last checked
10 minutes ago

Tools for package owners.