Skip to content

Commit 6e972c5

Browse files
committed
update readme installation instructions with latest versions
1 parent 3faa8d4 commit 6e972c5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ Add `open_telemetry_decorator` to your list of dependencies in `mix.exs`. We inc
1515
```elixir
1616
def deps do
1717
[
18-
{:opentelemetry, "~> 1.4"},
19-
{:opentelemetry_exporter, "~> 1.7"},
18+
{:opentelemetry, "~> 1.5"},
19+
{:opentelemetry_exporter, "~> 1.8"},
2020
{:open_telemetry_decorator, "~> 1.5"}
2121
]
2222
end
2323
```
2424

25-
Then follow the directions for the exporter of your choice to send traces to to zipkin, honeycomb, etc.
25+
Then follow the directions for the exporter of your choice to send traces to zipkin, honeycomb, etc.
2626
https://github.com/open-telemetry/opentelemetry-erlang/tree/main/apps/opentelemetry_zipkin
2727

2828
### Honeycomb Example
@@ -78,7 +78,7 @@ defmodule MyApp.Worker do
7878
def do_work(arg1, arg2) do
7979
O11y.set_attributes(arg1: arg1, arg2: arg2)
8080
# ...doing work
81-
Attributes.set_attribute(:output, "something")
81+
O11y.set_attribute(:output, "something")
8282
end
8383
end
8484
```

0 commit comments

Comments
 (0)