84 changed files
more | ||
check_nsca.pl | ||
older | ||
check_dhcp_rogue.sh | ||
check_mapr_control_system.pl | ||
check_netacuity_license.pl | ||
check_sftp.py | ||
check_svn.py | ||
check_users.sh | ||
check_vnc.py | ||
lib_check_nrpe.sh | ||
lib_event_handler.sh | ||
lib_nagios.sh | ||
lib_send_nsca.sh | ||
nsca_wrapper.sh | ||
tests | ||
data | ||
hbck-inconsistencies.log | ||
hbck.log | ||
excluded.sh | ||
check_aws_s3_file.pl | ||
check_cassandra_balance.pl | ||
check_cassandra_heap.pl | ||
check_cassandra_netstats.pl | ||
check_cassandra_nodes.pl | ||
check_cassandra_tpstats.pl | ||
check_cloudera_manager_config_stale.pl | ||
check_cloudera_manager_config_validation.pl | ||
check_cloudera_manager_health.pl | ||
check_cloudera_manager_metrics.pl | ||
check_cloudera_manager_status.pl | ||
check_cloudera_manager.pl | ||
check_datameer_license.pl | ||
check_datastax_opscenter_cassandra_metrics.pl | ||
check_datastax_opscenter_hadoop_status.pl | ||
check_dhcpd_leases.py | ||
check_elasticsearch_cluster_shards.pl | ||
check_elasticsearch_cluster_stats.pl | ||
check_elasticsearch_cluster_status_nodes_shards.pl | ||
check_elasticsearch_cluster_status.pl | ||
check_elasticsearch_data_nodes.pl | ||
check_elasticsearch_node_stats.pl | ||
check_elasticsearch_nodes.pl | ||
check_elasticsearch_shards_state_detail.pl | ||
check_elasticsearch.pl | ||
check_hadoop_datanode_blockcount.pl | ||
check_hadoop_dfs.pl | ||
check_hadoop_hdfs_fsck.pl | ||
check_hadoop_hdfs_webhdfs.pl | ||
check_hadoop_jobtracker.pl | ||
check_hadoop_metrics.pl | ||
check_hadoop_namenode.pl | ||
check_hadoop_wandisco_node_status.pl | ||
check_hadoop_yarn_node_manager_via_rm.pl | ||
check_hbase_regionservers_jsp.pl | ||
check_hbase_regionservers.pl | ||
check_hbase_tables_jsp.pl | ||
check_hbase_tables_stargate.pl | ||
check_ibm_biginsights_agents.pl | ||
check_ibm_biginsights_dfs_path.pl | ||
check_impala_metrics.pl | ||
check_kafka.pl | ||
check_linux_auth.pl | ||
check_linux_interface.pl | ||
check_mapr_alarms.pl | ||
check_mapr_node_health.pl | ||
check_mapr_node_mapr-fs_disks.pl | ||
check_memcached_key.pl | ||
check_memcached_stats.cfg-pnp4nagios | ||
check_memcached_write.pl | ||
check_mesos_metrics.pl | ||
check_mongodb_write.pl | ||
check_nagiostats.pl | ||
check_openvpn_stats.pl | ||
check_redis_clients.pl | ||
check_redis_config.pl | ||
check_redis_key.pl | ||
check_redis_publish_subscribe.pl | ||
check_redis_write.pl | ||
check_riak_diag.pl | ||
check_riak_key.pl | ||
check_riak_ringready.pl | ||
check_riak_stats.pl | ||
check_riak_write.pl | ||
check_solrcloud_live_nodes_zookeeper.pl | ||
check_ssl_cert.pl | ||
check_whois.pl | ||
README.md | ||
Add comment 23 # shellcheck disable=SC2034,SC2154
Add comment 24 usage_description="
Add comment 25 Creates a word freqency list ranked by most used words at the top
Add comment 26 Plus
Add comment 27 Plus Works like a standard unix filter program - pass in stdin or give it a filename, and outputs to stdout, so you can continue to pipe or redirect to a file as usual
Add comment 26 28 "
Add comment 27 29
Add comment 28 30 # used by usage() in lib/utils.sh
Add comment 29 31 # shellcheck disable=SC2034
Add comment 30 Minus usage_args="<filename> [<options>]"
Add comment 32 Plus usage_args="[<filename>]"
Add comment 31 33
Add comment 32 34 help_usage "$@"
Add comment 33 35
Add comment 34 Minus min_args 1 "$@"
Add comment 36 Plus #min_args 1 "$@"
Add comment 35 37
Add comment 36 Minus filename="$1"
Add comment 38 Plus #filename="$1"
Add comment 39 Plus
Add comment 40 Plus if [ $# -eq 0 ]; then
Add comment 41 Plus echo "Reading from stdin" >&2
Add comment 42 Plus fi
Add comment 37 43
Add comment 38 44 #output_file="$filename.word_frequency.txt"
Add comment 39 45
Add comment 40 Minus tr ' ' '\n' < "$filename" |
Add comment 46 Plus # one of the few legit uses of cat - tr can't process a filename arg or stdin
Add comment 47 Plus cat "$@" |
Add comment 48 Plus tr ' ' '\n' |
Add comment 41 49 sed '
Add comment 42 50 /^[[:space:]]*$/d;
Add comment 43 51 # because sometimes you want to see the occurence of emojis in WhatsApp chats
Add comment 23 # shellcheck disable=SC2034,SC2154
Add comment 24 usage_description="
Add comment 25 Creates a word freqency list ranked by most used words at the top
Add comment 26 Plus
Add comment 27 Plus Works like a standard unix filter program - pass in stdin or give it a filename, and outputs to stdout, so you can continue to pipe or redirect to a file as usual
Add comment 26 28 "
Add comment 27 29
Add comment 28 30 # used by usage() in lib/utils.sh
Add comment 29 31 # shellcheck disable=SC2034
Add comment 30 Minus usage_args="<filename> [<options>]"
Add comment 32 Plus usage_args="[<filename>]"
Add comment 31 33
Add comment 32 34 help_usage "$@"
Add comment 33 35
Add comment 34 Minus min_args 1 "$@"
Add comment 36 Plus #min_args 1 "$@"
Add comment 35 37
Add comment 36 Minus filename="$1"
Add comment 38 Plus #filename="$1"
Add comment 39 Plus
Add comment 40 Plus if [ $# -eq 0 ]; then
Add comment 41 Plus echo "Reading from stdin" >&2
Add comment 42 Plus fi
Add comment 37 43
Add comment 38 44 #output_file="$filename.word_frequency.txt"
Add comment 39 45
Add comment 40 Minus tr ' ' '\n' < "$filename" |
Add comment 46 Plus # one of the few legit uses of cat - tr can't process a filename arg or stdin
Add comment 47 Plus cat "$@" |
Add comment 48 Plus tr ' ' '\n' |
Add comment 41 49 sed '
Add comment 42 50 /^[[:space:]]*$/d;
Add comment 43 51 # because sometimes you want to see the occurence of emojis in WhatsApp chats
check_mapr_control_system.pl
/older/check_mapr_control_system.pl-4+12/older/check_mapr_control_system.pl
Add comment 23 # shellcheck disable=SC2034,SC2154
Add comment 24 usage_description="
Add comment 25 Creates a word freqency list ranked by most used words at the top
Add comment 26 Plus
Add comment 27 Plus Works like a standard unix filter program - pass in stdin or give it a filename, and outputs to stdout, so you can continue to pipe or redirect to a file as usual
Add comment 26 28 "
Add comment 27 29
Add comment 28 30 # used by usage() in lib/utils.sh
Add comment 29 31 # shellcheck disable=SC2034
Add comment 30 Minus usage_args="<filename> [<options>]"
Add comment 32 Plus usage_args="[<filename>]"
Add comment 31 33
Add comment 32 34 help_usage "$@"
Add comment 33 35
Add comment 34 Minus min_args 1 "$@"
Add comment 36 Plus #min_args 1 "$@"
Add comment 35 37
Add comment 36 Minus filename="$1"
Add comment 38 Plus #filename="$1"
Add comment 39 Plus
Add comment 40 Plus if [ $# -eq 0 ]; then
Add comment 41 Plus echo "Reading from stdin" >&2
Add comment 42 Plus fi
Add comment 37 43
Add comment 38 44 #output_file="$filename.word_frequency.txt"
Add comment 39 45
Add comment 40 Minus tr ' ' '\n' < "$filename" |
Add comment 46 Plus # one of the few legit uses of cat - tr can't process a filename arg or stdin
Add comment 47 Plus cat "$@" |
Add comment 48 Plus tr ' ' '\n' |
Add comment 41 49 sed '
Add comment 42 50 /^[[:space:]]*$/d;
Add comment 43 51 # because sometimes you want to see the occurence of emojis in WhatsApp chats
check_netacuity_license.pl
/older/check_netacuity_license.pl-4+12/older/check_netacuity_license.pl
Add comment 23 # shellcheck disable=SC2034,SC2154
Add comment 24 usage_description="
Add comment 25 Creates a word freqency list ranked by most used words at the top
Add comment 26 Plus
Add comment 27 Plus Works like a standard unix filter program - pass in stdin or give it a filename, and outputs to stdout, so you can continue to pipe or redirect to a file as usual
Add comment 26 28 "
Add comment 27 29
Add comment 28 30 # used by usage() in lib/utils.sh
Add comment 29 31 # shellcheck disable=SC2034
Add comment 30 Minus usage_args="<filename> [<options>]"
Add comment 32 Plus usage_args="[<filename>]"
Add comment 31 33
Add comment 32 34 help_usage "$@"
Add comment 33 35
Add comment 34 Minus min_args 1 "$@"
Add comment 36 Plus #min_args 1 "$@"
Add comment 35 37
Add comment 36 Minus filename="$1"
Add comment 38 Plus #filename="$1"
Add comment 39 Plus
Add comment 40 Plus if [ $# -eq 0 ]; then
Add comment 41 Plus echo "Reading from stdin" >&2
Add comment 42 Plus fi
Add comment 37 43
Add comment 38 44 #output_file="$filename.word_frequency.txt"
Add comment 39 45
Add comment 40 Minus tr ' ' '\n' < "$filename" |
Add comment 46 Plus # one of the few legit uses of cat - tr can't process a filename arg or stdin
Add comment 47 Plus cat "$@" |
Add comment 48 Plus tr ' ' '\n' |
Add comment 41 49 sed '
Add comment 42 50 /^[[:space:]]*$/d;
Add comment 43 51 # because sometimes you want to see the occurence of emojis in WhatsApp chats
Add comment 23 # shellcheck disable=SC2034,SC2154
Add comment 24 usage_description="
Add comment 25 Creates a word freqency list ranked by most used words at the top
Add comment 26 Plus
Add comment 27 Plus Works like a standard unix filter program - pass in stdin or give it a filename, and outputs to stdout, so you can continue to pipe or redirect to a file as usual
Add comment 26 28 "
Add comment 27 29
Add comment 28 30 # used by usage() in lib/utils.sh
Add comment 29 31 # shellcheck disable=SC2034
Add comment 30 Minus usage_args="<filename> [<options>]"
Add comment 32 Plus usage_args="[<filename>]"
Add comment 31 33
Add comment 32 34 help_usage "$@"
Add comment 33 35
Add comment 34 Minus min_args 1 "$@"
Add comment 36 Plus #min_args 1 "$@"
Add comment 35 37
Add comment 36 Minus filename="$1"
Add comment 38 Plus #filename="$1"
Add comment 39 Plus
Add comment 40 Plus if [ $# -eq 0 ]; then
Add comment 41 Plus echo "Reading from stdin" >&2
Add comment 42 Plus fi
Add comment 37 43
Add comment 38 44 #output_file="$filename.word_frequency.txt"
Add comment 39 45
Add comment 40 Minus tr ' ' '\n' < "$filename" |
Add comment 46 Plus # one of the few legit uses of cat - tr can't process a filename arg or stdin
Add comment 47 Plus cat "$@" |
Add comment 48 Plus tr ' ' '\n' |
Add comment 41 49 sed '
Add comment 42 50 /^[[:space:]]*$/d;
Add comment 43 51 # because sometimes you want to see the occurence of emojis in WhatsApp chats
Add comment 23 # shellcheck disable=SC2034,SC2154
Add comment 24 usage_description="
Add comment 25 Creates a word freqency list ranked by most used words at the top
Add comment 26 Plus
Add comment 27 Plus Works like a standard unix filter program - pass in stdin or give it a filename, and outputs to stdout, so you can continue to pipe or redirect to a file as usual
Add comment 26 28 "
Add comment 27 29
Add comment 28 30 # used by usage() in lib/utils.sh
Add comment 29 31 # shellcheck disable=SC2034
Add comment 30 Minus usage_args="<filename> [<options>]"
Add comment 32 Plus usage_args="[<filename>]"
Add comment 31 33
Add comment 32 34 help_usage "$@"
Add comment 33 35
Add comment 34 Minus min_args 1 "$@"
Add comment 36 Plus #min_args 1 "$@"
Add comment 35 37
Add comment 36 Minus filename="$1"
Add comment 38 Plus #filename="$1"
Add comment 39 Plus
Add comment 40 Plus if [ $# -eq 0 ]; then
Add comment 41 Plus echo "Reading from stdin" >&2
Add comment 42 Plus fi
Add comment 37 43
Add comment 38 44 #output_file="$filename.word_frequency.txt"
Add comment 39 45
Add comment 40 Minus tr ' ' '\n' < "$filename" |
Add comment 46 Plus # one of the few legit uses of cat - tr can't process a filename arg or stdin
Add comment 47 Plus cat "$@" |
Add comment 48 Plus tr ' ' '\n' |
Add comment 41 49 sed '
Add comment 42 50 /^[[:space:]]*$/d;
Add comment 43 51 # because sometimes you want to see the occurence of emojis in WhatsApp chats
hbck-inconsistencies.log
/tests/data/hbck-inconsistencies.log/tests/data/hbck-inconsistencies.log
check_cloudera_manager_config_stale.pl
/check_cloudera_manager_config_stale.pl/check_cloudera_manager_config_stale.pl
check_cloudera_manager_config_validation.pl
/check_cloudera_manager_config_validation.pl/check_cloudera_manager_config_validation.pl
check_cloudera_manager_health.pl
/check_cloudera_manager_health.pl/check_cloudera_manager_health.pl
check_cloudera_manager_metrics.pl
/check_cloudera_manager_metrics.pl/check_cloudera_manager_metrics.pl
check_cloudera_manager_status.pl
/check_cloudera_manager_status.pl/check_cloudera_manager_status.pl
check_datastax_opscenter_cassandra_metrics.pl
/check_datastax_opscenter_cassandra_metrics.pl/check_datastax_opscenter_cassandra_metrics.pl
check_datastax_opscenter_hadoop_status.pl
/check_datastax_opscenter_hadoop_status.pl/check_datastax_opscenter_hadoop_status.pl
check_elasticsearch_cluster_shards.pl
/check_elasticsearch_cluster_shards.pl/check_elasticsearch_cluster_shards.pl
check_elasticsearch_cluster_stats.pl
/check_elasticsearch_cluster_stats.pl/check_elasticsearch_cluster_stats.pl
check_elasticsearch_cluster_status_nodes_shards.pl
/check_elasticsearch_cluster_status_nodes_shards.pl/check_elasticsearch_cluster_status_nodes_shards.pl
check_elasticsearch_cluster_status.pl
/check_elasticsearch_cluster_status.pl/check_elasticsearch_cluster_status.pl
check_elasticsearch_data_nodes.pl
/check_elasticsearch_data_nodes.pl/check_elasticsearch_data_nodes.pl
check_elasticsearch_node_stats.pl
/check_elasticsearch_node_stats.pl/check_elasticsearch_node_stats.pl
check_elasticsearch_shards_state_detail.pl
/check_elasticsearch_shards_state_detail.pl/check_elasticsearch_shards_state_detail.pl
check_hadoop_datanode_blockcount.pl
/check_hadoop_datanode_blockcount.pl/check_hadoop_datanode_blockcount.pl
check_hadoop_wandisco_node_status.pl
/check_hadoop_wandisco_node_status.pl/check_hadoop_wandisco_node_status.pl
check_hadoop_yarn_node_manager_via_rm.pl
/check_hadoop_yarn_node_manager_via_rm.pl/check_hadoop_yarn_node_manager_via_rm.pl
check_hbase_regionservers_jsp.pl
/check_hbase_regionservers_jsp.pl/check_hbase_regionservers_jsp.pl
check_ibm_biginsights_dfs_path.pl
/check_ibm_biginsights_dfs_path.pl/check_ibm_biginsights_dfs_path.pl
check_mapr_node_mapr-fs_disks.pl
/check_mapr_node_mapr-fs_disks.pl/check_mapr_node_mapr-fs_disks.pl
check_memcached_stats.cfg-pnp4nagios
/check_memcached_stats.cfg-pnp4nagios/check_memcached_stats.cfg-pnp4nagios
check_redis_publish_subscribe.pl
/check_redis_publish_subscribe.pl/check_redis_publish_subscribe.pl
check_solrcloud_live_nodes_zookeeper.pl
/check_solrcloud_live_nodes_zookeeper.pl/check_solrcloud_live_nodes_zookeeper.pl