Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/opencensus-beam/opencensus_zipkin
OpenCensus reporter for Zipkin
https://github.com/opencensus-beam/opencensus_zipkin
Last synced: 2 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 (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-28T17:37:22.000Z (over 4 years ago)
- Last Synced: 2024-11-07T16:41:56.410Z (3 months ago)
- Language: Erlang
- Size: 21.5 KB
- Stars: 6
- Watchers: 3
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
OpenCensus Zipkin Reporter
=====[![CircleCI](https://circleci.com/gh/opencensus-beam/opencensus_zipkin.svg?style=svg)](https://circleci.com/gh/opencensus-beam/opencensus_zipkin)
[![Hex.pm](https://img.shields.io/hexpm/v/opencensus_zipkin.svg?style=flat)](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">>}]}}]}
...]}
```