From aad7107396e22fda44cf9118f24d77bf5ec60e9c Mon Sep 17 00:00:00 2001 From: Michal Petko Date: Thu, 31 Jan 2019 07:59:44 +0100 Subject: [PATCH] Add check commands for HDFS file count and used space --- itl/plugins-contrib.d/big-data.conf | 64 +++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/itl/plugins-contrib.d/big-data.conf b/itl/plugins-contrib.d/big-data.conf index 5d757e282..24da0b183 100644 --- a/itl/plugins-contrib.d/big-data.conf +++ b/itl/plugins-contrib.d/big-data.conf @@ -63,3 +63,67 @@ object CheckCommand "cloudera_service_status" { } } } + +object CheckCommand "cloudera_hdfs_space" { + command = [ PluginDir + "/check_cloudera_hdfs_space.py" ] + + arguments = { + "-H" = { + description = "Namenode host" + value = "$hdfs_space_host$" + required = true + } + "-P" = { + description = "Namenode port (default 50070)" + value = "$hdfs_space_port$" + required = false + } + "-d" = { + description = "HDFS disk to check" + value = "$hdfs_space_disk$" + required = true + } + "-w" = { + description = "Warning threshold in percent" + value = "$hdfs_space_warn$" + required = true + } + "-c" = { + description = "Critical threshold in percent" + value = "$hdfs_space_crit$" + required = true + } + } +} + +object CheckCommand "cloudera_hdfs_files" { + command = [ PluginDir + "/check_cloudera_hdfs_files.py" ] + + arguments = { + "-H" = { + description = "Namenode host" + value = "$hdfs_files_host$" + required = true + } + "-P" = { + description = "Namenode port (default 50070)" + value = "$hdfs_files_port$" + required = false + } + "-w" = { + description = "Warning threshold" + value = "$hdfs_files_warn$" + required = true + } + "-c" = { + description = "Critical threshold" + value = "$hdfs_files_crit$" + required = true + } + "-m" = { + description = "Max files count that causes problems (default 140000000)" + value = "$hdfs_files_max$" + required = false + } + } +}