名称 最后更新
..
codes 正在载入提交数据...
internal 正在载入提交数据...
label 正在载入提交数据...
metric 正在载入提交数据...
propagation 正在载入提交数据...
trace 正在载入提交数据...
unit 正在载入提交数据...
.gitignore 正在载入提交数据...
.gitmodules 正在载入提交数据...
.golangci.yml 正在载入提交数据...
CHANGELOG.md 正在载入提交数据...
CODEOWNERS 正在载入提交数据...
CONTRIBUTING.md 正在载入提交数据...
LICENSE 正在载入提交数据...
Makefile 正在载入提交数据...
Makefile.proto 正在载入提交数据...
README.md 正在载入提交数据...
RELEASING.md 正在载入提交数据...
doc.go 正在载入提交数据...
error_handler.go 正在载入提交数据...
get_main_pkgs.sh 正在载入提交数据...
go.mod 正在载入提交数据...
handler.go 正在载入提交数据...
metric.go 正在载入提交数据...
pre_release.sh 正在载入提交数据...
propagation.go 正在载入提交数据...
tag.sh 正在载入提交数据...
trace.go 正在载入提交数据...
verify_examples.sh 正在载入提交数据...
version.go 正在载入提交数据...

OpenTelemetry-Go

Circle CI PkgGoDev Go Report Card Gitter

The Go OpenTelemetry implementation.

Project Status

Warning: this project is currently in a pre-GA phase. Backwards incompatible changes may be introduced in subsequent minor version releases as we work to track the evolving OpenTelemetry specification and user feedback.

Our progress towards a GA release candidate is tracked in this project board. This release candidate will follow semantic versioning and will be released with a major version greater than zero.

Progress and status specific to this repository is tracked in our local project boards and milestones.

Getting Started

OpenTelemetry's goal is to provide a single set of APIs to capture distributed traces and metrics from your application and send them to an observability platform. This project allows you to do just that for applications written in Go. There are two steps to this process: instrument your application, and configure an exporter.

Instrumentation

To start capturing distributed traces and metric events from your application it first needs to be instrumented. The easiest way to do this is by using an instrumentation library for your code. Be sure to check out the officially supported instrumentation libraries.

If you need to extend the telemetry an instrumentation library provides or want to build your own instrumentation for your application directly you will need to use the go.opentelemetry.io/otel/api package. The included examples are a good way to see some practical uses of this process.

Export

Now that your application is instrumented to collect telemetry, it needs an export pipeline to send that telemetry to an observability platform.

You can find officially supported exporters here and in the companion contrib repository. Additionally, there are many vendor specific or 3rd party exporters for OpenTelemetry. These exporters are broken down by trace and metric support.

Contributing

See the contributing documentation.