mirror of
https://github.com/go-kit/kit.git
synced 2025-07-15 01:04:44 +02:00
* Added new Zipkin tracing middleware using the native zipkin-go library * new approach to Zipkin tracing middleware for Go kit * improvements to zipkin tracer docs and code * source comments changes * Adds http test. * Adds endpoint test. * Improves code based on idiomatic feedback. * updates to tracing doc comments * do not allow to activate both zipkin-go and zipkin-go-opentracing to avoid confusion * add test for zipkin http server tracer * add test for zipkin grpc server and client tracers
8 lines
370 B
Go
8 lines
370 B
Go
// Package tracing provides helpers and bindings for distributed tracing.
|
|
//
|
|
// As your infrastructure grows, it becomes important to be able to trace a
|
|
// request, as it travels through multiple services and back to the user.
|
|
// Package tracing provides endpoints and transport helpers and middlewares to
|
|
// capture and emit request-scoped information.
|
|
package tracing
|