An open API service indexing awesome lists of open source software.

https://github.com/errm/mysql_count_exporter

A prometheus exporter that exports the number of rows counted in each table in a mysql database
https://github.com/errm/mysql_count_exporter

Last synced: 11 months ago
JSON representation

A prometheus exporter that exports the number of rows counted in each table in a mysql database

Awesome Lists containing this project

README

          

# mysql_count_exporter

A prometheus exporter that exports the number of rows counted in each table
to `mysql_count_exporter_row_count`

A bit like the `mysql_info_schema_table_rows` metric exposed by https://github.com/prometheus/mysqld_exporter
except that rather than using the efficient, but inaccurate information_schema
does an inefficient but accurate `COUNT(*)` query against each table.