Kibana version: 6.8.0
Elasticsearch version: 6.8.0
APM Server version: 6.8.0
APM Agent language and version: JAVA apm-agent-attach:1.10.0, apm-agent-api:1.10.0
Browser version: Chrome 77.0.3865.90
Java version: openjdk:11
Description of the problem including expected versus actual behavior:
We are running a spring boot application (2.1.4.RELEASE) with rest api, which makes queries to Elasticsearch (7.3.0) using java high level client:
<dependency>
<groupId>org.elasticsearch.client</groupId>
<artifactId>elasticsearch-rest-high-level-client</artifactId>
<version>7.3.0</version>
</dependency>
Though it is defined in the docs, that tracing of ES rest client comes out of the box, we cannot see any traces for it
We can see:
- traces of the initial rest call
- traces of the calls to downstream systems
- traces of the
@CaptureSpanannotated methods
Is elasticsearch-rest-high-level-client not supported by APM out of the box or we are missing smth.
we start APM upon spring application startup using:
ElasticApmAttacher.attach();
our config is:
active=true
service_name= {app-name}
server_urls= {apm-host}
transaction_sample_rate=0.5
application_packages=com.app
log_level=DEBUG
I something missing in our set up or there is no such support provided?
