1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2024-12-12 10:04:29 +02:00
OpenTelemetry Go API and SDK https://opentelemetry.io/
Go to file
Johannes Liebermann c3c4273ecc
Add RO/RW span interfaces (#1360)
* Store span data directly in the span

- Nesting only some of a span's data in a `data` field (with the rest
  of the data living direclty in the `span` struct) is confusing.
- export.SpanData is meant to be an immutable *snapshot* of a span,
  not the "authoritative" state of the span.
- Refactor attributesMap.toSpanData into toKeyValue and make it
  return a []label.KeyValue which is clearer than modifying a struct
  passed to the function.
- Read droppedCount from the attributesMap as a separate operation
  instead of setting it from within attributesMap.toSpanData.
- Set a span's end time in the span itself rather than in the
  SpanData to allow reading the span's end time after a span has
  ended.
- Set a span's end time as soon as possible within span.End so that
  we don't influence the span's end time with operations such as
  fetching span processors and generating span data.
- Remove error handling for uninitialized spans. This check seems to
  be necessary only because we used to have an *export.SpanData field
  which could be nil. Now that we no longer have this field I think we
  can safely remove the check. The error isn't used anywhere else so
  remove it, too.

* Store parent as trace.SpanContext

The spec requires that the parent field of a Span be a Span, a
SpanContext or null.

Rather than extracting the parent's span ID from the trace.SpanContext
which we get from the tracer, store the trace.SpanContext as is and
explicitly extract the parent's span ID where necessary.

* Add ReadOnlySpan interface

Use this interface instead of export.SpanData in places where reading
information from a span is necessary. Use export.SpanData only when
exporting spans.

* Add ReadWriteSpan interface

Use this interface instead of export.SpanData in places where it is
necessary to read information from a span and write to it at the same
time.

* Rename export.SpanData to SpanSnapshot

SpanSnapshot represents the nature of this type as well as its
intended use more accurately.

Clarify the purpose of SpanSnapshot in the docs and emphasize what
should and should not be done with it.

* Rephrase attributesMap doc comment

"refreshes" is wrong for plural ("updates").

* Refactor span.End()

- Improve accuracy of span duration. Record span end time ASAP. We
  want to measure a user operation as accurately as possible, which
  means we want to mark the end time of a span as soon as possible
  after span.End() is called. Any operations we do inside span.End()
  before storing the end time affect the total duration of the span,
  and although these operations are rather fast at the moment they
  still seem to affect the duration of the span by "artificially"
  adding time between the start and end timestamps. This is relevant
  only in cases where the end time isn't explicitly specified.
- Remove redundant idempotence check. Now that IsRecording() is based
  on the value of span.endTime, IsRecording() will always return
  false after span.End() had been called because span.endTime won't
  be zero. This means we no longer need span.endOnce.
- Improve TestEndSpanTwice so that it also ensures subsequent calls
  to span.End() don't modify the span's end time.

* Update changelog

Co-authored-by: Tyler Yahn <codingalias@gmail.com>
Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
2020-12-10 21:15:44 -08:00
.circleci Export coverage report to codecov (#995) 2020-08-24 09:43:29 -07:00
.github Rework proto generation (#1371) 2020-12-07 09:36:06 -08:00
baggage Update the package docs for the new API layout (#1346) 2020-11-17 10:30:22 -05:00
bridge Release v0.15.0 (#1392) 2020-12-10 21:00:59 -08:00
codes Update the package docs for the new API layout (#1346) 2020-11-17 10:30:22 -05:00
example Release v0.15.0 (#1392) 2020-12-10 21:00:59 -08:00
exporters Add RO/RW span interfaces (#1360) 2020-12-10 21:15:44 -08:00
internal Rework proto generation (#1371) 2020-12-07 09:36:06 -08:00
label chore: adds vanity import for files that don't have it. (#1297) 2020-11-04 09:10:58 -08:00
metric Update the package docs for the new API layout (#1346) 2020-11-17 10:30:22 -05:00
oteltest Move baggage and propagation to separate packages (#1325) 2020-11-13 07:34:24 -08:00
propagation Move Version function and code from global to toplevel (#1330) 2020-11-16 09:30:54 -08:00
sdk Add RO/RW span interfaces (#1360) 2020-12-10 21:15:44 -08:00
semconv chore(semconv): Add PR number to changelog (#1323) 2020-11-16 10:29:28 -08:00
trace Update the package docs for the new API layout (#1346) 2020-11-17 10:30:22 -05:00
unit chore: adds vanity import for files that don't have it. (#1297) 2020-11-04 09:10:58 -08:00
.gitignore Move opencensus example to the example directory (#1359) 2020-11-20 13:34:40 -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 Add RO/RW span interfaces (#1360) 2020-12-10 21:15:44 -08:00
CODEOWNERS Add @XSAM as project approver (#1110) 2020-08-28 17:05:48 -04:00
CONTRIBUTING.md Ensure exported interfaces have named method parameters (#1172) 2020-09-16 09:09:45 -07:00
doc.go Update the package docs for the new API layout (#1346) 2020-11-17 10:30:22 -05: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 Update License header for all source files (#586) 2020-03-23 22:41:10 -07:00
go.mod Bump github.com/google/go-cmp from 0.5.3 to 0.5.4 (#1374) 2020-11-30 10:31:41 -08:00
go.sum Bump github.com/google/go-cmp from 0.5.3 to 0.5.4 (#1374) 2020-11-30 10:31:41 -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 Build examples last (#1370) 2020-12-01 08:02:36 -08:00
Makefile.proto Rework proto generation (#1371) 2020-12-07 09:36:06 -08:00
metric_test.go Move Version function and code from global to toplevel (#1330) 2020-11-16 09:30:54 -08:00
metric.go Move Version function and code from global to toplevel (#1330) 2020-11-16 09:30:54 -08:00
pre_release.sh Move Version function and code from global to toplevel (#1330) 2020-11-16 09:30:54 -08:00
propagation.go Move Version function and code from global to toplevel (#1330) 2020-11-16 09:30:54 -08:00
README.md update go documentation badge image (#1322) 2020-11-12 07:33:04 -08:00
RELEASING.md Add reminder to release contrib after this repo (#1030) 2020-08-05 09:01:00 -07: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 Move Version function and code from global to toplevel (#1330) 2020-11-16 09:30:54 -08:00
verify_examples.sh Clean up tools (#762) 2020-05-26 11:35:34 -07:00
version.go Release v0.15.0 (#1392) 2020-12-10 21:00:59 -08:00

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.