Hello,
I am having troubles with using visualizations for data that does not have any index mapping.
I am not able to refresh the index in Kibana. If I hit the refresh page it just stays at 370 fields. I even deleted the index and readded it again. I have set the following in my apm-server config.
setup.template.fields: "/etc/apm-server/fields.yml"
setup.template.overwrite: true
But still, it does not refresh the index mapping.
I even deleted the saved objects where apm*
. Still no luck.
I tried to readd the mapping via the setup kibana apm dashboard
, with apm-server setup
, with the refresh button
. Everything seems to be doing something but still, no luck.
Everything is 7.3.0 in my setup. I am using java apm with 1.8.0 with Tomcat. APM itself is working fine.
Is there anything that I am missing?
My entire apm config looks like this:
apm-server:
host: "0.0.0.0:8200"
rum:
enabled: true
output.elasticsearch:
hosts: ["elasticsearch1:9200","elasticsearch2:9200","elasticsearch3:9200"]
protocol: "https"
username: "myFancyUser"
password: "myFancypassword"
ssl.certificate_authorities: ["/etc/ssl/certs/myCA.pem"]
tags: ["fancy-service"]
setup.template.fields: "/etc/apm-server/fields.yml"
setup.template.overwrite: true
Already tried those:
Refresh index pattern not working telling me that "nested fields are not supported?"
No cached mapping for this field --> APM did no good sadly
Ability to add more exported fields in APM I followed that to the set-tag
Ok, so with https://www.elastic.co/guide/en/apm/agent/js-base/current/transaction-api.html#transaction-add-tags basically using addLabels()
I have to define the fields I want to search and index? That kind a fields odd, especially since this targets the RUM and I do not have RUM in use yet.