...
/Choose the Tools for Storing and Querying Metrics and Alerting
Choose the Tools for Storing and Querying Metrics and Alerting
This lesson focuses on giving a short Introduction to Prometheus and how it can help us to store and query the Metrics, along with sending alerts.
We'll cover the following...
HorizontalPodAutoscaler (HPA)
and Cluster Autoscaler (CA)
provide essential, yet very rudimentary mechanisms to scale our Pods and clusters. While they do scaling decently well, they do not solve our need to be alerted when there’s something wrong, nor do they provide enough information required to find the cause of an issue. We’ll need to expand our setup with additional tools that will allow us to store and query metrics as well as to receive notifications when there is an issue.
Store and query metrics using Prometheus
#
If we focus on tools that we can install and manage ourselves, there is very little doubt about what to use. If ...