Since 2.1.7
The Elasticsearch client instrumentation will automatically create spans for requests sent using the official Java REST client.
When using the high level client, all Spans created by the instrumentation will have a name that corresponds to the request type (e.g. ListTasksRequest will be translated to “elasticsearch.list.tasks”). When using the low level client, all Spans will have a name representing the operation (e.g. “elasticsearch.sync” or “elasticsearch.async”).
The Spans will also have the following tags:
The instrumentation only supports the 7.x series of the Elasticsearch Java Rest client. If you are interested in support for the 6.x series, please open an issue on Github.
In case you are not using the Kamon Bundle, add the dependency below to your build.
libraryDependencies += "io.kamon" %% "kamon-elasticsearch" % "2.5.9"
<dependency>
<groupId>io.kamon</groupId>
<artifactId>kamon-elasticsearch_2.13</artifactId>
<version>2.5.9</version>
</dependency>
implementation 'io.kamon:kamon-elasticsearch_2.13:2.5.9'
You must start your application with the instrumentation agent for this module to work properly.