Skip to content

Commit

Permalink
Fix a bug in alertmanager 0.9.0. Fix a query in grafana dashboard.
Browse files Browse the repository at this point in the history
  • Loading branch information
camilb committed Sep 29, 2017
1 parent f413d01 commit cb968ba
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"type": "grafana",
"id": "grafana",
"name": "Grafana",
"version": "4.4.1"
"version": "4.5.2"
},
{
"type": "datasource",
Expand Down Expand Up @@ -428,7 +428,7 @@
"tableColumn": "",
"targets": [
{
"expr": "sum(kube_node_status_ready{condition!=\"true\"})",
"expr": "sum(kube_node_status_condition{condition!=\"Ready\", status=\"true\"})",
"format": "time_series",
"intervalFactor": 2,
"legendFormat": "",
Expand Down Expand Up @@ -730,4 +730,4 @@
"timezone": "",
"title": "Kubernetes Cluster Health",
"version": 12
}
}
2 changes: 1 addition & 1 deletion operator/deploy
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
GRAFANA_DEFAULT_VERSION=4.5.2
PROMETHEUS_DEFAULT_VERSION=v2.0.0-beta.5
PROMETHEUS_OPERATOR_DEFAULT_VERSION=v0.13.0
ALERT_MANAGER_DEFAULT_VERSION=v0.9.0
ALERT_MANAGER_DEFAULT_VERSION=v0.9.1
NODE_EXPORTER_DEFAULT_VERSION=v0.14.0
KUBE_STATE_METRICS_DEFAULT_VERSION=v1.0.1

Expand Down
7 changes: 4 additions & 3 deletions operator/manifests/grafana/grafana-dashboards.cm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1912,7 +1912,7 @@ data:
"type": "grafana",
"id": "grafana",
"name": "Grafana",
"version": "4.4.1"
"version": "4.5.2"
},
{
"type": "datasource",
Expand Down Expand Up @@ -2326,7 +2326,7 @@ data:
"tableColumn": "",
"targets": [
{
"expr": "sum(kube_node_status_ready{condition!=\"true\"})",
"expr": "sum(kube_node_status_condition{condition!=\"Ready\", status=\"true\"})",
"format": "time_series",
"intervalFactor": 2,
"legendFormat": "",
Expand Down Expand Up @@ -2628,7 +2628,8 @@ data:
"timezone": "",
"title": "Kubernetes Cluster Health",
"version": 12
},
}
,
"inputs": [
{
"name": "DS_PROMETHEUS",
Expand Down

0 comments on commit cb968ba

Please sign in to comment.