Skip to content

Commit

Permalink
Merge pull request #340 from grafana/min-step-15s
Browse files Browse the repository at this point in the history
Change min-step to 15s to show better detail.
  • Loading branch information
bboreham authored Jun 30, 2021
2 parents f83ae25 + 400cec5 commit 90a7809
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
* [CHANGE] Renamed `CortexCompactorRunFailed` to `CortexCompactorHasNotSuccessfullyRunCompaction`. #334
* [CHANGE] Renamed `CortexInconsistentConfig` alert to `CortexInconsistentRuntimeConfig` and increased severity to `critical`. #335
* [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
* [CHANGE] Grafana 'min step' changed to 15s so dashboard show better detail. #340
* [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
* [ENHANCEMENT] Added documentation text panels and descriptions to reads and writes dashboards. #324
* [ENHANCEMENT] Dashboards: defined container functions for common resources panels: containerDiskWritesPanel, containerDiskReadsPanel, containerDiskSpaceUtilization. #331
Expand Down
6 changes: 3 additions & 3 deletions cortex-mixin/dashboards/dashboard-utils.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ local utils = import 'mixin-utils/utils.libsonnet';
super.queryPanel(queries, legends, legendLink) + {
targets: [
target {
interval: '1m',
interval: '15s',
}
for target in super.targets
],
Expand All @@ -104,7 +104,7 @@ local utils = import 'mixin-utils/utils.libsonnet';
super.qpsPanel(selector) + {
targets: [
target {
interval: '1m',
interval: '15s',
}
for target in super.targets
],
Expand All @@ -114,7 +114,7 @@ local utils = import 'mixin-utils/utils.libsonnet';
super.latencyPanel(metricName, selector, multiplier) + {
targets: [
target {
interval: '1m',
interval: '15s',
}
for target in super.targets
],
Expand Down

0 comments on commit 90a7809

Please sign in to comment.