Kibana version : 7.9
Elasticsearch version : 7.9
APM Server version : 7.9
APM Agent language and version : java 1.8
Fresh install or upgraded from other version? fresh install
Is there anything special in your setup? For example, are you using the Logstash or Kafka outputs? Are you using a load balancer in front of the APM Servers? Have you changed index pattern, generated custom templates, changed agent configuration etc. :-no
I have opentracing spans created and I have added tags to my spans . Now I have to have tag names with dot(.) in it . Example labels.xxx.xxxx.
APM automatically generates labels. prefic to tag names . But I want to add one tag in between . I tried to set the tag name as xxx.xxxx but APM converts the dot underscore . How do I use a put a dot in the tag name.
example in java
protected static final String abc = "xxx.xxxx";
span.setTag(abc ,"xyz")
can I have the labels.xxx.xxxx generated by APM by any means instead of putting an underscore in the name?