You are viewing documentation for an outdated version. Do you wish to see documentation for the latest version?
Kamon ships instrumentation modules for Akka, each addressing a different aspect of the toolkit:
This module is the foundation of all Akka-related instrumentation, including:
The following artifacts are published, pick the right one for your Akka version:
kamon-akka-2.4
for Akka 2.4.20+kamon-akka-2.5
for Akka 2.5.8+
libraryDependencies += "io.kamon" %% "kamon-akka-2.5" % "1.1.2"
<dependency>
<groupId>io.kamon</groupId>
<artifactId>kamon-akka-2.5_2.13</artifactId>
<version>1.1.2</version>
</dependency>
implementation 'io.kamon:kamon-akka-2.5_2.13:1.1.2'
You must start your application with the instrumentation agent for this module to work properly.
Provides instrumentation for remoting channels in Akka. Since Akka cluster builds on top of remoting, the metrics and context propagation features included with this module will also benefit cluster users.
The following artifacts are published, pick the right one for your Akka version:
kamon-akka-remote-2.4
for Akka 2.4.20+kamon-akka-remote-2.5
for Akka 2.5.8+
libraryDependencies += "io.kamon" %% "kamon-akka-remote-2.5" % "1.1.0"
<dependency>
<groupId>io.kamon</groupId>
<artifactId>kamon-akka-remote-2.5_2.13</artifactId>
<version>1.1.0</version>
</dependency>
implementation 'io.kamon:kamon-akka-remote-2.5_2.13:1.1.0'
You must start your application with the instrumentation agent for this module to work properly.