Learn how to setup Prometheus and Grafana to monitor your Kubernetes cluster.
In general there are 3 ways to do the setup:
- Create all the configuration files yourself π©π»βπ»
- Using Prometheus Operator π
- Using Helm chart to deploy the Prometheus Operator π
1. DIY π©π»βπ»
The first option includes creating all the configuration files by yourself, like Prometheus StatefulSet, Alertmanager, Grafana, all the ConfigMaps and Secrets. And then executing them in the right order. I think this way is pretty inefficient, it's a lot of effort. You need to find a good step-by-step guide and hope that each step works, which usually is not the case. π
2. Prometheus Operator π
In this option you would go and find an operator for Prometheus and deploy it in the cluster using the configuration files of the operator. It is more efficient.
Generally, think of an operator as a manager of all Prometheus individual components that you create. Operator will keep an eye and manage the combination of StatefulSet and Deployments and all the other stuff that comes with Prometheus deployment as 1 unit, so that you donβt have to manually manage those separate parts. π
3. Helm chart to deploy Prometheus Operator π
I think this way is the most efficient. Prometheus Operator has a Helm chart that is maintained by the Helm community. You can use this Helm chart to deploy the operator.
So, Helm will do the initial setup. Operator will then manage the running Prometheus setup
In the demo I show you the third way. We will easily deploy Prometheus and Grafana using Helm and I walk you through the different components, which were created. So that you have a good understanding π‘ of what they are and what they do.
This is the first part of the demo (Setup). In the second part we will actually configure Prometheus to expose our own /metrics endpoint and configure Prometheus to scrape it. π€
If you missed the theoretical part, where I explain how Prometheus works and its architecture, you can check it out here: Prometheus Monitoring explained
Watch the demo video here ππΌ
βΊ Get 30% off - with this code: UDEMY_NANA_OCT2020: Udemy course here
βΊ Kubernetes 101 Compact and easy-to-read ebook bundle π
It's a handy way to quickly look something up or refresh your knowledge at work and use it as your cheatsheet π
Like, share and follow me π for more content:
Top comments (6)
Just yesterday I was searching for some Prometheus tutorials, then I woke up to this!
Will these two tutorials cover most of the basics? :)
Cool, good timing then! :) Yes I try to cover all the basics in these videos. If you need to understand how the Prometheus stack is made up and also how to configure Prometheus then this will definitely be helpful. π
But I'm open to feedback/suggestions, if you have specific topics/use cases
Looking forward for the second part!
I also watched your video on Terraform and I was wondering if you have any plans on making a tutorial for beginners, I personally really like how you explain things
Thank you :)
Great post Nana. It's very helpful especially for newbies.
Thank you for such posts
Hello Nana. Nice post. What about if I want to send a notification slack based on alert? Where should I do it?
Did they fix the performance hog? Last year when I tried it we had all requests slowed down considerably.