├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── README.yaml ├── django └── django.json ├── docs └── targets.md ├── kube-prometheus ├── cluster-analysis-dashboard.json ├── deployment-dashboard.json ├── deployment-utilization-dashboard.json ├── insights-dashboard.json ├── kubernetes-capacity-planning-dashboard.json ├── kubernetes-cluster-health-dashboard.json ├── kubernetes-cluster-status-dashboard.json ├── kubernetes-control-plane-status-dashboard.json ├── kubernetes-resource-requests-dashboard.json ├── label-cost-utilization-dashboard.json ├── namespace-analysis-dashboard.json ├── node-utilization-dashboard.json ├── nodes-dashboard.json ├── pod-utilization-dashboard.json ├── pods-dashboard.json └── statefulset-dashboard.json └── nginx-ingress └── nginx.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudposse-archives/grafana-dashboards/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudposse-archives/grafana-dashboards/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudposse-archives/grafana-dashboards/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudposse-archives/grafana-dashboards/HEAD/README.md -------------------------------------------------------------------------------- /README.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudposse-archives/grafana-dashboards/HEAD/README.yaml -------------------------------------------------------------------------------- /django/django.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudposse-archives/grafana-dashboards/HEAD/django/django.json -------------------------------------------------------------------------------- /docs/targets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudposse-archives/grafana-dashboards/HEAD/docs/targets.md -------------------------------------------------------------------------------- /kube-prometheus/cluster-analysis-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudposse-archives/grafana-dashboards/HEAD/kube-prometheus/cluster-analysis-dashboard.json -------------------------------------------------------------------------------- /kube-prometheus/deployment-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudposse-archives/grafana-dashboards/HEAD/kube-prometheus/deployment-dashboard.json -------------------------------------------------------------------------------- /kube-prometheus/deployment-utilization-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudposse-archives/grafana-dashboards/HEAD/kube-prometheus/deployment-utilization-dashboard.json -------------------------------------------------------------------------------- /kube-prometheus/insights-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudposse-archives/grafana-dashboards/HEAD/kube-prometheus/insights-dashboard.json -------------------------------------------------------------------------------- /kube-prometheus/kubernetes-capacity-planning-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudposse-archives/grafana-dashboards/HEAD/kube-prometheus/kubernetes-capacity-planning-dashboard.json -------------------------------------------------------------------------------- /kube-prometheus/kubernetes-cluster-health-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudposse-archives/grafana-dashboards/HEAD/kube-prometheus/kubernetes-cluster-health-dashboard.json -------------------------------------------------------------------------------- /kube-prometheus/kubernetes-cluster-status-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudposse-archives/grafana-dashboards/HEAD/kube-prometheus/kubernetes-cluster-status-dashboard.json -------------------------------------------------------------------------------- /kube-prometheus/kubernetes-control-plane-status-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudposse-archives/grafana-dashboards/HEAD/kube-prometheus/kubernetes-control-plane-status-dashboard.json -------------------------------------------------------------------------------- /kube-prometheus/kubernetes-resource-requests-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudposse-archives/grafana-dashboards/HEAD/kube-prometheus/kubernetes-resource-requests-dashboard.json -------------------------------------------------------------------------------- /kube-prometheus/label-cost-utilization-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudposse-archives/grafana-dashboards/HEAD/kube-prometheus/label-cost-utilization-dashboard.json -------------------------------------------------------------------------------- /kube-prometheus/namespace-analysis-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudposse-archives/grafana-dashboards/HEAD/kube-prometheus/namespace-analysis-dashboard.json -------------------------------------------------------------------------------- /kube-prometheus/node-utilization-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudposse-archives/grafana-dashboards/HEAD/kube-prometheus/node-utilization-dashboard.json -------------------------------------------------------------------------------- /kube-prometheus/nodes-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudposse-archives/grafana-dashboards/HEAD/kube-prometheus/nodes-dashboard.json -------------------------------------------------------------------------------- /kube-prometheus/pod-utilization-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudposse-archives/grafana-dashboards/HEAD/kube-prometheus/pod-utilization-dashboard.json -------------------------------------------------------------------------------- /kube-prometheus/pods-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudposse-archives/grafana-dashboards/HEAD/kube-prometheus/pods-dashboard.json -------------------------------------------------------------------------------- /kube-prometheus/statefulset-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudposse-archives/grafana-dashboards/HEAD/kube-prometheus/statefulset-dashboard.json -------------------------------------------------------------------------------- /nginx-ingress/nginx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudposse-archives/grafana-dashboards/HEAD/nginx-ingress/nginx.json --------------------------------------------------------------------------------