messengerjilo.blogg.se

Mysql exporter metrics
Mysql exporter metrics













I will omit the go installation and environment configuration here. Personally, I think Go is very convenient in terms of distribution and compatibility. Let’s go! Creating a Go projectĮxporter can be implemented in various languages, but today I will implement it with Go. What I am going to present my Blog that is the process of adding my own new exporter among these various exporters. Besides these, not only node_expoter for monitoring Linux nodes, but also memcached_expoter etc.įor reference, you can see various exporters from exporterhub. Typically, there is mysqld_expoter, which is Prometheus’s Offcial projects, and mysqld_expoter, which they fork and distribute additionally in Percona. There are many exporters exist in the everywhere. Prometheus periodically calls the specific URL of the exporter and saves the result of metrics as a time series.

#Mysql exporter metrics series

You can think of an Exporter as an HTTP server for pulling data from a time series database like Prometheus. I will explain about Exporter step by step in today’s post.

mysql exporter metrics

Some of you may still be unfamiliar with what Expoter is. If you register a specific query, it is a simple program that shows the result of this query as an exporter result metrics. Try to making your own exporter in Go language. Today I want to talk about an interesting and exciting topic.













Mysql exporter metrics