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: 3 months ago
JSON representation

OpenCensus reporter for Zipkin

Lists

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">>}]}}]}
...]}
```