├── .gitignore ├── README.md ├── i ├── grafana │ ├── dashboard_k8s_1.15.json │ └── dashboard_k8s_1.16.json ├── helm │ ├── config │ │ ├── grafana.yaml │ │ ├── loki-stack.yaml │ │ ├── metrics-server.yaml │ │ └── prometheus.yaml │ └── helmfile.yaml └── k8s │ └── deploy.yaml └── run └── grafana.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuestkamp/k8s-example-resource-monitoring/HEAD/README.md -------------------------------------------------------------------------------- /i/grafana/dashboard_k8s_1.15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuestkamp/k8s-example-resource-monitoring/HEAD/i/grafana/dashboard_k8s_1.15.json -------------------------------------------------------------------------------- /i/grafana/dashboard_k8s_1.16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuestkamp/k8s-example-resource-monitoring/HEAD/i/grafana/dashboard_k8s_1.16.json -------------------------------------------------------------------------------- /i/helm/config/grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuestkamp/k8s-example-resource-monitoring/HEAD/i/helm/config/grafana.yaml -------------------------------------------------------------------------------- /i/helm/config/loki-stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuestkamp/k8s-example-resource-monitoring/HEAD/i/helm/config/loki-stack.yaml -------------------------------------------------------------------------------- /i/helm/config/metrics-server.yaml: -------------------------------------------------------------------------------- 1 | args: 2 | - --kubelet-preferred-address-types=InternalIP 3 | -------------------------------------------------------------------------------- /i/helm/config/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuestkamp/k8s-example-resource-monitoring/HEAD/i/helm/config/prometheus.yaml -------------------------------------------------------------------------------- /i/helm/helmfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuestkamp/k8s-example-resource-monitoring/HEAD/i/helm/helmfile.yaml -------------------------------------------------------------------------------- /i/k8s/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuestkamp/k8s-example-resource-monitoring/HEAD/i/k8s/deploy.yaml -------------------------------------------------------------------------------- /run/grafana.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuestkamp/k8s-example-resource-monitoring/HEAD/run/grafana.sh --------------------------------------------------------------------------------