Monitoring with Prometheus and Grafana
What is Prometheus? https://prometheus.io/ Prometheus is a monitoring tool which was created to monitor highly dynamic container environments like Kubernetes, Docker swarm etc. It can also be used to monitor bare server where applications are directly deployed. Prometheus working. Prometheus collects and stores its metrics as time series data, i.e. metrics information is stored with the timestamp at which it was recorded, alongside optional key-value pairs called labels. More info on data model of metrics: https://prometheus.io/docs/concepts/data_model/ Prometheus pulls metric data,…