Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/tendant/clj-telemetry
- Owner: tendant
- License: epl-2.0
- Created: 2020-05-23T01:54:21.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-22T07:36:10.000Z (almost 4 years ago)
- Last Synced: 2024-10-12T13:31:21.367Z (about 1 month ago)
- Language: Clojure
- Homepage:
- Size: 28.3 KB
- Stars: 16
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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.htmlJaeger 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.