-
Tech should learn
-
AWS(Draft)
-
DevOps Essentials
- DevOps Essentials
- 1. What DevOps really is
- 2. Life before DevOps
- 3. DevOps SDLC.
- 4. DevOps principles
- 6. DevOps Metrics
- 7. DevOps Leadership - People & Change leadership
- 8. Designing a DevOps transformation strategy.
- 9. DevSecOps - Security Embedded into DevOps
- 10. Site Reliability Engineering (SRE).
-
DevSecOps Essentials(Draft)
-
CI/CD
-
Docker
- Docker Mastery
- 1. The Compute Evolution Physical vs. Virtual vs. Containerization
- 2. Docker Internals
- 3. Docker Image Engineering
- 4. Registries and The Secure Supply Chain
- 5. Multi-Container Orchestration - Docker Compose
- 6. Docker Networking: The Connectivity Matrix
- 7. Docker Storage: The Persistence Layer
- 8. Docker Observability: The Eyes and Ears of Your Microservices
- 9. Hardening Security for Containers
- Writing Dockerfile
- Docker Commands
-
Kubernetes (Draft)
-
- Kubernetes ConfigMaps for Decoupling Configuration
- Kubernetes Secrets for Decoupling Configuration
- Kubernetes Downward API for Decoupling Configuration
- Kubernetes Volumes
- Kubernetes PV & PVC
- Kubernetes StorageClasses
- Kubernetes Volume Snapshots
- Kubernetes Volume Expansion using PVC and StorageClass
- Kubernetes Secrets Management at Scale
-
AWS Elastic Kubernetes Service
-
Programming
-
Python
< All Topics
EKS Observability & Monitoring
Posted
Updated
Author -Rajkumar Aute
Views9
observability is built on three pillars, but the tools have become more “managed” to reduce your operational headaches.
1. AWS Integration: CloudWatch vs. Managed Prometheus
- CloudWatch Container Insights: This is the “Easy Button.” It automatically collects metrics at the cluster, node, and pod levels. It provides out-of-the-box dashboards in the AWS Console.
- Best for: Teams that want an AWS-native experience with zero configuration.
- Amazon Managed Service for Prometheus (AMP): This is for power users. It provides a fully managed, high-scale Prometheus-compatible environment.
- Best for: Teams already using PromQL queries and who need deep, high-cardinality metrics that span thousands of microservices.
2. Dashboards: Visualizing with Grafana While CloudWatch has its own graphs, Grafana remains the industry gold standard for 2026.
- Amazon Managed Grafana: You no longer need to manage the Grafana server. AWS runs it for you. It can pull data from CloudWatch, Prometheus, and even your GitHub or Jira.
- The Single Pane of Glass: A great dashboard shows your “Golden Signals”: Latency, Traffic, Errors, and Saturation.
3. Centralized Logging: Fluent Bit to the Rescue Containers are temporary. When a Pod dies, its logs die with it. We need a “Log Shipper.”
- Fluent Bit: This is a lightweight agent that runs on every node as a DaemonSet. It reads the log files from
/var/log/pods, adds metadata (like which Namespace or Pod the log came from), and ships them to a central vault. - The Destination: * CloudWatch Logs: Great for simple searching and alerting.
- Amazon OpenSearch: Better for complex, high-volume log analysis and “Google-like” searching across millions of log lines.
Contents