在Prometheus中,offset函数用于返回时间序列的偏移值。其语法为:
offset(<duration>)
其中,<duration>
是一个持续时间,用于指定时间序列的偏移量。偏移量可以是正数或负数,表示提前或延迟时间序列的时间。例如,offset(1h)
表示将时间序列向后偏移1小时,而offset(-30m)
表示将时间序列向前偏移30分钟。
示例用法:
metric_name offset(1h)
这将返回偏移1小时的metric_name
时间序列数据。