tl;dr: My scrape interval is 1m, yet I have a 15s resolution. Why?
My prometheus configuration includes a job to scrape kong metrics:
- job_name: kong_blue
honor_timestamps: true
scrape_interval: 1m
scrape_timeout: 10s
metrics_path: /metrics
scheme: https
dns_sd_configs:
- names:
- ...
Consequently, when on the targets
tab in the HTML interface, we can see that kong is scraped roughly every minute, as expected.
However, when I query that data, for example kong_http_status
, prometheus indicates a resolution of 14s. And indeed, the graph also shows one value "tick" every 15 seconds.
Why is my resolution 15s?