Hi,
We have Telegraf running as a pod scraping prometheus metrics from our application Pods. We have our inputs configured as
[[inputs.prometheus]]
name_prefix = “apps_”
urls =
metric_version = 2
monitor_kubernetes_pods = true
[[outputs.influxdb]]
timeout = “15s”
namepass = [“apps_*”]
database = “apps”
retention_policy = “14d”
urls = [“{influxdb-url}:8086”]
username = “username”
password = “password”
When the data gets into the influx, we end up with only one single measurement, no tags and all the labels end up as fields…
Is it how it is supposed to be interpreted ?
The series cardinality is 285484…
thanks,
-Sreeni