Signed-off-by: Flc゛ <four_leaf_clover@foxmail.com> Co-authored-by: Damien Mathieu <42@dmathieu.com> |
||
|---|---|---|
| .. | ||
| github.com | ||
| go.mongodb.org/mongo-driver | ||
| google.golang.org/grpc/otelgrpc | ||
| host | ||
| net/http | ||
| runtime | ||
| README.md | ||
README.md
Instrumentation
Code contained in this directory contains instrumentation for 3rd-party Go packages and some packages from the standard library.
Instrumentation Packages
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 | ✓ | |
| go.mongodb.org/mongo-driver/v2 | ✓ | |
| google.golang.org/grpc | ✓ | ✓ |
| host | ✓ | |
| net/http | ✓ | ✓ |
| net/http/httptrace | ✓ | |
| runtime | ✓ |
Organization
In order to ensure the maintainability and discoverability of instrumentation packages, the following guidelines MUST be followed.
Packaging
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/otelmuxgo.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacarongo.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.
Contents
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.modandgo.sumneed 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.gofile 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
TracerProviderif it uses a Tracer, aMeterProviderif it uses a Meter, andPropagatorsif it handles any context propagation. Also, packages MUST use the defaultTracerProvider,MeterProvider, andPropagatorssupplied by theglobalpackage if no optional one is provided. - All instrumentation packages MUST NOT provide an option to accept a
TracerorMeter. - All instrumentation packages MUST define a
ScopeNameconstant with a value matching the instrumentation package and use it when creating aTracerorMeter. - All instrumentation packages MUST define a
Versionfunction returning the version of the module containing the instrumentation and use it when creating aTracerorMeter.