monasca-agent/monasca_agent/collector/checks_d/hdfs.py

53 lines
2.0 KiB
Python

# (C) Copyright 2015 Hewlett Packard Enterprise Development Company LP
from monasca_agent.collector.checks import AgentCheck
class HDFSCheck(AgentCheck):
"""Report on free space and space used in HDFS.
"""
def check(self, instance):
try:
import snakebite.client
except ImportError:
raise ImportError('HDFSCheck requires the snakebite module')
if 'namenode' not in instance:
raise ValueError('Missing key \'namenode\' in HDFSCheck config')
host, port = instance['namenode'], instance.get('port', 8020)
if not isinstance(port, int):
# PyYAML converts the number to an int for us
raise ValueError('Port %r is not an integer' % port)
dimensions = self._set_dimensions(None, instance)
hdfs = snakebite.client.Client(host, port)
stats = hdfs.df()
# {'used': 2190859321781L,
# 'capacity': 76890897326080L,
# 'under_replicated': 0L,
# 'missing_blocks': 0L,
# 'filesystem': 'hdfs://hostname:port',
# 'remaining': 71186818453504L,
# 'corrupt_blocks': 0L}
self.gauge('hdfs.used', stats['used'], dimensions=dimensions)
self.gauge('hdfs.free', stats['remaining'], dimensions=dimensions)
self.gauge('hdfs.capacity', stats['capacity'], dimensions=dimensions)
self.gauge('hdfs.in_use', float(stats['used']) /
float(stats['capacity']), dimensions=dimensions)
self.gauge('hdfs.under_replicated', stats['under_replicated'], dimensions=dimensions)
self.gauge('hdfs.missing_blocks', stats['missing_blocks'], dimensions=dimensions)
self.gauge('hdfs.corrupt_blocks', stats['corrupt_blocks'], dimensions=dimensions)
if __name__ == '__main__':
check, instances = HDFSCheck.from_yaml('./hdfs.yaml')
for instance in instances:
check.check(instance)
print("Events: %r" % check.get_events())
print("Metrics: %r" % check.get_metrics())