Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tendant/clj-telemetry

A Clojure library designed to wrap OpenTelemetry Java API(https://github.com/open-telemetry/opentelemetry-java)
https://github.com/tendant/clj-telemetry

Last synced: 16 days ago
JSON representation

A Clojure library designed to wrap OpenTelemetry Java API(https://github.com/open-telemetry/opentelemetry-java)

Awesome Lists containing this project

README

        

# clj-telemetry

A Clojure library designed to wrap [OpenTelemetry Java API](https://github.com/open-telemetry/opentelemetry-java).

## Usage

```clj
[clj-telemetry "0.2.2"]
```

1. Setup tracer

```
(def exporter (build-exporter-jaeger "test-service-name" "localhost" "14250"))
(def span-processor (build-simple-span-processor exporter))
(def open-telemetry (init-open-telemetry exporter))
(def tracer (get-tracer open-telemetry "test.tracing"))
```

2. Create span

```
(import [telemetry.tracing :as tracing])

(def span-1 (tracing/create-span tracer))

(tracing/add-event span-1 "1. first event")
(tracing/add-event span-1 "1. second event")

(tracing/end-span span-1)
```

## References

https://github.com/open-telemetry/opentelemetry-java/blob/master/QUICKSTART.md

Tracing:

https://github.com/open-telemetry/opentelemetry-specification/blob/master/specification/trace/api.md#obtaining-a-tracer

API Doc:
https://javadoc.io/doc/io.opentelemetry/opentelemetry-api/latest/index.html

Jaeger example:
https://github.com/open-telemetry/opentelemetry-java/tree/master/examples/jaeger

## License

Copyright © 2020 FIXME

This program and the accompanying materials are made available under the
terms of the Eclipse Public License 2.0 which is available at
http://www.eclipse.org/legal/epl-2.0.

This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the Eclipse
Public License, v. 2.0 are satisfied: GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or (at your
option) any later version, with the GNU Classpath Exception which is available
at https://www.gnu.org/software/classpath/license.html.