File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,14 +15,14 @@ Add `open_telemetry_decorator` to your list of dependencies in `mix.exs`. We inc
15
15
``` elixir
16
16
def deps do
17
17
[
18
- {:opentelemetry , " ~> 1.4 " },
19
- {:opentelemetry_exporter , " ~> 1.7 " },
18
+ {:opentelemetry , " ~> 1.5 " },
19
+ {:opentelemetry_exporter , " ~> 1.8 " },
20
20
{:open_telemetry_decorator , " ~> 1.5" }
21
21
]
22
22
end
23
23
```
24
24
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.
26
26
https://github.com/open-telemetry/opentelemetry-erlang/tree/main/apps/opentelemetry_zipkin
27
27
28
28
### Honeycomb Example
@@ -78,7 +78,7 @@ defmodule MyApp.Worker do
78
78
def do_work (arg1, arg2) do
79
79
O11y .set_attributes (arg1: arg1, arg2: arg2)
80
80
# ...doing work
81
- Attributes .set_attribute (:output , " something" )
81
+ O11y .set_attribute (:output , " something" )
82
82
end
83
83
end
84
84
```
You can’t perform that action at this time.
0 commit comments