I used Prometheus to measure business performance, for example:
# HELP items_waiting_total Total number of items in a queue
I would like to save this data for a very long time (5 years of storage), and I do not need a high frequency in scrape_interval. So I set scrape_interval: "900s"
.
When I check the graph in Prometheus with a resolution of 60 s, it shows that it is clapping, but this is not true.
The question is, what is the maximum (recommended) scrape_interval in Prometheus?
source share