You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 29, 2020. It is now read-only.
In order to get [APM tracing](https://docs.datadoghq.com/tracing/) working, add
36
+
37
+
```
38
+
Kamon.addReporter(new DatadogSpanReporter())
39
+
```
40
+
35
41
Configuration
36
42
-------------
37
43
38
44
#### Agent Reporter
39
45
40
46
By default, the Agent reporter assumes that you have an instance of the Datadog Agent running in localhost and listening on
41
-
port 8125. If that is not the case the you can use the `kamon.datadog.agent.hostname` and `kamon.datadog.agent.port` configuration
47
+
port 8125. If that is not the case, you can use the `kamon.datadog.agent.hostname` and `kamon.datadog.agent.port` configuration
42
48
keys to point the module at your Datadog Agent installation.
43
49
44
50
#### API Reporter
@@ -56,6 +62,15 @@ follows:
56
62
57
63
You can refer to the [Datadog documentation](https://docs.datadoghq.com/developers/metrics/#histograms) for more details.
58
64
65
+
66
+
#### Span Reporter
67
+
As [recommended](https://docs.datadoghq.com/api/?lang=python#tracing) , the Span reporter assumes that you have an instance of the Datadog Agent running in localhost and listening on
68
+
port 8125. If that is not the case, you can use the `kamon.datadog.trace.http.api-url` configuration
69
+
key to point the module at your Datadog Agent installation.
70
+
71
+
Don't forget to configure [actors filtering for message tracing](https://kamon.io/docs/latest/instrumentation/akka/tracing/)
72
+
73
+
59
74
### Metric Units ###
60
75
61
76
Kamon keeps all timing measurements in nanoseconds and memory measurements in bytes. In order to scale those to other
0 commit comments