Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document that only tracing is supported #964

Merged
merged 2 commits into from
Jul 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions COMPATIBILITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Default `otel` Global Providers Compatibility

Auto-instrumentation can be configured to capture the telemetry sent to the
[`otel`] default global providers.
[`otel`] default global tracer provider.

Supported versions of [`otel`]:

Expand All @@ -13,41 +13,41 @@ Supported versions of [`otel`]:

## Instrumented Library Compatibility

Instrumentation is provided for the following Go libraries.
Tracing instrumentation is provided for the following Go libraries.

- [`database/sql`](#database/sql)
- [`github.com/segmentio/kafka-go`](#github.com/segmentio/kafka-go)
- [`google.golang.org/grpc`](#google.golang.org/grpc)
- [`net/http`](#net/http)
- [`database/sql`](#databasesql)
- [`github.com/segmentio/kafka-go`](#githubcomsegmentiokafka-go)
- [`google.golang.org/grpc`](#googlegolangorggrpc)
- [`net/http`](#nethttp)

### database/sql

[Package documentation](https://pkg.go.dev/database/sql)

Supported version ranges:
Supported version ranges:

- `go1.12` to `go1.22.5`

### github.com/segmentio/kafka-go

[Package documentation](https://pkg.go.dev/github.com/segmentio/kafka-go)

Supported version ranges:
Supported version ranges:

- `v0.4.1` to `v0.4.47`

### google.golang.org/grpc

[Package documentation](https://pkg.go.dev/google.golang.org/grpc)

Supported version ranges:
Supported version ranges:

- `v1.14.0` to `v1.66.0`

### net/http

[Package documentation](https://pkg.go.dev/net/http)

Supported version ranges:
Supported version ranges:

- `go1.12` to `go1.22.5`
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![PkgGoDev](https://pkg.go.dev/badge/go.opentelemetry.io/auto)](https://pkg.go.dev/go.opentelemetry.io/auto)

This repository provides [OpenTelemetry] instrumentation for [Go] libraries using [eBPF].
This repository provides [OpenTelemetry] tracing instrumentation for [Go] libraries using [eBPF].

:construction: This project is currently work in progress.

Expand Down
Loading