在 Grafana/Prometheus/VictoriaMetrics 中整合和时间段

integrate and time period in Grafana/Prometheus/VictoriaMetrics

我正在尝试使用 Prometheus 中的集成功能,使用功能 victoria_metrics 通过功能 Grafana(位于页面右上角)来控制时间段。但是这个控件不起作用。要计算总流量(总字节),我必须使用变量“间隔”:5m、15m、30m、1h、3h、6h ... 1 天、2 天、一周等来显示信息有关所需时间段内流量的仪表板。

因此,我必须使用 Grafana 中的时间段选择来设置所需的时间段,例如:07/20/2020 - 07/26/2020(7 天)另外我使用我的变量:7 天。

好尴尬..怎么只用Grafana接口?对于带宽图,这有效。

我的查询:

integrate(outbound{location="city1"}[$timeframe])/8/(1024^3)

原始数据进入 gbit/sec。网络接口的带宽指标适用于查询

outbound{location="city1"}

尝试在查询中用 [$__range] 替换 [$timeframe]$__range 是一个特殊的 Grafana 变量,等于选定的时间段。有关详细信息,请参阅 the docs about $__range variable