Skip to content
Snippets Groups Projects

from hourly metrics to 15min metrics

Merged Ewoud Ketele requested to merge ewketele/LHCbDIRAC:fixDashboards into master
9 files
+ 31
31
Compare changes
  • Side-by-side
  • Inline
Files
9
@@ -42,7 +42,7 @@
"showLineNumbers": false,
"showMiniMap": false
},
"content": "When querying over long time ranges, grafana aggregates (sums) `Metric` over larger time bins than the default ElasticSearch/OpenSearch ones (15m) to lower the number of data points\nit has to plot.\n\nTo account for this, `Metric` is calculated as the `Metric` per hour, regardless of the actual bin size displayed",
"content": "When querying over long time ranges, grafana aggregates (sums) `Metric` over larger time bins than the default ElasticSearch/OpenSearch ones (15m) to lower the number of data points\nit has to plot.\n\nTo account for this, `Metric` is calculated as the `Metric` per 15min, regardless of the actual bin size displayed",
"mode": "markdown"
},
"pluginVersion": "10.1.5",
@@ -164,7 +164,7 @@
"field": "Jobs",
"id": "1",
"settings": {
"script": "_value * 3600 / $__interval_ms * 1000"
"script": "_value * 3600 / $__interval_ms * 250"
},
"type": "sum"
}
@@ -190,7 +190,7 @@
"custom": {
"axisCenteredZero": false,
"axisColorMode": "text",
"axisLabel": "Jobs",
"axisLabel": "Jobs/15min",
"axisPlacement": "auto",
"barAlignment": 0,
"drawStyle": "line",
Loading