├── .gitignore ├── .packer.yml ├── .travis.yml ├── Makefile ├── README.md ├── base_config ├── commands.cfg ├── contacts.cfg ├── hosts │ └── localhost.cfg ├── resource.cfg ├── templates.cfg └── timeperiods.cfg ├── doc ├── doc_requirements.freeze ├── old │ ├── plugin-check_amt_montreal.rst │ ├── plugin-check_arp_no_change.rst │ ├── plugin-check_asterisk_cdr_status.rst │ ├── plugin-check_aws_sqs_activity.rst │ ├── plugin-check_aws_sqs_queue_size.rst │ ├── plugin-check_bixi_montreal.rst │ ├── plugin-check_brother_toner_level.rst │ ├── plugin-check_carp_by_ssh.rst │ ├── plugin-check_ceilometer.rst │ ├── plugin-check_cpu.rst │ ├── plugin-check_emergency_rooms_quebec.rst │ ├── plugin-check_environment_canada.rst │ ├── plugin-check_fake.rst │ ├── plugin-check_graphite_api.rst │ ├── plugin-check_http2.rst │ ├── plugin-check_hydro_quebec.rst │ ├── plugin-check_json_by_ec2_tags.rst │ ├── plugin-check_libvirt_stats.rst │ ├── plugin-check_linux_bandwidth.rst │ ├── plugin-check_linux_traffic.rst │ ├── plugin-check_mem.rst │ ├── plugin-check_mpt_status.rst │ ├── plugin-check_openbsd_sysstats_byssh.rst │ ├── plugin-check_openerp.rst │ ├── plugin-check_poller2livestatus.rst │ ├── plugin-check_printer_hp_2600n.rst │ ├── plugin-check_quebecrencontrescom.rst │ ├── plugin-check_rancid.rst │ ├── plugin-check_reactionner_health.rst │ ├── plugin-check_redis.rst │ ├── plugin-check_reseaucontactcom.rst │ ├── plugin-check_samba.rst │ ├── plugin-check_selenium.rst │ ├── plugin-check_site_health.rst │ ├── plugin-check_smtp_success_ratio.rst │ ├── plugin-check_spa2102.rst │ ├── plugin-check_stm_metro_montreal.rst │ ├── plugin-check_tripplite_ups.rst │ ├── plugin-check_wanpipe.rst │ └── plugin-check_x224.rst ├── source │ ├── conf.py │ ├── index.rst │ ├── packs.rst │ ├── packs │ │ ├── generic-carbon-tcp │ │ │ └── pack-generic-carbon-tcp.rst │ │ ├── generic-dhcp │ │ │ └── pack-generic-dhcp.rst │ │ ├── generic-dns │ │ │ └── pack-generic-dns.rst │ │ ├── generic-graphite-http │ │ │ └── pack-generic-graphite-http.rst │ │ ├── generic-host │ │ │ └── pack-generic-host.rst │ │ ├── generic-ldap │ │ │ └── pack-generic-ldap.rst │ │ ├── generic-mongodb │ │ │ └── pack-generic-mongodb.rst │ │ ├── generic-multisite-http │ │ │ └── pack-generic-multisite-http.rst │ │ ├── generic-radius │ │ │ └── pack-generic-radius.rst │ │ ├── generic-repodeb-http │ │ │ └── pack-generic-repodeb-http.rst │ │ ├── generic-saltmaster-tcp │ │ │ └── pack-generic-saltmaster-tcp.rst │ │ ├── generic-smb │ │ │ └── pack-generic-smb.rst │ │ ├── generic-splunk-http │ │ │ └── pack-generic-splunk-http.rst │ │ ├── generic-ssh │ │ │ └── pack-generic-ssh.rst │ │ ├── linux-ntp-collectd │ │ │ └── pack-linux-ntp-collectd.rst │ │ ├── linux-radius-collectd │ │ │ ├── examples │ │ │ │ └── arbiter-collected.cfg.example │ │ │ └── pack-linux-radius-collectd.rst │ │ ├── linux-saltmaster-collectd │ │ │ ├── examples │ │ │ │ ├── arbiter-collectd.cfg.example │ │ │ │ └── collectd.conf │ │ │ └── pack-linux-saltmaster-collectd.rst │ │ ├── linux-saltminion-collectd │ │ │ ├── examples │ │ │ │ ├── arbiter-collectd.cfg.example │ │ │ │ └── collectd.conf │ │ │ └── pack-linux-saltminion-collectd.rst │ │ ├── linux-system-collectd │ │ │ ├── examples │ │ │ │ ├── arbiter-collectd.cfg.example │ │ │ │ └── collectd.conf │ │ │ └── pack-linux-system-collectd.rst │ │ ├── vmware-system-https │ │ │ └── pack-vmware-system-https.rst │ │ ├── windows-ad-collectd │ │ │ └── pack-windows-ad-collectd.rst │ │ ├── windows-mssql │ │ │ └── pack-windows-mssql.rst │ │ ├── windows-rdp │ │ │ └── pack-windows-rdp.rst │ │ ├── windows-sophos-collectd │ │ │ ├── examples │ │ │ │ ├── arbiter-collectd.cfg.example │ │ │ │ └── collectd.conf │ │ │ └── pack-windows-sophos-collectd.rst │ │ ├── windows-sophos-mssql │ │ │ └── pack-windows-sophos-mssql.rst │ │ └── windows-system-collectd │ │ │ └── pack-windows-system-collectd.rst │ ├── plugins.rst │ └── plugins │ │ ├── check-amt-montreal │ │ └── plugin-check_amt_montreal.rst │ │ ├── check-arp-no-change │ │ └── plugin-check_arp_no_change.rst │ │ ├── check-asterisk-cdr-status │ │ └── plugin-check_asterisk_cdr_status.rst │ │ ├── check-aws-sqs-activity │ │ └── plugin-check_aws_sqs_activity.rst │ │ ├── check-aws-sqs-queue-size │ │ └── plugin-check_aws_sqs_queue_size.rst │ │ ├── check-bixi-montreal │ │ └── plugin-check_bixi_montreal.rst │ │ ├── check-brother-toner-level │ │ └── plugin-check_brother_toner_level.rst │ │ ├── check-carp-by-ssh │ │ └── plugin-check_carp_by_ssh.rst │ │ ├── check-ceilometer │ │ └── plugin-check_ceilometer.rst │ │ ├── check-cpu │ │ └── plugin-check_cpu.rst │ │ ├── check-emergency-rooms-quebec │ │ └── plugin-check_emergency_rooms_quebec.rst │ │ ├── check-environment-canada │ │ └── plugin-check_environment_canada.rst │ │ ├── check-fake │ │ └── plugin-check_fake.rst │ │ ├── check-graphite-api │ │ └── plugin-check_graphite_api.rst │ │ ├── check-http2 │ │ └── monitoring-plugins-sfl-check-http2.rst │ │ ├── check-hydro-quebec │ │ └── plugin-check_hydro_quebec.rst │ │ ├── check-json-by-ec2-tags │ │ └── plugin-check_json_by_ec2_tags.rst │ │ ├── check-libvirt-stats │ │ └── plugin-check_libvirt_stats.rst │ │ ├── check-linux-bandwidth │ │ └── plugin-check_linux_bandwidth.rst │ │ ├── check-linux-traffic │ │ └── plugin-check_linux_traffic.rst │ │ ├── check-mem │ │ └── plugin-check_mem.rst │ │ ├── check-mpt-status │ │ └── plugin-check_mpt_status.rst │ │ ├── check-openbsd-sysstats-byssh │ │ └── plugin-check_openbsd_sysstats_byssh.rst │ │ ├── check-openerp │ │ └── plugin-check_openerp.rst │ │ ├── check-poller2livestatus │ │ └── plugin-check_poller2livestatus.rst │ │ ├── check-postgresql-lag │ │ └── plugin-check_postgresql_lag.rst │ │ ├── check-printer-hp-2600n │ │ └── plugin-check_printer_hp_2600n.rst │ │ ├── check-quebecrencontrescom │ │ └── plugin-check_quebecrencontrescom.rst │ │ ├── check-rancid │ │ └── plugin-check_rancid.rst │ │ ├── check-reactionner-health │ │ └── plugin-check_reactionner_health.rst │ │ ├── check-redis │ │ └── plugin-check_redis.rst │ │ ├── check-reseaucontactcom │ │ └── plugin-check_reseaucontactcom.rst │ │ ├── check-samba │ │ └── plugin-check_samba.rst │ │ ├── check-selenium │ │ ├── images │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11-bis.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── plugin-check_selenium.rst │ │ └── selenium-ide-2.8.0.xpi │ │ ├── check-site-health │ │ └── plugin-check_site_health.rst │ │ ├── check-smtp-success-ratio │ │ └── plugin-check_smtp_success_ratio.rst │ │ ├── check-snmp-interface │ │ └── plugin-check_snmp_interface.rst │ │ ├── check-spa2102 │ │ └── plugin-check_spa2102.rst │ │ ├── check-stm-metro-montreal │ │ └── plugin-check_stm_metro_montreal.rst │ │ ├── check-test │ │ └── plugin-check_test.rst │ │ ├── check-tripplite-ups │ │ └── plugin-check_tripplite_ups.rst │ │ ├── check-wanpipe │ │ └── plugin-check_wanpipe.rst │ │ └── check-x224 │ │ └── plugin-check_x224.rst └── theme │ └── sphinx_rtd_theme │ ├── __init__.py │ ├── breadcrumbs.html │ ├── footer.html │ ├── layout.html │ ├── layout_old.html │ ├── search.html │ ├── searchbox.html │ ├── static │ ├── css │ │ ├── badge_only.css │ │ └── theme.css │ ├── font │ │ ├── fontawesome_webfont.eot │ │ ├── fontawesome_webfont.svg │ │ ├── fontawesome_webfont.ttf │ │ └── fontawesome_webfont.woff │ └── js │ │ └── theme.js │ ├── theme.conf │ └── versions.html ├── libs └── shinkenplugins │ ├── .gitignore │ ├── .packer.yml │ ├── MANIFEST.in │ ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ └── source │ │ ├── format │ │ └── options │ ├── requirements-py26.txt │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins.spec │ ├── shinkenplugins │ ├── VERSION │ ├── __init__.py │ ├── argparse.py │ ├── helpers │ │ ├── __init__.py │ │ └── argparse │ │ │ ├── __init__.py │ │ │ └── parsing │ │ │ ├── __init__.py │ │ │ └── bytes.py │ ├── old.py │ ├── perfdata.py │ ├── plugin.py │ ├── plugins │ │ └── __init__.py │ ├── states.py │ ├── test.py │ ├── tools │ │ ├── __init__.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── netecho.py │ │ │ └── tests.py │ └── version.py │ └── tests │ └── test_shinkenplugins.py ├── packs ├── generic-apache-http │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-generic-apache-http.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── generic-apache-http.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── generic-apache-http.pack │ │ ├── services │ │ │ └── apache_server_status.cfg │ │ └── templates.cfg │ └── package.json ├── generic-carbon-tcp │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-generic-carbon-tcp.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── generic-carbon-tcp.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── generic-carbon-tcp.pack │ │ ├── services │ │ │ └── carbon_tcp.cfg │ │ └── templates.cfg │ └── package.json ├── generic-dhcp │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-generic-dhcp.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── generic-dhcp.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── generic-dhcp.pack │ │ ├── services │ │ │ └── dhcp.cfg │ │ └── templates.cfg │ └── package.json ├── generic-dns │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-generic-dns.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── generic-dns.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── discovery.cfg │ │ ├── generic-dns.pack │ │ ├── services │ │ │ └── dns.cfg │ │ └── templates.cfg │ └── package.json ├── generic-graphite-http │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-generic-graphite-http.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── generic-graphite-http.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── generic-graphite-http.pack │ │ ├── services │ │ │ └── graphite_web.cfg │ │ └── templates.cfg │ └── package.json ├── generic-host │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-generic-host.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── generic-host.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── pack-generic-host.pack │ │ ├── services │ │ │ ├── passive.cfg │ │ │ └── ping.cfg │ │ └── templates.cfg │ └── package.json ├── generic-ldap │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-generic-ldap.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── generic-ldap.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── discovery.cfg │ │ ├── generic-ldap.pack │ │ ├── services │ │ │ ├── certificate.cfg │ │ │ ├── ldap.cfg │ │ │ ├── ldap3.cfg │ │ │ └── ldaps.cfg │ │ └── templates.cfg │ └── package.json ├── generic-mongodb │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-generic-mongodb.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── generic-mongodb.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── generic-mongodb.pack │ │ ├── services │ │ │ ├── average_flush_time.cfg │ │ │ ├── connection.cfg │ │ │ ├── last_flush_time.cfg │ │ │ ├── lock_time_percentage.cfg │ │ │ ├── mapped_memory_usage.cfg │ │ │ ├── memory_usage.cfg │ │ │ ├── number_of_queries_per_second.cfg │ │ │ ├── percentage_of_open_connections.cfg │ │ │ ├── primary_connection.cfg │ │ │ ├── replication_lag.cfg │ │ │ ├── replication_lag_percentage.cfg │ │ │ └── status_of_index_miss_ratio.cfg │ │ └── templates.cfg │ └── package.json ├── generic-multisite-http │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-generic-multisite-http.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── generic-multisite-http.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── generic-multisite-http.pack │ │ ├── services │ │ │ └── multisite.cfg │ │ └── templates.cfg │ └── package.json ├── generic-mysql │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-generic-mysql.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── generic-mysql.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── generic-mysql.pack │ │ ├── services │ │ │ ├── bufferpool_hitrate.cfg │ │ │ ├── bufferpool_wait_free.cfg │ │ │ ├── cluster_ndb_running.cfg │ │ │ ├── connection.cfg │ │ │ ├── index_usage.cfg │ │ │ ├── keycache-hitrate.cfg │ │ │ ├── log_waits.cfg │ │ │ ├── long_running_procs.cfg │ │ │ ├── open_files.cfg │ │ │ ├── qcache_hitrate.cfg │ │ │ ├── qcache_lowmem_prunes.cfg │ │ │ ├── restart.cfg │ │ │ ├── slave │ │ │ │ ├── slave_io_running.cfg │ │ │ │ ├── slave_lag.cfg │ │ │ │ └── slave_sql_running.cfg │ │ │ ├── slow_queries.cfg │ │ │ ├── table_lock_contention.cfg │ │ │ ├── tablecache_hitrate.cfg │ │ │ ├── threadcache_hitrate.cfg │ │ │ ├── threads_connected.cfg │ │ │ └── tmp_disk_tables.cfg │ │ └── templates.cfg │ └── package.json ├── generic-rabbitmq-collectd │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-generic-rabbitmq-collectd.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── generic-rabbitmq-collectd.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── generic-rabbitmq-collectd.pack │ │ ├── services │ │ │ └── rabbitmq_default_queues.cfg │ │ ├── templates.cfg │ │ └── triggers.d │ │ │ └── rabbitmq_queues.trig │ └── package.json ├── generic-rabbitmq-http │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-generic-rabbitmq-http.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── generic-rabbitmq-http.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── generic-rabbitmq-http.pack │ │ ├── services │ │ │ ├── aliveness.cfg │ │ │ ├── connection.cfg │ │ │ └── queue.cfg │ │ └── templates.cfg │ └── package.json ├── generic-radius │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-generic-radius.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── generic-radius.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── generic-radius.pack │ │ ├── services │ │ │ └── radius.cfg │ │ └── templates.cfg │ └── package.json ├── generic-redis │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── monitoring-packs-sfl-generic-redis.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── generic-redis.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── generic-redis.pack │ │ ├── services │ │ │ ├── connect.cfg │ │ │ ├── connected_client.cfg │ │ │ ├── latency.cfg │ │ │ ├── used_memory.cfg │ │ │ ├── used_memory_human.cfg │ │ │ └── used_memory_rss.cfg │ │ └── templates.cfg │ └── package.json ├── generic-repodeb-http │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-generic-repodeb-http.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── generic-repodeb-http.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── generic-repodeb-http.pack │ │ ├── services │ │ │ └── repository.cfg │ │ └── templates.cfg │ └── package.json ├── generic-saltmaster-tcp │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-generic-saltmaster-tcp.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── generic-saltmaster-tcp.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── generic-saltmaster-tcp.pack │ │ ├── services │ │ │ └── saltmaster-tcp.cfg │ │ └── templates.cfg │ └── package.json ├── generic-selenium │ ├── README.rst │ ├── doc │ │ └── source │ │ │ └── pack-generic-selenium.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── generic-vraddrupal-http.pack │ │ ├── services │ │ │ └── selenium.cfg │ │ └── templates.cfg │ └── package.json ├── generic-smb │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-generic-smb.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── generic-smb.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── generic-smb.pack │ │ ├── services │ │ │ └── samba.cfg │ │ └── templates.cfg │ └── package.json ├── generic-smtp │ ├── README.rst │ ├── doc │ │ └── source │ │ │ └── pack-generic-smtp.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── generic-smtp.pack │ │ ├── services │ │ │ └── smtp.cfg │ │ └── templates.cfg │ └── package.json ├── generic-splunk-http │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-generic-splunk-http.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── generic-splunk-http.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── generic-splunk-http.pack │ │ ├── services │ │ │ └── splunk.cfg │ │ └── templates.cfg │ └── package.json ├── generic-ssh │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-generic-ssh.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── generic-ssh.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── discovery.cfg │ │ ├── generic-ssh.pack │ │ ├── services │ │ │ └── ssh.cfg │ │ └── templates.cfg │ └── package.json ├── linux-drupal │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-foo.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── linux-drupal.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── drupal.pack │ │ ├── services │ │ │ ├── drupal_cache.cfg │ │ │ ├── drupal_codebase.cfg │ │ │ ├── drupal_cron.cfg │ │ │ ├── drupal_database.cfg │ │ │ ├── drupal_extensions.cfg │ │ │ ├── drupal_jenkins.cfg │ │ │ ├── drupal_logging.cfg │ │ │ ├── drupal_security.cfg │ │ │ ├── drupal_status.cfg │ │ │ ├── drupal_views.cfg │ │ │ ├── http_load.cfg │ │ │ └── selenium.cfg │ │ └── templates.cfg │ └── package.json ├── linux-ntp-collectd │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-linux-ntp-collectd.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── linux-ntp-collectd.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── linux-ntp-collectd.pack │ │ ├── services │ │ │ └── ntpd.cfg │ │ ├── templates.cfg │ │ └── triggers.d │ │ │ └── collectd_ntpd.trig │ └── package.json ├── linux-radius-collectd │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-linux-radius-collectd.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ ├── examples │ │ │ └── arbiter-collected.cfg.example │ │ └── linux-radius-collectd.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── linux-radius-collectd.pack │ │ ├── services │ │ │ └── radius.cfg │ │ └── templates.cfg │ └── package.json ├── linux-saltmaster-collectd │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-linux-saltmaster-collectd.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ ├── examples │ │ │ ├── arbiter-collectd.cfg.example │ │ │ └── collectd.conf │ │ └── linux-saltmaster-collectd.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── linux-saltmaster-collectd.pack │ │ ├── services │ │ │ └── service-saltmaster.cfg │ │ └── templates.cfg │ └── package.json ├── linux-saltminion-collectd │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-linux-saltminion-collectd.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ ├── linux-saltminion-collectd.rst │ │ └── source │ │ │ └── examples │ │ │ ├── arbiter-collectd.cfg.example │ │ │ └── collectd.conf │ ├── pack │ │ ├── commands.cfg │ │ ├── linux-saltminion-collectd.pack │ │ ├── services │ │ │ └── service-saltminion.cfg │ │ └── templates.cfg │ └── package.json ├── linux-system-collectd │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-linux-system-collectd.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ ├── examples │ │ │ ├── arbiter-collectd.cfg.example │ │ │ └── collectd.conf │ │ └── linux-system-collectd.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── linux-system-collectd.pack │ │ ├── services │ │ │ ├── cpu.cfg │ │ │ ├── df.cfg │ │ │ ├── disk.cfg │ │ │ ├── interface.cfg │ │ │ ├── load.cfg │ │ │ ├── memory.cfg │ │ │ ├── processes.cfg │ │ │ ├── service-cron.cfg │ │ │ ├── service-ossec.cfg │ │ │ ├── service-rsyslogd.cfg │ │ │ ├── swap.cfg │ │ │ └── users.cfg │ │ ├── templates.cfg │ │ └── triggers.d │ │ │ ├── collectd_allprocesses.trig │ │ │ ├── collectd_cpu.trig │ │ │ ├── collectd_df.trig │ │ │ ├── collectd_disk.trig │ │ │ ├── collectd_interface.trig │ │ │ ├── collectd_load.trig │ │ │ ├── collectd_memory.trig │ │ │ ├── collectd_processes.trig │ │ │ ├── collectd_swap.trig │ │ │ └── collectd_users.trig │ └── package.json ├── linux-system-nrpe │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-linux-system-nrpe.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ ├── examples │ │ │ ├── booster_nrpe.cfg.example │ │ │ └── linux-system-nrpe_local.cfg.example │ │ └── pack-linux-system-nrpe.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── linux-system-nrpe.pack │ │ ├── linux-system-nrpe_local.cfg │ │ ├── services │ │ │ ├── cpu.cfg │ │ │ ├── disk.cfg │ │ │ ├── load.cfg │ │ │ ├── memory.cfg │ │ │ ├── swap.cfg │ │ │ └── users.cfg │ │ └── templates.cfg │ └── package.json ├── linux-system-snmp │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-linux-system-snmp.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── linux-system-snmp.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── linux-system-snmp.pack │ │ ├── services │ │ │ ├── cpu.cfg │ │ │ ├── disk.cfg │ │ │ ├── io.cfg │ │ │ ├── load.cfg │ │ │ ├── ram.cfg │ │ │ ├── swap.cfg │ │ │ ├── system.cfg │ │ │ └── traffic.cfg │ │ └── templates.cfg │ └── package.json ├── openstack-cinder-http │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-openstack-cinder-http.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── openstack-cinder-http.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── openstack-cinder-http.pack │ │ ├── services │ │ │ └── cinder.cfg │ │ └── templates.cfg │ └── package.json ├── openstack-glance-http │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-openstack-glance-http.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── openstack-glance-http.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── openstack-glance-http.pack │ │ ├── services │ │ │ └── glance.cfg │ │ └── templates.cfg │ └── package.json ├── openstack-host │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-openstack-host.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── openstack-host.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── openstack-host.pack │ │ ├── services │ │ │ ├── ceilometer_cpu.cfg │ │ │ └── ceilometer_ram.cfg │ │ └── templates.cfg │ └── package.json ├── openstack-keystone-http │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-openstack-keystone-http.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── openstack-keystone-http.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── openstack-keystone-http.pack │ │ ├── services │ │ │ └── keystone.cfg │ │ └── templates.cfg │ └── package.json ├── openstack-nova-http │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-openstack-nova-http.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── openstack-nova-http.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── openstack-nova-http.pack │ │ ├── services │ │ │ └── nova.cfg │ │ └── templates.cfg │ └── package.json ├── vmware-system-https │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-vmware-system-https.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── vmware-system-https.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── discovery.cfg │ │ ├── macros.cfg │ │ ├── services │ │ │ ├── cpu.cfg │ │ │ ├── io.cfg │ │ │ ├── mem.cfg │ │ │ ├── net.cfg │ │ │ └── swap.cfg │ │ ├── templates.cfg │ │ └── vmware-system-https.pack │ ├── package.json │ └── share │ │ ├── images │ │ └── sets │ │ │ └── vmware │ │ │ ├── .gitignore │ │ │ └── tag.png │ │ └── templates │ │ └── graphite │ │ └── .gitignore ├── windows-ad-collectd │ ├── .packer.yml │ ├── README.rst │ ├── collectd │ │ ├── AD-DRA_full_sync_objects.reg │ │ ├── AD-DRA_objects.reg │ │ ├── AD-DRA_properties.reg │ │ ├── AD-DRA_replication_synchronizations.reg │ │ ├── AD-DRA_sync_requests.reg │ │ ├── AD-DRA_values.reg │ │ ├── AD-DS.reg │ │ ├── AD-authentication.reg │ │ └── AD-ldap.reg │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-windows-ad-collectd.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── windows-ad-collectd.rst │ ├── pack │ │ ├── services │ │ │ ├── AD-DRA_full_sync_objects.cfg │ │ │ ├── AD-DRA_objects.cfg │ │ │ ├── AD-DRA_properties.cfg │ │ │ ├── AD-DRA_replication_synchronizations.cfg │ │ │ ├── AD-DRA_sync_requests.cfg │ │ │ ├── AD-DRA_values.cfg │ │ │ ├── AD-DS.cfg │ │ │ ├── AD-authentication.cfg │ │ │ └── AD-ldap.cfg │ │ ├── templates.cfg │ │ └── windows-ad-collectd.pack │ └── package.json ├── windows-mssql │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-windows-mssql.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── windows-mssql.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── discovery.cfg │ │ ├── macros.cfg │ │ ├── services │ │ │ ├── batch_requests.cfg │ │ │ ├── checkpoint_pages.cfg │ │ │ ├── connected_users.cfg │ │ │ ├── connection.cfg │ │ │ ├── cpu_busy.cfg │ │ │ ├── database_backup_age.cfg │ │ │ ├── database_free.cfg │ │ │ ├── free_list_stalls.cfg │ │ │ ├── full_scans.cfg │ │ │ ├── io_busy.cfg │ │ │ ├── latches_wait_time.cfg │ │ │ ├── latches_waits.cfg │ │ │ ├── lazy_writes.cfg │ │ │ ├── locks_deadlocks.cfg │ │ │ ├── locks_timeouts.cfg │ │ │ ├── locks_waits.cfg │ │ │ ├── mem_pool_data_buffer_hit_ratio.cfg │ │ │ ├── page_life_expectancy.cfg │ │ │ ├── sql_initcompilations.cfg │ │ │ ├── sql_recompilations.cfg │ │ │ ├── total_server_memory.cfg │ │ │ └── transactions.cfg │ │ ├── templates.cfg │ │ └── windows-mssql.pack │ ├── package.json │ └── share │ │ └── images │ │ └── sets │ │ └── tag.png ├── windows-rdp │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-windows-rdp.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── windows-rdp.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── services │ │ │ └── windows_health.cfg │ │ ├── templates.cfg │ │ └── windows-rdp.pack │ └── package.json ├── windows-sophos-collectd │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-windows-sophos-collectd.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ ├── examples │ │ │ ├── arbiter-collectd.cfg.example │ │ │ └── collectd.conf │ │ └── windows-sophos-collectd.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── services │ │ │ └── service-sophos.cfg │ │ ├── templates.cfg │ │ └── windows-sophos-collectd.pack │ └── package.json ├── windows-sophos-mssql │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-windows-sophos-mssql.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── windows-sophos-mssql.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── services │ │ │ └── infected_servers.cfg │ │ ├── templates.cfg │ │ └── windows-sophos-mssql.pack │ └── package.json └── windows-system-collectd │ ├── .packer.yml │ ├── README.rst │ ├── collectd │ ├── config_collectd.reg │ ├── convert_to_reg.sh │ ├── cpu.reg │ ├── df.reg │ ├── disk.reg │ ├── interface.reg │ ├── memory-and-pagefile.reg │ ├── memory-pagefaults.reg │ ├── system-context_switches.reg │ ├── system-disk_queue_length.reg │ ├── system-processor_queue_length.reg │ └── system.reg │ ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── docs │ ├── install │ ├── manpages │ ├── monitoring-packs-sfl-windows-system-collectd.spec │ ├── rules │ └── source │ │ └── format │ ├── doc │ ├── conf.py │ └── windows-system-collectd.rst │ ├── pack │ ├── commands.cfg │ ├── services │ │ ├── cpu.cfg │ │ ├── df.cfg │ │ ├── disk.cfg │ │ ├── interface.cfg │ │ ├── memory-pagefaults.cfg │ │ ├── memory-pagefile.cfg │ │ ├── memory.cfg │ │ ├── processes.cfg │ │ ├── system-context_switches.cfg │ │ ├── system-disk_queue_length.cfg │ │ └── system-processor_queue_length.cfg │ ├── templates.cfg │ ├── triggers.d │ │ ├── windows_collectd_counter.trig │ │ ├── windows_collectd_counter_multiple.trig │ │ ├── windows_collectd_cpu.trig │ │ ├── windows_collectd_df.trig │ │ ├── windows_collectd_disk.trig │ │ ├── windows_collectd_interface.trig │ │ ├── windows_collectd_memory-pagefile.trig │ │ ├── windows_collectd_memory.trig │ │ ├── windows_collectd_process.trig │ │ ├── windows_collectd_processes.trig │ │ ├── windows_collectd_service.trig │ │ └── windows_collectd_users.trig │ └── windows-system-collectd.pack │ └── package.json ├── plugins ├── __init__.py ├── check-amt-montreal │ ├── .gitignore │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── manpages │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── plugin-check_amt_montreal.rst │ ├── gtfs-realtime.proto │ ├── monitoring-plugins-sfl-check-amt-montreal.spec │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── amt_montreal │ │ │ ├── __init__.py │ │ │ ├── amt_montreal.py │ │ │ └── gtfs_realtime_pb2.py │ └── tests │ │ ├── Alert.pb │ │ └── test_check_amt_montreal.py ├── check-apache-server-status │ ├── .gitignore │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── manpages │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── plugin-check_apache_server_status.rst │ ├── monitoring-plugins-sfl-check-apache-server-status.spec │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── apache_server_status │ │ │ ├── __init__.py │ │ │ └── apache_server_status.py │ └── tests │ │ └── test_check_apache_server_status.py ├── check-arp-no-change │ ├── .gitignore │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_arp_no_change.rst │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── arp_no_change │ │ │ ├── __init__.py │ │ │ ├── arp_no_change.py │ │ │ └── arp_no_change_low_level.py │ └── tests │ │ └── test_check_arp_no_change.py ├── check-asterisk-cdr-status │ ├── .gitignore │ ├── check_asterisk_cdr_status │ ├── check_asterisk_cdr_status.inc │ ├── check_asterisk_cdr_status.spec │ ├── check_asterisk_cdr_status_utils.sh │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_asterisk_cdr_status.rst │ └── test │ │ ├── jenkins │ │ ├── all_tests.txt │ │ ├── checkbashisms │ │ ├── jenkins_unit_tests.sh │ │ ├── runtests │ │ ├── shcov │ │ │ ├── data │ │ │ │ ├── amber.png │ │ │ │ ├── emerald.png │ │ │ │ ├── gcov.css │ │ │ │ ├── glass.png │ │ │ │ ├── ruby.png │ │ │ │ └── snow.png │ │ │ ├── shcov.py │ │ │ ├── shcov │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ ├── file.py │ │ │ │ └── utils.py │ │ │ └── shlcov │ │ └── shunit2 │ │ │ ├── shunit2 │ │ │ ├── shunit2_test.sh │ │ │ ├── shunit2_test_asserts.sh │ │ │ ├── shunit2_test_failures.sh │ │ │ ├── shunit2_test_helpers │ │ │ ├── shunit2_test_macros.sh │ │ │ ├── shunit2_test_misc.sh │ │ │ └── shunit2_test_standalone.sh │ │ └── test_check_asterisk_cdr_status.sh ├── check-aws-sqs-activity │ ├── .gitignore │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── manpages │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── plugin-check_aws_sqs_activity.rst │ ├── monitoring-plugins-sfl-check-aws-sqs-activity.spec │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── aws_sqs_activity │ │ │ ├── __init__.py │ │ │ └── aws_sqs_activity.py │ └── tests │ │ └── test_check_aws_sqs_activity.py ├── check-aws-sqs-queue-size │ ├── .gitignore │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── manpages │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── plugin-check_aws_sqs_queue_size.rst │ ├── monitoring-plugins-sfl-check-aws-sqs-queue-size.spec │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── aws_sqs_queue_size │ │ │ ├── __init__.py │ │ │ └── aws_sqs_queue_size.py │ └── tests │ │ └── test_check_aws_sqs_queue_size.py ├── check-bixi-montreal │ ├── .gitignore │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── manpages │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── plugin-check_bixi_montreal.rst │ ├── monitoring-plugins-sfl-check-bixi-montreal.spec │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── bixi_montreal │ │ │ ├── __init__.py │ │ │ └── bixi_montreal.py │ └── tests │ │ └── test_check_bixi_montreal.py ├── check-brother-toner-level │ ├── .gitignore │ ├── check_brother_toner_level │ ├── check_brother_toner_level.py │ ├── check_brother_toner_level.spec │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_brother_toner_level.rst │ ├── requests │ │ ├── __init__.py │ │ ├── adapters.py │ │ ├── api.py │ │ ├── auth.py │ │ ├── cacert.pem │ │ ├── certs.py │ │ ├── compat.py │ │ ├── cookies.py │ │ ├── debian │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── files │ │ │ ├── python-requests.debhelper.log │ │ │ ├── python-requests.install │ │ │ ├── python-requests.substvars │ │ │ ├── python-requests │ │ │ │ ├── DEBIAN │ │ │ │ │ ├── control │ │ │ │ │ └── md5sums │ │ │ │ └── usr │ │ │ │ │ ├── lib │ │ │ │ │ └── shinken │ │ │ │ │ │ └── plugins │ │ │ │ │ │ └── requests │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── adapters.py │ │ │ │ │ │ ├── api.py │ │ │ │ │ │ ├── auth.py │ │ │ │ │ │ ├── cacert.pem │ │ │ │ │ │ ├── certs.py │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ ├── cookies.py │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ ├── hooks.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ ├── packages │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── charade │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── big5freq.py │ │ │ │ │ │ │ ├── big5prober.py │ │ │ │ │ │ │ ├── chardistribution.py │ │ │ │ │ │ │ ├── charsetgroupprober.py │ │ │ │ │ │ │ ├── charsetprober.py │ │ │ │ │ │ │ ├── codingstatemachine.py │ │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ │ ├── constants.py │ │ │ │ │ │ │ ├── escprober.py │ │ │ │ │ │ │ ├── escsm.py │ │ │ │ │ │ │ ├── eucjpprober.py │ │ │ │ │ │ │ ├── euckrfreq.py │ │ │ │ │ │ │ ├── euckrprober.py │ │ │ │ │ │ │ ├── euctwfreq.py │ │ │ │ │ │ │ ├── euctwprober.py │ │ │ │ │ │ │ ├── gb2312freq.py │ │ │ │ │ │ │ ├── gb2312prober.py │ │ │ │ │ │ │ ├── hebrewprober.py │ │ │ │ │ │ │ ├── jisfreq.py │ │ │ │ │ │ │ ├── jpcntx.py │ │ │ │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ │ │ │ ├── langgreekmodel.py │ │ │ │ │ │ │ ├── langhebrewmodel.py │ │ │ │ │ │ │ ├── langhungarianmodel.py │ │ │ │ │ │ │ ├── langthaimodel.py │ │ │ │ │ │ │ ├── latin1prober.py │ │ │ │ │ │ │ ├── mbcharsetprober.py │ │ │ │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ │ │ │ ├── mbcssm.py │ │ │ │ │ │ │ ├── sbcharsetprober.py │ │ │ │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ │ │ │ ├── sjisprober.py │ │ │ │ │ │ │ ├── universaldetector.py │ │ │ │ │ │ │ └── utf8prober.py │ │ │ │ │ │ └── urllib3 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── _collections.py │ │ │ │ │ │ │ ├── connectionpool.py │ │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ │ ├── filepost.py │ │ │ │ │ │ │ ├── packages │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── ordered_dict.py │ │ │ │ │ │ │ ├── six.py │ │ │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ │ ├── poolmanager.py │ │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ │ └── util.py │ │ │ │ │ │ ├── requests.spec │ │ │ │ │ │ ├── sessions.py │ │ │ │ │ │ ├── status_codes.py │ │ │ │ │ │ ├── structures.py │ │ │ │ │ │ └── utils.py │ │ │ │ │ └── share │ │ │ │ │ └── doc │ │ │ │ │ └── python-requests │ │ │ │ │ └── changelog.Debian.gz │ │ │ └── rules │ │ ├── exceptions.py │ │ ├── hooks.py │ │ ├── models.py │ │ ├── packages │ │ │ ├── __init__.py │ │ │ ├── charade │ │ │ │ ├── __init__.py │ │ │ │ ├── big5freq.py │ │ │ │ ├── big5prober.py │ │ │ │ ├── chardistribution.py │ │ │ │ ├── charsetgroupprober.py │ │ │ │ ├── charsetprober.py │ │ │ │ ├── codingstatemachine.py │ │ │ │ ├── compat.py │ │ │ │ ├── constants.py │ │ │ │ ├── escprober.py │ │ │ │ ├── escsm.py │ │ │ │ ├── eucjpprober.py │ │ │ │ ├── euckrfreq.py │ │ │ │ ├── euckrprober.py │ │ │ │ ├── euctwfreq.py │ │ │ │ ├── euctwprober.py │ │ │ │ ├── gb2312freq.py │ │ │ │ ├── gb2312prober.py │ │ │ │ ├── hebrewprober.py │ │ │ │ ├── jisfreq.py │ │ │ │ ├── jpcntx.py │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ ├── langgreekmodel.py │ │ │ │ ├── langhebrewmodel.py │ │ │ │ ├── langhungarianmodel.py │ │ │ │ ├── langthaimodel.py │ │ │ │ ├── latin1prober.py │ │ │ │ ├── mbcharsetprober.py │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ ├── mbcssm.py │ │ │ │ ├── sbcharsetprober.py │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ ├── sjisprober.py │ │ │ │ ├── universaldetector.py │ │ │ │ └── utf8prober.py │ │ │ └── urllib3 │ │ │ │ ├── __init__.py │ │ │ │ ├── _collections.py │ │ │ │ ├── connectionpool.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── filepost.py │ │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ ├── ordered_dict.py │ │ │ │ ├── six.py │ │ │ │ └── ssl_match_hostname │ │ │ │ │ └── __init__.py │ │ │ │ ├── poolmanager.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── util.py │ │ ├── requests.spec │ │ ├── sessions.py │ │ ├── status_codes.py │ │ ├── structures.py │ │ └── utils.py │ ├── requirements.freeze │ └── test │ │ ├── .coveragerc │ │ ├── jenkins │ │ ├── all_tests.txt │ │ ├── jenkins_unit_tests.sh │ │ ├── prepare_environment.sh │ │ ├── requirements.tests.freeze │ │ └── runtests │ │ ├── pages1 │ │ └── etc │ │ │ └── mnt_info.html │ │ ├── pages2 │ │ └── etc │ │ │ ├── mnt_info.html │ │ │ └── view_config.html │ │ └── test_check_brother_toner_level.py ├── check-carp-by-ssh │ ├── .gitignore │ ├── check_carp_by_ssh │ ├── check_carp_by_ssh.py │ ├── check_carp_by_ssh.spec │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_carp_by_ssh.rst │ ├── requirements.freeze │ └── test │ │ ├── .coveragerc │ │ ├── 192.168.1.10.txt │ │ ├── 192.168.1.11.txt │ │ ├── 192.168.1.12.txt │ │ ├── 192.168.1.13.txt │ │ ├── 192.168.1.14.txt │ │ ├── 192.168.1.15.txt │ │ ├── jenkins │ │ ├── all_tests.txt │ │ ├── jenkins_unit_tests.sh │ │ ├── prepare_environment.sh │ │ ├── requirements.tests.freeze │ │ └── runtests │ │ └── test_check_carp_by_ssh.py ├── check-ceilometer │ ├── .coveragerc │ ├── .gitignore │ ├── .packer.yml │ ├── COPYING │ ├── README.md │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── plugin-check_ceilometer.rst │ ├── monitoring-plugins-sfl-check-ceilometer.spec │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── ceilometer │ │ │ ├── __init__.py │ │ │ └── ceilometer.py │ └── tests │ │ └── test_check_ceilometer.py ├── check-cinder │ ├── .packer.yml │ ├── doc │ │ ├── conf.py │ │ └── plugin-check-cinder.rst │ ├── monitoring-plugins-sfl-check-cinder.spec │ ├── setup.py │ └── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ ├── __init__.py │ │ └── cinder │ │ ├── __init__.py │ │ └── cinder.py ├── check-cpu │ ├── .gitignore │ ├── check_cpu │ ├── check_cpu.inc │ ├── check_cpu.spec │ ├── check_cpu_utils.sh │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_cpu.rst │ └── test │ │ ├── jenkins │ │ ├── all_tests.txt │ │ ├── checkbashisms │ │ ├── jenkins_unit_tests.sh │ │ ├── runtests │ │ ├── shcov │ │ │ ├── data │ │ │ │ ├── amber.png │ │ │ │ ├── emerald.png │ │ │ │ ├── gcov.css │ │ │ │ ├── glass.png │ │ │ │ ├── ruby.png │ │ │ │ └── snow.png │ │ │ ├── shcov.py │ │ │ ├── shcov │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ ├── file.py │ │ │ │ └── utils.py │ │ │ └── shlcov │ │ └── shunit2 │ │ │ ├── shunit2 │ │ │ ├── shunit2_test.sh │ │ │ ├── shunit2_test_asserts.sh │ │ │ ├── shunit2_test_failures.sh │ │ │ ├── shunit2_test_helpers │ │ │ ├── shunit2_test_macros.sh │ │ │ ├── shunit2_test_misc.sh │ │ │ └── shunit2_test_standalone.sh │ │ └── test_check_cpu.sh ├── check-drupal-cache │ ├── .gitignore │ ├── .packer.yml │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-plugins-sfl-check-drupal-cache.links │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── plugin-check_drupal_cache.rst │ ├── monitoring-plugins-sfl-check-drupal-cache.spec │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── drupal_cache │ │ │ ├── __init__.py │ │ │ └── drupal_cache.py │ └── tests │ │ └── test_check_drupal_cache.py ├── check-drupal-codebase │ ├── .gitignore │ ├── .packer.yml │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-plugins-sfl-check-drupal-codebase.links │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── plugin-check_drupal_codebase.rst │ ├── monitoring-plugins-sfl-check-drupal-codebase.spec │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── drupal_codebase │ │ │ ├── __init__.py │ │ │ └── drupal_codebase.py │ └── tests │ │ └── test_check_drupal_codebase.py ├── check-drupal-cron │ ├── .gitignore │ ├── .packer.yml │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-plugins-sfl-check-drupal-cron.links │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── plugin-check_drupal_cron.rst │ ├── monitoring-plugins-sfl-check-drupal-cron.spec │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── drupal_cron │ │ │ ├── __init__.py │ │ │ └── drupal_cron.py │ └── tests │ │ └── test_check_drupal_cron.py ├── check-drupal-database │ ├── .gitignore │ ├── .packer.yml │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-plugins-sfl-check-drupal-database.links │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── plugin-check_drupal_database.rst │ ├── monitoring-plugins-sfl-check-drupal-database.spec │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── drupal_database │ │ │ ├── __init__.py │ │ │ └── drupal_database.py │ └── tests │ │ └── test_check_drupal_database.py ├── check-drupal-extensions │ ├── .gitignore │ ├── .packer.yml │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-plugins-sfl-check-drupal-extensions.links │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── plugin-check_drupal_extensions.rst │ ├── monitoring-plugins-sfl-check-drupal-extensions.spec │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── drupal_extensions │ │ │ ├── __init__.py │ │ │ └── drupal_extensions.py │ └── tests │ │ └── test_check_drupal_extensions.py ├── check-drupal-jenkins │ ├── .gitignore │ ├── .packer.yml │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-plugins-sfl-check-drupal-jenkins.links │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── plugin-check_drupal_jenkins.rst │ ├── monitoring-plugins-sfl-check-drupal-jenkins.spec │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── drupal_jenkins │ │ │ ├── __init__.py │ │ │ └── drupal_jenkins.py │ └── tests │ │ └── test_check_drupal_jenkins.py ├── check-drupal-logging │ ├── .gitignore │ ├── .packer.yml │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-plugins-sfl-check-drupal-logging.links │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── plugin-check_drupal_logging.rst │ ├── monitoring-plugins-sfl-check-drupal-logging.spec │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── drupal_logging │ │ │ ├── __init__.py │ │ │ └── drupal_logging.py │ └── tests │ │ └── test_check_drupal_logging.py ├── check-drupal-security │ ├── .gitignore │ ├── .packer.yml │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-plugins-sfl-check-drupal-security.links │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── plugin-check_drupal_security.rst │ ├── monitoring-plugins-sfl-check-drupal-security.spec │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── drupal_security │ │ │ ├── __init__.py │ │ │ └── drupal_security.py │ └── tests │ │ └── test_check_drupal_security.py ├── check-drupal-status │ ├── .gitignore │ ├── .packer.yml │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-plugins-sfl-check-drupal-status.links │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── plugin-check_drupal_status.rst │ ├── monitoring-plugins-sfl-check-drupal-status.spec │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── drupal_status │ │ │ ├── __init__.py │ │ │ └── drupal_status.py │ └── tests │ │ └── test_check_drupal_status.py ├── check-drupal-views │ ├── .gitignore │ ├── .packer.yml │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-plugins-sfl-check-drupal-views.links │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── plugin-check_drupal_views.rst │ ├── monitoring-plugins-sfl-check-drupal-views.spec │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── drupal_views │ │ │ ├── __init__.py │ │ │ └── drupal_views.py │ └── tests │ │ └── test_check_drupal_views.py ├── check-emergency-rooms-quebec │ ├── .gitignore │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── manpages │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── plugin-check_emergency_rooms_quebec.rst │ ├── monitoring-plugins-sfl-check-emergency-rooms-quebec.spec │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── emergency_rooms_quebec │ │ │ ├── __init__.py │ │ │ └── emergency_rooms_quebec.py │ └── tests │ │ └── test_check_emergency_rooms_quebec.py ├── check-environment-canada │ ├── .gitignore │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── manpages │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── plugin-check_environment_canada.rst │ ├── monitoring-plugins-sfl-check-environment-canada.spec │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── environment_canada │ │ │ ├── __init__.py │ │ │ └── environment_canada.py │ └── tests │ │ └── test_check_environment_canada.py ├── check-fake │ ├── .gitignore │ ├── check_fake.spec │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_fake.rst │ ├── requirements.freeze │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── fake │ │ │ ├── __init__.py │ │ │ └── fake.py │ └── tests │ │ ├── .coveragerc │ │ └── test_check_fake.py ├── check-ferries │ ├── .gitignore │ ├── check_ferries │ ├── check_ferries.py │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_ferries.rst │ ├── requirements.txt │ ├── run_tests.sh │ └── test_check_ferries.py ├── check-glance │ ├── .packer.yml │ ├── doc │ │ ├── conf.py │ │ └── plugin-check-glance.rst │ ├── monitoring-plugins-sfl-check-glance.spec │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── glance │ │ │ ├── __init__.py │ │ │ └── glance.py │ └── tests │ │ └── test_glance.py ├── check-graphite-api │ ├── .gitignore │ ├── COPYING │ ├── README │ ├── check_graphite_api.spec │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_graphite_api.rst │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── graphite_api │ │ │ ├── __init__.py │ │ │ └── graphite_api.py │ └── tests │ │ └── test_check_graphite_api.py ├── check-http-load │ ├── .gitignore │ ├── .packer.yml │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-plugins-sfl-check-http-load.links │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── plugin-check_http_load.rst │ ├── monitoring-plugins-sfl-check-http-load.spec │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── http_load │ │ │ ├── __init__.py │ │ │ └── http_load.py │ └── tests │ │ └── test_check_http_load.py ├── check-http2 │ ├── .gitignore │ ├── .packer.yml │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── manpages │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── monitoring-plugins-sfl-check-http2.rst │ ├── monitoring-plugins-sfl-check-http2.spec │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── http2 │ │ │ ├── __init__.py │ │ │ └── http2.py │ └── tests │ │ └── test_check_http2.py ├── check-hydro-quebec │ ├── .gitignore │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_hydro_quebec.rst │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── hydro_quebec │ │ │ ├── __init__.py │ │ │ └── hydro_quebec.py │ └── tests │ │ └── test_check_hydro_quebec.py ├── check-influxdb │ ├── .gitignore │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-plugins-sfl-check-influxdb.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── plugin-check_influxdb.rst │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── influxdb │ │ │ ├── Influxdb.py │ │ │ └── __init__.py │ └── tests │ │ ├── __init__.py │ │ └── test_check_influxdb.py ├── check-json-by-ec2-tags │ ├── .gitignore │ ├── __init__.py │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_json_by_ec2_tags.rst │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── json_by_ec2_tags │ │ │ ├── __init__.py │ │ │ └── json_by_ec2_tags.py │ └── tests │ │ └── test_check_json_by_ec2_tags.py ├── check-keystone │ ├── .packer.yml │ ├── doc │ │ ├── conf.py │ │ └── plugin-check_keystone.rst │ ├── monitoring-plugins-sfl-check-keystone.spec │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── keystone │ │ │ ├── __init__.py │ │ │ └── keystone.py │ └── tests │ │ └── test_keystone.py ├── check-libvirt-stats │ ├── .gitignore │ ├── check_libvirt_stats │ ├── check_libvirt_stats.py │ ├── check_libvirt_stats.spec │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_libvirt_stats.rst │ ├── libvirtstat.py │ ├── requirements.freeze │ └── test │ │ ├── .coveragerc │ │ ├── jenkins │ │ ├── all_tests.txt │ │ ├── jenkins_unit_tests.sh │ │ ├── prepare_environment.sh │ │ ├── requirements.tests.freeze │ │ └── runtests │ │ └── test_check_libvirt_stats.py ├── check-linux-bandwidth │ ├── .gitignore │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── dirs │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_linux_bandwidth.rst │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── linux_bandwidth │ │ │ ├── __init__.py │ │ │ └── linux_bandwidth.py │ └── tests │ │ └── test_check_linux_bandwidth.py ├── check-linux-traffic │ ├── .gitignore │ ├── check_linux_traffic.spec │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_linux_traffic.rst │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── linux_traffic │ │ │ ├── __init__.py │ │ │ └── linux_traffic.py │ └── tests │ │ ├── .coveragerc │ │ ├── old │ │ ├── all_tests.txt │ │ ├── jenkins_unit_tests.sh │ │ ├── prepare_environment.sh │ │ ├── requirements.tests.freeze │ │ └── runtests │ │ └── test_check_linux_traffic.py ├── check-mem │ ├── .gitignore │ ├── check_mem │ ├── check_mem.pm │ ├── check_mem.spec │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_mem.rst │ ├── run_tests.sh │ └── test │ │ ├── Devel │ │ └── Cover │ │ │ └── Report │ │ │ ├── Clover.pm │ │ │ └── Clover │ │ │ ├── Builder.pm │ │ │ ├── Class.pm │ │ │ ├── File.pm │ │ │ ├── FileRegistry.pm │ │ │ ├── Package.pm │ │ │ ├── Project.pm │ │ │ ├── Reportable.pm │ │ │ └── clover.tt │ │ ├── check_mem.t │ │ └── jenkins │ │ ├── jenkins_unit_tests.sh │ │ └── runtests ├── check-mpt-status │ ├── .gitignore │ ├── check_mpt_status │ ├── check_mpt_status.py │ ├── check_mpt_status.spec │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_mpt_status.rst │ ├── requirements.freeze │ └── test │ │ ├── .coveragerc │ │ ├── jenkins │ │ ├── all_tests.txt │ │ ├── jenkins_unit_tests.sh │ │ ├── prepare_environment.sh │ │ ├── requirements.tests.freeze │ │ └── runtests │ │ ├── test.txt │ │ └── test_check_mpt_status.py ├── check-nova-host-status │ ├── .gitignore │ ├── .packer.yml │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── manpages │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── plugin-check_nova_host_status.rst │ ├── monitoring-plugins-sfl-check-nova-host-status.spec │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── nova_host_status │ │ │ ├── __init__.py │ │ │ └── nova_host_status.py │ └── tests │ │ └── test_check_nova_host_status.py ├── check-nova │ ├── .packer.yml │ ├── doc │ │ ├── conf.py │ │ └── plugin-check-nova.rst │ ├── monitoring-plugins-sfl-check-nova.spec │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── nova │ │ │ ├── __init__.py │ │ │ └── nova.py │ └── tests │ │ └── test_nova.py ├── check-openbsd-sysstats-byssh │ ├── .gitignore │ ├── check_openbsd_sysstats_byssh │ ├── check_openbsd_sysstats_byssh.py │ ├── check_openbsd_sysstats_byssh.spec │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_openbsd_sysstats_byssh.rst │ ├── requirements.freeze │ └── test │ │ ├── .coveragerc │ │ ├── 192.168.1.1.txt │ │ ├── jenkins │ │ ├── all_tests.txt │ │ ├── jenkins_unit_tests.sh │ │ ├── prepare_environment.sh │ │ ├── requirements.tests.freeze │ │ └── runtests │ │ └── test_check_openbsd_sysstats_byssh.py ├── check-openerp │ ├── .gitignore │ ├── check_openerp │ ├── check_openerp.py │ ├── check_openerp.spec │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_openerp.rst │ ├── requirements.freeze │ └── test │ │ ├── .coveragerc │ │ ├── jenkins │ │ ├── all_tests.txt │ │ ├── jenkins_unit_tests.sh │ │ ├── prepare_environment.sh │ │ ├── requirements.tests.freeze │ │ └── runtests │ │ └── test_check_openerp.py ├── check-poller2livestatus │ ├── .gitignore │ ├── check_poller2livestatus.spec │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_poller2livestatus.rst │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── poller2livestatus │ │ │ ├── __init__.py │ │ │ └── poller2livestatus.py │ └── tests │ │ └── test_check_poller2livestatus.py ├── check-postgresql-lag │ ├── .gitignore │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_postgresql_lag.rst │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── postgresql_lag │ │ │ ├── __init__.py │ │ │ └── postgresql_lag.py │ └── tests │ │ └── test_check_postgresql_lag.py ├── check-printer-hp-2600n │ ├── .gitignore │ ├── check_printer_hp_2600n │ ├── check_printer_hp_2600n.py │ ├── check_printer_hp_2600n.spec │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_printer_hp_2600n.rst │ ├── requirements.freeze │ └── test │ │ ├── .coveragerc │ │ ├── jenkins │ │ ├── all_tests.txt │ │ ├── jenkins_unit_tests.sh │ │ ├── prepare_environment.sh │ │ ├── requirements.tests.freeze │ │ └── runtests │ │ ├── pages │ │ ├── SSI │ │ │ └── device_status_info.htm │ │ └── device_status_info.htm │ │ └── test_check_printer_hp_2600n.py ├── check-quebecrencontrescom │ ├── .gitignore │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_quebecrencontrescom.rst │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── quebecrencontrescom │ │ │ ├── __init__.py │ │ │ └── quebecrencontrescom.py │ └── tests │ │ └── test_check_quebecrencontrescom.py ├── check-rabbitmq │ ├── .gitignore │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-plugins-sfl-check-rabbitmq.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── plugin-check_rabbitmq.rst │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── rabbitmq │ │ │ ├── __init__.py │ │ │ └── rabbitmq.py │ └── tests │ │ └── test_check_rabbitmq.py ├── check-rancid │ ├── .gitignore │ ├── check_rancid │ ├── check_rancid.py │ ├── check_rancid.spec │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_rancid.rst │ ├── requirements.freeze │ └── test │ │ ├── .coveragerc │ │ ├── jenkins │ │ ├── all_tests.txt │ │ ├── jenkins_unit_tests.sh │ │ ├── prepare_environment.sh │ │ ├── requirements.tests.freeze │ │ └── runtests │ │ └── test_check_rancid.py ├── check-reactionner-health │ ├── .gitignore │ ├── check_reactionner_health │ ├── check_reactionner_health.py │ ├── check_reactionner_health.spec │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_reactionner_health.rst │ ├── notify_to_file.py │ ├── requirements.freeze │ └── test │ │ ├── .coveragerc │ │ ├── jenkins │ │ ├── all_tests.txt │ │ ├── jenkins_unit_tests.sh │ │ ├── prepare_environment.sh │ │ ├── requirements.tests.freeze │ │ └── runtests │ │ └── test_check_reactionner_health.py ├── check-redis │ ├── .gitignore │ ├── .packer.yml │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── dirs │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-plugins-sfl-check-redis.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── check-redis.rst │ │ └── conf.py │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── redis │ │ │ ├── __init__.py │ │ │ └── redis.py │ └── tests │ │ └── test_check_redis.py ├── check-reseaucontactcom │ ├── .gitignore │ ├── __init__.py │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_reseaucontactcom.rst │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── reseaucontactcom │ │ │ ├── __init__.py │ │ │ ├── reseaucontactcom.py │ │ │ └── version.py │ └── tests │ │ └── test_check_reseaucontactcom.py ├── check-samba │ ├── .gitignore │ ├── check_samba │ ├── check_samba.py │ ├── check_samba.spec │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_samba.rst │ ├── nmb │ │ ├── NetBIOS.py │ │ ├── NetBIOSProtocol.py │ │ ├── __init__.py │ │ ├── base.py │ │ ├── nmb_constants.py │ │ ├── nmb_structs.py │ │ └── utils.py │ ├── requirements.freeze │ ├── smb │ │ ├── SMBConnection.py │ │ ├── SMBHandler.py │ │ ├── SMBProtocol.py │ │ ├── __init__.py │ │ ├── base.py │ │ ├── ntlm.py │ │ ├── securityblob.py │ │ ├── smb2_constants.py │ │ ├── smb2_structs.py │ │ ├── smb_constants.py │ │ ├── smb_structs.py │ │ └── utils │ │ │ ├── README.txt │ │ │ ├── U32.py │ │ │ ├── __init__.py │ │ │ ├── md4.py │ │ │ ├── pyDes.py │ │ │ └── sha256.py │ └── test │ │ ├── .coveragerc │ │ ├── jenkins │ │ ├── all_tests.txt │ │ ├── jenkins_unit_tests.sh │ │ ├── prepare_environment.sh │ │ ├── requirements.tests.freeze │ │ └── runtests │ │ └── test_check_samba.py ├── check-selenium │ ├── .gitignore │ ├── check_selenium │ ├── check_selenium.py │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── images │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11-bis.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── plugin-check_selenium.rst │ │ └── selenium-ide-2.8.0.xpi │ ├── requirements.txt │ ├── run_tests.sh │ ├── scenarios │ │ ├── __init__.py │ │ ├── ccola │ │ ├── ccola.py │ │ ├── linuxfr │ │ ├── linuxfr-remote.py │ │ ├── linuxfr.py │ │ ├── savoirfairelinuxcom │ │ └── savoirfairelinuxcom.py │ └── test_check_selenium.py ├── check-site-health │ ├── .gitignore │ ├── check_site_health │ ├── check_site_health.py │ ├── check_site_health.spec │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_site_health.rst │ ├── requirements.freeze │ └── test │ │ ├── .coveragerc │ │ ├── jenkins │ │ ├── all_tests.txt │ │ ├── jenkins_unit_tests.sh │ │ ├── prepare_environment.sh │ │ ├── requirements.tests.freeze │ │ └── runtests │ │ └── test_check_site_health.py ├── check-ski-stations │ ├── .gitignore │ ├── .idea │ │ ├── .name │ │ ├── encodings.xml │ │ ├── inspectionProfiles │ │ │ ├── Project_Default.xml │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── plugin-check-ski-stations.iml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_ski_stations.rst │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── ski_stations │ │ │ ├── __init__.py │ │ │ ├── essai_lxml.py │ │ │ └── ski_stations.py │ └── tests │ │ ├── data │ │ ├── tableauqc2014-conditions.php.html │ │ └── tableauqc2014-conditions.php_files │ │ │ ├── icone-a.png │ │ │ ├── icone-b.png │ │ │ ├── icone-h.png │ │ │ ├── icone-l.png │ │ │ ├── icone-o.png │ │ │ └── icone-r.png │ │ └── test_check_ski_stations.py ├── check-smtp-success-ratio │ ├── .gitignore │ ├── check_smtp_success_ratio │ ├── check_smtp_success_ratio.inc │ ├── check_smtp_success_ratio.spec │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_smtp_success_ratio.rst │ ├── test │ │ ├── jenkins │ │ │ ├── all_tests.txt │ │ │ ├── checkbashisms │ │ │ ├── jenkins_unit_tests.sh │ │ │ ├── runtests │ │ │ ├── shcov │ │ │ │ ├── data │ │ │ │ │ ├── amber.png │ │ │ │ │ ├── emerald.png │ │ │ │ │ ├── gcov.css │ │ │ │ │ ├── glass.png │ │ │ │ │ ├── ruby.png │ │ │ │ │ └── snow.png │ │ │ │ ├── shcov.py │ │ │ │ ├── shcov │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── config.py │ │ │ │ │ ├── file.py │ │ │ │ │ └── utils.py │ │ │ │ └── shlcov │ │ │ └── shunit2 │ │ │ │ ├── shunit2 │ │ │ │ ├── shunit2_test.sh │ │ │ │ ├── shunit2_test_asserts.sh │ │ │ │ ├── shunit2_test_failures.sh │ │ │ │ ├── shunit2_test_helpers │ │ │ │ ├── shunit2_test_macros.sh │ │ │ │ ├── shunit2_test_misc.sh │ │ │ │ └── shunit2_test_standalone.sh │ │ └── test_check_smtp_success_ratio.sh │ └── utils.sh ├── check-snmp-interface │ ├── .gitignore │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_snmp_interface.rst │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── snmp_interface │ │ │ ├── __init__.py │ │ │ └── snmp_interface.py │ └── tests │ │ └── test_check_snmp_interface.py ├── check-snow-clearance │ ├── .gitignore │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_snow_clearance.rst │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── snow_clearance │ │ │ ├── __init__.py │ │ │ └── snow_clearance.py │ └── tests │ │ └── test_check_snow_clearance.py ├── check-spa2102 │ ├── .gitignore │ ├── check_spa2102 │ ├── check_spa2102.py │ ├── check_spa2102.spec │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_spa2102.rst │ ├── requirements.freeze │ └── test │ │ ├── .coveragerc │ │ ├── jenkins │ │ ├── all_tests.txt │ │ ├── jenkins_unit_tests.sh │ │ ├── prepare_environment.sh │ │ ├── requirements.tests.freeze │ │ └── runtests │ │ ├── pages │ │ └── spa-2102.htm │ │ └── test_check_spa2102.py ├── check-stm-metro-montreal │ ├── .gitignore │ ├── __init__.py │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_stm_metro_montreal.rst │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── stm_metro_montreal │ │ │ ├── __init__.py │ │ │ ├── stm_metro_montreal.py │ │ │ └── version.py │ └── tests │ │ └── test_check_stm_metro_montreal_test.py ├── check-toshiba-ups │ ├── .gitignore │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── manpages │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── plugin-check_toshiba_ups.rst │ ├── monitoring-plugins-sfl-check-toshiba_ups.spec │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── toshiba_ups │ │ │ ├── __init__.py │ │ │ └── toshiba_ups.py │ └── tests │ │ └── test_check_toshiba_ups.py ├── check-tripplite-ups │ ├── .gitignore │ ├── check_tripplite_ups │ ├── check_tripplite_ups.pm │ ├── check_tripplite_ups.spec │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_tripplite_ups.rst │ └── test │ │ ├── Devel │ │ └── Cover │ │ │ └── Report │ │ │ ├── Clover.pm │ │ │ └── Clover │ │ │ ├── Builder.pm │ │ │ ├── Class.pm │ │ │ ├── File.pm │ │ │ ├── FileRegistry.pm │ │ │ ├── Package.pm │ │ │ ├── Project.pm │ │ │ ├── Reportable.pm │ │ │ └── clover.tt │ │ ├── check_tripplite_ups.t │ │ └── jenkins │ │ ├── jenkins_unit_tests.sh │ │ └── runtests ├── check-wanpipe │ ├── .gitignore │ ├── check_wanpipe │ ├── check_wanpipe.py │ ├── check_wanpipe.spec │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_wanpipe.rst │ ├── requirements.freeze │ └── test │ │ ├── .coveragerc │ │ ├── jenkins │ │ ├── all_tests.txt │ │ ├── jenkins_unit_tests.sh │ │ ├── prepare_environment.sh │ │ ├── requirements.tests.freeze │ │ └── runtests │ │ ├── test_check_wanpipe.py │ │ ├── test_output1 │ │ ├── test_output2 │ │ ├── test_output3 │ │ ├── test_output4 │ │ └── test_output5 ├── check-x224 │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── install │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ └── plugin-check_x224.rst │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ │ ├── __init__.py │ │ └── plugins │ │ │ ├── __init__.py │ │ │ └── x224 │ │ │ ├── __init__.py │ │ │ └── x224.py │ └── tests │ │ └── test_check_x224.py └── run_tests.sh └── tools ├── __init__.py ├── build_rpm.sh ├── new-pack.py ├── new-plugin.py ├── obs-libs.sh ├── obs-plugins-packs.sh ├── package-libs.sh ├── package-plugins-packs.sh ├── run-tests.sh ├── templates ├── pack │ ├── .packer.yml │ ├── README.rst │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── install │ │ ├── manpages │ │ ├── monitoring-packs-sfl-foo.spec │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── doc │ │ ├── conf.py │ │ └── foo.rst │ ├── pack │ │ ├── commands.cfg │ │ ├── foo.pack │ │ ├── services │ │ │ ├── service1.cfg │ │ │ └── service2.cfg │ │ └── templates.cfg │ └── package.json └── python │ ├── .gitignore │ ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── install │ ├── manpages │ ├── monitoring-plugins-sfl-check-foo.spec │ ├── rules │ └── source │ │ └── format │ ├── doc │ ├── conf.py │ └── plugin-check_foo.rst │ ├── requirements.txt │ ├── run_tests.sh │ ├── setup.py │ ├── shinkenplugins │ ├── __init__.py │ └── plugins │ │ ├── __init__.py │ │ └── foo │ │ ├── __init__.py │ │ └── foo.py │ └── tests │ └── test_check_foo.py ├── tests └── osc_0.143.0-1_all.deb └── webserver.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/.packer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/README.md -------------------------------------------------------------------------------- /base_config/commands.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/base_config/commands.cfg -------------------------------------------------------------------------------- /base_config/contacts.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/base_config/contacts.cfg -------------------------------------------------------------------------------- /base_config/hosts/localhost.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/base_config/hosts/localhost.cfg -------------------------------------------------------------------------------- /base_config/resource.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/base_config/resource.cfg -------------------------------------------------------------------------------- /base_config/templates.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/base_config/templates.cfg -------------------------------------------------------------------------------- /base_config/timeperiods.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/base_config/timeperiods.cfg -------------------------------------------------------------------------------- /doc/doc_requirements.freeze: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/doc/doc_requirements.freeze -------------------------------------------------------------------------------- /doc/old/plugin-check_amt_montreal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/doc/old/plugin-check_amt_montreal.rst -------------------------------------------------------------------------------- /doc/old/plugin-check_carp_by_ssh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/doc/old/plugin-check_carp_by_ssh.rst -------------------------------------------------------------------------------- /doc/old/plugin-check_ceilometer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/doc/old/plugin-check_ceilometer.rst -------------------------------------------------------------------------------- /doc/old/plugin-check_cpu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/doc/old/plugin-check_cpu.rst -------------------------------------------------------------------------------- /doc/old/plugin-check_fake.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/doc/old/plugin-check_fake.rst -------------------------------------------------------------------------------- /doc/old/plugin-check_graphite_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/doc/old/plugin-check_graphite_api.rst -------------------------------------------------------------------------------- /doc/old/plugin-check_http2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/doc/old/plugin-check_http2.rst -------------------------------------------------------------------------------- /doc/old/plugin-check_hydro_quebec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/doc/old/plugin-check_hydro_quebec.rst -------------------------------------------------------------------------------- /doc/old/plugin-check_mem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/doc/old/plugin-check_mem.rst -------------------------------------------------------------------------------- /doc/old/plugin-check_mpt_status.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/doc/old/plugin-check_mpt_status.rst -------------------------------------------------------------------------------- /doc/old/plugin-check_openerp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/doc/old/plugin-check_openerp.rst -------------------------------------------------------------------------------- /doc/old/plugin-check_rancid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/doc/old/plugin-check_rancid.rst -------------------------------------------------------------------------------- /doc/old/plugin-check_redis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/doc/old/plugin-check_redis.rst -------------------------------------------------------------------------------- /doc/old/plugin-check_samba.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/doc/old/plugin-check_samba.rst -------------------------------------------------------------------------------- /doc/old/plugin-check_selenium.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/doc/old/plugin-check_selenium.rst -------------------------------------------------------------------------------- /doc/old/plugin-check_site_health.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/doc/old/plugin-check_site_health.rst -------------------------------------------------------------------------------- /doc/old/plugin-check_spa2102.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/doc/old/plugin-check_spa2102.rst -------------------------------------------------------------------------------- /doc/old/plugin-check_wanpipe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/doc/old/plugin-check_wanpipe.rst -------------------------------------------------------------------------------- /doc/old/plugin-check_x224.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/doc/old/plugin-check_x224.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/packs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/doc/source/packs.rst -------------------------------------------------------------------------------- /doc/source/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/doc/source/plugins.rst -------------------------------------------------------------------------------- /doc/theme/sphinx_rtd_theme/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/doc/theme/sphinx_rtd_theme/theme.conf -------------------------------------------------------------------------------- /libs/shinkenplugins/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | dist 3 | shinkenplugins.egg-info 4 | -------------------------------------------------------------------------------- /libs/shinkenplugins/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/libs/shinkenplugins/.packer.yml -------------------------------------------------------------------------------- /libs/shinkenplugins/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/libs/shinkenplugins/MANIFEST.in -------------------------------------------------------------------------------- /libs/shinkenplugins/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/libs/shinkenplugins/debian/changelog -------------------------------------------------------------------------------- /libs/shinkenplugins/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /libs/shinkenplugins/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/libs/shinkenplugins/debian/control -------------------------------------------------------------------------------- /libs/shinkenplugins/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/libs/shinkenplugins/debian/copyright -------------------------------------------------------------------------------- /libs/shinkenplugins/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/libs/shinkenplugins/debian/rules -------------------------------------------------------------------------------- /libs/shinkenplugins/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /libs/shinkenplugins/debian/source/options: -------------------------------------------------------------------------------- 1 | extend-diff-ignore="\.egg-info" -------------------------------------------------------------------------------- /libs/shinkenplugins/requirements-py26.txt: -------------------------------------------------------------------------------- 1 | argparse 2 | -------------------------------------------------------------------------------- /libs/shinkenplugins/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shinkenplugins/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/libs/shinkenplugins/run_tests.sh -------------------------------------------------------------------------------- /libs/shinkenplugins/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/libs/shinkenplugins/setup.py -------------------------------------------------------------------------------- /libs/shinkenplugins/shinkenplugins/VERSION: -------------------------------------------------------------------------------- 1 | 0.4.2 2 | -------------------------------------------------------------------------------- /libs/shinkenplugins/shinkenplugins/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'gstarck' 2 | -------------------------------------------------------------------------------- /libs/shinkenplugins/shinkenplugins/helpers/argparse/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'gstarck' 2 | -------------------------------------------------------------------------------- /libs/shinkenplugins/shinkenplugins/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packs/generic-apache-http/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-apache-http/.packer.yml -------------------------------------------------------------------------------- /packs/generic-apache-http/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-apache-http/README.rst -------------------------------------------------------------------------------- /packs/generic-apache-http/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/generic-apache-http/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html 2 | -------------------------------------------------------------------------------- /packs/generic-apache-http/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* 2 | -------------------------------------------------------------------------------- /packs/generic-apache-http/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/generic-apache-http/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-apache-http/doc/conf.py -------------------------------------------------------------------------------- /packs/generic-carbon-tcp/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-carbon-tcp/.packer.yml -------------------------------------------------------------------------------- /packs/generic-carbon-tcp/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-carbon-tcp/README.rst -------------------------------------------------------------------------------- /packs/generic-carbon-tcp/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/generic-carbon-tcp/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/generic-carbon-tcp/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/generic-carbon-tcp/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-carbon-tcp/debian/rules -------------------------------------------------------------------------------- /packs/generic-carbon-tcp/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/generic-carbon-tcp/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-carbon-tcp/doc/conf.py -------------------------------------------------------------------------------- /packs/generic-carbon-tcp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-carbon-tcp/package.json -------------------------------------------------------------------------------- /packs/generic-dhcp/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-dhcp/.packer.yml -------------------------------------------------------------------------------- /packs/generic-dhcp/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-dhcp/README.rst -------------------------------------------------------------------------------- /packs/generic-dhcp/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-dhcp/debian/changelog -------------------------------------------------------------------------------- /packs/generic-dhcp/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/generic-dhcp/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-dhcp/debian/control -------------------------------------------------------------------------------- /packs/generic-dhcp/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-dhcp/debian/copyright -------------------------------------------------------------------------------- /packs/generic-dhcp/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/generic-dhcp/debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-dhcp/debian/install -------------------------------------------------------------------------------- /packs/generic-dhcp/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/generic-dhcp/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-dhcp/debian/rules -------------------------------------------------------------------------------- /packs/generic-dhcp/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/generic-dhcp/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-dhcp/doc/conf.py -------------------------------------------------------------------------------- /packs/generic-dhcp/pack/commands.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-dhcp/pack/commands.cfg -------------------------------------------------------------------------------- /packs/generic-dhcp/pack/templates.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-dhcp/pack/templates.cfg -------------------------------------------------------------------------------- /packs/generic-dhcp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-dhcp/package.json -------------------------------------------------------------------------------- /packs/generic-dns/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-dns/.packer.yml -------------------------------------------------------------------------------- /packs/generic-dns/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-dns/README.rst -------------------------------------------------------------------------------- /packs/generic-dns/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-dns/debian/changelog -------------------------------------------------------------------------------- /packs/generic-dns/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/generic-dns/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-dns/debian/control -------------------------------------------------------------------------------- /packs/generic-dns/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-dns/debian/copyright -------------------------------------------------------------------------------- /packs/generic-dns/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/generic-dns/debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-dns/debian/install -------------------------------------------------------------------------------- /packs/generic-dns/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/generic-dns/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-dns/debian/rules -------------------------------------------------------------------------------- /packs/generic-dns/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/generic-dns/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-dns/doc/conf.py -------------------------------------------------------------------------------- /packs/generic-dns/doc/generic-dns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-dns/doc/generic-dns.rst -------------------------------------------------------------------------------- /packs/generic-dns/pack/commands.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-dns/pack/commands.cfg -------------------------------------------------------------------------------- /packs/generic-dns/pack/discovery.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-dns/pack/discovery.cfg -------------------------------------------------------------------------------- /packs/generic-dns/pack/templates.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-dns/pack/templates.cfg -------------------------------------------------------------------------------- /packs/generic-dns/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-dns/package.json -------------------------------------------------------------------------------- /packs/generic-graphite-http/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/generic-graphite-http/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/generic-graphite-http/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/generic-graphite-http/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/generic-host/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-host/.packer.yml -------------------------------------------------------------------------------- /packs/generic-host/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-host/README.rst -------------------------------------------------------------------------------- /packs/generic-host/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-host/debian/changelog -------------------------------------------------------------------------------- /packs/generic-host/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/generic-host/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-host/debian/control -------------------------------------------------------------------------------- /packs/generic-host/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-host/debian/copyright -------------------------------------------------------------------------------- /packs/generic-host/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/generic-host/debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-host/debian/install -------------------------------------------------------------------------------- /packs/generic-host/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/generic-host/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-host/debian/rules -------------------------------------------------------------------------------- /packs/generic-host/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/generic-host/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-host/doc/conf.py -------------------------------------------------------------------------------- /packs/generic-host/pack/commands.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-host/pack/commands.cfg -------------------------------------------------------------------------------- /packs/generic-host/pack/templates.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-host/pack/templates.cfg -------------------------------------------------------------------------------- /packs/generic-host/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-host/package.json -------------------------------------------------------------------------------- /packs/generic-ldap/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-ldap/.packer.yml -------------------------------------------------------------------------------- /packs/generic-ldap/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-ldap/README.rst -------------------------------------------------------------------------------- /packs/generic-ldap/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-ldap/debian/changelog -------------------------------------------------------------------------------- /packs/generic-ldap/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/generic-ldap/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-ldap/debian/control -------------------------------------------------------------------------------- /packs/generic-ldap/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-ldap/debian/copyright -------------------------------------------------------------------------------- /packs/generic-ldap/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/generic-ldap/debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-ldap/debian/install -------------------------------------------------------------------------------- /packs/generic-ldap/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/generic-ldap/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-ldap/debian/rules -------------------------------------------------------------------------------- /packs/generic-ldap/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/generic-ldap/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-ldap/doc/conf.py -------------------------------------------------------------------------------- /packs/generic-ldap/pack/commands.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-ldap/pack/commands.cfg -------------------------------------------------------------------------------- /packs/generic-ldap/pack/discovery.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-ldap/pack/discovery.cfg -------------------------------------------------------------------------------- /packs/generic-ldap/pack/templates.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-ldap/pack/templates.cfg -------------------------------------------------------------------------------- /packs/generic-ldap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-ldap/package.json -------------------------------------------------------------------------------- /packs/generic-mongodb/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-mongodb/.packer.yml -------------------------------------------------------------------------------- /packs/generic-mongodb/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-mongodb/README.rst -------------------------------------------------------------------------------- /packs/generic-mongodb/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/generic-mongodb/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-mongodb/debian/control -------------------------------------------------------------------------------- /packs/generic-mongodb/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/generic-mongodb/debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-mongodb/debian/install -------------------------------------------------------------------------------- /packs/generic-mongodb/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/generic-mongodb/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-mongodb/debian/rules -------------------------------------------------------------------------------- /packs/generic-mongodb/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/generic-mongodb/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-mongodb/doc/conf.py -------------------------------------------------------------------------------- /packs/generic-mongodb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-mongodb/package.json -------------------------------------------------------------------------------- /packs/generic-multisite-http/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/generic-multisite-http/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/generic-multisite-http/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/generic-multisite-http/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/generic-mysql/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-mysql/.packer.yml -------------------------------------------------------------------------------- /packs/generic-mysql/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-mysql/README.rst -------------------------------------------------------------------------------- /packs/generic-mysql/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-mysql/debian/changelog -------------------------------------------------------------------------------- /packs/generic-mysql/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/generic-mysql/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-mysql/debian/control -------------------------------------------------------------------------------- /packs/generic-mysql/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-mysql/debian/copyright -------------------------------------------------------------------------------- /packs/generic-mysql/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/generic-mysql/debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-mysql/debian/install -------------------------------------------------------------------------------- /packs/generic-mysql/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/generic-mysql/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-mysql/debian/rules -------------------------------------------------------------------------------- /packs/generic-mysql/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/generic-mysql/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-mysql/doc/conf.py -------------------------------------------------------------------------------- /packs/generic-mysql/pack/commands.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-mysql/pack/commands.cfg -------------------------------------------------------------------------------- /packs/generic-mysql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-mysql/package.json -------------------------------------------------------------------------------- /packs/generic-rabbitmq-collectd/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/generic-rabbitmq-collectd/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/generic-rabbitmq-collectd/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/generic-rabbitmq-collectd/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/generic-rabbitmq-collectd/pack/triggers.d/rabbitmq_queues.trig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packs/generic-rabbitmq-http/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/generic-rabbitmq-http/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/generic-rabbitmq-http/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/generic-rabbitmq-http/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/generic-radius/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-radius/.packer.yml -------------------------------------------------------------------------------- /packs/generic-radius/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-radius/README.rst -------------------------------------------------------------------------------- /packs/generic-radius/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-radius/debian/changelog -------------------------------------------------------------------------------- /packs/generic-radius/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/generic-radius/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-radius/debian/control -------------------------------------------------------------------------------- /packs/generic-radius/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-radius/debian/copyright -------------------------------------------------------------------------------- /packs/generic-radius/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/generic-radius/debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-radius/debian/install -------------------------------------------------------------------------------- /packs/generic-radius/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/generic-radius/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-radius/debian/rules -------------------------------------------------------------------------------- /packs/generic-radius/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/generic-radius/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-radius/doc/conf.py -------------------------------------------------------------------------------- /packs/generic-radius/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-radius/package.json -------------------------------------------------------------------------------- /packs/generic-redis/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-redis/README.rst -------------------------------------------------------------------------------- /packs/generic-redis/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-redis/debian/changelog -------------------------------------------------------------------------------- /packs/generic-redis/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/generic-redis/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-redis/debian/control -------------------------------------------------------------------------------- /packs/generic-redis/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-redis/debian/copyright -------------------------------------------------------------------------------- /packs/generic-redis/debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-redis/debian/install -------------------------------------------------------------------------------- /packs/generic-redis/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-redis/debian/rules -------------------------------------------------------------------------------- /packs/generic-redis/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/generic-redis/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-redis/doc/conf.py -------------------------------------------------------------------------------- /packs/generic-redis/pack/commands.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-redis/pack/commands.cfg -------------------------------------------------------------------------------- /packs/generic-redis/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-redis/package.json -------------------------------------------------------------------------------- /packs/generic-repodeb-http/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-repodeb-http/README.rst -------------------------------------------------------------------------------- /packs/generic-repodeb-http/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/generic-repodeb-http/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/generic-repodeb-http/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/generic-repodeb-http/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/generic-saltmaster-tcp/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/generic-saltmaster-tcp/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/generic-saltmaster-tcp/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/generic-saltmaster-tcp/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/generic-selenium/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-selenium/README.rst -------------------------------------------------------------------------------- /packs/generic-selenium/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-selenium/package.json -------------------------------------------------------------------------------- /packs/generic-smb/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-smb/.packer.yml -------------------------------------------------------------------------------- /packs/generic-smb/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-smb/README.rst -------------------------------------------------------------------------------- /packs/generic-smb/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-smb/debian/changelog -------------------------------------------------------------------------------- /packs/generic-smb/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/generic-smb/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-smb/debian/control -------------------------------------------------------------------------------- /packs/generic-smb/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-smb/debian/copyright -------------------------------------------------------------------------------- /packs/generic-smb/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/generic-smb/debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-smb/debian/install -------------------------------------------------------------------------------- /packs/generic-smb/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/generic-smb/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-smb/debian/rules -------------------------------------------------------------------------------- /packs/generic-smb/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/generic-smb/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-smb/doc/conf.py -------------------------------------------------------------------------------- /packs/generic-smb/doc/generic-smb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-smb/doc/generic-smb.rst -------------------------------------------------------------------------------- /packs/generic-smb/pack/commands.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-smb/pack/commands.cfg -------------------------------------------------------------------------------- /packs/generic-smb/pack/templates.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-smb/pack/templates.cfg -------------------------------------------------------------------------------- /packs/generic-smb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-smb/package.json -------------------------------------------------------------------------------- /packs/generic-smtp/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-smtp/README.rst -------------------------------------------------------------------------------- /packs/generic-smtp/pack/commands.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-smtp/pack/commands.cfg -------------------------------------------------------------------------------- /packs/generic-smtp/pack/templates.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-smtp/pack/templates.cfg -------------------------------------------------------------------------------- /packs/generic-smtp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-smtp/package.json -------------------------------------------------------------------------------- /packs/generic-splunk-http/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-splunk-http/.packer.yml -------------------------------------------------------------------------------- /packs/generic-splunk-http/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-splunk-http/README.rst -------------------------------------------------------------------------------- /packs/generic-splunk-http/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/generic-splunk-http/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/generic-splunk-http/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/generic-splunk-http/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/generic-splunk-http/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-splunk-http/doc/conf.py -------------------------------------------------------------------------------- /packs/generic-ssh/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-ssh/.packer.yml -------------------------------------------------------------------------------- /packs/generic-ssh/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-ssh/README.rst -------------------------------------------------------------------------------- /packs/generic-ssh/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-ssh/debian/changelog -------------------------------------------------------------------------------- /packs/generic-ssh/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/generic-ssh/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-ssh/debian/control -------------------------------------------------------------------------------- /packs/generic-ssh/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-ssh/debian/copyright -------------------------------------------------------------------------------- /packs/generic-ssh/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/generic-ssh/debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-ssh/debian/install -------------------------------------------------------------------------------- /packs/generic-ssh/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/generic-ssh/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-ssh/debian/rules -------------------------------------------------------------------------------- /packs/generic-ssh/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/generic-ssh/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-ssh/doc/conf.py -------------------------------------------------------------------------------- /packs/generic-ssh/doc/generic-ssh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-ssh/doc/generic-ssh.rst -------------------------------------------------------------------------------- /packs/generic-ssh/pack/commands.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-ssh/pack/commands.cfg -------------------------------------------------------------------------------- /packs/generic-ssh/pack/discovery.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-ssh/pack/discovery.cfg -------------------------------------------------------------------------------- /packs/generic-ssh/pack/templates.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-ssh/pack/templates.cfg -------------------------------------------------------------------------------- /packs/generic-ssh/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/generic-ssh/package.json -------------------------------------------------------------------------------- /packs/linux-drupal/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-drupal/.packer.yml -------------------------------------------------------------------------------- /packs/linux-drupal/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-drupal/README.rst -------------------------------------------------------------------------------- /packs/linux-drupal/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-drupal/debian/changelog -------------------------------------------------------------------------------- /packs/linux-drupal/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /packs/linux-drupal/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-drupal/debian/control -------------------------------------------------------------------------------- /packs/linux-drupal/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-drupal/debian/copyright -------------------------------------------------------------------------------- /packs/linux-drupal/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html 2 | -------------------------------------------------------------------------------- /packs/linux-drupal/debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-drupal/debian/install -------------------------------------------------------------------------------- /packs/linux-drupal/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* 2 | -------------------------------------------------------------------------------- /packs/linux-drupal/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-drupal/debian/rules -------------------------------------------------------------------------------- /packs/linux-drupal/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /packs/linux-drupal/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-drupal/doc/conf.py -------------------------------------------------------------------------------- /packs/linux-drupal/pack/commands.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-drupal/pack/commands.cfg -------------------------------------------------------------------------------- /packs/linux-drupal/pack/drupal.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-drupal/pack/drupal.pack -------------------------------------------------------------------------------- /packs/linux-drupal/pack/templates.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-drupal/pack/templates.cfg -------------------------------------------------------------------------------- /packs/linux-drupal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-drupal/package.json -------------------------------------------------------------------------------- /packs/linux-ntp-collectd/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-ntp-collectd/.packer.yml -------------------------------------------------------------------------------- /packs/linux-ntp-collectd/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-ntp-collectd/README.rst -------------------------------------------------------------------------------- /packs/linux-ntp-collectd/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/linux-ntp-collectd/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/linux-ntp-collectd/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/linux-ntp-collectd/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-ntp-collectd/debian/rules -------------------------------------------------------------------------------- /packs/linux-ntp-collectd/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/linux-ntp-collectd/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-ntp-collectd/doc/conf.py -------------------------------------------------------------------------------- /packs/linux-ntp-collectd/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-ntp-collectd/package.json -------------------------------------------------------------------------------- /packs/linux-radius-collectd/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/linux-radius-collectd/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/linux-radius-collectd/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/linux-radius-collectd/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/linux-saltmaster-collectd/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/linux-saltmaster-collectd/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/linux-saltmaster-collectd/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/linux-saltmaster-collectd/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/linux-saltminion-collectd/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/linux-saltminion-collectd/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/linux-saltminion-collectd/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/linux-saltminion-collectd/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/linux-system-collectd/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/linux-system-collectd/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/linux-system-collectd/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/linux-system-collectd/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/linux-system-nrpe/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-system-nrpe/.packer.yml -------------------------------------------------------------------------------- /packs/linux-system-nrpe/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-system-nrpe/README.rst -------------------------------------------------------------------------------- /packs/linux-system-nrpe/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/linux-system-nrpe/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/linux-system-nrpe/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/linux-system-nrpe/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-system-nrpe/debian/rules -------------------------------------------------------------------------------- /packs/linux-system-nrpe/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/linux-system-nrpe/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-system-nrpe/doc/conf.py -------------------------------------------------------------------------------- /packs/linux-system-nrpe/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-system-nrpe/package.json -------------------------------------------------------------------------------- /packs/linux-system-snmp/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-system-snmp/.packer.yml -------------------------------------------------------------------------------- /packs/linux-system-snmp/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-system-snmp/README.rst -------------------------------------------------------------------------------- /packs/linux-system-snmp/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/linux-system-snmp/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/linux-system-snmp/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/linux-system-snmp/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-system-snmp/debian/rules -------------------------------------------------------------------------------- /packs/linux-system-snmp/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/linux-system-snmp/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-system-snmp/doc/conf.py -------------------------------------------------------------------------------- /packs/linux-system-snmp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/linux-system-snmp/package.json -------------------------------------------------------------------------------- /packs/openstack-cinder-http/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /packs/openstack-cinder-http/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/openstack-cinder-http/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/openstack-cinder-http/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/openstack-glance-http/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/openstack-glance-http/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/openstack-glance-http/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/openstack-glance-http/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/openstack-host/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/openstack-host/.packer.yml -------------------------------------------------------------------------------- /packs/openstack-host/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/openstack-host/README.rst -------------------------------------------------------------------------------- /packs/openstack-host/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/openstack-host/debian/changelog -------------------------------------------------------------------------------- /packs/openstack-host/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/openstack-host/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/openstack-host/debian/control -------------------------------------------------------------------------------- /packs/openstack-host/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/openstack-host/debian/copyright -------------------------------------------------------------------------------- /packs/openstack-host/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/openstack-host/debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/openstack-host/debian/install -------------------------------------------------------------------------------- /packs/openstack-host/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/openstack-host/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/openstack-host/debian/rules -------------------------------------------------------------------------------- /packs/openstack-host/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/openstack-host/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/openstack-host/doc/conf.py -------------------------------------------------------------------------------- /packs/openstack-host/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/openstack-host/package.json -------------------------------------------------------------------------------- /packs/openstack-keystone-http/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/openstack-keystone-http/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/openstack-keystone-http/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/openstack-keystone-http/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/openstack-nova-http/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/openstack-nova-http/.packer.yml -------------------------------------------------------------------------------- /packs/openstack-nova-http/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/openstack-nova-http/README.rst -------------------------------------------------------------------------------- /packs/openstack-nova-http/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/openstack-nova-http/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/openstack-nova-http/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/openstack-nova-http/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/openstack-nova-http/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/openstack-nova-http/doc/conf.py -------------------------------------------------------------------------------- /packs/vmware-system-https/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/vmware-system-https/.packer.yml -------------------------------------------------------------------------------- /packs/vmware-system-https/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/vmware-system-https/README.rst -------------------------------------------------------------------------------- /packs/vmware-system-https/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/vmware-system-https/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/vmware-system-https/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/vmware-system-https/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/vmware-system-https/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/vmware-system-https/doc/conf.py -------------------------------------------------------------------------------- /packs/vmware-system-https/share/images/sets/vmware/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packs/vmware-system-https/share/templates/graphite/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packs/windows-ad-collectd/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-ad-collectd/.packer.yml -------------------------------------------------------------------------------- /packs/windows-ad-collectd/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-ad-collectd/README.rst -------------------------------------------------------------------------------- /packs/windows-ad-collectd/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/windows-ad-collectd/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/windows-ad-collectd/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/windows-ad-collectd/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/windows-ad-collectd/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-ad-collectd/doc/conf.py -------------------------------------------------------------------------------- /packs/windows-mssql/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-mssql/.packer.yml -------------------------------------------------------------------------------- /packs/windows-mssql/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-mssql/README.rst -------------------------------------------------------------------------------- /packs/windows-mssql/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-mssql/debian/changelog -------------------------------------------------------------------------------- /packs/windows-mssql/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/windows-mssql/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-mssql/debian/control -------------------------------------------------------------------------------- /packs/windows-mssql/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-mssql/debian/copyright -------------------------------------------------------------------------------- /packs/windows-mssql/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/windows-mssql/debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-mssql/debian/install -------------------------------------------------------------------------------- /packs/windows-mssql/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/windows-mssql/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-mssql/debian/rules -------------------------------------------------------------------------------- /packs/windows-mssql/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/windows-mssql/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-mssql/doc/conf.py -------------------------------------------------------------------------------- /packs/windows-mssql/pack/commands.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-mssql/pack/commands.cfg -------------------------------------------------------------------------------- /packs/windows-mssql/pack/macros.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-mssql/pack/macros.cfg -------------------------------------------------------------------------------- /packs/windows-mssql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-mssql/package.json -------------------------------------------------------------------------------- /packs/windows-rdp/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-rdp/.packer.yml -------------------------------------------------------------------------------- /packs/windows-rdp/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-rdp/README.rst -------------------------------------------------------------------------------- /packs/windows-rdp/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-rdp/debian/changelog -------------------------------------------------------------------------------- /packs/windows-rdp/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/windows-rdp/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-rdp/debian/control -------------------------------------------------------------------------------- /packs/windows-rdp/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-rdp/debian/copyright -------------------------------------------------------------------------------- /packs/windows-rdp/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/windows-rdp/debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-rdp/debian/install -------------------------------------------------------------------------------- /packs/windows-rdp/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/windows-rdp/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-rdp/debian/rules -------------------------------------------------------------------------------- /packs/windows-rdp/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/windows-rdp/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-rdp/doc/conf.py -------------------------------------------------------------------------------- /packs/windows-rdp/doc/windows-rdp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-rdp/doc/windows-rdp.rst -------------------------------------------------------------------------------- /packs/windows-rdp/pack/commands.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-rdp/pack/commands.cfg -------------------------------------------------------------------------------- /packs/windows-rdp/pack/templates.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-rdp/pack/templates.cfg -------------------------------------------------------------------------------- /packs/windows-rdp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-rdp/package.json -------------------------------------------------------------------------------- /packs/windows-sophos-collectd/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/windows-sophos-collectd/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/windows-sophos-collectd/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/windows-sophos-collectd/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/windows-sophos-mssql/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/packs/windows-sophos-mssql/README.rst -------------------------------------------------------------------------------- /packs/windows-sophos-mssql/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/windows-sophos-mssql/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/windows-sophos-mssql/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/windows-sophos-mssql/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /packs/windows-system-collectd/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packs/windows-system-collectd/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html -------------------------------------------------------------------------------- /packs/windows-system-collectd/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* -------------------------------------------------------------------------------- /packs/windows-system-collectd/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/check-amt-montreal/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-amt-montreal/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-amt-montreal/debian/install: -------------------------------------------------------------------------------- 1 | check_amt_montreal /usr/lib/monitoring/plugins/sfl -------------------------------------------------------------------------------- /plugins/check-amt-montreal/debian/manpages: -------------------------------------------------------------------------------- 1 | doc/build/man/* -------------------------------------------------------------------------------- /plugins/check-amt-montreal/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-amt-montreal/requirements.txt: -------------------------------------------------------------------------------- 1 | -e . 2 | -------------------------------------------------------------------------------- /plugins/check-amt-montreal/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-amt-montreal/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-amt-montreal/setup.py -------------------------------------------------------------------------------- /plugins/check-amt-montreal/shinkenplugins/plugins/amt_montreal/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from .amt_montreal import main, Plugin 3 | -------------------------------------------------------------------------------- /plugins/check-apache-server-status/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-apache-server-status/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-apache-server-status/debian/manpages: -------------------------------------------------------------------------------- 1 | doc/build/man/* -------------------------------------------------------------------------------- /plugins/check-apache-server-status/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-apache-server-status/requirements.txt: -------------------------------------------------------------------------------- 1 | -e . 2 | -------------------------------------------------------------------------------- /plugins/check-apache-server-status/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-arp-no-change/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-arp-no-change/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-arp-no-change/debian/install: -------------------------------------------------------------------------------- 1 | check_arp_no_change /usr/lib/monitoring/plugins/sfl -------------------------------------------------------------------------------- /plugins/check-arp-no-change/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-arp-no-change/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-arp-no-change/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-arp-no-change/setup.py -------------------------------------------------------------------------------- /plugins/check-arp-no-change/shinkenplugins/plugins/arp_no_change/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from .arp_no_change import main, Plugin 3 | -------------------------------------------------------------------------------- /plugins/check-asterisk-cdr-status/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /plugins/check-asterisk-cdr-status/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /plugins/check-asterisk-cdr-status/test/jenkins/shcov/shcov/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plugins/check-aws-sqs-activity/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-aws-sqs-activity/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-aws-sqs-activity/debian/install: -------------------------------------------------------------------------------- 1 | check_aws_sqs_activity /usr/lib/monitoring/plugins/sfl -------------------------------------------------------------------------------- /plugins/check-aws-sqs-activity/debian/manpages: -------------------------------------------------------------------------------- 1 | doc/build/man/* -------------------------------------------------------------------------------- /plugins/check-aws-sqs-activity/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-aws-sqs-activity/requirements.txt: -------------------------------------------------------------------------------- 1 | -e . 2 | -------------------------------------------------------------------------------- /plugins/check-aws-sqs-activity/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-aws-sqs-activity/shinkenplugins/plugins/aws_sqs_activity/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from .aws_sqs_activity import main, Plugin 3 | -------------------------------------------------------------------------------- /plugins/check-aws-sqs-queue-size/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-aws-sqs-queue-size/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-aws-sqs-queue-size/debian/install: -------------------------------------------------------------------------------- 1 | check_aws_sqs_queue_size /usr/lib/monitoring/plugins/sfl -------------------------------------------------------------------------------- /plugins/check-aws-sqs-queue-size/debian/manpages: -------------------------------------------------------------------------------- 1 | doc/build/man/* -------------------------------------------------------------------------------- /plugins/check-aws-sqs-queue-size/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-aws-sqs-queue-size/requirements.txt: -------------------------------------------------------------------------------- 1 | -e . 2 | -------------------------------------------------------------------------------- /plugins/check-aws-sqs-queue-size/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-aws-sqs-queue-size/shinkenplugins/plugins/aws_sqs_queue_size/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from .aws_sqs_queue_size import main, Plugin 3 | -------------------------------------------------------------------------------- /plugins/check-bixi-montreal/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-bixi-montreal/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-bixi-montreal/debian/install: -------------------------------------------------------------------------------- 1 | check_bixi_montreal /usr/lib/monitoring/plugins/sfl -------------------------------------------------------------------------------- /plugins/check-bixi-montreal/debian/manpages: -------------------------------------------------------------------------------- 1 | doc/build/man/* -------------------------------------------------------------------------------- /plugins/check-bixi-montreal/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-bixi-montreal/requirements.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /plugins/check-bixi-montreal/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-bixi-montreal/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-bixi-montreal/setup.py -------------------------------------------------------------------------------- /plugins/check-bixi-montreal/shinkenplugins/plugins/bixi_montreal/__init__.py: -------------------------------------------------------------------------------- 1 | from .bixi_montreal import Plugin, main 2 | -------------------------------------------------------------------------------- /plugins/check-brother-toner-level/check_brother_toner_level.py: -------------------------------------------------------------------------------- 1 | check_brother_toner_level -------------------------------------------------------------------------------- /plugins/check-brother-toner-level/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /plugins/check-brother-toner-level/debian/install: -------------------------------------------------------------------------------- 1 | check_brother_toner_level /usr/lib/monitoring/plugins/sfl 2 | -------------------------------------------------------------------------------- /plugins/check-brother-toner-level/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /plugins/check-brother-toner-level/requests/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /plugins/check-brother-toner-level/requests/debian/files: -------------------------------------------------------------------------------- 1 | python-requests_20130218-3_amd64.deb misc optional 2 | -------------------------------------------------------------------------------- /plugins/check-brother-toner-level/requests/debian/python-requests.substvars: -------------------------------------------------------------------------------- 1 | misc:Depends= 2 | -------------------------------------------------------------------------------- /plugins/check-brother-toner-level/requests/debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | %: 4 | dh $@ 5 | -------------------------------------------------------------------------------- /plugins/check-brother-toner-level/requirements.freeze: -------------------------------------------------------------------------------- 1 | lxml 2 | -------------------------------------------------------------------------------- /plugins/check-brother-toner-level/test/jenkins/requirements.tests.freeze: -------------------------------------------------------------------------------- 1 | coverage 2 | lxml 3 | nose 4 | pep8 5 | -------------------------------------------------------------------------------- /plugins/check-carp-by-ssh/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-carp-by-ssh/.gitignore -------------------------------------------------------------------------------- /plugins/check-carp-by-ssh/check_carp_by_ssh.py: -------------------------------------------------------------------------------- 1 | check_carp_by_ssh -------------------------------------------------------------------------------- /plugins/check-carp-by-ssh/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /plugins/check-carp-by-ssh/debian/install: -------------------------------------------------------------------------------- 1 | check_carp_by_ssh /usr/lib/monitoring/plugins/sfl 2 | -------------------------------------------------------------------------------- /plugins/check-carp-by-ssh/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /plugins/check-carp-by-ssh/requirements.freeze: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/check-carp-by-ssh/test/jenkins/requirements.tests.freeze: -------------------------------------------------------------------------------- 1 | coverage 2 | nose 3 | pep8 4 | -------------------------------------------------------------------------------- /plugins/check-ceilometer/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-ceilometer/.coveragerc -------------------------------------------------------------------------------- /plugins/check-ceilometer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-ceilometer/.gitignore -------------------------------------------------------------------------------- /plugins/check-ceilometer/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-ceilometer/.packer.yml -------------------------------------------------------------------------------- /plugins/check-ceilometer/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-ceilometer/COPYING -------------------------------------------------------------------------------- /plugins/check-ceilometer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-ceilometer/README.md -------------------------------------------------------------------------------- /plugins/check-ceilometer/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /plugins/check-ceilometer/debian/install: -------------------------------------------------------------------------------- 1 | check_ceilometer /usr/lib/monitoring/plugins/sfl 2 | -------------------------------------------------------------------------------- /plugins/check-ceilometer/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-ceilometer/debian/rules -------------------------------------------------------------------------------- /plugins/check-ceilometer/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /plugins/check-ceilometer/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-ceilometer/doc/conf.py -------------------------------------------------------------------------------- /plugins/check-ceilometer/requirements.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /plugins/check-ceilometer/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-ceilometer/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-ceilometer/setup.py -------------------------------------------------------------------------------- /plugins/check-ceilometer/shinkenplugins/plugins/ceilometer/__init__.py: -------------------------------------------------------------------------------- 1 | from .ceilometer import main 2 | -------------------------------------------------------------------------------- /plugins/check-cinder/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-cinder/.packer.yml -------------------------------------------------------------------------------- /plugins/check-cinder/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-cinder/doc/conf.py -------------------------------------------------------------------------------- /plugins/check-cinder/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-cinder/setup.py -------------------------------------------------------------------------------- /plugins/check-cinder/shinkenplugins/plugins/cinder/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from .cinder import main, Plugin 3 | 4 | -------------------------------------------------------------------------------- /plugins/check-cpu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-cpu/.gitignore -------------------------------------------------------------------------------- /plugins/check-cpu/check_cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-cpu/check_cpu -------------------------------------------------------------------------------- /plugins/check-cpu/check_cpu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-cpu/check_cpu.inc -------------------------------------------------------------------------------- /plugins/check-cpu/check_cpu.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-cpu/check_cpu.spec -------------------------------------------------------------------------------- /plugins/check-cpu/check_cpu_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-cpu/check_cpu_utils.sh -------------------------------------------------------------------------------- /plugins/check-cpu/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-cpu/debian/changelog -------------------------------------------------------------------------------- /plugins/check-cpu/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /plugins/check-cpu/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-cpu/debian/control -------------------------------------------------------------------------------- /plugins/check-cpu/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-cpu/debian/copyright -------------------------------------------------------------------------------- /plugins/check-cpu/debian/install: -------------------------------------------------------------------------------- 1 | check_cpu /usr/lib/monitoring/plugins/sfl 2 | -------------------------------------------------------------------------------- /plugins/check-cpu/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-cpu/debian/rules -------------------------------------------------------------------------------- /plugins/check-cpu/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /plugins/check-cpu/test/jenkins/shcov/shcov/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plugins/check-drupal-cache/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-drupal-cache/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-drupal-cache/debian/install: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/check-drupal-cache/debian/manpages: -------------------------------------------------------------------------------- 1 | doc/build/man/* -------------------------------------------------------------------------------- /plugins/check-drupal-cache/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-drupal-cache/requirements.txt: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /plugins/check-drupal-cache/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-drupal-cache/setup.py -------------------------------------------------------------------------------- /plugins/check-drupal-codebase/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-drupal-codebase/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-drupal-codebase/debian/install: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/check-drupal-codebase/debian/manpages: -------------------------------------------------------------------------------- 1 | doc/build/man/* -------------------------------------------------------------------------------- /plugins/check-drupal-codebase/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-drupal-codebase/requirements.txt: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /plugins/check-drupal-cron/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-drupal-cron/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-drupal-cron/.packer.yml -------------------------------------------------------------------------------- /plugins/check-drupal-cron/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-drupal-cron/debian/install: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/check-drupal-cron/debian/manpages: -------------------------------------------------------------------------------- 1 | doc/build/man/* -------------------------------------------------------------------------------- /plugins/check-drupal-cron/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-drupal-cron/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-drupal-cron/doc/conf.py -------------------------------------------------------------------------------- /plugins/check-drupal-cron/requirements.txt: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /plugins/check-drupal-cron/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-drupal-cron/setup.py -------------------------------------------------------------------------------- /plugins/check-drupal-database/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-drupal-database/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-drupal-database/debian/install: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/check-drupal-database/debian/manpages: -------------------------------------------------------------------------------- 1 | doc/build/man/* -------------------------------------------------------------------------------- /plugins/check-drupal-database/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-drupal-database/requirements.txt: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /plugins/check-drupal-extensions/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-drupal-extensions/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-drupal-extensions/debian/install: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/check-drupal-extensions/debian/manpages: -------------------------------------------------------------------------------- 1 | doc/build/man/* -------------------------------------------------------------------------------- /plugins/check-drupal-extensions/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-drupal-extensions/requirements.txt: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /plugins/check-drupal-jenkins/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-drupal-jenkins/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-drupal-jenkins/debian/install: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/check-drupal-jenkins/debian/manpages: -------------------------------------------------------------------------------- 1 | doc/build/man/* -------------------------------------------------------------------------------- /plugins/check-drupal-jenkins/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-drupal-jenkins/requirements.txt: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /plugins/check-drupal-jenkins/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-drupal-jenkins/setup.py -------------------------------------------------------------------------------- /plugins/check-drupal-logging/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-drupal-logging/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-drupal-logging/debian/install: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/check-drupal-logging/debian/manpages: -------------------------------------------------------------------------------- 1 | doc/build/man/* -------------------------------------------------------------------------------- /plugins/check-drupal-logging/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-drupal-logging/requirements.txt: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /plugins/check-drupal-logging/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-drupal-logging/setup.py -------------------------------------------------------------------------------- /plugins/check-drupal-security/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-drupal-security/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-drupal-security/debian/install: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/check-drupal-security/debian/manpages: -------------------------------------------------------------------------------- 1 | doc/build/man/* -------------------------------------------------------------------------------- /plugins/check-drupal-security/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-drupal-security/requirements.txt: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /plugins/check-drupal-status/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-drupal-status/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-drupal-status/debian/install: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/check-drupal-status/debian/manpages: -------------------------------------------------------------------------------- 1 | doc/build/man/* -------------------------------------------------------------------------------- /plugins/check-drupal-status/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-drupal-status/requirements.txt: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /plugins/check-drupal-status/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-drupal-status/setup.py -------------------------------------------------------------------------------- /plugins/check-drupal-views/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-drupal-views/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-drupal-views/debian/install: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/check-drupal-views/debian/manpages: -------------------------------------------------------------------------------- 1 | doc/build/man/* -------------------------------------------------------------------------------- /plugins/check-drupal-views/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-drupal-views/requirements.txt: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /plugins/check-drupal-views/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-drupal-views/setup.py -------------------------------------------------------------------------------- /plugins/check-emergency-rooms-quebec/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-emergency-rooms-quebec/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-emergency-rooms-quebec/debian/manpages: -------------------------------------------------------------------------------- 1 | doc/build/man/* -------------------------------------------------------------------------------- /plugins/check-emergency-rooms-quebec/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-emergency-rooms-quebec/requirements.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /plugins/check-emergency-rooms-quebec/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-environment-canada/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-environment-canada/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-environment-canada/debian/manpages: -------------------------------------------------------------------------------- 1 | doc/build/man/* -------------------------------------------------------------------------------- /plugins/check-environment-canada/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-environment-canada/requirements.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /plugins/check-environment-canada/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-environment-canada/shinkenplugins/plugins/environment_canada/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from .environment_canada import main, Plugin 3 | -------------------------------------------------------------------------------- /plugins/check-fake/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-fake/.gitignore -------------------------------------------------------------------------------- /plugins/check-fake/check_fake.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-fake/check_fake.spec -------------------------------------------------------------------------------- /plugins/check-fake/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-fake/debian/changelog -------------------------------------------------------------------------------- /plugins/check-fake/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /plugins/check-fake/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-fake/debian/control -------------------------------------------------------------------------------- /plugins/check-fake/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-fake/debian/copyright -------------------------------------------------------------------------------- /plugins/check-fake/debian/install: -------------------------------------------------------------------------------- 1 | check_fake /usr/lib/monitoring/plugins/sfl 2 | -------------------------------------------------------------------------------- /plugins/check-fake/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-fake/debian/rules -------------------------------------------------------------------------------- /plugins/check-fake/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /plugins/check-fake/requirements.freeze: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/check-fake/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-fake/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-fake/setup.py -------------------------------------------------------------------------------- /plugins/check-fake/shinkenplugins/plugins/fake/__init__.py: -------------------------------------------------------------------------------- 1 | from .fake import main 2 | -------------------------------------------------------------------------------- /plugins/check-fake/tests/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-fake/tests/.coveragerc -------------------------------------------------------------------------------- /plugins/check-ferries/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-ferries/check_ferries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-ferries/check_ferries -------------------------------------------------------------------------------- /plugins/check-ferries/check_ferries.py: -------------------------------------------------------------------------------- 1 | check_ferries -------------------------------------------------------------------------------- /plugins/check-ferries/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-ferries/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-ferries/debian/control -------------------------------------------------------------------------------- /plugins/check-ferries/debian/install: -------------------------------------------------------------------------------- 1 | check_ferries /usr/lib/shinken/plugins -------------------------------------------------------------------------------- /plugins/check-ferries/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-ferries/debian/rules -------------------------------------------------------------------------------- /plugins/check-ferries/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-ferries/requirements.txt: -------------------------------------------------------------------------------- 1 | shinkenplugins>=0.1.4,<0.2.0 -------------------------------------------------------------------------------- /plugins/check-ferries/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-ferries/run_tests.sh -------------------------------------------------------------------------------- /plugins/check-glance/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-glance/.packer.yml -------------------------------------------------------------------------------- /plugins/check-glance/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-glance/doc/conf.py -------------------------------------------------------------------------------- /plugins/check-glance/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-glance/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-glance/setup.py -------------------------------------------------------------------------------- /plugins/check-glance/shinkenplugins/plugins/glance/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from .glance import main, Plugin 3 | 4 | -------------------------------------------------------------------------------- /plugins/check-graphite-api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-graphite-api/.gitignore -------------------------------------------------------------------------------- /plugins/check-graphite-api/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-graphite-api/COPYING -------------------------------------------------------------------------------- /plugins/check-graphite-api/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-graphite-api/README -------------------------------------------------------------------------------- /plugins/check-graphite-api/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /plugins/check-graphite-api/debian/install: -------------------------------------------------------------------------------- 1 | check_graphite_api /usr/lib/monitoring/plugins/sfl 2 | -------------------------------------------------------------------------------- /plugins/check-graphite-api/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /plugins/check-graphite-api/requirements.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /plugins/check-graphite-api/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-graphite-api/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-graphite-api/setup.py -------------------------------------------------------------------------------- /plugins/check-graphite-api/shinkenplugins/plugins/graphite_api/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from .graphite_api import main 3 | -------------------------------------------------------------------------------- /plugins/check-http-load/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-http-load/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-http-load/.packer.yml -------------------------------------------------------------------------------- /plugins/check-http-load/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-http-load/debian/install: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/check-http-load/debian/manpages: -------------------------------------------------------------------------------- 1 | doc/build/man/* -------------------------------------------------------------------------------- /plugins/check-http-load/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-http-load/debian/rules -------------------------------------------------------------------------------- /plugins/check-http-load/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-http-load/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-http-load/doc/conf.py -------------------------------------------------------------------------------- /plugins/check-http-load/requirements.txt: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /plugins/check-http-load/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-http-load/run_tests.sh -------------------------------------------------------------------------------- /plugins/check-http-load/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-http-load/setup.py -------------------------------------------------------------------------------- /plugins/check-http2/.gitignore: -------------------------------------------------------------------------------- 1 | env/ 2 | build/ 3 | -------------------------------------------------------------------------------- /plugins/check-http2/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-http2/.packer.yml -------------------------------------------------------------------------------- /plugins/check-http2/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-http2/debian/changelog -------------------------------------------------------------------------------- /plugins/check-http2/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-http2/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-http2/debian/control -------------------------------------------------------------------------------- /plugins/check-http2/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-http2/debian/copyright -------------------------------------------------------------------------------- /plugins/check-http2/debian/install: -------------------------------------------------------------------------------- 1 | check_http2 usr/lib/monitoring/plugins/sfl 2 | -------------------------------------------------------------------------------- /plugins/check-http2/debian/manpages: -------------------------------------------------------------------------------- 1 | doc/build/man/* 2 | -------------------------------------------------------------------------------- /plugins/check-http2/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-http2/debian/rules -------------------------------------------------------------------------------- /plugins/check-http2/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-http2/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-http2/doc/conf.py -------------------------------------------------------------------------------- /plugins/check-http2/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-http2/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-http2/setup.py -------------------------------------------------------------------------------- /plugins/check-hydro-quebec/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-hydro-quebec/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-hydro-quebec/debian/install: -------------------------------------------------------------------------------- 1 | check_hydro_quebec /usr/lib/monitoring/plugins/sfl -------------------------------------------------------------------------------- /plugins/check-hydro-quebec/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-hydro-quebec/requirements.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /plugins/check-hydro-quebec/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-hydro-quebec/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-hydro-quebec/setup.py -------------------------------------------------------------------------------- /plugins/check-hydro-quebec/shinkenplugins/plugins/hydro_quebec/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from .hydro_quebec import main, Plugin 3 | -------------------------------------------------------------------------------- /plugins/check-influxdb/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-influxdb/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-influxdb/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-influxdb/debian/control -------------------------------------------------------------------------------- /plugins/check-influxdb/debian/install: -------------------------------------------------------------------------------- 1 | check_influxdb /usr/lib/monitoring/plugins/sfl -------------------------------------------------------------------------------- /plugins/check-influxdb/debian/manpages: -------------------------------------------------------------------------------- 1 | doc/build/man/* -------------------------------------------------------------------------------- /plugins/check-influxdb/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-influxdb/debian/rules -------------------------------------------------------------------------------- /plugins/check-influxdb/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-influxdb/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-influxdb/doc/conf.py -------------------------------------------------------------------------------- /plugins/check-influxdb/requirements.txt: -------------------------------------------------------------------------------- 1 | influxdb 2 | psutil 3 | requests 4 | -------------------------------------------------------------------------------- /plugins/check-influxdb/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-influxdb/run_tests.sh -------------------------------------------------------------------------------- /plugins/check-influxdb/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-influxdb/setup.py -------------------------------------------------------------------------------- /plugins/check-influxdb/tests/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'peyre' 2 | -------------------------------------------------------------------------------- /plugins/check-json-by-ec2-tags/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-json-by-ec2-tags/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'gstarck' 2 | -------------------------------------------------------------------------------- /plugins/check-json-by-ec2-tags/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-json-by-ec2-tags/debian/install: -------------------------------------------------------------------------------- 1 | check_json_by_ec2_tags /usr/lib/monitoring/plugins/sfl -------------------------------------------------------------------------------- /plugins/check-json-by-ec2-tags/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-json-by-ec2-tags/requirements.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /plugins/check-json-by-ec2-tags/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-json-by-ec2-tags/shinkenplugins/plugins/json_by_ec2_tags/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from .json_by_ec2_tags import main, Plugin 3 | -------------------------------------------------------------------------------- /plugins/check-keystone/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-keystone/.packer.yml -------------------------------------------------------------------------------- /plugins/check-keystone/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-keystone/doc/conf.py -------------------------------------------------------------------------------- /plugins/check-keystone/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-keystone/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-keystone/setup.py -------------------------------------------------------------------------------- /plugins/check-keystone/shinkenplugins/plugins/keystone/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from .keystone import main, Plugin 3 | 4 | -------------------------------------------------------------------------------- /plugins/check-libvirt-stats/check_libvirt_stats.py: -------------------------------------------------------------------------------- 1 | check_libvirt_stats -------------------------------------------------------------------------------- /plugins/check-libvirt-stats/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /plugins/check-libvirt-stats/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /plugins/check-libvirt-stats/requirements.freeze: -------------------------------------------------------------------------------- 1 | libvirt-python 2 | -------------------------------------------------------------------------------- /plugins/check-libvirt-stats/test/jenkins/requirements.tests.freeze: -------------------------------------------------------------------------------- 1 | coverage 2 | nose 3 | pep8 4 | -------------------------------------------------------------------------------- /plugins/check-linux-bandwidth/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-linux-bandwidth/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-linux-bandwidth/debian/dirs: -------------------------------------------------------------------------------- 1 | /usr/lib/monitoring/plugins/sfl/ 2 | -------------------------------------------------------------------------------- /plugins/check-linux-bandwidth/debian/install: -------------------------------------------------------------------------------- 1 | check_linux_bandwidth /usr/lib/monitoring/plugins/sfl 2 | -------------------------------------------------------------------------------- /plugins/check-linux-bandwidth/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-linux-bandwidth/requirements.txt: -------------------------------------------------------------------------------- 1 | -e . 2 | -------------------------------------------------------------------------------- /plugins/check-linux-bandwidth/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-linux-bandwidth/shinkenplugins/plugins/linux_bandwidth/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from .linux_bandwidth import main, Plugin 3 | 4 | -------------------------------------------------------------------------------- /plugins/check-linux-traffic/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /plugins/check-linux-traffic/debian/install: -------------------------------------------------------------------------------- 1 | check_linux_traffic /usr/lib/monitoring/plugins/sfl 2 | -------------------------------------------------------------------------------- /plugins/check-linux-traffic/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /plugins/check-linux-traffic/requirements.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /plugins/check-linux-traffic/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-linux-traffic/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-linux-traffic/setup.py -------------------------------------------------------------------------------- /plugins/check-linux-traffic/shinkenplugins/plugins/linux_traffic/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from .linux_traffic import main 3 | -------------------------------------------------------------------------------- /plugins/check-linux-traffic/tests/old/requirements.tests.freeze: -------------------------------------------------------------------------------- 1 | coverage 2 | nose 3 | pep8 4 | -------------------------------------------------------------------------------- /plugins/check-mem/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-mem/.gitignore -------------------------------------------------------------------------------- /plugins/check-mem/check_mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-mem/check_mem -------------------------------------------------------------------------------- /plugins/check-mem/check_mem.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-mem/check_mem.pm -------------------------------------------------------------------------------- /plugins/check-mem/check_mem.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-mem/check_mem.spec -------------------------------------------------------------------------------- /plugins/check-mem/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-mem/debian/changelog -------------------------------------------------------------------------------- /plugins/check-mem/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /plugins/check-mem/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-mem/debian/control -------------------------------------------------------------------------------- /plugins/check-mem/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-mem/debian/copyright -------------------------------------------------------------------------------- /plugins/check-mem/debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-mem/debian/install -------------------------------------------------------------------------------- /plugins/check-mem/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-mem/debian/rules -------------------------------------------------------------------------------- /plugins/check-mem/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /plugins/check-mem/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-mem/run_tests.sh -------------------------------------------------------------------------------- /plugins/check-mem/test/check_mem.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-mem/test/check_mem.t -------------------------------------------------------------------------------- /plugins/check-mpt-status/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-mpt-status/.gitignore -------------------------------------------------------------------------------- /plugins/check-mpt-status/check_mpt_status.py: -------------------------------------------------------------------------------- 1 | check_mpt_status -------------------------------------------------------------------------------- /plugins/check-mpt-status/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /plugins/check-mpt-status/debian/install: -------------------------------------------------------------------------------- 1 | check_mpt_status /usr/lib/monitoring/plugins/sfl 2 | -------------------------------------------------------------------------------- /plugins/check-mpt-status/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-mpt-status/debian/rules -------------------------------------------------------------------------------- /plugins/check-mpt-status/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /plugins/check-mpt-status/requirements.freeze: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/check-mpt-status/test/jenkins/requirements.tests.freeze: -------------------------------------------------------------------------------- 1 | coverage 2 | nose 3 | pep8 4 | -------------------------------------------------------------------------------- /plugins/check-nova-host-status/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-nova-host-status/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-nova-host-status/debian/manpages: -------------------------------------------------------------------------------- 1 | doc/build/man/* -------------------------------------------------------------------------------- /plugins/check-nova-host-status/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-nova-host-status/requirements.txt: -------------------------------------------------------------------------------- 1 | . 2 | novaclient -------------------------------------------------------------------------------- /plugins/check-nova/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-nova/.packer.yml -------------------------------------------------------------------------------- /plugins/check-nova/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-nova/doc/conf.py -------------------------------------------------------------------------------- /plugins/check-nova/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-nova/run_tests.sh -------------------------------------------------------------------------------- /plugins/check-nova/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-nova/setup.py -------------------------------------------------------------------------------- /plugins/check-nova/shinkenplugins/plugins/nova/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from .nova import main, Plugin 3 | 4 | -------------------------------------------------------------------------------- /plugins/check-nova/tests/test_nova.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-nova/tests/test_nova.py -------------------------------------------------------------------------------- /plugins/check-openbsd-sysstats-byssh/check_openbsd_sysstats_byssh.py: -------------------------------------------------------------------------------- 1 | check_openbsd_sysstats_byssh -------------------------------------------------------------------------------- /plugins/check-openbsd-sysstats-byssh/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /plugins/check-openbsd-sysstats-byssh/debian/install: -------------------------------------------------------------------------------- 1 | check_openbsd_sysstats_byssh /usr/lib/monitoring/plugins/sfl 2 | -------------------------------------------------------------------------------- /plugins/check-openbsd-sysstats-byssh/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /plugins/check-openbsd-sysstats-byssh/requirements.freeze: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/check-openbsd-sysstats-byssh/test/jenkins/requirements.tests.freeze: -------------------------------------------------------------------------------- 1 | coverage 2 | nose 3 | pep8 4 | -------------------------------------------------------------------------------- /plugins/check-openerp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-openerp/.gitignore -------------------------------------------------------------------------------- /plugins/check-openerp/check_openerp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-openerp/check_openerp -------------------------------------------------------------------------------- /plugins/check-openerp/check_openerp.py: -------------------------------------------------------------------------------- 1 | check_openerp -------------------------------------------------------------------------------- /plugins/check-openerp/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /plugins/check-openerp/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-openerp/debian/control -------------------------------------------------------------------------------- /plugins/check-openerp/debian/install: -------------------------------------------------------------------------------- 1 | check_openerp /usr/lib/monitoring/plugins/sfl 2 | -------------------------------------------------------------------------------- /plugins/check-openerp/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-openerp/debian/rules -------------------------------------------------------------------------------- /plugins/check-openerp/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /plugins/check-openerp/requirements.freeze: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/check-openerp/test/jenkins/requirements.tests.freeze: -------------------------------------------------------------------------------- 1 | coverage 2 | nose 3 | pep8 4 | -------------------------------------------------------------------------------- /plugins/check-poller2livestatus/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /plugins/check-poller2livestatus/debian/install: -------------------------------------------------------------------------------- 1 | check_poller2livestatus /usr/lib/monitoring/plugins/sfl 2 | -------------------------------------------------------------------------------- /plugins/check-poller2livestatus/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /plugins/check-poller2livestatus/requirements.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /plugins/check-poller2livestatus/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-poller2livestatus/shinkenplugins/plugins/poller2livestatus/__init__.py: -------------------------------------------------------------------------------- 1 | from .poller2livestatus import main 2 | -------------------------------------------------------------------------------- /plugins/check-postgresql-lag/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-postgresql-lag/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-postgresql-lag/debian/install: -------------------------------------------------------------------------------- 1 | check_postgresql_lag /usr/lib/monitoring/plugins/sfl -------------------------------------------------------------------------------- /plugins/check-postgresql-lag/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-postgresql-lag/requirements.txt: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /plugins/check-postgresql-lag/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-postgresql-lag/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-postgresql-lag/setup.py -------------------------------------------------------------------------------- /plugins/check-postgresql-lag/shinkenplugins/plugins/postgresql_lag/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from .postgresql_lag import main, Plugin 3 | -------------------------------------------------------------------------------- /plugins/check-printer-hp-2600n/check_printer_hp_2600n.py: -------------------------------------------------------------------------------- 1 | check_printer_hp_2600n -------------------------------------------------------------------------------- /plugins/check-printer-hp-2600n/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /plugins/check-printer-hp-2600n/debian/install: -------------------------------------------------------------------------------- 1 | check_printer_hp_2600n /usr/lib/monitoring/plugins/sfl 2 | -------------------------------------------------------------------------------- /plugins/check-printer-hp-2600n/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /plugins/check-printer-hp-2600n/requirements.freeze: -------------------------------------------------------------------------------- 1 | lxml 2 | -------------------------------------------------------------------------------- /plugins/check-printer-hp-2600n/test/jenkins/requirements.tests.freeze: -------------------------------------------------------------------------------- 1 | coverage 2 | nose 3 | pep8 4 | lxml 5 | -------------------------------------------------------------------------------- /plugins/check-quebecrencontrescom/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-quebecrencontrescom/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-quebecrencontrescom/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-quebecrencontrescom/requirements.txt: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /plugins/check-quebecrencontrescom/run_tests.sh: -------------------------------------------------------------------------------- 1 | /home/fpeyre/reposSfl/monitoring-tools/plugins/run_tests.sh -------------------------------------------------------------------------------- /plugins/check-quebecrencontrescom/shinkenplugins/plugins/quebecrencontrescom/__init__.py: -------------------------------------------------------------------------------- 1 | from .quebecrencontrescom import Plugin, main 2 | 3 | -------------------------------------------------------------------------------- /plugins/check-rabbitmq/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-rabbitmq/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-rabbitmq/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-rabbitmq/debian/control -------------------------------------------------------------------------------- /plugins/check-rabbitmq/debian/install: -------------------------------------------------------------------------------- 1 | check_rabbitmq /usr/lib/monitoring/plugins/sfl -------------------------------------------------------------------------------- /plugins/check-rabbitmq/debian/manpages: -------------------------------------------------------------------------------- 1 | doc/build/man/* -------------------------------------------------------------------------------- /plugins/check-rabbitmq/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-rabbitmq/debian/rules -------------------------------------------------------------------------------- /plugins/check-rabbitmq/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-rabbitmq/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-rabbitmq/doc/conf.py -------------------------------------------------------------------------------- /plugins/check-rabbitmq/requirements.txt: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /plugins/check-rabbitmq/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-rabbitmq/setup.py -------------------------------------------------------------------------------- /plugins/check-rancid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-rancid/.gitignore -------------------------------------------------------------------------------- /plugins/check-rancid/check_rancid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-rancid/check_rancid -------------------------------------------------------------------------------- /plugins/check-rancid/check_rancid.py: -------------------------------------------------------------------------------- 1 | check_rancid -------------------------------------------------------------------------------- /plugins/check-rancid/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /plugins/check-rancid/debian/install: -------------------------------------------------------------------------------- 1 | check_rancid /usr/lib/monitoring/plugins/sfl 2 | -------------------------------------------------------------------------------- /plugins/check-rancid/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-rancid/debian/rules -------------------------------------------------------------------------------- /plugins/check-rancid/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /plugins/check-rancid/test/jenkins/requirements.tests.freeze: -------------------------------------------------------------------------------- 1 | coverage 2 | nose 3 | pep8 4 | -------------------------------------------------------------------------------- /plugins/check-reactionner-health/check_reactionner_health.py: -------------------------------------------------------------------------------- 1 | check_reactionner_health -------------------------------------------------------------------------------- /plugins/check-reactionner-health/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /plugins/check-reactionner-health/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /plugins/check-reactionner-health/requirements.freeze: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/check-reactionner-health/test/jenkins/requirements.tests.freeze: -------------------------------------------------------------------------------- 1 | coverage 2 | nose 3 | pep8 4 | -------------------------------------------------------------------------------- /plugins/check-redis/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-redis/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-redis/.packer.yml -------------------------------------------------------------------------------- /plugins/check-redis/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-redis/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-redis/debian/control -------------------------------------------------------------------------------- /plugins/check-redis/debian/dirs: -------------------------------------------------------------------------------- 1 | usr/lib/monitoring/plugins/sfl 2 | -------------------------------------------------------------------------------- /plugins/check-redis/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html 2 | -------------------------------------------------------------------------------- /plugins/check-redis/debian/install: -------------------------------------------------------------------------------- 1 | #check_redis /usr/lib/monitoring/plugins/sfl 2 | -------------------------------------------------------------------------------- /plugins/check-redis/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* 2 | -------------------------------------------------------------------------------- /plugins/check-redis/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-redis/debian/rules -------------------------------------------------------------------------------- /plugins/check-redis/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-redis/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-redis/doc/conf.py -------------------------------------------------------------------------------- /plugins/check-redis/requirements.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /plugins/check-redis/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-redis/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-redis/setup.py -------------------------------------------------------------------------------- /plugins/check-reseaucontactcom/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-reseaucontactcom/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/check-reseaucontactcom/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-reseaucontactcom/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-reseaucontactcom/requirements.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /plugins/check-reseaucontactcom/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-reseaucontactcom/shinkenplugins/plugins/reseaucontactcom/version.py: -------------------------------------------------------------------------------- 1 | VERSION = '0.2' 2 | -------------------------------------------------------------------------------- /plugins/check-samba/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-samba/.gitignore -------------------------------------------------------------------------------- /plugins/check-samba/check_samba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-samba/check_samba -------------------------------------------------------------------------------- /plugins/check-samba/check_samba.py: -------------------------------------------------------------------------------- 1 | check_samba -------------------------------------------------------------------------------- /plugins/check-samba/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /plugins/check-samba/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-samba/debian/control -------------------------------------------------------------------------------- /plugins/check-samba/debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-samba/debian/install -------------------------------------------------------------------------------- /plugins/check-samba/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-samba/debian/rules -------------------------------------------------------------------------------- /plugins/check-samba/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /plugins/check-samba/nmb/NetBIOS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-samba/nmb/NetBIOS.py -------------------------------------------------------------------------------- /plugins/check-samba/nmb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/check-samba/nmb/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-samba/nmb/base.py -------------------------------------------------------------------------------- /plugins/check-samba/nmb/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-samba/nmb/utils.py -------------------------------------------------------------------------------- /plugins/check-samba/requirements.freeze: -------------------------------------------------------------------------------- 1 | pyasn1 2 | -------------------------------------------------------------------------------- /plugins/check-samba/smb/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plugins/check-samba/smb/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-samba/smb/base.py -------------------------------------------------------------------------------- /plugins/check-samba/smb/ntlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-samba/smb/ntlm.py -------------------------------------------------------------------------------- /plugins/check-samba/test/jenkins/requirements.tests.freeze: -------------------------------------------------------------------------------- 1 | coverage 2 | nose 3 | pep8 4 | -------------------------------------------------------------------------------- /plugins/check-selenium/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-selenium/check_selenium.py: -------------------------------------------------------------------------------- 1 | check_selenium -------------------------------------------------------------------------------- /plugins/check-selenium/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-selenium/debian/install: -------------------------------------------------------------------------------- 1 | check_selenium /usr/lib/monitoring/plugins/sfl -------------------------------------------------------------------------------- /plugins/check-selenium/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-selenium/requirements.txt: -------------------------------------------------------------------------------- 1 | selenium==2.44.0 2 | shinkenplugins>=0.1.6 3 | xvfbwrapper==0.2.4 4 | -------------------------------------------------------------------------------- /plugins/check-selenium/scenarios/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/check-site-health/check_site_health.py: -------------------------------------------------------------------------------- 1 | check_site_health -------------------------------------------------------------------------------- /plugins/check-site-health/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /plugins/check-site-health/debian/install: -------------------------------------------------------------------------------- 1 | check_site_health /usr/lib/monitoring/plugins/sfl 2 | -------------------------------------------------------------------------------- /plugins/check-site-health/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /plugins/check-site-health/requirements.freeze: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/check-site-health/test/jenkins/requirements.tests.freeze: -------------------------------------------------------------------------------- 1 | coverage 2 | nose 3 | pep8 4 | -------------------------------------------------------------------------------- /plugins/check-ski-stations/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-ski-stations/.idea/.name: -------------------------------------------------------------------------------- 1 | plugin-check-ski-stations -------------------------------------------------------------------------------- /plugins/check-ski-stations/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-ski-stations/debian/install: -------------------------------------------------------------------------------- 1 | check_ski_stations /usr/lib/shinken/plugins -------------------------------------------------------------------------------- /plugins/check-ski-stations/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-ski-stations/requirements.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /plugins/check-ski-stations/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-ski-stations/shinkenplugins/plugins/ski_stations/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from .ski_stations import main, Plugin 3 | -------------------------------------------------------------------------------- /plugins/check-smtp-success-ratio/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /plugins/check-smtp-success-ratio/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /plugins/check-smtp-success-ratio/test/jenkins/shcov/shcov/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plugins/check-snmp-interface/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-snmp-interface/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-snmp-interface/debian/install: -------------------------------------------------------------------------------- 1 | check_snmp_interface /usr/lib/monitoring/plugins/sfl -------------------------------------------------------------------------------- /plugins/check-snmp-interface/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-snmp-interface/requirements.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /plugins/check-snmp-interface/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-snmp-interface/shinkenplugins/plugins/snmp_interface/__init__.py: -------------------------------------------------------------------------------- 1 | from .snmp_interface import main, Plugin 2 | -------------------------------------------------------------------------------- /plugins/check-snow-clearance/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-snow-clearance/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-snow-clearance/debian/install: -------------------------------------------------------------------------------- 1 | check_snow_clearance /usr/lib/shinken/plugins -------------------------------------------------------------------------------- /plugins/check-snow-clearance/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-snow-clearance/requirements.txt: -------------------------------------------------------------------------------- 1 | shinkenplugins>=0.3 2 | -------------------------------------------------------------------------------- /plugins/check-snow-clearance/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-snow-clearance/shinkenplugins/plugins/snow_clearance/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from .snow_clearance import main, Plugin 3 | -------------------------------------------------------------------------------- /plugins/check-spa2102/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-spa2102/.gitignore -------------------------------------------------------------------------------- /plugins/check-spa2102/check_spa2102.py: -------------------------------------------------------------------------------- 1 | check_spa2102 -------------------------------------------------------------------------------- /plugins/check-spa2102/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /plugins/check-spa2102/debian/install: -------------------------------------------------------------------------------- 1 | check_spa2102 /usr/lib/monitoring/plugins/sfl 2 | -------------------------------------------------------------------------------- /plugins/check-spa2102/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-spa2102/debian/rules -------------------------------------------------------------------------------- /plugins/check-spa2102/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /plugins/check-spa2102/requirements.freeze: -------------------------------------------------------------------------------- 1 | lxml 2 | -------------------------------------------------------------------------------- /plugins/check-spa2102/test/jenkins/requirements.tests.freeze: -------------------------------------------------------------------------------- 1 | coverage 2 | nose 3 | lxml 4 | pep8 5 | -------------------------------------------------------------------------------- /plugins/check-stm-metro-montreal/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-stm-metro-montreal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/check-stm-metro-montreal/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-stm-metro-montreal/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-stm-metro-montreal/requirements.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /plugins/check-stm-metro-montreal/shinkenplugins/plugins/stm_metro_montreal/version.py: -------------------------------------------------------------------------------- 1 | VERSION = '0.2' 2 | -------------------------------------------------------------------------------- /plugins/check-toshiba-ups/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /plugins/check-toshiba-ups/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-toshiba-ups/debian/install: -------------------------------------------------------------------------------- 1 | check_toshiba_ups /usr/lib/monitoring/plugins/sfl -------------------------------------------------------------------------------- /plugins/check-toshiba-ups/debian/manpages: -------------------------------------------------------------------------------- 1 | doc/build/man/* -------------------------------------------------------------------------------- /plugins/check-toshiba-ups/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-toshiba-ups/requirements.txt: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /plugins/check-toshiba-ups/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-toshiba-ups/setup.py -------------------------------------------------------------------------------- /plugins/check-tripplite-ups/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /plugins/check-tripplite-ups/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /plugins/check-wanpipe/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-wanpipe/.gitignore -------------------------------------------------------------------------------- /plugins/check-wanpipe/check_wanpipe.py: -------------------------------------------------------------------------------- 1 | check_wanpipe -------------------------------------------------------------------------------- /plugins/check-wanpipe/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /plugins/check-wanpipe/debian/install: -------------------------------------------------------------------------------- 1 | check_wanpipe /usr/lib/monitoring/plugins/sfl 2 | -------------------------------------------------------------------------------- /plugins/check-wanpipe/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-wanpipe/debian/rules -------------------------------------------------------------------------------- /plugins/check-wanpipe/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /plugins/check-wanpipe/requirements.freeze: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/check-wanpipe/test/jenkins/requirements.tests.freeze: -------------------------------------------------------------------------------- 1 | coverage 2 | nose 3 | pep8 4 | -------------------------------------------------------------------------------- /plugins/check-wanpipe/test/test_output5: -------------------------------------------------------------------------------- 1 | 2 | Failed to get voltage stats! 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /plugins/check-x224/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /plugins/check-x224/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-x224/debian/control -------------------------------------------------------------------------------- /plugins/check-x224/debian/install: -------------------------------------------------------------------------------- 1 | check_x224 /usr/lib/monitoring/plugins/sfl -------------------------------------------------------------------------------- /plugins/check-x224/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-x224/debian/rules -------------------------------------------------------------------------------- /plugins/check-x224/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /plugins/check-x224/requirements.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /plugins/check-x224/run_tests.sh: -------------------------------------------------------------------------------- 1 | ../run_tests.sh -------------------------------------------------------------------------------- /plugins/check-x224/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/check-x224/setup.py -------------------------------------------------------------------------------- /plugins/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/plugins/run_tests.sh -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/tools/__init__.py -------------------------------------------------------------------------------- /tools/build_rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/tools/build_rpm.sh -------------------------------------------------------------------------------- /tools/new-pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/tools/new-pack.py -------------------------------------------------------------------------------- /tools/new-plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/tools/new-plugin.py -------------------------------------------------------------------------------- /tools/obs-libs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/tools/obs-libs.sh -------------------------------------------------------------------------------- /tools/obs-plugins-packs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/tools/obs-plugins-packs.sh -------------------------------------------------------------------------------- /tools/package-libs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/tools/package-libs.sh -------------------------------------------------------------------------------- /tools/package-plugins-packs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/tools/package-plugins-packs.sh -------------------------------------------------------------------------------- /tools/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/tools/run-tests.sh -------------------------------------------------------------------------------- /tools/templates/pack/.packer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/tools/templates/pack/.packer.yml -------------------------------------------------------------------------------- /tools/templates/pack/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/tools/templates/pack/README.rst -------------------------------------------------------------------------------- /tools/templates/pack/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /tools/templates/pack/debian/docs: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/html 2 | -------------------------------------------------------------------------------- /tools/templates/pack/debian/manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/doc/build/man/* 2 | -------------------------------------------------------------------------------- /tools/templates/pack/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/tools/templates/pack/debian/rules -------------------------------------------------------------------------------- /tools/templates/pack/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /tools/templates/pack/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/tools/templates/pack/doc/conf.py -------------------------------------------------------------------------------- /tools/templates/pack/doc/foo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/tools/templates/pack/doc/foo.rst -------------------------------------------------------------------------------- /tools/templates/pack/pack/foo.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/tools/templates/pack/pack/foo.pack -------------------------------------------------------------------------------- /tools/templates/pack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/tools/templates/pack/package.json -------------------------------------------------------------------------------- /tools/templates/python/.gitignore: -------------------------------------------------------------------------------- 1 | env/ -------------------------------------------------------------------------------- /tools/templates/python/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /tools/templates/python/debian/install: -------------------------------------------------------------------------------- 1 | {{ exec_name }} /usr/lib/monitoring/plugins/sfl 2 | -------------------------------------------------------------------------------- /tools/templates/python/debian/manpages: -------------------------------------------------------------------------------- 1 | doc/build/man/* 2 | -------------------------------------------------------------------------------- /tools/templates/python/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) -------------------------------------------------------------------------------- /tools/templates/python/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/tools/templates/python/doc/conf.py -------------------------------------------------------------------------------- /tools/templates/python/requirements.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tools/templates/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/tools/templates/python/setup.py -------------------------------------------------------------------------------- /tools/tests/osc_0.143.0-1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/tools/tests/osc_0.143.0-1_all.deb -------------------------------------------------------------------------------- /tools/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savoirfairelinux/monitoring-tools/HEAD/tools/webserver.py --------------------------------------------------------------------------------