Tag Archives: MySql
Setting up MySQL Monitoring with Prometheus
One thing that I love about Prometheus is that it has a multitude of Integration with different services, both officially supported and the third party supported.Let’s see how can we monitor MySQL with Prometheus. Those who are the starter or new to Prometheus can refer to our this blog. MySQL is a popular opensource relational database …
Continue reading “Setting up MySQL Monitoring with Prometheus”
Automated DB Updater
In continuation with my blog series I’m finally introducing a automated db updater tool. You can read about the idea in previous blogs by going to below links Manual DB Updates challengesManual DB Updates challenges-2 The short form of my tool is ADU(Automated DB Updater). Now some details about this tool Each application will have …
Automated Database Update Or Rollback
One of the important step during release is doing database update and rollback in case something goes wrong, usually people perform this operation manually. In this blog I’ll talk about how we can automate this process by following some convention. Here I’m taking mysql database as an example we can have same conventions for other …