You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
techknowlogick 47f6a4ec3f
go1.16 (#14783)
3 yıl önce
..
codes go1.16 (#14783) 3 yıl önce
internal [Vendor] Update go-redis to v8.5.0 (#13749) 3 yıl önce
label [Vendor] Update go-redis to v8.5.0 (#13749) 3 yıl önce
metric go1.16 (#14783) 3 yıl önce
propagation [Vendor] Update go-redis to v8.5.0 (#13749) 3 yıl önce
trace go1.16 (#14783) 3 yıl önce
unit [Vendor] Update go-redis to v8.5.0 (#13749) 3 yıl önce
.gitignore go1.16 (#14783) 3 yıl önce
.gitmodules [Vendor] Update go-redis to v8.5.0 (#13749) 3 yıl önce
.golangci.yml [Vendor] Update go-redis to v8.5.0 (#13749) 3 yıl önce
CHANGELOG.md go1.16 (#14783) 3 yıl önce
CODEOWNERS go1.16 (#14783) 3 yıl önce
CONTRIBUTING.md go1.16 (#14783) 3 yıl önce
LICENSE [Vendor] Update go-redis to v8.5.0 (#13749) 3 yıl önce
Makefile go1.16 (#14783) 3 yıl önce
Makefile.protos go1.16 (#14783) 3 yıl önce
README.md go1.16 (#14783) 3 yıl önce
RELEASING.md go1.16 (#14783) 3 yıl önce
VERSIONING.md [Vendor] Update go-redis to v8.5.0 (#13749) 3 yıl önce
doc.go [Vendor] Update go-redis to v8.5.0 (#13749) 3 yıl önce
error_handler.go [Vendor] Update go-redis to v8.5.0 (#13749) 3 yıl önce
get_main_pkgs.sh [Vendor] Update go-redis to v8.5.0 (#13749) 3 yıl önce
go.mod go1.16 (#14783) 3 yıl önce
go.sum go1.16 (#14783) 3 yıl önce
handler.go [Vendor] Update go-redis to v8.5.0 (#13749) 3 yıl önce
pre_release.sh go1.16 (#14783) 3 yıl önce
propagation.go [Vendor] Update go-redis to v8.5.0 (#13749) 3 yıl önce
tag.sh [Vendor] Update go-redis to v8.5.0 (#13749) 3 yıl önce
trace.go go1.16 (#14783) 3 yıl önce
verify_examples.sh [Vendor] Update go-redis to v8.5.0 (#13749) 3 yıl önce
version.go go1.16 (#14783) 3 yıl önce

README.md

OpenTelemetry-Go

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.

Project versioning information and stability guarantees can be found in the versioning documentation.

Getting Started

You can find a getting started guide on opentelemetry.io.

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.