Documentation ¶
Index ¶
- Variables
- func MaterializeWithJSON(logFields []log.Field) ([]byte, error)
- func MaterializeWithLogFmt(logFields []log.Field) ([]byte, error)
- func NewTracer(recorder SpanRecorder, options ...TracerOption) (opentracing.Tracer, error)
- func StrictZipkinMaterializer(logFields []log.Field) ([]byte, error)
- type CollectionError
- type Collector
- type DelegatingCarrier
- type EventBaggage
- type EventCreate
- type EventFinish
- type EventLog
- type EventLogFields
- type EventTag
- type HTTPCollector
- type HTTPOption
- func HTTPBatchInterval(d time.Duration) HTTPOption
- func HTTPBatchSize(n int) HTTPOption
- func HTTPClient(client *http.Client) HTTPOption
- func HTTPLogger(logger Logger) HTTPOption
- func HTTPMaxBacklog(n int) HTTPOption
- func HTTPRequestCallback(rc RequestCallback) HTTPOption
- func HTTPTimeout(duration time.Duration) HTTPOption
- type InMemorySpanRecorder
- type Logger
- type LoggerFunc
- type MultiCollector
- type NopCollector
- type RawSpan
- type Recorder
- type RecorderOption
- type RequestCallback
- type Sampler
- type Span
- type SpanContext
- type SpanEvent
- type SpanRecorder
- type Tracer
- type TracerOption
- func ClientServerSameSpan(val bool) TracerOption
- func DebugAssertSingleGoroutine(val bool) TracerOption
- func DebugAssertUseAfterFinish(val bool) TracerOption
- func DebugMode(val bool) TracerOption
- func DropAllLogs(dropAllLogs bool) TracerOption
- func EnableSpanPool(val bool) TracerOption
- func NewSpanEventListener(f func() func(SpanEvent)) TracerOption
- func TraceID128Bit(val bool) TracerOption
- func TrimUnsampledSpans(trim bool) TracerOption
- func WithLogger(logger Logger) TracerOption
- func WithMaxLogsPerSpan(limit int) TracerOption
- func WithObserver(observer otobserver.Observer) TracerOption
- func WithSampler(sampler Sampler) TracerOption
- type TracerOptions
Constants ¶
This section is empty.
Variables ¶
var Delegator delegatorType
Delegator is the format to use for DelegatingCarrier.
var ErrInvalidEndpoint = errors.New("Invalid Endpoint. Please check hostPort parameter")
ErrInvalidEndpoint will be thrown if hostPort parameter is corrupted or host can't be resolved
var ErrMissingValue = errors.New("(MISSING)")
ErrMissingValue adds a Missing Value Error when the Logging Parameters are not even in number
var ( // SpanKindResource will be regarded as a SA annotation by Zipkin. SpanKindResource = otext.SpanKindEnum("resource") )
Functions ¶
func MaterializeWithJSON ¶
MaterializeWithJSON converts log Fields into JSON string
func MaterializeWithLogFmt ¶
MaterializeWithLogFmt converts log Fields into LogFmt string
func NewTracer ¶
func NewTracer(recorder SpanRecorder, options ...TracerOption) (opentracing.Tracer, error)
NewTracer creates a new OpenTracing compatible Zipkin Tracer.
Types ¶
type CollectionError ¶
CollectionError represents an array of errors returned by one or more failed Collector methods.
type Collector ¶
type Collector interface { Collect(*zipkincore.Span) error Close() error }
Collector represents a Zipkin trace collector, which is probably a set of remote endpoints.
func NewHTTPCollector ¶
func NewHTTPCollector(url string, options ...HTTPOption) (Collector, error)
NewHTTPCollector returns a new HTTP-backend Collector. url should be a http url for handle post request. timeout is passed to http client. queueSize control the maximum size of buffer of async queue. The logger is used to log errors, such as send failures;
type DelegatingCarrier ¶
type DelegatingCarrier interface { SetState(traceID types.TraceID, spanID uint64, parentSpanID *uint64, sampled bool, flags flag.Flags) State() (traceID types.TraceID, spanID uint64, parentSpanID *uint64, sampled bool, flags flag.Flags) SetBaggageItem(key, value string) GetBaggage(func(key, value string)) }
DelegatingCarrier is a flexible carrier interface which can be implemented by types which have a means of storing the trace metadata and already know how to serialize themselves (for example, protocol buffers).
type EventBaggage ¶
type EventBaggage struct {
Key, Value string
}
EventBaggage is received when SetBaggageItem is called.
type EventCreate ¶
type EventCreate struct{ OperationName string }
EventCreate is emitted when a Span is created.
type EventLog ¶
type EventLog opentracing.LogData
EventLog is received when Log (or one of its derivatives) is called.
DEPRECATED
type EventLogFields ¶
type EventLogFields opentracing.LogRecord
EventLogFields is received when LogFields or LogKV is called.
type EventTag ¶
type EventTag struct { Key string Value interface{} }
EventTag is received when SetTag is called.
type HTTPCollector ¶
type HTTPCollector struct {
// contains filtered or unexported fields
}
HTTPCollector implements Collector by forwarding spans to a http server.
func (*HTTPCollector) Collect ¶
func (c *HTTPCollector) Collect(s *zipkincore.Span) error
Collect implements Collector. attempts a non blocking send on the channel.
type HTTPOption ¶
type HTTPOption func(c *HTTPCollector)
HTTPOption sets a parameter for the HttpCollector
func HTTPBatchInterval ¶
func HTTPBatchInterval(d time.Duration) HTTPOption
HTTPBatchInterval sets the maximum duration we will buffer traces before emitting them to the collector. The default batch interval is 1 second.
func HTTPBatchSize ¶
func HTTPBatchSize(n int) HTTPOption
HTTPBatchSize sets the maximum batch size, after which a collect will be triggered. The default batch size is 100 traces.
func HTTPClient ¶
func HTTPClient(client *http.Client) HTTPOption
HTTPClient sets a custom http client to use.
func HTTPLogger ¶
func HTTPLogger(logger Logger) HTTPOption
HTTPLogger sets the logger used to report errors in the collection process. By default, a no-op logger is used, i.e. no errors are logged anywhere. It's important to set this option in a production service.
func HTTPMaxBacklog ¶
func HTTPMaxBacklog(n int) HTTPOption
HTTPMaxBacklog sets the maximum backlog size, when batch size reaches this threshold, spans from the beginning of the batch will be disposed
func HTTPRequestCallback ¶
func HTTPRequestCallback(rc RequestCallback) HTTPOption
HTTPRequestCallback registers a callback function to adjust the collector *http.Request before it sends the request to Zipkin.
func HTTPTimeout ¶
func HTTPTimeout(duration time.Duration) HTTPOption
HTTPTimeout sets maximum timeout for http request.
type InMemorySpanRecorder ¶
InMemorySpanRecorder is a simple thread-safe implementation of SpanRecorder that stores all reported spans in memory, accessible via reporter.GetSpans(). It is primarily intended for testing purposes.
func NewInMemoryRecorder ¶
func NewInMemoryRecorder() *InMemorySpanRecorder
NewInMemoryRecorder creates new InMemorySpanRecorder
func (*InMemorySpanRecorder) GetSampledSpans ¶
func (r *InMemorySpanRecorder) GetSampledSpans() []RawSpan
GetSampledSpans returns a slice of spans accumulated so far which were sampled.
func (*InMemorySpanRecorder) GetSpans ¶
func (r *InMemorySpanRecorder) GetSpans() []RawSpan
GetSpans returns a copy of the array of spans accumulated so far.
func (*InMemorySpanRecorder) RecordSpan ¶
func (r *InMemorySpanRecorder) RecordSpan(span RawSpan)
RecordSpan implements the respective method of SpanRecorder.
func (*InMemorySpanRecorder) Reset ¶
func (r *InMemorySpanRecorder) Reset()
Reset clears the internal array of spans.
type Logger ¶
type Logger interface {
Log(keyvals ...interface{}) error
}
Logger is the fundamental interface for all log operations. Log creates a log event from keyvals, a variadic sequence of alternating keys and values. The signature is compatible with the Go kit log package.
func LogWrapper ¶
LogWrapper wraps a standard library logger into a Logger compatible with this package.
func NewNopLogger ¶
func NewNopLogger() Logger
NewNopLogger provides a Logger that discards all Log data sent to it.
type LoggerFunc ¶
type LoggerFunc func(...interface{}) error
LoggerFunc is an adapter to allow use of ordinary functions as Loggers. If f is a function with the appropriate signature, LoggerFunc(f) is a Logger object that calls f.
func (LoggerFunc) Log ¶
func (f LoggerFunc) Log(keyvals ...interface{}) error
Log implements Logger by calling f(keyvals...).
type MultiCollector ¶
type MultiCollector []Collector
MultiCollector implements Collector by sending spans to all collectors.
func (MultiCollector) Collect ¶
func (c MultiCollector) Collect(s *zipkincore.Span) error
Collect implements Collector.
type NopCollector ¶
type NopCollector struct{}
NopCollector implements Collector but performs no work.
func (NopCollector) Collect ¶
func (NopCollector) Collect(*zipkincore.Span) error
Collect implements Collector.
type RawSpan ¶
type RawSpan struct { // Those recording the RawSpan should also record the contents of its // SpanContext. Context SpanContext // The name of the "operation" this span is an instance of. (Called a "span // name" in some implementations) Operation string // We store <start, duration> rather than <start, end> so that only // one of the timestamps has global clock uncertainty issues. Start time.Time Duration time.Duration // Essentially an extension mechanism. Can be used for many purposes, // not to be enumerated here. Tags opentracing.Tags // The span's "microlog". Logs []opentracing.LogRecord }
RawSpan encapsulates all state associated with a (finished) Span.
type Recorder ¶
type Recorder struct {
// contains filtered or unexported fields
}
Recorder implements the SpanRecorder interface.
func (*Recorder) RecordSpan ¶
RecordSpan converts a RawSpan into the Zipkin representation of a span and records it to the underlying collector.
type RecorderOption ¶
type RecorderOption func(r *Recorder)
RecorderOption allows for functional options.
func WithJSONMaterializer ¶
func WithJSONMaterializer() RecorderOption
WithJSONMaterializer will convert OpenTracing Log fields to a JSON representation.
func WithLogFmtMaterializer ¶
func WithLogFmtMaterializer() RecorderOption
WithLogFmtMaterializer will convert OpenTracing Log fields to a LogFmt representation.
func WithStrictMaterializer ¶
func WithStrictMaterializer() RecorderOption
WithStrictMaterializer will only record event Log fields and discard the rest.
type RequestCallback ¶
RequestCallback receives the initialized request from the Collector before sending it over the wire. This allows one to plug in additional headers or do other customization.
type Sampler ¶
Sampler functions return if a Zipkin span should be sampled, based on its traceID.
func ModuloSampler ¶
ModuloSampler provides a typical OpenTracing type Sampler.
func NewBoundarySampler ¶
NewBoundarySampler is appropriate for high-traffic instrumentation who provision random trace ids, and make the sampling decision only once. It defends against nodes in the cluster selecting exactly the same ids.
func NewCountingSampler ¶
NewCountingSampler is appropriate for low-traffic instrumentation or those who do not provision random trace ids. It is not appropriate for collectors as the sampling decision isn't idempotent (consistent based on trace id).
type Span ¶
type Span interface { opentracing.Span // Operation names the work done by this span instance Operation() string // Start indicates when the span began Start() time.Time }
Span provides access to the essential details of the span, for use by zipkintracer consumers. These methods may only be called prior to (*opentracing.Span).Finish().
type SpanContext ¶
type SpanContext struct { // A probabilistically unique identifier for a [multi-span] trace. TraceID types.TraceID // A probabilistically unique identifier for a span. SpanID uint64 // Whether the trace is sampled. Sampled bool // The span's associated baggage. Baggage map[string]string // initialized on first use // The SpanID of this Context's parent, or nil if there is no parent. ParentSpanID *uint64 // Flags provides the ability to create and communicate feature flags. Flags flag.Flags // Whether the span is owned by the current process Owner bool }
SpanContext holds the basic Span metadata.
func (SpanContext) ForeachBaggageItem ¶
func (c SpanContext) ForeachBaggageItem(handler func(k, v string) bool)
ForeachBaggageItem belongs to the opentracing.SpanContext interface
func (SpanContext) WithBaggageItem ¶
func (c SpanContext) WithBaggageItem(key, val string) SpanContext
WithBaggageItem returns an entirely new basictracer SpanContext with the given key:value baggage pair set.
type SpanEvent ¶
type SpanEvent interface{}
A SpanEvent is emitted when a mutating command is called on a Span.
type SpanRecorder ¶
type SpanRecorder interface { // Implementations must determine whether and where to store `span`. RecordSpan(span RawSpan) }
A SpanRecorder handles all of the `RawSpan` data generated via an associated `Tracer` (see `NewStandardTracer`) instance. It also names the containing process and provides access to a straightforward tag map.
func NewRecorder ¶
func NewRecorder(c Collector, debug bool, hostPort, serviceName string, options ...RecorderOption) SpanRecorder
NewRecorder creates a new Zipkin Recorder backed by the provided Collector.
hostPort and serviceName allow you to set the default Zipkin endpoint information which will be added to the application's standard core annotations. hostPort will be resolved into an IPv4 and/or IPv6 address and Port number, serviceName will be used as the application's service identifier.
If application does not listen for incoming requests or an endpoint Context does not involve network address and/or port these cases can be solved like this:
# port is not applicable: NewRecorder(c, debug, "192.168.1.12:0", "ServiceA") # network address and port are not applicable: NewRecorder(c, debug, "0.0.0.0:0", "ServiceB")
type Tracer ¶
type Tracer interface { opentracing.Tracer // Options gets the Options used in New() or NewWithOptions(). Options() TracerOptions }
Tracer extends the opentracing.Tracer interface with methods to probe implementation state, for use by zipkintracer consumers.
type TracerOption ¶
type TracerOption func(opts *TracerOptions) error
TracerOption allows for functional options. See: http://dave.cheney.net/2014/10/17/functional-options-for-friendly-apis
func ClientServerSameSpan ¶
func ClientServerSameSpan(val bool) TracerOption
ClientServerSameSpan allows to place client-side and server-side annotations for a RPC call in the same span (Zipkin V1 behavior) or different spans (more in line with other tracing solutions). By default this Tracer uses shared host spans (so client-side and server-side in the same span). If using separate spans you might run into trouble with Zipkin V1 as clock skew issues can't be remedied at Zipkin server side.
func DebugAssertSingleGoroutine ¶
func DebugAssertSingleGoroutine(val bool) TracerOption
DebugAssertSingleGoroutine option
func DebugAssertUseAfterFinish ¶
func DebugAssertUseAfterFinish(val bool) TracerOption
DebugAssertUseAfterFinish option
func DebugMode ¶
func DebugMode(val bool) TracerOption
DebugMode allows to set the tracer to Zipkin debug mode
func NewSpanEventListener ¶
func NewSpanEventListener(f func() func(SpanEvent)) TracerOption
NewSpanEventListener option
func WithObserver ¶
func WithObserver(observer otobserver.Observer) TracerOption
WithObserver assigns an initialized observer to opts.observer
func WithSampler ¶
func WithSampler(sampler Sampler) TracerOption
WithSampler allows one to add a Sampler function
type TracerOptions ¶
type TracerOptions struct {
// contains filtered or unexported fields
}
TracerOptions allows creating a customized Tracer.
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
thrift
|
|
Package wire is a generated protocol buffer package.
|
Package wire is a generated protocol buffer package. |