You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
285 B
8 lines
285 B
3 months ago
|
{
|
||
|
// rangeInterval takes a scrape interval and convert its to a range interval
|
||
|
// following Prometheus rule of thumb for rate() and irate().
|
||
|
rangeInterval(i='1m'):
|
||
|
local interval = std.parseInt(std.substr(i, 0, std.length(i) - 1));
|
||
|
interval * 4 + i[std.length(i) - 1],
|
||
|
}
|