We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cfc089 commit c2726bbCopy full SHA for c2726bb
monitoring/README.md
@@ -0,0 +1,31 @@
1
+# Monitoring Stack – Prometheus & Grafana
2
+
3
+This project uses Prometheus and Grafana to monitor the Kubernetes cluster
4
+and FastAPI application running on Amazon EKS.
5
6
+The monitoring stack is installed using the **kube-prometheus-stack Helm chart**.
7
8
9
10
+ 🔧 Tools Used
11
12
+- Prometheus
13
+- Grafana
14
+- kube-state-metrics
15
+- node-exporter
16
+- Alertmanager
17
+- Helm
18
19
20
21
+ 📦 Installation
22
23
+```bash
24
+kubectl create namespace monitoring
25
26
+helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
27
+helm repo update
28
29
+helm install monitoring prometheus-community/kube-prometheus-stack \
30
+ --namespace monitoring \
31
+ -f monitoring/values.yaml
0 commit comments