Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit 400cec5

Browse files
committed
Change min-step to 15s to show better detail.
$__rate_interval will be floored at 4x this quantity, so 15s lets us see faster transients than the previous value of 1m. Signed-off-by: Bryan Boreham <bjboreham@gmail.com>
1 parent f83ae25 commit 400cec5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* [CHANGE] Renamed `CortexCompactorRunFailed` to `CortexCompactorHasNotSuccessfullyRunCompaction`. #334
1717
* [CHANGE] Renamed `CortexInconsistentConfig` alert to `CortexInconsistentRuntimeConfig` and increased severity to `critical`. #335
1818
* [CHANGE] Increased `CortexBadRuntimeConfig` alert severity to `critical` and removed support for `cortex_overrides_last_reload_successful` metric (was removed in Cortex 1.3.0). #335
19+
* [CHANGE] Grafana 'min step' changed to 15s so dashboard show better detail. #340
1920
* [ENHANCEMENT] cortex-mixin: Make `cluster_namespace_deployment:kube_pod_container_resource_requests_{cpu_cores,memory_bytes}:sum` backwards compatible with `kube-state-metrics` v2.0.0. #317
2021
* [ENHANCEMENT] Added documentation text panels and descriptions to reads and writes dashboards. #324
2122
* [ENHANCEMENT] Dashboards: defined container functions for common resources panels: containerDiskWritesPanel, containerDiskReadsPanel, containerDiskSpaceUtilization. #331

cortex-mixin/dashboards/dashboard-utils.libsonnet

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ local utils = import 'mixin-utils/utils.libsonnet';
8484
super.queryPanel(queries, legends, legendLink) + {
8585
targets: [
8686
target {
87-
interval: '1m',
87+
interval: '15s',
8888
}
8989
for target in super.targets
9090
],
@@ -104,7 +104,7 @@ local utils = import 'mixin-utils/utils.libsonnet';
104104
super.qpsPanel(selector) + {
105105
targets: [
106106
target {
107-
interval: '1m',
107+
interval: '15s',
108108
}
109109
for target in super.targets
110110
],
@@ -114,7 +114,7 @@ local utils = import 'mixin-utils/utils.libsonnet';
114114
super.latencyPanel(metricName, selector, multiplier) + {
115115
targets: [
116116
target {
117-
interval: '1m',
117+
interval: '15s',
118118
}
119119
for target in super.targets
120120
],

0 commit comments

Comments
 (0)