├── .gitignore ├── .travis.yml ├── CHANGES.md ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── doc ├── edoc-info ├── erlang.png ├── index.html ├── modules-frame.html ├── otter.html ├── otter_app.html ├── otter_config.html ├── otter_conn_zipkin.html ├── otter_filter.html ├── otter_lib.html ├── otter_server_span_cb.html ├── otter_server_zipkin_handler.html ├── otter_snapshot_count.html ├── otter_span.html ├── otter_span_id_api.html ├── otter_span_mpdict_api.html ├── otter_span_pdict_api.html ├── otter_sup.html ├── overview-summary.html ├── overview.edoc └── stylesheet.css ├── docs └── images │ ├── otter_flow.png │ └── otter_logo.png ├── priv └── zipkinCore.thrift ├── rebar.config ├── src ├── otter.app.src ├── otter.erl ├── otter_app.erl ├── otter_config.erl ├── otter_conn_zipkin.erl ├── otter_filter.erl ├── otter_span_id_api.erl ├── otter_span_mpdict_api.erl ├── otter_span_pdict_api.erl ├── otter_sup.erl └── otter_zipkin_sender.erl └── test ├── otter_SUITE.erl ├── test_custom_cb.config ├── test_httpc.config └── test_ibrowse.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | otter - Open Tracing Tool for ERlang 2 | Copyright 2017 Bluehouse Technology Ltd. 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/README.md -------------------------------------------------------------------------------- /doc/edoc-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/doc/edoc-info -------------------------------------------------------------------------------- /doc/erlang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/doc/erlang.png -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/doc/index.html -------------------------------------------------------------------------------- /doc/modules-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/doc/modules-frame.html -------------------------------------------------------------------------------- /doc/otter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/doc/otter.html -------------------------------------------------------------------------------- /doc/otter_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/doc/otter_app.html -------------------------------------------------------------------------------- /doc/otter_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/doc/otter_config.html -------------------------------------------------------------------------------- /doc/otter_conn_zipkin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/doc/otter_conn_zipkin.html -------------------------------------------------------------------------------- /doc/otter_filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/doc/otter_filter.html -------------------------------------------------------------------------------- /doc/otter_lib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/doc/otter_lib.html -------------------------------------------------------------------------------- /doc/otter_server_span_cb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/doc/otter_server_span_cb.html -------------------------------------------------------------------------------- /doc/otter_server_zipkin_handler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/doc/otter_server_zipkin_handler.html -------------------------------------------------------------------------------- /doc/otter_snapshot_count.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/doc/otter_snapshot_count.html -------------------------------------------------------------------------------- /doc/otter_span.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/doc/otter_span.html -------------------------------------------------------------------------------- /doc/otter_span_id_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/doc/otter_span_id_api.html -------------------------------------------------------------------------------- /doc/otter_span_mpdict_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/doc/otter_span_mpdict_api.html -------------------------------------------------------------------------------- /doc/otter_span_pdict_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/doc/otter_span_pdict_api.html -------------------------------------------------------------------------------- /doc/otter_sup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/doc/otter_sup.html -------------------------------------------------------------------------------- /doc/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/doc/overview-summary.html -------------------------------------------------------------------------------- /doc/overview.edoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/doc/overview.edoc -------------------------------------------------------------------------------- /doc/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/doc/stylesheet.css -------------------------------------------------------------------------------- /docs/images/otter_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/docs/images/otter_flow.png -------------------------------------------------------------------------------- /docs/images/otter_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/docs/images/otter_logo.png -------------------------------------------------------------------------------- /priv/zipkinCore.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/priv/zipkinCore.thrift -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/rebar.config -------------------------------------------------------------------------------- /src/otter.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/src/otter.app.src -------------------------------------------------------------------------------- /src/otter.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/src/otter.erl -------------------------------------------------------------------------------- /src/otter_app.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/src/otter_app.erl -------------------------------------------------------------------------------- /src/otter_config.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/src/otter_config.erl -------------------------------------------------------------------------------- /src/otter_conn_zipkin.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/src/otter_conn_zipkin.erl -------------------------------------------------------------------------------- /src/otter_filter.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/src/otter_filter.erl -------------------------------------------------------------------------------- /src/otter_span_id_api.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/src/otter_span_id_api.erl -------------------------------------------------------------------------------- /src/otter_span_mpdict_api.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/src/otter_span_mpdict_api.erl -------------------------------------------------------------------------------- /src/otter_span_pdict_api.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/src/otter_span_pdict_api.erl -------------------------------------------------------------------------------- /src/otter_sup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/src/otter_sup.erl -------------------------------------------------------------------------------- /src/otter_zipkin_sender.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/src/otter_zipkin_sender.erl -------------------------------------------------------------------------------- /test/otter_SUITE.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/test/otter_SUITE.erl -------------------------------------------------------------------------------- /test/test_custom_cb.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/test/test_custom_cb.config -------------------------------------------------------------------------------- /test/test_httpc.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/opentracing-erlang/HEAD/test/test_httpc.config -------------------------------------------------------------------------------- /test/test_ibrowse.config: -------------------------------------------------------------------------------- 1 | [{otter, [{http_client, ibrowse}]}]. 2 | --------------------------------------------------------------------------------