Shema Registry not showing in APM Service Map

Hello, I am using a Spring Boot Microservice as kafka producer, and I was wondering why I am not able to see the connections to Schema Registry in Service Map part in kibana APM part.
I am using
co.elastic.apm:apm-agent-api:1.50.0
co.elastic.apm:elastic-apm-agent:1.50.0
com.microsoft.azure:azure-schemaregistry-kafka-avro:1.1.1

This is what I view from kibana APM:

The connection to schema registry is done correctly before sending a message, but still doesn't appear in Service Map nor in the traces.

Kibana version: v 8.12.2

Elasticsearch version: v 8.12.2

APM Server version: v 8.12.2

APM Agent library version: v 1.50.0

Thanks for your help

Hi,

From what I understand azure-schemaregistry-kafka-avro is responsible for serialization with the avro format but relies on the apache kafka clients as we can see from the maven dependencies in the pom:

<dependency>
  <groupId>org.apache.kafka</groupId>
  <artifactId>kafka-clients</artifactId>
  <version>3.3.1</version>
</dependency>

So, if you have only one Kafka client used in your application, then it should use the same and also be instrumented in the same way.

It is still possible that the Kafka instrumentation does not work as expected in this particular case, but I don't see how that would be different from the two other kafka endpoints that are shown in the map.