Skip to content

Commit

Permalink
fix batch_processor module name in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
tsloughter committed Nov 29, 2020
1 parent 5d0a084 commit ee785d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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">>}}}}}]}]}
```
Expand All @@ -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"}}}}
```

0 comments on commit ee785d2

Please sign in to comment.