diff --git a/templates/grafana/dashboards-coredns.yaml b/templates/grafana/dashboards-coredns.yaml index eb4395b..8bd507a 100644 --- a/templates/grafana/dashboards-coredns.yaml +++ b/templates/grafana/dashboards-coredns.yaml @@ -72,7 +72,7 @@ data: "steppedLine": false, "targets": [ { - "expr": "sum(rate(coredns_dns_request_count_total{instance=~\"$instance\"}[5m])) by (proto)", + "expr": "sum(rate(coredns_dns_requests_total{instance=~\"$instance\"}[5m])) by (proto)", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{proto}}", @@ -163,7 +163,7 @@ data: "steppedLine": false, "targets": [ { - "expr": "sum(rate(coredns_dns_request_type_count_total{instance=~\"$instance\"}[5m])) by (type)", + "expr": "sum(rate(coredns_dns_requests_total{instance=~\"$instance\"}[5m])) by (type)", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{type}}", @@ -254,7 +254,7 @@ data: "steppedLine": false, "targets": [ { - "expr": "sum(rate(coredns_dns_request_count_total{instance=~\"$instance\"}[5m])) by (zone)", + "expr": "sum(rate(coredns_dns_requests_total{instance=~\"$instance\"}[5m])) by (zone)", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{zone}}", @@ -463,7 +463,7 @@ data: "steppedLine": false, "targets": [ { - "expr": "sum(rate(coredns_dns_response_rcode_count_total{instance=~\"$instance\"}[5m])) by (rcode)", + "expr": "sum(rate(coredns_dns_responses_total{instance=~\"$instance\"}[5m])) by (rcode)", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{rcode}}", @@ -790,7 +790,7 @@ data: "steppedLine": false, "targets": [ { - "expr": "sum(coredns_cache_size{instance=~\"$instance\"}) by (type)", + "expr": "sum(coredns_cache_entries{instance=~\"$instance\"}) by (type)", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{type}}", diff --git a/templates/grafana/deployment.yaml b/templates/grafana/deployment.yaml index 96d45cc..f25a80e 100644 --- a/templates/grafana/deployment.yaml +++ b/templates/grafana/deployment.yaml @@ -23,7 +23,7 @@ spec: spec: containers: - name: grafana - image: docker.io/grafana/grafana:7.1.0 + image: docker.io/grafana/grafana:7.1.1 env: - name: GF_PATHS_CONFIG value: "/etc/grafana/custom.ini" diff --git a/templates/prometheus/deployment.yaml b/templates/prometheus/deployment.yaml index d9077b2..a0dbc48 100644 --- a/templates/prometheus/deployment.yaml +++ b/templates/prometheus/deployment.yaml @@ -20,7 +20,7 @@ spec: serviceAccountName: prometheus containers: - name: prometheus - image: quay.io/prometheus/prometheus:v2.19.2 + image: quay.io/prometheus/prometheus:v2.20.0 args: - --web.listen-address=0.0.0.0:9090 - --config.file=/etc/prometheus/prometheus.yaml