Go to file
Björn Busse 86fa8e1335 Add prometheus exporter port to cli args 2019-09-17 13:34:13 +02:00
.gitignore
Dockerfile
README.md Update README 2019-04-15 17:20:52 +02:00
hbase-exporter Add prometheus exporter port to cli args 2019-09-17 13:34:13 +02:00
hbase-exporter.service Change service user to hdfs 2019-04-10 13:14:37 +02:00
hbase-hbck.service systemd-service: Move user to the right section, change type to lowercase 2019-04-10 12:22:53 +02:00
hbase-hbck.timer hbase-hbck: Change timer to 20 minutes 2019-04-10 21:04:46 +02:00
requirements.txt Update requirements with kazoo 2019-04-13 01:16:00 +02:00

README.md

hbase-exporter

An HBase Prometheus Exporter

Relays JMX metrics for consumption by Prometheus

The exporter parses the (Hortonworks) Hadoop config and uses (Hortonworks) Hadoop internal tooling to determine e.g. the currently active master so that it can run in different environments without requiring any configuration

Those tools are not yet included when building the app as a container!

Since some important metrics are missing or empty in JMX, we additionally parse the HBase Master UI for e.g. 'Stale regions in transition'

The hbase hbck log is parsed to check for inconsistencies in HBase. The log is created independently from the exporter with the help of a systemd-timer unit and a systemd-hbck-service unit

Unfortunately querying the active namenode requires superuser privileges

For python module requirements see requirements.txt or execute the commands outlined below

$ sudo dnf/yum install python36
# As the user executing the exporter:
$ pip3[.6] install --user beautifulsoup4 flatten_json kazoo prometheus_client requests