普罗米修斯自午夜以来以秒为单位的偏移量
Prometheus offset in seconds since midnight
我有一个 api 调用的计数器指标。我想查看今天打了多少电话(即从午夜开始)。我最初虽然是使用似乎合适的 delta 函数,但我不知道如何计算从 time() 到午夜
的偏移量
time() % 86400
将给出自 UTC 午夜以来的秒数。
当你在使用grafana的时候,你可以这样尝试:delta(your_counter[${__range_s}s])
。 grafana中有几个特殊的变量:https://grafana.com/docs/grafana/latest/variables/variable-types/global-variables/
How do I get this data from midnight to the current appointment time?
sum(increase(node_network_transmit_bytes_total{alias="srvsquidproxy",device="ens160",instance="192.168.0.64:9100",job="Linux"}
我有一个 api 调用的计数器指标。我想查看今天打了多少电话(即从午夜开始)。我最初虽然是使用似乎合适的 delta 函数,但我不知道如何计算从 time() 到午夜
的偏移量time() % 86400
将给出自 UTC 午夜以来的秒数。
当你在使用grafana的时候,你可以这样尝试:delta(your_counter[${__range_s}s])
。 grafana中有几个特殊的变量:https://grafana.com/docs/grafana/latest/variables/variable-types/global-variables/
How do I get this data from midnight to the current appointment time?
sum(increase(node_network_transmit_bytes_total{alias="srvsquidproxy",device="ens160",instance="192.168.0.64:9100",job="Linux"}