What is the maximum scrape_interval in Prometheus

前端 未结 2 996
耶瑟儿~
耶瑟儿~ 2021-01-11 09:18

I used Prometheus to measure business metrics like:

# HELP items_waiting_total Total number of items in a queue
# TYPE items_waiting_total gauge
items_waitin         


        
2条回答
  •  没有蜡笔的小新
    2021-01-11 10:09

    If you want to ignore gaps, it is possible to use some aggregation_over_time functions to get your DATA from Prometheus.

    max_over_time(items_waiting_total[900s])
    

    This is useful for situations where frequent gathering of DATA is expensive for collector.

提交回复
热议问题