Hi i monitor my web application with Grafana / Influx 2.x
The flow is as following:
- Application has a prometheus metrics endpoints
- Telegraf read the data and puts it into influxdb 2.x
- grafana queries influx.
because how it is set up, when i query the raw data in Influxdb, i get a stream of tables (~900), one for every label value permutation.
what i actually need: just one resulting table, where the values per time stamp are added.
should i configure telegraf differently?
[[inputs.prometheus]]
urls = [
“http://frontend:80/metrics”,
]
metric_version = 2
name_override = “frontend”
or have i issues in my query?
best would be a solution for grafana (where these data streams lead to 900 vales per timestamp)