From ee785d294e7f4b324b333a94fcbde5ef285004ad Mon Sep 17 00:00:00 2001 From: Tristan Sloughter Date: Sun, 29 Nov 2020 09:07:14 -0700 Subject: [PATCH] fix batch_processor module name in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 05acb0b..17f771d 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ For an Erlang release in `sys.config`: ``` erlang {opentelemetry, [{processors, - [{ot_batch_processor, + [{otel_batch_processor, #{exporter => {opentelemetry_zipkin, #{address => "http://localhost:9411/api/v2/spans", local_endpoint => #{service_name => <<"ServiceName">>}}}}}]}]} ``` @@ -24,5 +24,5 @@ An Elixir release uses `releases.exs`: ``` elixir config :opentelemetry, - :processors, ot_batch_processor: %{exporter: {:opentelemetry_zipkin, %{address: 'http://localhost:9411/api/v2/spans', local_endpoint: %{service_name: "ServiceName"}}}} + :processors, otel_batch_processor: %{exporter: {:opentelemetry_zipkin, %{address: 'http://localhost:9411/api/v2/spans', local_endpoint: %{service_name: "ServiceName"}}}} ```