缩小时Grafana仪表板不显示数据

时间:2019-07-04 07:29:24

标签: grafana prometheus

我有一台Prometheus服务器,它使用this exporter来抓取我们的AWS账单数据作为指标。我每6小时抓取一次计费指标以限制请求。比Grafana服务器使用此数据构建一些仪表板。

当我选择Last 24 hours

时,仪表板将按预期显示数据

Dashboard with data

但是,如果我将范围更改为this Month,则图将绘制No data points

Dashboard with error

我还没有找到让Grafana缩小时显示数据的任何方法。 这是配置

{
  "aliasColors": {},
  "bars": true,
  "dashLength": 10,
  "dashes": false,
  "fill": 1,
  "gridPos": { "h": 12, "w": 5, "x": 5, "y": 16 },
  "id": 12,
  "legend": {
    "alignAsTable": true,
    "avg": false,
    "current": true,
    "hideEmpty": false,
    "hideZero": false,
    "max": false,
    "min": false,
    "rightSide": false,
    "show": true,
    "total": false,
    "values": true
  },
  "lines": false,
  "linewidth": 1,
  "links": [],
  "nullPointMode": "connected",
  "percentage": false,
  "pointradius": 2,
  "points": false,
  "renderer": "flot",
  "seriesOverrides": [],
  "spaceLength": 10,
  "stack": true,
  "steppedLine": false,
  "targets": [
    {
      "expr": "topk(5 ,aws_billing_estimated_charges_sum{linked_account=\"1234567890\"})",
      "format": "time_series",
      "intervalFactor": 1,
      "legendFormat": "{{service_name}}",
      "refId": "A"
    }
  ],
  "thresholds": [],
  "timeFrom": null,
  "timeRegions": [],
  "timeShift": null,
  "title": "Prod: Top 5 Services ",
  "tooltip": {
    "shared": true,
    "sort": 0,
    "value_type": "individual"
  },
  "type": "graph",
  "xaxis": {
    "buckets": null,
    "mode": "time",
    "name": null,
    "show": true,
    "values": []
  },
  "yaxes": [
    {
      "format": "currencyUSD",
      "label": null,
      "logBase": 1,
      "max": null,
      "min": null,
      "show": true
    },
    {
      "format": "short",
      "label": null,
      "logBase": 1,
      "max": null,
      "min": null,
      "show": false
    }
  ],
  "yaxis": {
    "align": false,
    "alignLevel": null
  }
}

如何让Grafana显示图表?

1 个答案:

答案 0 :(得分:1)

我没有任何具有如此低分辨率的指标,因此我无法进行实际测试。但是我想问题是缩小时的结果步骤超过5分钟(Prometheus的默认“ lookback delta”,可通过--query.lookback-delta命令行标志进行配置)。

此回溯增量的意思是,如果您在某个时间点查询时间序列的值(通过即时查询或通过范围查询来检索不同时间点的所述时间序列的值) ,以固定的步长时间分隔),如果采样时间少于5分钟,则只会返回一个值。因此,如果步长大于5分钟,而采样间隔远远大于5分钟,则查询在采样后不到5分钟内达到时间戳的可能性较小,而在前5分钟内没有采样的时间戳发生的可能性更高

因此,您需要做的是延长这5分钟的时间范围。通过上面的命令行标志(不建议使用,因为对于具有更合理的刮擦间隔的时间序列,可能会破坏其他假设);或使用<aggregation>_over_time函数之一。结合Grafana的$__interval变量,应该可以执行以下操作:

topk(5, max_over_time(aws_billing_estimated_charges_sum{linked_account="1234567890"}[$__interval]))

这将“迫使”普罗米修斯回溯$__interval(这是Grafana查询的样本之间的间隔),而不是5分钟。在一个月的时间范围内(以及屏幕快照中的图形大小),我猜大概是1小时左右,因此Grafana会每1小时查询一次样本,而前一个小时的最大值为<。 / p>

如果您希望这些样本产生的线条与第一个图形一样,而不是不相交的点,那么还应该在Grafana中将{em> Min step 设置为6h。或在查询中使用固定的间隔6h,但是您会得到一个仅每隔6h都变化的步进函数。