Code contained in this directory contains instrumentation for 3rd-party Go packages and some packages from the standard library.
Do not submit pull requests for new instrumentation without reading the following.
This project is dedicated to promoting the development of quality instrumentation using OpenTelemetry. To achieve this goal, we recognize that the instrumentation needs to be written using the best practices of OpenTelemetry, but also by developers that understand the package they are instrumenting. Additionally, the produced instrumentation needs to be maintained and evolved.
The size of the OpenTelemetry Go developer community is not large enough to support an ever growing amount of instrumentation. Therefore, to reach our goal, we have the following recommendations for where instrumentation packages should live.
- Native to the instrumented package
- A dedicated public repository
- Here in the opentelemetry-go-contrib repository
If possible, OpenTelemetry instrumentation should be included in the instrumented package. This will ensure the instrumentation reaches all package users, and is continuously maintained by developers that understand the package.
If instrumentation cannot be directly included in the package it is instrumenting, it should be hosted in a dedicated public repository owned by its maintainer(s). This will appropriately assign maintenance responsibilities for the instrumentation and ensure these maintainers have the needed privilege to maintain the code.
The last place instrumentation should be hosted is here in this repository. Maintaining instrumentation here hampers the development of OpenTelemetry for Go and therefore should be avoided. When instrumentation cannot be included in a target package and there is good reason to not host it in a separate and dedicated repository an instrumentation request should be filed. The instrumentation request needs to be accepted before any pull requests for the instrumentation can be considered for merging.
Regardless of where instrumentation is hosted, it needs to be discoverable. The OpenTelemetry registry exists to ensure that instrumentation is discoverable. You can find out how to add instrumentation to the registry here.
The OpenTelemetry registry is the best place to discover instrumentation packages. It will include packages outside of this project.
The following instrumentation packages are provided for popular Go packages and use-cases.
Instrumentation Package | Metrics | Traces |
---|---|---|
github.com/aws/aws-sdk-go-v2 | ✓ | |
github.com/emicklei/go-restful | ✓ | |
github.com/gin-gonic/gin | ✓ | |
github.com/gorilla/mux | ✓ | |
github.com/labstack/echo | ✓ | |
go.mongodb.org/mongo-driver | ✓ | |
google.golang.org/grpc | ✓ | ✓ |
gopkg.in/macaron.v1 | ✓ | |
host | ✓ | |
net/http | ✓ | ✓ |
net/http/httptrace | ✓ | |
runtime | ✓ |
In order to ensure the maintainability and discoverability of instrumentation packages, the following guidelines MUST be followed.
All instrumentation packages SHOULD be of the form:
go.opentelemetry.io/contrib/instrumentation/{IMPORT_PATH}/otel{PACKAGE_NAME}
Where the {IMPORT_PATH}
and {PACKAGE_NAME}
are the standard Go identifiers for the package being instrumented.
For example:
go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux
go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaron
go.opentelemetry.io/contrib/instrumentation/database/sql/otelsql
Exceptions to this rule exist. For example, the runtime and host instrumentation do not instrument any Go package and therefore do not fit this structure.
All instrumentation packages MUST adhere to the projects' contributing guidelines. Additionally the following guidelines for package composition need to be followed.
- All instrumentation packages MUST be a Go module.
Therefore, an appropriately configured
go.mod
andgo.sum
need to exist for each package. - To help understand the instrumentation a Go package documentation SHOULD be included.
This documentation SHOULD be in a dedicated
doc.go
file if the package is more than one file. It SHOULD contain useful information like what the purpose of the instrumentation is, how to use it, and any compatibility restrictions that might exist. - Examples of how to actually use the instrumentation SHOULD be included.
- All instrumentation packages MUST provide an option to accept a
TracerProvider
if it uses a Tracer, aMeterProvider
if it uses a Meter, andPropagators
if it handles any context propagation. Also, packages MUST use the defaultTracerProvider
,MeterProvider
, andPropagators
supplied by theglobal
package if no optional one is provided. - All instrumentation packages MUST NOT provide an option to accept a
Tracer
orMeter
. - All instrumentation packages MUST create any used
Tracer
orMeter
with a name matching the instrumentation package name. - All instrumentation packages MUST create any used
Tracer
orMeter
with a semantic version corresponding to the version of the module containing the instrumentation.