Hello,
I'm new to Prometheus and trying out Thanos. I'm coming from the InfluxDB / Telegraf world and I found a Template for Grafana, which is a fork, we use for InfluxDB. It is for Victoriametrics and uses in the Grafana template some functions, PromQL does not have.
One of them is: abs(ideriv)): On the side from
VictoriaMetrics() it means: "ideriv(m) - for calculating instant derivative for m."
I have something like:
abs(ideriv(quantile(0.5,net_bytes_recv{host =~ "$server",interface =~ "(vlan|eth|bond|ens).*"}) by (host,interface)))*8
Is there a way to get the same, so that I can search/replace this function ?
cu denny