2019-08-05 13:58:24 -07:00
# OpenTelemetry-Go
2019-07-03 22:43:54 +08:00
[![Circle CI ](https://circleci.com/gh/open-telemetry/opentelemetry-go.svg?style=svg )](https://circleci.com/gh/open-telemetry/opentelemetry-go)
2019-08-27 01:11:07 +09:00
[![Docs ](https://godoc.org/go.opentelemetry.io?status.svg )](http://godoc.org/go.opentelemetry.io)
[![Go Report Card ](https://goreportcard.com/badge/go.opentelemetry.io )](https://goreportcard.com/report/go.opentelemetry.io)
2019-07-02 16:22:54 -07:00
2019-08-05 13:58:24 -07:00
This is a prototype *intended to be modified* into the opentelemetry-go implementation. The `api` directory here should be used as a starting point to introduce a new OpenTelemetry exporter, whereas the existing `exporter/observer` streaming model should be help verify the api
2019-06-14 11:37:05 -07:00
To run the examples, first build the stderr tracer plugin (requires Linux or OS X):
2019-08-05 13:58:24 -07:00
```console
2019-08-13 00:46:56 +02:00
(cd ./experimental/streaming/exporter/stdout/plugin & & make)
(cd ./experimental/streaming/exporter/spanlog/plugin & & make)
2019-06-14 11:37:05 -07:00
```
2019-08-05 13:58:24 -07:00
Then set the `OPENTELEMETRY_LIB` environment variable to the .so file in that directory, e.g.,
2019-06-14 11:37:05 -07:00
2019-08-05 13:58:24 -07:00
```console
2019-08-13 00:46:56 +02:00
OPENTELEMETRY_LIB=./experimental/streaming/exporter/stderr/plugin/stderr.so go run ./example/http/server/server.go
2019-06-14 11:37:05 -07:00
```
and
2019-08-05 13:58:24 -07:00
```console
2019-08-13 00:46:56 +02:00
OPENTELEMETRY_LIB=./experimental/streaming/exporter/spanlog/plugin/spanlog.so go run ./example/http/client/client.go
2019-06-14 11:37:05 -07:00
```