https://github.com/opencensus-beam/opencensus_zipkin
OpenCensus reporter for Zipkin
https://github.com/opencensus-beam/opencensus_zipkin
Last synced: 8 months ago
JSON representation
OpenCensus reporter for Zipkin
- Host: GitHub
- URL: https://github.com/opencensus-beam/opencensus_zipkin
- Owner: opencensus-beam
- License: apache-2.0
- Created: 2019-01-29T18:06:44.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-08-28T17:37:22.000Z (almost 6 years ago)
- Last Synced: 2025-09-24T01:52:09.373Z (9 months ago)
- Language: Erlang
- Size: 21.5 KB
- Stars: 6
- Watchers: 2
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
OpenCensus Zipkin Reporter
=====
[](https://circleci.com/gh/opencensus-beam/opencensus_zipkin)
[](https://hex.pm/packages/opencensus_zipkin)
To use, add `opencensus_zipkin` dependency as a runtime application (in rebar3 this means add to the `applications` list of `.app.src`) and set as the reporter in the `opencensus` configuration:
``` erlang
{opencensus, [
{reporters, [{oc_reporter_zipkin, [{address, "http://localhost:9411/api/v2/spans"},
{local_endpoint, #{<<"serviceName">> => <<"service">>}]}}]}
...]}
```