1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-01-05 22:54:18 +02:00
OpenTelemetry Go API and SDK https://opentelemetry.io/
Go to file
Punya Biswal 9b242bc401
Organize API into Go modules based on stability and dependencies (#1528)
* Add a tool to auto-generate replace directives

* Auto-generated changes from previous commit

* Create new modules required for trace release

* otel/metric
* otel/trace
* otel/oteltest
* otel/sdk/export/metric
* otel/sdk/metric

Relates to #1467

* Move metric-related public API out of otel/ pkg

Move GetMeterProvider, Meter and SetMeterProvider to new package
otel/metric/global in the otel/metric module.

This will allow otel/ module to be released as v1.0.

* Include PR references in CHANGELOG

Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>

* Check for root dir

Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
2021-02-12 08:23:51 -08:00
.github Organize API into Go modules based on stability and dependencies (#1528) 2021-02-12 08:23:51 -08:00
baggage Update the package docs for the new API layout (#1346) 2020-11-17 10:30:22 -05:00
bridge Organize API into Go modules based on stability and dependencies (#1528) 2021-02-12 08:23:51 -08:00
codes Update default branch name (#1505) 2021-02-04 11:13:25 -08:00
example Organize API into Go modules based on stability and dependencies (#1528) 2021-02-12 08:23:51 -08:00
exporters Organize API into Go modules based on stability and dependencies (#1528) 2021-02-12 08:23:51 -08:00
internal Organize API into Go modules based on stability and dependencies (#1528) 2021-02-12 08:23:51 -08:00
label chore: adds vanity import for files that don't have it. (#1297) 2020-11-04 09:10:58 -08:00
metric Organize API into Go modules based on stability and dependencies (#1528) 2021-02-12 08:23:51 -08:00
oteltest Organize API into Go modules based on stability and dependencies (#1528) 2021-02-12 08:23:51 -08:00
propagation Handle tracestate in TraceContext propagator (#1447) 2021-01-12 11:12:14 -08:00
sdk Organize API into Go modules based on stability and dependencies (#1528) 2021-02-12 08:23:51 -08:00
semconv chore(semconv): Add PR number to changelog (#1323) 2020-11-16 10:29:28 -08:00
trace Organize API into Go modules based on stability and dependencies (#1528) 2021-02-12 08:23:51 -08:00
unit chore: adds vanity import for files that don't have it. (#1297) 2020-11-04 09:10:58 -08:00
.gitignore gitignore: remove unused example path (#1474) 2021-01-19 12:13:49 -08:00
.gitmodules Move OTLP to the OTLP exporter (#1050) 2020-08-10 19:55:52 -07:00
.golangci.yml Remove nolint and update misspell to ignore cancelled 2020-05-29 11:11:19 -07:00
CHANGELOG.md Organize API into Go modules based on stability and dependencies (#1528) 2021-02-12 08:23:51 -08:00
CODEOWNERS Update default branch name (#1505) 2021-02-04 11:13:25 -08:00
CONTRIBUTING.md Update default branch name (#1505) 2021-02-04 11:13:25 -08:00
doc.go Mention the getting started guide (#1406) 2020-12-17 10:00:34 -08:00
error_handler.go chore: adds vanity import for files that don't have it. (#1297) 2020-11-04 09:10:58 -08:00
get_main_pkgs.sh Build scripts: Replace mapfile with read loop for old bash versions (#1425) 2020-12-29 10:43:05 -08:00
go.mod Organize API into Go modules based on stability and dependencies (#1528) 2021-02-12 08:23:51 -08:00
go.sum Bump github.com/stretchr/testify from 1.6.1 to 1.7.0 (#1453) 2021-01-14 12:52:19 -08:00
handler_test.go Move Version function and code from global to toplevel (#1330) 2020-11-16 09:30:54 -08:00
handler.go Move Version function and code from global to toplevel (#1330) 2020-11-16 09:30:54 -08:00
LICENSE Initial commit 2019-05-16 12:05:27 -07:00
Makefile Organize API into Go modules based on stability and dependencies (#1528) 2021-02-12 08:23:51 -08:00
Makefile.protos Rename Makefile.proto to avoid interpretation as proto file (#1468) 2021-01-15 07:38:29 -08:00
pre_release.sh Update default branch name (#1505) 2021-02-04 11:13:25 -08:00
propagation.go Fix small typo (#1409) 2020-12-17 12:07:09 -08:00
README.md Update default branch name (#1505) 2021-02-04 11:13:25 -08:00
RELEASING.md Update default branch name (#1505) 2021-02-04 11:13:25 -08:00
tag.sh Move tools package under internal (#1141) 2020-09-09 09:14:03 -07:00
trace_test.go Move Version function and code from global to toplevel (#1330) 2020-11-16 09:30:54 -08:00
trace.go nit: Fix comment to be up-to-date (#1510) 2021-02-04 10:36:34 -08:00
verify_examples.sh Clean up tools (#762) 2020-05-26 11:35:34 -07:00
version.go Prepare release v0.16.0 (#1464) 2021-01-13 20:44:06 -05:00
VERSIONING.md Add Versioning Documentation (#1388) 2020-12-29 10:34:46 -08:00

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.