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
- Host: GitHub
- URL: https://github.com/errm/mysql_count_exporter
- Owner: errm
- License: mit
- Created: 2019-03-18T16:14:19.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-22T15:18:02.000Z (about 7 years ago)
- Last Synced: 2024-06-20T06:24:26.906Z (almost 2 years ago)
- Language: Go
- Homepage:
- Size: 30.3 KB
- Stars: 3
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.