Categorycontrib.go.opencensus.io/exporter/jaeger

# README

OpenCensus Go Jaeger Exporter

Build Status GoDoc

Provides OpenCensus exporter support for Jaeger.

Installation

$ go get -u contrib.go.opencensus.io/exporter/jaeger

# Packages

Command jaeger is an example program that creates spans and uploads to Jaeger.
Package propagation implement uber-trace-id header propagation used by Jaeger.

# Functions

BoolTag creates a new tag of type bool, exported as jaeger.TagType_BOOL.
EmitZipkinBatch implements EmitZipkinBatch() of Agent interface.
Int64Tag creates a new tag of type int64, exported as jaeger.TagType_LONG.
NewExporter returns a trace.Exporter implementation that exports the collected spans to Jaeger.
StringTag creates a new tag of type string, exported as jaeger.TagType_STRING.

# Structs

Exporter is an implementation of trace.Exporter that uploads spans to Jaeger.
Options are the options to be used when initializing a Jaeger exporter.
Process contains the information exported to jaeger about the source of the trace data.
Tag defines a key-value pair It is limited to the possible conversions to *jaeger.Tag by attributeToTag.