package stdout
import "go.opentelemetry.io/otel/exporter/trace/stdout"
Package stdout contains an OpenTelemetry tracing exporter for writing to stdout.
Index ¶
- type Exporter
- func NewExporter(o Options) (*Exporter, error)
- func (e *Exporter) ExportSpan(ctx context.Context, data *export.SpanData)
- type Options
Types ¶
type Exporter ¶
type Exporter struct {
// contains filtered or unexported fields
}
Exporter is an implementation of trace.Exporter that writes spans to stdout.
func NewExporter ¶
func (*Exporter) ExportSpan ¶
ExportSpan writes a SpanData in json format to stdout.
type Options ¶
type Options struct { // PrettyPrint will pretty the json representation of the span, // making it print "pretty". Default is false. PrettyPrint bool }
Options are the options to be used when initializing a stdout export.
Source Files ¶
doc.go stdout.go
- Version
- v0.1.0
- Published
- Nov 4, 2019
- Platform
- darwin/amd64
- Imports
- 9 packages
- Last checked
- 33 minutes ago –
Tools for package owners.