├── .gitignore ├── .pylintrc ├── .style.yapf ├── Notifications ├── sms_gateway │ ├── notifications │ │ └── sms2 │ └── readme.md └── voice_notification │ ├── original_voice_commands.sh │ ├── readme.md │ ├── voice │ └── voice_isdn ├── check plugins 1.6 ├── apc_pdu │ ├── apc_pdu-1.2.mkp │ ├── checkman │ │ └── apc_pdu │ ├── checks │ │ └── apc_pdu │ └── web │ │ └── plugins │ │ └── wato │ │ └── apc_pdu_parameters.py ├── bacs_battery │ ├── bacs_battery-1.4.mkp │ ├── checks │ │ ├── bacs_battery │ │ └── bacs_string │ └── web │ │ └── plugins │ │ └── wato │ │ └── bacs_battery_parameters.py ├── hpe_ilo │ ├── agents │ │ └── special │ │ │ └── agent_ilo │ ├── checkman │ │ ├── ilo_api_cntrl │ │ ├── ilo_api_cpu │ │ ├── ilo_api_fans │ │ ├── ilo_api_general │ │ ├── ilo_api_mem │ │ ├── ilo_api_phydrv │ │ ├── ilo_api_power │ │ ├── ilo_api_raid │ │ └── ilo_api_temp │ ├── checks │ │ ├── agent_ilo │ │ ├── ilo_api_cntrl │ │ ├── ilo_api_cpu │ │ ├── ilo_api_fans │ │ ├── ilo_api_general │ │ ├── ilo_api_mem │ │ ├── ilo_api_phydrv │ │ ├── ilo_api_power │ │ ├── ilo_api_raid │ │ └── ilo_api_temp │ ├── hpe_ilo-1.13.mkp │ ├── inventory │ │ └── ilo_firmware │ ├── readme.md │ └── web │ │ └── plugins │ │ ├── metrics │ │ ├── ilo_api_fans.py │ │ └── ilo_api_power.py │ │ ├── views │ │ └── ilo_firmware.py │ │ └── wato │ │ └── datasource_programs_ilo.py ├── hpe_ilo_firmware_snmp │ └── inventory │ │ └── snmp_hp_firmware ├── lenovo_xclarity │ ├── agents │ │ └── special │ │ │ └── agent_lenovo_xclarity │ ├── checks │ │ ├── agent_lenovo_xclarity │ │ ├── lenovo_xclarity.include │ │ ├── lenovo_xclarity_fans │ │ ├── lenovo_xclarity_power_supply │ │ ├── lenovo_xclarity_temperatures │ │ └── lenovo_xclarity_voltages │ ├── lenovo_xclarity-1.2.mkp │ ├── lib │ │ └── python │ │ │ └── lenovo_utils.py │ └── web │ │ └── plugins │ │ └── wato │ │ └── lenovo_xclarity_datasource_programs.py ├── nutanix_prism │ ├── agents │ │ └── special │ │ │ └── agent_prism │ ├── checks │ │ ├── prism_host_usage │ │ ├── prism_hosts │ │ ├── prism_hw_disks │ │ ├── prism_remote_support │ │ ├── prism_storage_pools │ │ ├── prism_vm_stats │ │ ├── prism_vm_tools │ │ └── prism_vms │ └── nutanix_prism-1.0.mkp ├── readme.md └── win_cert │ ├── agents │ ├── bakery │ │ └── win_cert │ └── windows │ │ └── plugins │ │ └── win_cert.ps1 │ ├── checks │ └── win_cert │ ├── web │ └── plugins │ │ └── wato │ │ ├── win_cert_deploy.py │ │ └── win_cert_para.py │ └── win_cert-1.6.mkp ├── check plugins 2.0 ready ├── aruba_cpu_util │ ├── aruba_cpu-1.0.mkp │ └── checks │ │ └── aruba_cpu_util ├── dell_sc │ ├── agents │ │ └── special │ │ │ └── agent_dell_sc │ ├── checks │ │ └── dell_sc_volumes │ └── dell_sc_api_based-1.0.mkp ├── lenovo_xclarity_snmp │ ├── checks │ │ ├── lenovo_xcc_drive │ │ ├── lenovo_xcc_fan │ │ ├── lenovo_xcc_network │ │ ├── lenovo_xcc_psu │ │ ├── lenovo_xcc_temp │ │ └── lenovo_xcc_voltage │ ├── lenovo_xclarity_snmp-1.0.mkp │ └── readme.md ├── netgear_boxservice │ ├── checks │ │ ├── netgear_boxservice_fan │ │ ├── netgear_boxservice_psu │ │ └── netgear_boxservice_temp │ └── netgear_boxservice-1.0.mkp ├── readme.md ├── sonicwall │ ├── checks │ │ ├── sonicwall_conns │ │ ├── sonicwall_cpu │ │ ├── sonicwall_mem │ │ └── sonicwall_vpn │ └── sonicwall-2.0.mkp └── windows_tasks │ ├── agents │ └── windows │ │ └── plugins │ │ └── windows_tasks.ps1 │ ├── checks │ └── windows_tasks │ ├── web │ └── plugins │ │ └── wato │ │ └── windows_tasks_discovery.py │ └── windows_tasks-2.2.mkp ├── check plugins 2.0 ├── arcserve_udp │ ├── agent_based │ │ ├── udp_backup.py │ │ └── udp_jobs.py │ ├── agents │ │ └── windows │ │ │ └── plugins │ │ │ └── arcserve_udp.ps1 │ ├── arcserve_udp-2.1.mkp │ ├── demo_output.txt │ ├── lib │ │ └── check_mk │ │ │ └── base │ │ │ └── cee │ │ │ └── plugins │ │ │ └── bakery │ │ │ └── arcserve_udp.py │ ├── readme.md │ └── web │ │ └── plugins │ │ └── wato │ │ ├── arcserve_udp.py │ │ └── arcserve_udp_cee.py ├── dell_idrac_redfish │ ├── agent_based │ │ ├── dell_idrac_rf_cpu.py │ │ ├── dell_idrac_rf_drives.py │ │ ├── dell_idrac_rf_fans.py │ │ ├── dell_idrac_rf_interface.py │ │ ├── dell_idrac_rf_memory.py │ │ ├── dell_idrac_rf_network.py │ │ ├── dell_idrac_rf_power.py │ │ ├── dell_idrac_rf_psu.py │ │ ├── dell_idrac_rf_storage.py │ │ ├── dell_idrac_rf_system.py │ │ ├── dell_idrac_rf_temperatures.py │ │ ├── dell_idrac_rf_thermal.py │ │ ├── dell_idrac_rf_voltage.py │ │ ├── dell_idrac_rf_volumes.py │ │ └── utils │ │ │ └── dell_idrac.py │ ├── agents │ │ └── special │ │ │ └── agent_dell_idrac │ ├── checks │ │ └── agent_dell_idrac │ ├── dell_idrac_redfish-1.8.mkp │ ├── readme.md │ └── web │ │ └── plugins │ │ ├── metrics │ │ └── dell_idrac.py │ │ └── wato │ │ └── dell_idrac_datasource_programs.py ├── dell_powervault_me4 │ ├── agent_based │ │ ├── dell_powervault_me4.py │ │ ├── dell_powervault_me4_controller_statistics.py │ │ ├── dell_powervault_me4_controllers.py │ │ ├── dell_powervault_me4_disks.py │ │ ├── dell_powervault_me4_fans.py │ │ ├── dell_powervault_me4_frus.py │ │ ├── dell_powervault_me4_pools.py │ │ ├── dell_powervault_me4_ports.py │ │ ├── dell_powervault_me4_power_supplies.py │ │ ├── dell_powervault_me4_sensor_status.py │ │ ├── dell_powervault_me4_system.py │ │ ├── dell_powervault_me4_volume_statistics.py │ │ └── dell_powervault_me4_volumes.py │ ├── agents │ │ └── special │ │ │ └── agent_dellpowervault │ ├── checks │ │ └── agent_dellpowervault │ ├── dell_powervault_me4-2.5.mkp │ └── web │ │ └── plugins │ │ └── wato │ │ └── dell_powervault_datasource_programs.py ├── extreme_vsp │ ├── agent_based │ │ ├── extreme_vsp_fans.py │ │ ├── extreme_vsp_psu.py │ │ └── extreme_vsp_temp.py │ └── extreme_vsp-1.0.mkp ├── extreme_wlc │ ├── agent_based │ │ ├── extreme_wlc_aps.py │ │ ├── extreme_wlc_clients.py │ │ ├── utils │ │ │ └── wlc_clients.py │ │ └── wlc_clients.py │ └── extreme_wlc-1.1.mkp ├── fortigate_updates │ ├── checks │ │ └── fortigate_update │ ├── fortigate_update-1.0.mkp │ └── web │ │ └── plugins │ │ └── wato │ │ └── fortigate_update_parameters.py ├── hpe_ilo │ ├── agent_based │ │ ├── ilo_api_cntrl.py │ │ ├── ilo_api_cpu.py │ │ ├── ilo_api_fans.py │ │ ├── ilo_api_general.py │ │ ├── ilo_api_mem.py │ │ ├── ilo_api_phydrv.py │ │ ├── ilo_api_power.py │ │ ├── ilo_api_power_metrics.py │ │ ├── ilo_api_raid.py │ │ ├── ilo_api_temp.py │ │ └── utils │ │ │ └── hp_ilo.py │ ├── agents │ │ └── special │ │ │ └── agent_ilo │ ├── checks │ │ └── agent_ilo │ ├── hpe_ilo-3.7.mkp │ ├── inventory │ │ └── ilo_firmware │ ├── readme.md │ └── web │ │ └── plugins │ │ ├── metrics │ │ ├── ilo_api_fans.py │ │ └── ilo_api_power.py │ │ ├── views │ │ └── ilo_firmware.py │ │ └── wato │ │ └── datasource_programs_ilo.py ├── lenovo_xclarity │ ├── agent_based │ │ ├── lenovo_xclarity_fans.py │ │ ├── lenovo_xclarity_power_supply.py │ │ ├── lenovo_xclarity_system.py │ │ ├── lenovo_xclarity_temperatures.py │ │ ├── lenovo_xclarity_voltages.py │ │ └── utils │ │ │ ├── fan.py │ │ │ └── lenovo_xclarity.py │ ├── agents │ │ └── special │ │ │ ├── agent_lenovo_xclarity │ │ │ └── lenovo_utils.py │ ├── checks │ │ └── agent_lenovo_xclarity │ ├── lenovo_xclarity-2.9.mkp │ └── web │ │ └── plugins │ │ ├── metrics │ │ └── xclarity.py │ │ └── wato │ │ ├── fan.py │ │ └── lenovo_xclarity_datasource_programs.py ├── meraki │ └── agents │ │ └── special │ │ └── agent_meraki ├── netapp_eseries │ └── readme.md ├── nextcloud │ ├── agent │ │ └── special │ │ │ └── agent_nextcloud.py │ └── lib │ │ └── check_mk │ │ └── base │ │ └── plugins │ │ └── agent_based │ │ └── nextcloud.py ├── nutanix │ ├── agent_based │ │ ├── prism_alerts.py │ │ ├── prism_containers.py │ │ ├── prism_host.py │ │ ├── prism_host_disks.py │ │ ├── prism_host_stats.py │ │ ├── prism_host_usage.py │ │ ├── prism_hosts.py │ │ ├── prism_info.py │ │ ├── prism_remote_support.py │ │ ├── prism_storage_pools.py │ │ ├── prism_vm.py │ │ ├── prism_vm_stats.py │ │ ├── prism_vm_status.py │ │ ├── prism_vm_tools.py │ │ ├── prism_vms.py │ │ └── utils │ │ │ └── prism.py │ ├── agents │ │ └── special │ │ │ └── agent_prism │ ├── checkman │ │ ├── prism_alerts │ │ ├── prism_containers │ │ ├── prism_host_disks │ │ ├── prism_host_stats │ │ ├── prism_host_stats_cpu │ │ ├── prism_host_stats_mem │ │ ├── prism_host_usage │ │ ├── prism_hosts │ │ ├── prism_info │ │ ├── prism_remote_support │ │ ├── prism_storage_pools │ │ ├── prism_vm_stats │ │ ├── prism_vm_stats_cpu │ │ ├── prism_vm_stats_mem │ │ ├── prism_vm_status │ │ ├── prism_vm_tools │ │ └── prism_vms │ ├── nutanix_prism-3.6-2.0.mkp │ └── web │ │ └── plugins │ │ ├── metrics │ │ └── prism.py │ │ └── wato │ │ ├── prism_alerts.py │ │ ├── prism_host_cpu.py │ │ ├── prism_host_disks.py │ │ ├── prism_host_mem.py │ │ ├── prism_hosts.py │ │ ├── prism_remote_support.py │ │ ├── prism_vm_cpu.py │ │ ├── prism_vm_memory.py │ │ ├── prism_vm_status.py │ │ ├── prism_vm_tools.py │ │ └── prism_vms.py ├── oracle_ilom │ ├── agent_based │ │ └── oracle_ilom.py │ └── oracle_ilom-2.0.mkp ├── pure_fa │ ├── agent_based │ │ ├── pure_fa_drives.py │ │ ├── pure_fa_hgroups.py │ │ ├── pure_fa_hosts.py │ │ ├── pure_fa_hw.py │ │ ├── pure_fa_hw_inf.py │ │ ├── pure_fa_hw_psu.py │ │ ├── pure_fa_hw_temp.py │ │ ├── pure_fa_occ.py │ │ ├── pure_fa_performance.py │ │ ├── pure_fa_pods.py │ │ └── pure_fa_volumes.py │ ├── agents │ │ └── special │ │ │ └── agent_purefa │ ├── checks │ │ └── agent_purefa │ ├── pure_fa-1.0.mkp │ └── web │ │ └── plugins │ │ └── wato │ │ └── purefa_datasource.py ├── readme.md ├── redfish │ ├── agent_based │ │ ├── redfish_arraycontrollers.py │ │ ├── redfish_arraycontrollers_dell.py │ │ ├── redfish_arraycontrollers_hpe.py │ │ ├── redfish_ethernetinterfaces.py │ │ ├── redfish_fans.py │ │ ├── redfish_logicaldrives.py │ │ ├── redfish_memory.py │ │ ├── redfish_memory_summary.py │ │ ├── redfish_networkadapters.py │ │ ├── redfish_physicaldrives.py │ │ ├── redfish_power.py │ │ ├── redfish_processors.py │ │ ├── redfish_psu.py │ │ ├── redfish_storage.py │ │ ├── redfish_system.py │ │ ├── redfish_temperatures.py │ │ ├── redfish_thermal.py │ │ ├── redfish_voltage.py │ │ └── utils │ │ │ └── redfish.py │ ├── agents │ │ └── special │ │ │ └── agent_redfish │ ├── checks │ │ └── agent_redfish │ ├── redfish-1.4.mkp │ └── web │ │ └── plugins │ │ ├── metrics │ │ └── redfish.py │ │ └── wato │ │ └── redfish_datasource_programs.py ├── sccm_status │ ├── agents │ │ └── windows │ │ │ └── plugins │ │ │ └── sccm_status.ps1 │ └── checks │ │ └── sccm_status ├── snmp_location │ ├── agent_based │ │ └── snmp_location.py │ └── snmp_location-1.0.mkp ├── win_cert │ ├── agent_based │ │ └── win_cert.py │ ├── agents │ │ └── windows │ │ │ ├── cfg_examples │ │ │ └── win_cert_cfg.ps1 │ │ │ └── plugins │ │ │ └── win_cert.ps1 │ ├── lib │ │ └── check_mk │ │ │ └── base │ │ │ └── cee │ │ │ └── plugins │ │ │ └── bakery │ │ │ └── win_cert.py │ ├── web │ │ └── plugins │ │ │ └── wato │ │ │ ├── win_cert.py │ │ │ └── win_cert_cee.py │ └── win_cert-2.8.mkp ├── win_firewall_status │ ├── agent_based │ │ └── win_firewall_status.py │ ├── agents │ │ └── windows │ │ │ └── plugins │ │ │ └── win_firewall_status.ps1 │ ├── lib │ │ └── check_mk │ │ │ └── base │ │ │ └── cee │ │ │ └── plugins │ │ │ └── bakery │ │ │ └── win_firewall_status.py │ ├── web │ │ └── plugins │ │ │ └── wato │ │ │ ├── win_firewall_status.py │ │ │ └── win_firewall_status_cee.py │ └── win_firewall_status-2.1.mkp ├── windows_dedup │ ├── agents │ │ └── windows │ │ │ └── plugins │ │ │ └── windows_dedup.ps1 │ ├── checks │ │ └── windows_dedup │ └── windows_dedup-1.0.mkp ├── windows_multipath │ └── agents │ │ └── windows │ │ └── plugins │ │ └── windows_multipath.ps1 └── windows_patch_day │ ├── agent_based │ └── windows_patch_day.py │ ├── agents │ └── windows │ │ ├── cfg_examples │ │ └── windows_patch_day.cfg │ │ └── plugins │ │ └── windows_patch_day.ps1 │ ├── lib │ └── check_mk │ │ └── base │ │ └── cee │ │ └── plugins │ │ └── bakery │ │ └── windows_patch_day.py │ ├── web │ └── plugins │ │ └── wato │ │ ├── windows_patch_day.py │ │ └── windows_patch_day_cee.py │ └── windows_patch_day-1.9.mkp ├── check plugins 2.1 ├── bacs_battery │ ├── bacs_battery-1.4.mkp │ ├── checks │ │ ├── bacs_battery │ │ └── bacs_string │ └── web │ │ └── plugins │ │ └── wato │ │ └── bacs_battery_parameters.py ├── dell_idrac_redfish │ ├── agent_based │ │ ├── dell_idrac_rf_cpu.py │ │ ├── dell_idrac_rf_drives.py │ │ ├── dell_idrac_rf_fans.py │ │ ├── dell_idrac_rf_interface.py │ │ ├── dell_idrac_rf_memory.py │ │ ├── dell_idrac_rf_network.py │ │ ├── dell_idrac_rf_power.py │ │ ├── dell_idrac_rf_psu.py │ │ ├── dell_idrac_rf_storage.py │ │ ├── dell_idrac_rf_system.py │ │ ├── dell_idrac_rf_temperatures.py │ │ ├── dell_idrac_rf_thermal.py │ │ ├── dell_idrac_rf_voltage.py │ │ ├── dell_idrac_rf_volumes.py │ │ └── utils │ │ │ └── dell_idrac.py │ ├── agents │ │ └── special │ │ │ └── agent_dell_idrac │ ├── checks │ │ └── agent_dell_idrac │ ├── dell_idrac_redfish-2.1.1.mkp │ └── web │ │ └── plugins │ │ ├── metrics │ │ └── dell_idrac.py │ │ └── wato │ │ └── dell_idrac_datasource_programs.py ├── extreme_wlc │ ├── agent_based │ │ ├── extreme_wlc_aps.py │ │ └── extreme_wlc_clients.py │ └── extreme_wlc-1.2.1.mkp ├── nutanix │ ├── agent_based │ │ ├── prism_alerts.py │ │ ├── prism_cluster_cpu.py │ │ ├── prism_cluster_io.py │ │ ├── prism_cluster_mem.py │ │ ├── prism_containers.py │ │ ├── prism_ha.py │ │ ├── prism_host.py │ │ ├── prism_host_disks.py │ │ ├── prism_host_stats.py │ │ ├── prism_host_usage.py │ │ ├── prism_hosts.py │ │ ├── prism_info.py │ │ ├── prism_protection_domains.py │ │ ├── prism_remote_support.py │ │ ├── prism_storage_pools.py │ │ ├── prism_vm.py │ │ ├── prism_vm_stats.py │ │ ├── prism_vm_status.py │ │ ├── prism_vm_tools.py │ │ ├── prism_vms.py │ │ └── utils │ │ │ └── prism.py │ ├── checkman │ │ ├── prism_alerts │ │ ├── prism_cluster_cpu │ │ ├── prism_cluster_io │ │ ├── prism_cluster_mem │ │ ├── prism_containers │ │ ├── prism_ha │ │ ├── prism_host_disks │ │ ├── prism_host_stats │ │ ├── prism_host_stats_cpu │ │ ├── prism_host_stats_mem │ │ ├── prism_host_usage │ │ ├── prism_hosts │ │ ├── prism_info │ │ ├── prism_protection_domains │ │ ├── prism_remote_support │ │ ├── prism_storage_pools │ │ ├── prism_vm_stats │ │ ├── prism_vm_stats_cpu │ │ ├── prism_vm_stats_mem │ │ ├── prism_vm_status │ │ ├── prism_vm_tools │ │ └── prism_vms │ ├── checks │ │ ├── prism_alerts │ │ ├── prism_containers │ │ ├── prism_info │ │ └── prism_storage_pools │ ├── lib │ │ └── check_mk │ │ │ └── special_agents │ │ │ └── agent_prism.py │ ├── nutanix_prism-4.0.4.mkp │ └── web │ │ └── plugins │ │ ├── metrics │ │ └── prism.py │ │ └── wato │ │ ├── prism_alerts.py │ │ ├── prism_cluster_cpu.py │ │ ├── prism_cluster_io.py │ │ ├── prism_cluster_mem.py │ │ ├── prism_host_cpu.py │ │ ├── prism_host_disks.py │ │ ├── prism_host_mem.py │ │ ├── prism_hosts.py │ │ ├── prism_protection_domains.py │ │ ├── prism_remote_support.py │ │ ├── prism_vm_cpu.py │ │ ├── prism_vm_memory.py │ │ ├── prism_vm_status.py │ │ ├── prism_vm_tools.py │ │ └── prism_vms.py ├── redfish │ ├── agent_based │ │ ├── redfish_arraycontrollers.py │ │ ├── redfish_arraycontrollers_dell.py │ │ ├── redfish_arraycontrollers_hpe.py │ │ ├── redfish_drives.py │ │ ├── redfish_ethernetinterfaces.py │ │ ├── redfish_fans.py │ │ ├── redfish_logicaldrives.py │ │ ├── redfish_memory.py │ │ ├── redfish_memory_summary.py │ │ ├── redfish_networkadapters.py │ │ ├── redfish_networkports.py │ │ ├── redfish_physicaldrives.py │ │ ├── redfish_power.py │ │ ├── redfish_processors.py │ │ ├── redfish_psu.py │ │ ├── redfish_storage.py │ │ ├── redfish_system.py │ │ ├── redfish_temperatures.py │ │ ├── redfish_thermal.py │ │ ├── redfish_voltage.py │ │ ├── redfish_volumes.py │ │ └── utils │ │ │ └── redfish.py │ ├── agents │ │ └── special │ │ │ └── agent_redfish │ ├── checks │ │ └── agent_redfish │ ├── readme.md │ ├── redfish-2.1.30.mkp │ └── web │ │ └── plugins │ │ ├── metrics │ │ └── redfish.py │ │ └── wato │ │ └── redfish_datasource_programs.py ├── windows_hyperv │ ├── agents │ │ └── windows │ │ │ └── plugins │ │ │ ├── hyperv_cluster.ps1 │ │ │ ├── hyperv_host.ps1 │ │ │ └── hyperv_host_csv_io.ps1 │ ├── checks │ │ ├── hyperv.include │ │ ├── hyperv_cluster_csv │ │ ├── hyperv_cluster_disks │ │ ├── hyperv_cluster_general │ │ ├── hyperv_cluster_network │ │ ├── hyperv_cluster_nodes │ │ ├── hyperv_cluster_roles │ │ ├── hyperv_host_io_local │ │ ├── hyperv_host_io_remote │ │ ├── hyperv_vm_checkpoints │ │ ├── hyperv_vm_general │ │ ├── hyperv_vm_integration │ │ ├── hyperv_vm_nic │ │ ├── hyperv_vm_ram │ │ └── hyperv_vm_vhd │ ├── hyperv_cluster-2.0.mkp │ ├── lib │ │ └── check_mk │ │ │ └── base │ │ │ └── cee │ │ │ └── plugins │ │ │ └── bakery │ │ │ ├── hyperv_new.py │ │ │ └── hyperv_vms_guestinfos.py │ └── web │ │ └── plugins │ │ ├── metrics │ │ └── hyperv.py │ │ └── wato │ │ ├── hyper_vms_guestinfos_deploy.py │ │ ├── hyperv_cluster_roles_wato.py │ │ ├── hyperv_new_deploy.py │ │ ├── hyperv_vm_integration_wato.py │ │ └── hyperv_vm_integration_wato.py.bak ├── windows_patch_day │ ├── agent_based │ │ └── windows_patch_day.py │ ├── agents │ │ └── windows │ │ │ ├── cfg_examples │ │ │ └── windows_patch_day.cfg │ │ │ └── plugins │ │ │ └── windows_patch_day.ps1 │ ├── lib │ │ └── check_mk │ │ │ └── base │ │ │ └── cee │ │ │ └── plugins │ │ │ └── bakery │ │ │ └── windows_patch_day.py │ ├── web │ │ └── plugins │ │ │ └── wato │ │ │ ├── windows_patch_day.py │ │ │ └── windows_patch_day_cee.py │ └── windows_patch_day-2.1.0.mkp └── windows_tasks │ ├── agent_based │ └── windows_tasks.py │ ├── agents │ └── windows │ │ └── plugins │ │ └── windows_tasks.ps1 │ ├── web │ └── plugins │ │ └── wato │ │ └── windows_tasks_discovery.py │ └── windows_tasks-2.5.0.mkp ├── check plugins 2.2 ├── aruba_cx_sensors │ ├── agent_based │ │ ├── aruba_cx_fan.py │ │ ├── aruba_cx_psu.py │ │ ├── aruba_cx_temp.py │ │ └── utils │ │ │ └── aruba_cx.py │ └── aruba_cx_sensors-1.1.0.mkp ├── bacs_battery │ ├── bacs_battery-2.0.0.mkp │ ├── checks │ │ ├── bacs_battery │ │ └── bacs_string │ └── web │ │ └── plugins │ │ └── wato │ │ └── bacs_battery_parameters.py ├── dell_idrac_redfish │ ├── agent_based │ │ ├── dell_idrac_rf_cpu.py │ │ ├── dell_idrac_rf_drives.py │ │ ├── dell_idrac_rf_fans.py │ │ ├── dell_idrac_rf_interface.py │ │ ├── dell_idrac_rf_memory.py │ │ ├── dell_idrac_rf_network.py │ │ ├── dell_idrac_rf_power.py │ │ ├── dell_idrac_rf_psu.py │ │ ├── dell_idrac_rf_storage.py │ │ ├── dell_idrac_rf_system.py │ │ ├── dell_idrac_rf_temperatures.py │ │ ├── dell_idrac_rf_thermal.py │ │ ├── dell_idrac_rf_voltage.py │ │ ├── dell_idrac_rf_volumes.py │ │ └── utils │ │ │ └── dell_idrac.py │ ├── agents │ │ └── special │ │ │ └── agent_dell_idrac │ ├── checks │ │ └── agent_dell_idrac │ ├── dell_idrac_redfish-2.2.3.mkp │ ├── readme.md │ └── web │ │ └── plugins │ │ ├── metrics │ │ └── dell_idrac.py │ │ └── wato │ │ └── dell_idrac_datasource_programs.py ├── dell_powervault_me4 │ ├── agent_based │ │ ├── dell_powervault_me4_controller_statistics.py │ │ ├── dell_powervault_me4_controllers.py │ │ ├── dell_powervault_me4_disks.py │ │ ├── dell_powervault_me4_fans.py │ │ ├── dell_powervault_me4_frus.py │ │ ├── dell_powervault_me4_pools.py │ │ ├── dell_powervault_me4_ports.py │ │ ├── dell_powervault_me4_power_supplies.py │ │ ├── dell_powervault_me4_sensor_status.py │ │ ├── dell_powervault_me4_system.py │ │ ├── dell_powervault_me4_volume_statistics.py │ │ ├── dell_powervault_me4_volumes.py │ │ └── utils │ │ │ └── dell_powervault_me4.py │ ├── agents │ │ └── special │ │ │ └── agent_dellpowervault │ ├── checks │ │ └── agent_dellpowervault │ ├── dell_powervault_me4-3.1.0.mkp │ ├── readme.md │ └── web │ │ └── plugins │ │ └── wato │ │ └── dell_powervault_datasource_programs.py ├── extreme_wlc │ ├── agent_based │ │ ├── extreme_wlc_aps.py │ │ └── extreme_wlc_clients.py │ └── extreme_wlc-1.2.1.mkp ├── fortigate_update │ ├── checks │ │ └── fortigate_update │ ├── fortigate_update-2.0.0.mkp │ └── web │ │ └── plugins │ │ └── wato │ │ └── fortigate_updates.py ├── hpe_3par_ssh │ ├── agents │ │ └── special │ │ │ └── agent_3par_ssh │ ├── checks │ │ ├── 3par_cage │ │ ├── 3par_ld │ │ ├── 3par_node │ │ ├── 3par_pd │ │ ├── 3par_ps │ │ ├── 3par_vv │ │ └── agent_3par_ssh │ ├── hpe_3par_ssh-1.0.1.mkp │ └── web │ │ └── plugins │ │ └── wato │ │ └── agent_3par_ssh.py ├── hpe_ilo │ ├── agent_based │ │ ├── ilo_api_cntrl.py │ │ ├── ilo_api_cpu.py │ │ ├── ilo_api_fans.py │ │ ├── ilo_api_general.py │ │ ├── ilo_api_mem.py │ │ ├── ilo_api_phydrv.py │ │ ├── ilo_api_power.py │ │ ├── ilo_api_power_metrics.py │ │ ├── ilo_api_raid.py │ │ ├── ilo_api_temp.py │ │ ├── inventory_ilo_firmware.py │ │ └── utils │ │ │ └── hp_ilo.py │ ├── agents │ │ └── special │ │ │ └── agent_ilo │ ├── checks │ │ └── agent_ilo │ ├── hpe_ilo-4.0.2.mkp │ ├── readme.md │ └── web │ │ └── plugins │ │ ├── metrics │ │ ├── ilo_api_fans.py │ │ └── ilo_api_power.py │ │ ├── views │ │ └── ilo_firmware.py │ │ └── wato │ │ └── datasource_programs_ilo.py ├── lenovo_xclarity │ ├── agent_based │ │ ├── lenovo_xclarity_fans.py │ │ ├── lenovo_xclarity_power_supply.py │ │ ├── lenovo_xclarity_system.py │ │ ├── lenovo_xclarity_temperatures.py │ │ ├── lenovo_xclarity_voltages.py │ │ └── utils │ │ │ ├── fan.py │ │ │ └── lenovo_xclarity.py │ ├── agents │ │ └── special │ │ │ ├── agent_lenovo_xclarity │ │ │ └── lenovo_utils.py │ ├── checks │ │ └── agent_lenovo_xclarity │ ├── lenovo_xclarity-3.0.2.mkp │ ├── readme.md │ └── web │ │ └── plugins │ │ ├── metrics │ │ └── xclarity.py │ │ └── wato │ │ ├── fan.py │ │ └── lenovo_xclarity_datasource_programs.py ├── nutanix │ ├── agent_based │ │ ├── prism_alerts.py │ │ ├── prism_cluster_cpu.py │ │ ├── prism_cluster_io.py │ │ ├── prism_cluster_mem.py │ │ ├── prism_containers.py │ │ ├── prism_ha.py │ │ ├── prism_host.py │ │ ├── prism_host_disks.py │ │ ├── prism_host_networks.py │ │ ├── prism_host_stats.py │ │ ├── prism_host_usage.py │ │ ├── prism_hosts.py │ │ ├── prism_info.py │ │ ├── prism_protection_domains.py │ │ ├── prism_remote_support.py │ │ ├── prism_storage_pools.py │ │ ├── prism_vm.py │ │ ├── prism_vm_stats.py │ │ ├── prism_vm_status.py │ │ ├── prism_vm_tools.py │ │ ├── prism_vms.py │ │ └── utils │ │ │ └── prism.py │ ├── checkman │ │ ├── prism_alerts │ │ ├── prism_cluster_cpu │ │ ├── prism_cluster_io │ │ ├── prism_cluster_mem │ │ ├── prism_containers │ │ ├── prism_ha │ │ ├── prism_host_disks │ │ ├── prism_host_stats │ │ ├── prism_host_stats_cpu │ │ ├── prism_host_stats_mem │ │ ├── prism_host_usage │ │ ├── prism_hosts │ │ ├── prism_info │ │ ├── prism_protection_domains │ │ ├── prism_remote_support │ │ ├── prism_storage_pools │ │ ├── prism_vm_stats │ │ ├── prism_vm_stats_cpu │ │ ├── prism_vm_stats_mem │ │ ├── prism_vm_status │ │ ├── prism_vm_tools │ │ └── prism_vms │ ├── checks │ │ ├── prism_alerts │ │ ├── prism_containers │ │ ├── prism_info │ │ └── prism_storage_pools │ ├── lib │ │ └── check_mk │ │ │ └── special_agents │ │ │ └── agent_prism.py │ ├── nutanix_prism-5.0.10.mkp │ ├── readme.md │ └── web │ │ └── plugins │ │ ├── metrics │ │ └── prism.py │ │ └── wato │ │ ├── prism_alerts.py │ │ ├── prism_cluster_cpu.py │ │ ├── prism_cluster_io.py │ │ ├── prism_cluster_mem.py │ │ ├── prism_host_cpu.py │ │ ├── prism_host_disks.py │ │ ├── prism_host_mem.py │ │ ├── prism_hosts.py │ │ ├── prism_protection_domains.py │ │ ├── prism_remote_support.py │ │ ├── prism_vm_cpu.py │ │ ├── prism_vm_memory.py │ │ ├── prism_vm_status.py │ │ ├── prism_vm_tools.py │ │ └── prism_vms.py ├── redfish │ ├── agent_based │ │ ├── inv_redfish_firmware.py │ │ ├── inv_redfish_firmware_hpe_ilo4.py │ │ ├── redfish_arraycontrollers.py │ │ ├── redfish_arraycontrollers_dell.py │ │ ├── redfish_arraycontrollers_hpe.py │ │ ├── redfish_drives.py │ │ ├── redfish_ethernetinterfaces.py │ │ ├── redfish_fans.py │ │ ├── redfish_logicaldrives.py │ │ ├── redfish_mains.py │ │ ├── redfish_memory.py │ │ ├── redfish_memory_summary.py │ │ ├── redfish_networkadapters.py │ │ ├── redfish_networkports.py │ │ ├── redfish_outlets.py │ │ ├── redfish_physicaldrives.py │ │ ├── redfish_power.py │ │ ├── redfish_processors.py │ │ ├── redfish_psu.py │ │ ├── redfish_sensors.py │ │ ├── redfish_storage.py │ │ ├── redfish_system.py │ │ ├── redfish_temperatures.py │ │ ├── redfish_thermal.py │ │ ├── redfish_voltage.py │ │ ├── redfish_volumes.py │ │ └── utils │ │ │ └── redfish.py │ ├── agents │ │ └── special │ │ │ ├── agent_redfish │ │ │ └── agent_redfish_power │ ├── checks │ │ └── agent_redfish │ ├── readme.md │ ├── redfish-2.2.60.mkp │ └── web │ │ └── plugins │ │ ├── metrics │ │ └── redfish.py │ │ ├── views │ │ └── inv_redfish_firmware_hpe.py │ │ └── wato │ │ ├── redfish_datasource_programs.py │ │ └── redfish_outlets.py ├── sophosxg │ ├── agent_based │ │ ├── sophosxg_currenthastate.py │ │ ├── sophosxg_hastate.py │ │ ├── sophosxg_lic.py │ │ ├── sophosxg_peerhastate.py │ │ ├── sophosxg_srv.py │ │ └── sophosxg_version.py │ ├── sophosxg-1.3.1.mkp │ └── web │ │ └── plugins │ │ └── wato │ │ ├── sophosxg_lic.py │ │ ├── sophosxg_srv.py │ │ └── sophosxg_version.py └── win_firewall_status │ ├── agent_based │ └── win_firewall_status.py │ ├── agents │ └── windows │ │ └── plugins │ │ └── win_firewall_status.ps1 │ ├── lib │ └── check_mk │ │ └── base │ │ └── cee │ │ └── plugins │ │ └── bakery │ │ └── win_firewall_status.py │ ├── web │ └── plugins │ │ └── wato │ │ ├── win_firewall_status.py │ │ └── win_firewall_status_cee.py │ └── win_firewall_status-2.2.0.mkp ├── check plugins 2.3 ├── arcserve_backup2 │ ├── agents │ │ └── windows │ │ │ └── plugins │ │ │ └── arcserve_backup2.ps1 │ ├── arcserve_backup2-1.1.1.mkp │ ├── cmk_addons_plugins │ │ └── arcserve_backup2 │ │ │ ├── agent_based │ │ │ └── arcserve_backup2.py │ │ │ └── rulesets │ │ │ └── arcserve_backup2_cee.py │ ├── lib │ │ └── python3 │ │ │ └── cmk │ │ │ └── base │ │ │ └── cee │ │ │ └── plugins │ │ │ └── bakery │ │ │ └── arcserve_backup2.py │ └── readme.md ├── arcserve_udp │ ├── agents │ │ └── windows │ │ │ └── plugins │ │ │ └── arcserve_udp.ps1 │ ├── arcserve_udp-2.2.2.mkp │ ├── cmk_addons_plugins │ │ └── arcserve_udp │ │ │ ├── agent_based │ │ │ ├── udp_backup.py │ │ │ └── udp_jobs.py │ │ │ └── rulesets │ │ │ ├── arcserve_udp.py │ │ │ └── arcserve_udp_cee.py │ ├── lib │ │ └── check_mk │ │ │ └── base │ │ │ └── cee │ │ │ └── plugins │ │ │ └── bakery │ │ │ └── arcserve_udp.py │ └── readme.md ├── aruba_cx_sensors │ ├── aruba_cx_sensors-2.4.4.mkp │ ├── cmk_addons_plugins │ │ └── aruba_cx_sensors │ │ │ ├── agent_based │ │ │ ├── aruba_cx_fan.py │ │ │ ├── aruba_cx_psu.py │ │ │ └── aruba_cx_temp.py │ │ │ ├── aruba_cx.py │ │ │ └── lib.py │ └── readme.md ├── aruba_instant_wlan │ ├── aruba_instant_wlan-1.2.3.mkp │ ├── cmk_addons_plugins │ │ └── aruba_instant_wlan │ │ │ └── agent_based │ │ │ ├── aruba_instant_wlc_aps.py │ │ │ ├── aruba_instant_wlc_clients.py │ │ │ └── aruba_instant_wlc_connected_clients.py │ └── readme.md ├── bacs_battery │ ├── bacs_battery-2.2.1.mkp │ ├── cmk_addons_plugins │ │ └── bacs_battery │ │ │ ├── agent_based │ │ │ ├── bacs_battery.py │ │ │ └── bacs_string.py │ │ │ └── rulesets │ │ │ └── bacs_battery_parameters.py │ └── readme.md ├── dell_powervault_me4 │ ├── cmk_addons_plugins │ │ └── dell_powervault_me4 │ │ │ ├── agent_based │ │ │ ├── dell_powervault_me4_controller_statistics.py │ │ │ ├── dell_powervault_me4_controllers.py │ │ │ ├── dell_powervault_me4_disks.py │ │ │ ├── dell_powervault_me4_fans.py │ │ │ ├── dell_powervault_me4_frus.py │ │ │ ├── dell_powervault_me4_pools.py │ │ │ ├── dell_powervault_me4_ports.py │ │ │ ├── dell_powervault_me4_power_supplies.py │ │ │ ├── dell_powervault_me4_sensor_status.py │ │ │ ├── dell_powervault_me4_system.py │ │ │ ├── dell_powervault_me4_volume_statistics.py │ │ │ └── dell_powervault_me4_volumes.py │ │ │ ├── lib.py │ │ │ ├── libexec │ │ │ └── agent_dellpowervault │ │ │ ├── rulesets │ │ │ └── dell_powervault_datasource_programs.py │ │ │ ├── server_side_calls │ │ │ └── agent_dellpowervault.py │ │ │ └── special_agents │ │ │ └── agent_dellpowervault.py │ ├── dell_powervault_me4-3.4.3.mkp │ └── readme.md ├── extreme_hipath_wlc │ ├── cmk_addons_plugins │ │ └── extreme_hipath_wlc │ │ │ ├── agent_based │ │ │ ├── extreme_wlc_aps.py │ │ │ └── extreme_wlc_clients.py │ │ │ └── rulesets │ │ │ └── extreme_wlc_aps.py │ ├── extreme_wlc-2.4.5.mkp │ └── readme.md ├── extreme_vsp_sensors │ ├── cmk_addons_plugins │ │ └── extreme_vsp_sensors │ │ │ └── agent_based │ │ │ ├── extreme_vsp_cpu.py │ │ │ ├── extreme_vsp_fans.py │ │ │ ├── extreme_vsp_mem.py │ │ │ ├── extreme_vsp_psu.py │ │ │ └── extreme_vsp_temp.py │ ├── extreme_vsp_sensors-1.2.1.mkp │ └── readme.md ├── fail2ban │ ├── agents │ │ └── plugins │ │ │ └── fail2ban │ ├── cmk_addons_plugins │ │ └── fail2ban │ │ │ ├── agent_based │ │ │ └── fail2ban.py │ │ │ ├── graphing │ │ │ └── fail2ban.py │ │ │ └── rulesets │ │ │ └── fail2ban.py │ ├── fail2ban-2.3.1.mkp │ └── readme.md ├── fortigate_update │ ├── cmk_addons_plugins │ │ └── fortigate_update │ │ │ ├── agent_based │ │ │ └── fortigate_update.py │ │ │ └── rulesets │ │ │ └── fortigate_updates.py │ ├── fortigate_update-2.4.2.mkp │ └── readme.md ├── hpe_3par_ssh │ ├── cmk_addons_plugins │ │ └── threepar_ssh │ │ │ ├── agent_based │ │ │ ├── 3par_cage.py │ │ │ ├── 3par_ld.py │ │ │ ├── 3par_node.py │ │ │ ├── 3par_pd.py │ │ │ ├── 3par_ps.py │ │ │ └── 3par_vv.py │ │ │ ├── libexec │ │ │ └── agent_threepar_ssh │ │ │ ├── rulesets │ │ │ └── datasource_program.py │ │ │ ├── server_side_calls │ │ │ └── special_agent.py │ │ │ └── special_agents │ │ │ └── agent_threepar_ssh.py │ ├── hpe_3par_ssh-2.3.3.mkp │ └── readme.md ├── huawei_dorado │ ├── cmk_addons_plugins │ │ └── huawei_dorado │ │ │ ├── agent_based │ │ │ ├── huawei_dorado_backup_power.py │ │ │ ├── huawei_dorado_controller.py │ │ │ ├── huawei_dorado_disk.py │ │ │ ├── huawei_dorado_diskpool.py │ │ │ ├── huawei_dorado_enclosure.py │ │ │ ├── huawei_dorado_eth_port.py │ │ │ ├── huawei_dorado_fan.py │ │ │ ├── huawei_dorado_fc_port.py │ │ │ ├── huawei_dorado_intf_module.py │ │ │ ├── huawei_dorado_lun.py │ │ │ ├── huawei_dorado_power.py │ │ │ ├── huawei_dorado_sas_port.py │ │ │ └── huawei_dorado_storagepool.py │ │ │ ├── lib.py │ │ │ ├── libexec │ │ │ └── agent_huawei_dorado │ │ │ ├── rulesets │ │ │ └── datasource_program.py │ │ │ ├── server_side_calls │ │ │ └── special_agent.py │ │ │ └── special_agents │ │ │ └── agent_huawei_dorado.py │ ├── huawei_dorado-1.1.2.mkp │ └── readme.md ├── huawei_wlc │ ├── cmk_addons_plugins │ │ └── collection │ │ │ └── agent_based │ │ │ └── huawei_wlc_clients.py │ ├── huawei_wlc-1.1.0.mkp │ └── readme.md ├── hyperv_cluster │ ├── agents │ │ └── windows │ │ │ └── plugins │ │ │ ├── hyperv_cluster.ps1 │ │ │ ├── hyperv_host.ps1 │ │ │ └── hyperv_host_csv_io.ps1 │ ├── cmk_addons_plugins │ │ └── hyperv │ │ │ ├── agent_based │ │ │ ├── hyperv_cluster_csv.py │ │ │ ├── hyperv_cluster_disks.py │ │ │ ├── hyperv_cluster_general.py │ │ │ ├── hyperv_cluster_network.py │ │ │ ├── hyperv_cluster_nodes.py │ │ │ ├── hyperv_cluster_roles.py │ │ │ ├── hyperv_host_io_local.py │ │ │ ├── hyperv_host_io_remote.py │ │ │ ├── hyperv_vm_checkpoints.py │ │ │ ├── hyperv_vm_general.py │ │ │ ├── hyperv_vm_integration.py │ │ │ ├── hyperv_vm_nic.py │ │ │ ├── hyperv_vm_ram.py │ │ │ └── hyperv_vm_vhd.py │ │ │ ├── graphing │ │ │ └── hyperv.py │ │ │ ├── lib.py │ │ │ └── rulesets │ │ │ ├── hyperv_cluster_cee.py │ │ │ ├── hyperv_cluster_roles_wato.py │ │ │ ├── hyperv_vm_integration_wato.py │ │ │ └── hyperv_vms_guestinfos_cee.py │ ├── hyperv_cluster-3.3.11.mkp │ ├── lib │ │ └── check_mk │ │ │ └── base │ │ │ └── cee │ │ │ └── plugins │ │ │ └── bakery │ │ │ ├── hyperv_cluster.py │ │ │ └── hyperv_vms_guestinfos.py │ └── readme.md ├── macmon │ ├── cmk_addons_plugins │ │ └── macmon │ │ │ ├── agent_based │ │ │ └── macmon_unauth.py │ │ │ ├── libexec │ │ │ └── agent_macmon │ │ │ ├── rulesets │ │ │ └── macmon_special_agent.py │ │ │ ├── server_side_calls │ │ │ └── agent_macmon.py │ │ │ └── special_agents │ │ │ └── agent_macmon.py │ ├── macmon_checks-2.1.0.mkp │ └── readme.md ├── nutanix │ ├── agents │ │ └── special │ │ │ ├── agent_prism │ │ │ └── agent_prism.py │ ├── prism_fix-1.0.1.mkp │ └── readme.md ├── oracle_ilom │ ├── cmk_addons_plugins │ │ └── oracle_ilom │ │ │ ├── agent_based │ │ │ └── oracle_ilom.py │ │ │ ├── lib.py │ │ │ └── rulesets │ │ │ └── oracle_ilom_parameters.py │ ├── oracle_ilom-2.3.1.mkp │ └── readme.md ├── redfish │ ├── cmk_addons_plugins │ │ └── redfish │ │ │ ├── agent_based │ │ │ ├── inv_redfish_firmware.py │ │ │ ├── redfish_arraycontrollers.py │ │ │ ├── redfish_arraycontrollers_generic.py │ │ │ ├── redfish_arraycontrollers_hpe.py │ │ │ ├── redfish_drives.py │ │ │ ├── redfish_ethernetinterfaces.py │ │ │ ├── redfish_fans.py │ │ │ ├── redfish_logicaldrives.py │ │ │ ├── redfish_mains.py │ │ │ ├── redfish_memory.py │ │ │ ├── redfish_memory_summary.py │ │ │ ├── redfish_networkadapters.py │ │ │ ├── redfish_networkports.py │ │ │ ├── redfish_outlets.py │ │ │ ├── redfish_physicaldrives.py │ │ │ ├── redfish_power.py │ │ │ ├── redfish_processors.py │ │ │ ├── redfish_psu.py │ │ │ ├── redfish_sensors.py │ │ │ ├── redfish_storage.py │ │ │ ├── redfish_system.py │ │ │ ├── redfish_temperatures.py │ │ │ ├── redfish_thermal.py │ │ │ ├── redfish_voltage.py │ │ │ └── redfish_volumes.py │ │ │ ├── graphing │ │ │ ├── metrics.py │ │ │ ├── perfometer.py │ │ │ └── translation.py │ │ │ ├── lib.py │ │ │ ├── libexec │ │ │ ├── agent_redfish │ │ │ └── agent_redfish_power │ │ │ ├── rulesets │ │ │ ├── datasource_program.py │ │ │ ├── redfish_ethernetinterfaces.py │ │ │ └── redfish_outlets.py │ │ │ ├── server_side_calls │ │ │ └── special_agent.py │ │ │ ├── special_agents │ │ │ ├── agent_redfish.py │ │ │ └── agent_redfish_power.py │ │ │ └── tools.py │ ├── links.md │ ├── readme.md │ ├── redfish-2.3.38.mkp │ ├── redfish-2.3.70.mkp │ ├── redfish-2.3.77.mkp │ └── web │ │ └── plugins │ │ └── views │ │ └── inv_redfish_firmware.py ├── sophosxg │ ├── cmk_addons_plugins │ │ └── sophosxg │ │ │ ├── agent_based │ │ │ ├── sophosxg_currenthastate.py │ │ │ ├── sophosxg_hastate.py │ │ │ ├── sophosxg_lic.py │ │ │ ├── sophosxg_peerhastate.py │ │ │ ├── sophosxg_srv.py │ │ │ └── sophosxg_version.py │ │ │ └── rulesets │ │ │ ├── sophosxg_lic.py │ │ │ ├── sophosxg_srv.py │ │ │ └── sophosxg_version.py │ ├── readme.md │ └── sophosxg-2.4.1.mkp ├── win_firewall_status │ ├── agents │ │ └── windows │ │ │ └── plugins │ │ │ └── win_firewall_status.ps1 │ ├── cmk_addons_plugins │ │ └── win_firewall_status │ │ │ ├── agent_based │ │ │ └── win_firewall_status.py │ │ │ └── rulesets │ │ │ ├── win_firewall_status.py │ │ │ └── win_firewall_status_cee.py │ ├── lib │ │ └── check_mk │ │ │ └── base │ │ │ └── cee │ │ │ └── plugins │ │ │ └── bakery │ │ │ └── win_firewall_status.py │ ├── readme.md │ └── win_firewall_status-2.4.4.mkp ├── windows_dedup │ ├── agents │ │ └── windows │ │ │ └── plugins │ │ │ └── windows_dedup.ps1 │ ├── cmk_addons_plugins │ │ └── windows_dedup │ │ │ ├── agent_based │ │ │ └── windows_dedup.py │ │ │ ├── graphing │ │ │ └── windows_dedup.py │ │ │ └── rulesets │ │ │ └── windows_dedup_cee.py │ ├── lib │ │ └── python3 │ │ │ └── cmk │ │ │ └── base │ │ │ └── cee │ │ │ └── plugins │ │ │ └── bakery │ │ │ └── windows_dedup.py │ ├── readme.md │ └── windows_dedup-1.3.2.mkp └── windows_patch_day │ ├── agents │ └── windows │ │ ├── cfg_examples │ │ └── windows_patch_day.cfg │ │ └── plugins │ │ └── windows_patch_day.ps1 │ ├── cmk_addons_plugins │ └── windows_patch_day │ │ ├── agent_based │ │ └── windows_patch_day.py │ │ └── rulesets │ │ ├── windows_patch_day.py │ │ └── windows_patch_day_cee.py │ ├── lib │ └── check_mk │ │ └── base │ │ └── cee │ │ └── plugins │ │ └── bakery │ │ └── windows_patch_day.py │ ├── readme.md │ └── windows_patch_day-2.3.7.mkp ├── check_mk_erweiterungen └── bi_status_ausgabe │ ├── bi.py.1.4.0.diff │ ├── bi.py.diff │ └── readme.md ├── checks ├── dell_compellent │ ├── checks │ │ ├── dell_compellent_disks │ │ ├── dell_compellent_encl │ │ ├── dell_compellent_fans │ │ ├── dell_compellent_psu │ │ ├── dell_compellent_temp │ │ └── fan_rpm.include │ └── web │ │ └── plugins │ │ └── wato │ │ └── hw_fans_rpm_parameters.py ├── eva_checks │ ├── checks │ │ ├── eva_array_controller_status │ │ ├── eva_array_status │ │ ├── eva_host_port_statistics │ │ ├── eva_physical_disk_groups │ │ └── eva_virtual_disk_groups │ └── readme.md ├── exchange_db │ ├── checks │ │ └── Ex2010_MBDB_Info │ └── plugins │ │ └── Ex2010_MBDB_Info.ps1 ├── f5_bigip_certs │ └── f5_bigip_certs.py ├── fileinfo_extended │ ├── agent │ │ └── windows │ │ │ └── plugins │ │ │ └── fileinfo.ps1 │ └── readme.md ├── force10_fan │ └── checks │ │ └── force10_fan ├── force10_psu │ └── checks │ │ └── force10_psu ├── hp_procurve │ ├── hp_procurve_cpu │ ├── hp_procurve_mem │ ├── hp_procurve_sensors │ └── readme.md ├── hyper-v │ ├── disabled-timesync │ │ ├── checks │ │ │ └── hyperv_disabletimesync │ │ └── plugins │ │ │ └── Disabletimesync.ps1 │ └── dynamic-vhdx │ │ ├── checks │ │ └── hyperv_dynamicvhdx │ │ └── plugins │ │ └── Find_dynamic_VHDx.ps1 ├── hyperv_cluster │ ├── 1.x │ │ ├── agents │ │ │ ├── bakery │ │ │ │ ├── hyperv_new │ │ │ │ └── hyperv_vms_guestinfos │ │ │ └── windows │ │ │ │ └── plugins │ │ │ │ ├── hyperv_cluster.ps1 │ │ │ │ ├── hyperv_host.ps1 │ │ │ │ └── hyperv_host_csv_io.ps1 │ │ ├── checks │ │ │ ├── hyperv.include │ │ │ ├── hyperv_cluster_csv │ │ │ ├── hyperv_cluster_disks │ │ │ ├── hyperv_cluster_general │ │ │ ├── hyperv_cluster_network │ │ │ ├── hyperv_cluster_nodes │ │ │ ├── hyperv_cluster_roles │ │ │ ├── hyperv_host_io_local │ │ │ ├── hyperv_host_io_remote │ │ │ ├── hyperv_vm_checkpoints │ │ │ ├── hyperv_vm_general │ │ │ ├── hyperv_vm_integration │ │ │ ├── hyperv_vm_nic │ │ │ ├── hyperv_vm_ram │ │ │ └── hyperv_vm_vhd │ │ └── web │ │ │ └── plugins │ │ │ ├── metrics │ │ │ └── hyperv.py │ │ │ └── wato │ │ │ ├── hyper_vms_guestinfos_deploy.py │ │ │ ├── hyperv_new_deploy.py │ │ │ └── hyperv_vm_integration_wato.py │ ├── 2.0 │ │ ├── agents │ │ │ └── windows │ │ │ │ └── plugins │ │ │ │ ├── hyperv_cluster_status.ps1 │ │ │ │ ├── hyperv_host_csv_io.ps1 │ │ │ │ └── hyperv_host_vms.ps1 │ │ ├── checkman │ │ │ ├── hyperv_cluster_csv │ │ │ ├── hyperv_cluster_disks │ │ │ ├── hyperv_cluster_general │ │ │ ├── hyperv_cluster_network │ │ │ ├── hyperv_cluster_nodes │ │ │ ├── hyperv_cluster_roles │ │ │ ├── hyperv_host_io_local │ │ │ ├── hyperv_host_io_remote │ │ │ ├── hyperv_vm_checkpoints │ │ │ ├── hyperv_vm_general │ │ │ ├── hyperv_vm_general.running_on │ │ │ ├── hyperv_vm_integration │ │ │ ├── hyperv_vm_nic │ │ │ ├── hyperv_vm_ram │ │ │ └── hyperv_vm_vhd │ │ ├── checks │ │ │ ├── hyperv.include │ │ │ ├── hyperv_cluster_csv │ │ │ ├── hyperv_cluster_disks │ │ │ ├── hyperv_cluster_general │ │ │ ├── hyperv_cluster_network │ │ │ ├── hyperv_cluster_nodes │ │ │ ├── hyperv_cluster_roles │ │ │ ├── hyperv_host_io_local │ │ │ ├── hyperv_host_io_remote │ │ │ ├── hyperv_node │ │ │ ├── hyperv_vm_checkpoints │ │ │ ├── hyperv_vm_general │ │ │ ├── hyperv_vm_integration │ │ │ ├── hyperv_vm_nic │ │ │ ├── hyperv_vm_ram │ │ │ └── hyperv_vm_vhd │ │ ├── lib │ │ │ └── check_mk │ │ │ │ └── base │ │ │ │ └── cee │ │ │ │ └── plugins │ │ │ │ └── bakery │ │ │ │ └── win_hyperv.py │ │ └── web │ │ │ └── plugins │ │ │ ├── metrics │ │ │ └── hyperv.py │ │ │ └── wato │ │ │ ├── hyperv_parameters.py │ │ │ └── win_hyperv.py │ ├── hyperv_cluster-1.2.mkp │ └── hyperv_monitoring-2.4.mkp ├── knoerr_schrank_status │ ├── checks │ │ ├── knoerr_coolloop_status │ │ └── knoerr_coolloop_temp │ ├── readme.md │ └── web_plugins_perfometer │ │ └── knoerr_temp.py ├── mikrotik │ └── mikrotik-0.5.mkp ├── mssql_ha │ ├── agents │ │ ├── bakery │ │ │ └── mssql │ │ └── windows │ │ │ └── plugins │ │ │ └── mssql.vbs │ ├── checks │ │ ├── mssql_blocked_sessions │ │ ├── mssql_config │ │ ├── mssql_counters │ │ ├── mssql_dbbackup │ │ ├── mssql_ha │ │ ├── mssql_ha2 │ │ ├── mssql_instance │ │ └── mssql_jobs │ ├── mssql_ha-1.3.mkp │ └── web │ │ └── plugins │ │ ├── metrics │ │ └── mssql_ha.py │ │ └── wato │ │ └── mssql_dbbackup.py ├── snmp_template │ ├── check_parameters_mein_check.py │ └── mein_check ├── tcp_conn_stats - Windows │ ├── agents │ │ └── windows │ │ │ └── plugins │ │ │ └── tcp_conn_stats.ps1 │ └── readme.md ├── ups_socomec_status │ └── checks │ │ └── ups_socomec_status ├── win_printers │ └── win_printers ├── win_tasks_german │ ├── checks │ │ └── windows_tasks │ └── plugin │ │ └── windows_tasks_deutsch.ps1 ├── windows_uptime │ ├── agents │ │ └── windows │ │ │ └── plugins │ │ │ └── uptime.ps1 │ └── readme.md └── yum │ ├── check │ └── yum │ └── plugin │ └── check_yum ├── classic-checks ├── check_mkevents │ ├── Makefile │ ├── check_mk-checks │ │ └── check_mkevents │ ├── check_mk-web-plugins-icons │ │ └── mkeventd.py │ ├── check_mkevents.cc │ └── check_mkevents_c └── smb_transfer │ └── smb_transfer ├── datasource-programms ├── agent_3par │ ├── agents │ │ └── special │ │ │ └── agent_3par │ ├── checks │ │ ├── 3par_cage │ │ ├── 3par_ld │ │ ├── 3par_node │ │ ├── 3par_pd │ │ ├── 3par_ps │ │ ├── 3par_vv │ │ └── agent_3par │ └── web │ │ └── plugins │ │ └── wato │ │ └── 3par_special_agent.py ├── agent_emcvnx │ ├── agent_emcvnx │ ├── agent_emcvnx.extension │ ├── emcvnx_disks │ ├── emcvnx_hba │ ├── emcvnx_hwstatus │ ├── emcvnx_hwstatus.extension │ ├── emcvnx_info │ └── emcvnx_raidgroups ├── agent_emcvnxe │ ├── agent │ │ └── agent_emcvnxe.py │ └── checks │ │ ├── emcvnxe_bat │ │ ├── emcvnxe_ccard │ │ ├── emcvnxe_dae │ │ ├── emcvnxe_disk │ │ ├── emcvnxe_dpe │ │ ├── emcvnxe_info │ │ ├── emcvnxe_iomodule │ │ ├── emcvnxe_lcc │ │ ├── emcvnxe_mm │ │ ├── emcvnxe_ps │ │ ├── emcvnxe_sp │ │ └── emcvnxe_ssd ├── agent_ipmi │ ├── agent_ipmi │ ├── readme.md │ └── remote-ipmi.png └── agent_netapp │ ├── agents │ └── special │ │ └── agent_netapp │ ├── checks │ ├── netapp_api.include │ ├── netapp_api_bridges │ ├── netapp_api_environment │ ├── netapp_api_if │ ├── netapp_api_if_status │ ├── netapp_api_qtree_quota │ ├── netapp_api_volumes │ └── netapp_api_vs_status │ ├── netapp_update-1.2.mkp │ └── web │ └── plugins │ ├── metrics │ └── netapp_metrics.py │ └── wato │ ├── netapp_api_vs_status.py │ └── netapp_volumes_check_parameters.py ├── erweiterungen-webseite ├── agents-bakery-win_printers.py ├── wato_geo_fields-1.0.mkp └── web-plugins-wato-win_printers_bakery.py ├── local-checks ├── exchange │ ├── exchange-local-checks.ps1 │ └── exchange_oldest_item.ps1 ├── filecount │ ├── file_count.sh │ └── readme.md ├── klimate │ ├── klima.py │ └── readme.md ├── local_check_bi │ └── check_bi_local.py ├── office365_license │ └── office365_license.ps1 ├── rdp-user │ └── rdp_user_count_local.cmd ├── sep_sesam │ ├── check_sepsesam - aufruf Beispiel.txt │ ├── check_sepsesam - readme.txt │ └── check_sepsesam.pl ├── ups_webscrapping │ ├── ups.py │ └── usv_abfrage_ueber_weboberflaeche.pdf ├── usb_devices │ ├── agents-bakery-wmi_usb │ ├── web-plugins-wato-wmi_usb_bakery.py │ └── wmi_usb.vbs └── user_count │ ├── readme.md │ └── user_count.sh ├── mkp_only ├── cmciii_fix-1.0.mkp ├── mac_inventory-1.0.mkp └── win_oracle_deply-1.1.mkp ├── plugins ├── mssql_availabilitygroup │ ├── agents │ │ ├── bakery │ │ │ └── mssql_availability │ │ └── windows │ │ │ └── plugins │ │ │ └── mssql_availabilitygroup.ps1 │ └── web │ │ └── plugins │ │ └── wato │ │ └── bakery_mssql_availability.py ├── mssql_jobs │ ├── agents │ │ ├── bakery │ │ │ └── mssql_jobs │ │ └── windows │ │ │ └── plugins │ │ │ └── mssql_jobs.vbs │ └── web │ │ └── plugins │ │ └── wato │ │ └── bakery_mssql_job.py └── mssql_new │ ├── agents │ ├── bakery │ │ └── mssql │ └── windows │ │ └── plugins │ │ └── mssql.vbs │ └── checks │ ├── mssql_config │ ├── mssql_dbbackup │ ├── mssql_ha │ └── mssql_jobs ├── problems-and-bugs ├── esx_vsphere_counter ├── illegal_character_hardware-software_inventory │ ├── example.json │ ├── problem_section.ps1 │ └── readme.md └── netapp_api_snapshot_sizes │ ├── agent_netapp │ ├── agent_netapp.diff │ ├── netapp_api_snapshots │ └── netapp_api_snapshots.diff ├── readme.md ├── templates 2.0 └── generic_agent_based_json_output │ └── agent_based │ └── my_check.py ├── templates pre 2.0 ├── multi_item_agent_check │ ├── agents_bakery │ │ └── multiitem_check │ ├── agents_plugins │ │ └── multiitem_check.ps1 │ ├── checks │ │ └── multiitem_check │ └── web_plugins_wato │ │ ├── multiitem_check_deployment.py │ │ └── multiitem_check_param.py ├── single_item_agent_check │ ├── agents_bakery │ │ └── singleitem_check │ ├── agents_plugins │ │ └── checkname.ps1 │ ├── checks │ │ └── singleitem_check │ └── web_plugins_wato │ │ └── singleitem_check_deployment.py ├── snmp_multi_item_check │ └── checks │ │ └── multivalue_check ├── snmp_multi_item_check_and_wato │ ├── checks │ │ └── multiitem_check │ └── web_plugins_wato │ │ └── multiitem_check_param.py └── snmp_single_item_check │ ├── checks │ └── singleitem_check │ └── web_plugins_wato │ └── singlevalue_check_params.py └── tools ├── agent_deployment_raw ├── agent_deployment.ps1 └── hostlist.txt ├── cisco_switch_config_backup └── config_backup.py ├── gitea_integration ├── GITEA.hook ├── gitea.init └── readme.md ├── import-with-host-check ├── readme.md └── wato_import.py ├── remote-datenübermittlung ├── Crontab-Empfang.txt ├── config.sh ├── data.sh ├── import_data_to_nagios.sh ├── postfix_snippet.txt ├── readme.md └── unpack.py └── voice_notify ├── etc-asterisk └── extensions_voicealerts.conf ├── omd-sites-sitename-local-bin └── call.pl ├── omd-sites-sitename-local-share-check_mk-notifications └── voice ├── usr-local-share-asterisk-sounds ├── acknowledge.wav ├── acknowledged.wav ├── disablednotifications.wav └── disablenotification.wav └── usr-share-asterisk-agi-bin ├── acknowledge.agi └── disablenotifications.agi /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/.pylintrc -------------------------------------------------------------------------------- /.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/.style.yapf -------------------------------------------------------------------------------- /Notifications/sms_gateway/notifications/sms2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/Notifications/sms_gateway/notifications/sms2 -------------------------------------------------------------------------------- /Notifications/sms_gateway/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/Notifications/sms_gateway/readme.md -------------------------------------------------------------------------------- /Notifications/voice_notification/original_voice_commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/Notifications/voice_notification/original_voice_commands.sh -------------------------------------------------------------------------------- /Notifications/voice_notification/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/Notifications/voice_notification/readme.md -------------------------------------------------------------------------------- /Notifications/voice_notification/voice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/Notifications/voice_notification/voice -------------------------------------------------------------------------------- /Notifications/voice_notification/voice_isdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/Notifications/voice_notification/voice_isdn -------------------------------------------------------------------------------- /check plugins 1.6/apc_pdu/apc_pdu-1.2.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/apc_pdu/apc_pdu-1.2.mkp -------------------------------------------------------------------------------- /check plugins 1.6/apc_pdu/checkman/apc_pdu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/apc_pdu/checkman/apc_pdu -------------------------------------------------------------------------------- /check plugins 1.6/apc_pdu/checks/apc_pdu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/apc_pdu/checks/apc_pdu -------------------------------------------------------------------------------- /check plugins 1.6/apc_pdu/web/plugins/wato/apc_pdu_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/apc_pdu/web/plugins/wato/apc_pdu_parameters.py -------------------------------------------------------------------------------- /check plugins 1.6/bacs_battery/bacs_battery-1.4.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/bacs_battery/bacs_battery-1.4.mkp -------------------------------------------------------------------------------- /check plugins 1.6/bacs_battery/checks/bacs_battery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/bacs_battery/checks/bacs_battery -------------------------------------------------------------------------------- /check plugins 1.6/bacs_battery/checks/bacs_string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/bacs_battery/checks/bacs_string -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/agents/special/agent_ilo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/agents/special/agent_ilo -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/checkman/ilo_api_cntrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/checkman/ilo_api_cntrl -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/checkman/ilo_api_cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/checkman/ilo_api_cpu -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/checkman/ilo_api_fans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/checkman/ilo_api_fans -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/checkman/ilo_api_general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/checkman/ilo_api_general -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/checkman/ilo_api_mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/checkman/ilo_api_mem -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/checkman/ilo_api_phydrv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/checkman/ilo_api_phydrv -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/checkman/ilo_api_power: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/checkman/ilo_api_power -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/checkman/ilo_api_raid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/checkman/ilo_api_raid -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/checkman/ilo_api_temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/checkman/ilo_api_temp -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/checks/agent_ilo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/checks/agent_ilo -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/checks/ilo_api_cntrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/checks/ilo_api_cntrl -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/checks/ilo_api_cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/checks/ilo_api_cpu -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/checks/ilo_api_fans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/checks/ilo_api_fans -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/checks/ilo_api_general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/checks/ilo_api_general -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/checks/ilo_api_mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/checks/ilo_api_mem -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/checks/ilo_api_phydrv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/checks/ilo_api_phydrv -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/checks/ilo_api_power: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/checks/ilo_api_power -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/checks/ilo_api_raid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/checks/ilo_api_raid -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/checks/ilo_api_temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/checks/ilo_api_temp -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/hpe_ilo-1.13.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/hpe_ilo-1.13.mkp -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/inventory/ilo_firmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/inventory/ilo_firmware -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/readme.md -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/web/plugins/metrics/ilo_api_fans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/web/plugins/metrics/ilo_api_fans.py -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/web/plugins/metrics/ilo_api_power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/web/plugins/metrics/ilo_api_power.py -------------------------------------------------------------------------------- /check plugins 1.6/hpe_ilo/web/plugins/views/ilo_firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/hpe_ilo/web/plugins/views/ilo_firmware.py -------------------------------------------------------------------------------- /check plugins 1.6/lenovo_xclarity/checks/agent_lenovo_xclarity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/lenovo_xclarity/checks/agent_lenovo_xclarity -------------------------------------------------------------------------------- /check plugins 1.6/lenovo_xclarity/checks/lenovo_xclarity.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/lenovo_xclarity/checks/lenovo_xclarity.include -------------------------------------------------------------------------------- /check plugins 1.6/lenovo_xclarity/checks/lenovo_xclarity_fans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/lenovo_xclarity/checks/lenovo_xclarity_fans -------------------------------------------------------------------------------- /check plugins 1.6/lenovo_xclarity/checks/lenovo_xclarity_voltages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/lenovo_xclarity/checks/lenovo_xclarity_voltages -------------------------------------------------------------------------------- /check plugins 1.6/lenovo_xclarity/lenovo_xclarity-1.2.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/lenovo_xclarity/lenovo_xclarity-1.2.mkp -------------------------------------------------------------------------------- /check plugins 1.6/lenovo_xclarity/lib/python/lenovo_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/lenovo_xclarity/lib/python/lenovo_utils.py -------------------------------------------------------------------------------- /check plugins 1.6/nutanix_prism/agents/special/agent_prism: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/nutanix_prism/agents/special/agent_prism -------------------------------------------------------------------------------- /check plugins 1.6/nutanix_prism/checks/prism_host_usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/nutanix_prism/checks/prism_host_usage -------------------------------------------------------------------------------- /check plugins 1.6/nutanix_prism/checks/prism_hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/nutanix_prism/checks/prism_hosts -------------------------------------------------------------------------------- /check plugins 1.6/nutanix_prism/checks/prism_hw_disks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/nutanix_prism/checks/prism_hw_disks -------------------------------------------------------------------------------- /check plugins 1.6/nutanix_prism/checks/prism_remote_support: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/nutanix_prism/checks/prism_remote_support -------------------------------------------------------------------------------- /check plugins 1.6/nutanix_prism/checks/prism_storage_pools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/nutanix_prism/checks/prism_storage_pools -------------------------------------------------------------------------------- /check plugins 1.6/nutanix_prism/checks/prism_vm_stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/nutanix_prism/checks/prism_vm_stats -------------------------------------------------------------------------------- /check plugins 1.6/nutanix_prism/checks/prism_vm_tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/nutanix_prism/checks/prism_vm_tools -------------------------------------------------------------------------------- /check plugins 1.6/nutanix_prism/checks/prism_vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/nutanix_prism/checks/prism_vms -------------------------------------------------------------------------------- /check plugins 1.6/nutanix_prism/nutanix_prism-1.0.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/nutanix_prism/nutanix_prism-1.0.mkp -------------------------------------------------------------------------------- /check plugins 1.6/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/readme.md -------------------------------------------------------------------------------- /check plugins 1.6/win_cert/agents/bakery/win_cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/win_cert/agents/bakery/win_cert -------------------------------------------------------------------------------- /check plugins 1.6/win_cert/agents/windows/plugins/win_cert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/win_cert/agents/windows/plugins/win_cert.ps1 -------------------------------------------------------------------------------- /check plugins 1.6/win_cert/checks/win_cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/win_cert/checks/win_cert -------------------------------------------------------------------------------- /check plugins 1.6/win_cert/web/plugins/wato/win_cert_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/win_cert/web/plugins/wato/win_cert_deploy.py -------------------------------------------------------------------------------- /check plugins 1.6/win_cert/web/plugins/wato/win_cert_para.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/win_cert/web/plugins/wato/win_cert_para.py -------------------------------------------------------------------------------- /check plugins 1.6/win_cert/win_cert-1.6.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 1.6/win_cert/win_cert-1.6.mkp -------------------------------------------------------------------------------- /check plugins 2.0 ready/aruba_cpu_util/aruba_cpu-1.0.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0 ready/aruba_cpu_util/aruba_cpu-1.0.mkp -------------------------------------------------------------------------------- /check plugins 2.0 ready/aruba_cpu_util/checks/aruba_cpu_util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0 ready/aruba_cpu_util/checks/aruba_cpu_util -------------------------------------------------------------------------------- /check plugins 2.0 ready/dell_sc/agents/special/agent_dell_sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0 ready/dell_sc/agents/special/agent_dell_sc -------------------------------------------------------------------------------- /check plugins 2.0 ready/dell_sc/checks/dell_sc_volumes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0 ready/dell_sc/checks/dell_sc_volumes -------------------------------------------------------------------------------- /check plugins 2.0 ready/dell_sc/dell_sc_api_based-1.0.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0 ready/dell_sc/dell_sc_api_based-1.0.mkp -------------------------------------------------------------------------------- /check plugins 2.0 ready/lenovo_xclarity_snmp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0 ready/lenovo_xclarity_snmp/readme.md -------------------------------------------------------------------------------- /check plugins 2.0 ready/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0 ready/readme.md -------------------------------------------------------------------------------- /check plugins 2.0 ready/sonicwall/checks/sonicwall_conns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0 ready/sonicwall/checks/sonicwall_conns -------------------------------------------------------------------------------- /check plugins 2.0 ready/sonicwall/checks/sonicwall_cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0 ready/sonicwall/checks/sonicwall_cpu -------------------------------------------------------------------------------- /check plugins 2.0 ready/sonicwall/checks/sonicwall_mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0 ready/sonicwall/checks/sonicwall_mem -------------------------------------------------------------------------------- /check plugins 2.0 ready/sonicwall/checks/sonicwall_vpn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0 ready/sonicwall/checks/sonicwall_vpn -------------------------------------------------------------------------------- /check plugins 2.0 ready/sonicwall/sonicwall-2.0.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0 ready/sonicwall/sonicwall-2.0.mkp -------------------------------------------------------------------------------- /check plugins 2.0 ready/windows_tasks/checks/windows_tasks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0 ready/windows_tasks/checks/windows_tasks -------------------------------------------------------------------------------- /check plugins 2.0 ready/windows_tasks/windows_tasks-2.2.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0 ready/windows_tasks/windows_tasks-2.2.mkp -------------------------------------------------------------------------------- /check plugins 2.0/arcserve_udp/agent_based/udp_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/arcserve_udp/agent_based/udp_backup.py -------------------------------------------------------------------------------- /check plugins 2.0/arcserve_udp/agent_based/udp_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/arcserve_udp/agent_based/udp_jobs.py -------------------------------------------------------------------------------- /check plugins 2.0/arcserve_udp/arcserve_udp-2.1.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/arcserve_udp/arcserve_udp-2.1.mkp -------------------------------------------------------------------------------- /check plugins 2.0/arcserve_udp/demo_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/arcserve_udp/demo_output.txt -------------------------------------------------------------------------------- /check plugins 2.0/arcserve_udp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/arcserve_udp/readme.md -------------------------------------------------------------------------------- /check plugins 2.0/arcserve_udp/web/plugins/wato/arcserve_udp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/arcserve_udp/web/plugins/wato/arcserve_udp.py -------------------------------------------------------------------------------- /check plugins 2.0/dell_idrac_redfish/checks/agent_dell_idrac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/dell_idrac_redfish/checks/agent_dell_idrac -------------------------------------------------------------------------------- /check plugins 2.0/dell_idrac_redfish/dell_idrac_redfish-1.8.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/dell_idrac_redfish/dell_idrac_redfish-1.8.mkp -------------------------------------------------------------------------------- /check plugins 2.0/dell_idrac_redfish/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/dell_idrac_redfish/readme.md -------------------------------------------------------------------------------- /check plugins 2.0/dell_powervault_me4/checks/agent_dellpowervault: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/dell_powervault_me4/checks/agent_dellpowervault -------------------------------------------------------------------------------- /check plugins 2.0/dell_powervault_me4/dell_powervault_me4-2.5.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/dell_powervault_me4/dell_powervault_me4-2.5.mkp -------------------------------------------------------------------------------- /check plugins 2.0/extreme_vsp/agent_based/extreme_vsp_fans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/extreme_vsp/agent_based/extreme_vsp_fans.py -------------------------------------------------------------------------------- /check plugins 2.0/extreme_vsp/agent_based/extreme_vsp_psu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/extreme_vsp/agent_based/extreme_vsp_psu.py -------------------------------------------------------------------------------- /check plugins 2.0/extreme_vsp/agent_based/extreme_vsp_temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/extreme_vsp/agent_based/extreme_vsp_temp.py -------------------------------------------------------------------------------- /check plugins 2.0/extreme_vsp/extreme_vsp-1.0.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/extreme_vsp/extreme_vsp-1.0.mkp -------------------------------------------------------------------------------- /check plugins 2.0/extreme_wlc/agent_based/extreme_wlc_aps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/extreme_wlc/agent_based/extreme_wlc_aps.py -------------------------------------------------------------------------------- /check plugins 2.0/extreme_wlc/agent_based/utils/wlc_clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/extreme_wlc/agent_based/utils/wlc_clients.py -------------------------------------------------------------------------------- /check plugins 2.0/extreme_wlc/agent_based/wlc_clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/extreme_wlc/agent_based/wlc_clients.py -------------------------------------------------------------------------------- /check plugins 2.0/extreme_wlc/extreme_wlc-1.1.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/extreme_wlc/extreme_wlc-1.1.mkp -------------------------------------------------------------------------------- /check plugins 2.0/fortigate_updates/checks/fortigate_update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/fortigate_updates/checks/fortigate_update -------------------------------------------------------------------------------- /check plugins 2.0/fortigate_updates/fortigate_update-1.0.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/fortigate_updates/fortigate_update-1.0.mkp -------------------------------------------------------------------------------- /check plugins 2.0/hpe_ilo/agent_based/ilo_api_cntrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/hpe_ilo/agent_based/ilo_api_cntrl.py -------------------------------------------------------------------------------- /check plugins 2.0/hpe_ilo/agent_based/ilo_api_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/hpe_ilo/agent_based/ilo_api_cpu.py -------------------------------------------------------------------------------- /check plugins 2.0/hpe_ilo/agent_based/ilo_api_fans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/hpe_ilo/agent_based/ilo_api_fans.py -------------------------------------------------------------------------------- /check plugins 2.0/hpe_ilo/agent_based/ilo_api_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/hpe_ilo/agent_based/ilo_api_general.py -------------------------------------------------------------------------------- /check plugins 2.0/hpe_ilo/agent_based/ilo_api_mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/hpe_ilo/agent_based/ilo_api_mem.py -------------------------------------------------------------------------------- /check plugins 2.0/hpe_ilo/agent_based/ilo_api_phydrv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/hpe_ilo/agent_based/ilo_api_phydrv.py -------------------------------------------------------------------------------- /check plugins 2.0/hpe_ilo/agent_based/ilo_api_power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/hpe_ilo/agent_based/ilo_api_power.py -------------------------------------------------------------------------------- /check plugins 2.0/hpe_ilo/agent_based/ilo_api_power_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/hpe_ilo/agent_based/ilo_api_power_metrics.py -------------------------------------------------------------------------------- /check plugins 2.0/hpe_ilo/agent_based/ilo_api_raid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/hpe_ilo/agent_based/ilo_api_raid.py -------------------------------------------------------------------------------- /check plugins 2.0/hpe_ilo/agent_based/ilo_api_temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/hpe_ilo/agent_based/ilo_api_temp.py -------------------------------------------------------------------------------- /check plugins 2.0/hpe_ilo/agent_based/utils/hp_ilo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/hpe_ilo/agent_based/utils/hp_ilo.py -------------------------------------------------------------------------------- /check plugins 2.0/hpe_ilo/agents/special/agent_ilo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/hpe_ilo/agents/special/agent_ilo -------------------------------------------------------------------------------- /check plugins 2.0/hpe_ilo/checks/agent_ilo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/hpe_ilo/checks/agent_ilo -------------------------------------------------------------------------------- /check plugins 2.0/hpe_ilo/hpe_ilo-3.7.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/hpe_ilo/hpe_ilo-3.7.mkp -------------------------------------------------------------------------------- /check plugins 2.0/hpe_ilo/inventory/ilo_firmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/hpe_ilo/inventory/ilo_firmware -------------------------------------------------------------------------------- /check plugins 2.0/hpe_ilo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/hpe_ilo/readme.md -------------------------------------------------------------------------------- /check plugins 2.0/hpe_ilo/web/plugins/metrics/ilo_api_fans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/hpe_ilo/web/plugins/metrics/ilo_api_fans.py -------------------------------------------------------------------------------- /check plugins 2.0/hpe_ilo/web/plugins/metrics/ilo_api_power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/hpe_ilo/web/plugins/metrics/ilo_api_power.py -------------------------------------------------------------------------------- /check plugins 2.0/hpe_ilo/web/plugins/views/ilo_firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/hpe_ilo/web/plugins/views/ilo_firmware.py -------------------------------------------------------------------------------- /check plugins 2.0/lenovo_xclarity/agent_based/utils/fan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/lenovo_xclarity/agent_based/utils/fan.py -------------------------------------------------------------------------------- /check plugins 2.0/lenovo_xclarity/checks/agent_lenovo_xclarity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/lenovo_xclarity/checks/agent_lenovo_xclarity -------------------------------------------------------------------------------- /check plugins 2.0/lenovo_xclarity/lenovo_xclarity-2.9.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/lenovo_xclarity/lenovo_xclarity-2.9.mkp -------------------------------------------------------------------------------- /check plugins 2.0/lenovo_xclarity/web/plugins/wato/fan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/lenovo_xclarity/web/plugins/wato/fan.py -------------------------------------------------------------------------------- /check plugins 2.0/meraki/agents/special/agent_meraki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/meraki/agents/special/agent_meraki -------------------------------------------------------------------------------- /check plugins 2.0/netapp_eseries/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/netapp_eseries/readme.md -------------------------------------------------------------------------------- /check plugins 2.0/nextcloud/agent/special/agent_nextcloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nextcloud/agent/special/agent_nextcloud.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/agent_based/prism_alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/agent_based/prism_alerts.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/agent_based/prism_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/agent_based/prism_containers.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/agent_based/prism_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/agent_based/prism_host.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/agent_based/prism_host_disks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/agent_based/prism_host_disks.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/agent_based/prism_host_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/agent_based/prism_host_stats.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/agent_based/prism_host_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/agent_based/prism_host_usage.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/agent_based/prism_hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/agent_based/prism_hosts.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/agent_based/prism_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/agent_based/prism_info.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/agent_based/prism_remote_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/agent_based/prism_remote_support.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/agent_based/prism_storage_pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/agent_based/prism_storage_pools.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/agent_based/prism_vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/agent_based/prism_vm.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/agent_based/prism_vm_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/agent_based/prism_vm_stats.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/agent_based/prism_vm_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/agent_based/prism_vm_status.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/agent_based/prism_vm_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/agent_based/prism_vm_tools.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/agent_based/prism_vms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/agent_based/prism_vms.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/agent_based/utils/prism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/agent_based/utils/prism.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/agents/special/agent_prism: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/agents/special/agent_prism -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/checkman/prism_alerts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/checkman/prism_alerts -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/checkman/prism_containers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/checkman/prism_containers -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/checkman/prism_host_disks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/checkman/prism_host_disks -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/checkman/prism_host_stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/checkman/prism_host_stats -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/checkman/prism_host_stats_cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/checkman/prism_host_stats_cpu -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/checkman/prism_host_stats_mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/checkman/prism_host_stats_mem -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/checkman/prism_host_usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/checkman/prism_host_usage -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/checkman/prism_hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/checkman/prism_hosts -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/checkman/prism_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/checkman/prism_info -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/checkman/prism_remote_support: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/checkman/prism_remote_support -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/checkman/prism_storage_pools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/checkman/prism_storage_pools -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/checkman/prism_vm_stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/checkman/prism_vm_stats -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/checkman/prism_vm_stats_cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/checkman/prism_vm_stats_cpu -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/checkman/prism_vm_stats_mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/checkman/prism_vm_stats_mem -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/checkman/prism_vm_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/checkman/prism_vm_status -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/checkman/prism_vm_tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/checkman/prism_vm_tools -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/checkman/prism_vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/checkman/prism_vms -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/nutanix_prism-3.6-2.0.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/nutanix_prism-3.6-2.0.mkp -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/web/plugins/metrics/prism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/web/plugins/metrics/prism.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/web/plugins/wato/prism_alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/web/plugins/wato/prism_alerts.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/web/plugins/wato/prism_host_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/web/plugins/wato/prism_host_cpu.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/web/plugins/wato/prism_host_disks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/web/plugins/wato/prism_host_disks.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/web/plugins/wato/prism_host_mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/web/plugins/wato/prism_host_mem.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/web/plugins/wato/prism_hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/web/plugins/wato/prism_hosts.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/web/plugins/wato/prism_vm_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/web/plugins/wato/prism_vm_cpu.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/web/plugins/wato/prism_vm_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/web/plugins/wato/prism_vm_memory.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/web/plugins/wato/prism_vm_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/web/plugins/wato/prism_vm_status.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/web/plugins/wato/prism_vm_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/web/plugins/wato/prism_vm_tools.py -------------------------------------------------------------------------------- /check plugins 2.0/nutanix/web/plugins/wato/prism_vms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/nutanix/web/plugins/wato/prism_vms.py -------------------------------------------------------------------------------- /check plugins 2.0/oracle_ilom/agent_based/oracle_ilom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/oracle_ilom/agent_based/oracle_ilom.py -------------------------------------------------------------------------------- /check plugins 2.0/oracle_ilom/oracle_ilom-2.0.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/oracle_ilom/oracle_ilom-2.0.mkp -------------------------------------------------------------------------------- /check plugins 2.0/pure_fa/agent_based/pure_fa_drives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/pure_fa/agent_based/pure_fa_drives.py -------------------------------------------------------------------------------- /check plugins 2.0/pure_fa/agent_based/pure_fa_hgroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/pure_fa/agent_based/pure_fa_hgroups.py -------------------------------------------------------------------------------- /check plugins 2.0/pure_fa/agent_based/pure_fa_hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/pure_fa/agent_based/pure_fa_hosts.py -------------------------------------------------------------------------------- /check plugins 2.0/pure_fa/agent_based/pure_fa_hw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/pure_fa/agent_based/pure_fa_hw.py -------------------------------------------------------------------------------- /check plugins 2.0/pure_fa/agent_based/pure_fa_hw_inf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/pure_fa/agent_based/pure_fa_hw_inf.py -------------------------------------------------------------------------------- /check plugins 2.0/pure_fa/agent_based/pure_fa_hw_psu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/pure_fa/agent_based/pure_fa_hw_psu.py -------------------------------------------------------------------------------- /check plugins 2.0/pure_fa/agent_based/pure_fa_hw_temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/pure_fa/agent_based/pure_fa_hw_temp.py -------------------------------------------------------------------------------- /check plugins 2.0/pure_fa/agent_based/pure_fa_occ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/pure_fa/agent_based/pure_fa_occ.py -------------------------------------------------------------------------------- /check plugins 2.0/pure_fa/agent_based/pure_fa_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/pure_fa/agent_based/pure_fa_performance.py -------------------------------------------------------------------------------- /check plugins 2.0/pure_fa/agent_based/pure_fa_pods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/pure_fa/agent_based/pure_fa_pods.py -------------------------------------------------------------------------------- /check plugins 2.0/pure_fa/agent_based/pure_fa_volumes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/pure_fa/agent_based/pure_fa_volumes.py -------------------------------------------------------------------------------- /check plugins 2.0/pure_fa/agents/special/agent_purefa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/pure_fa/agents/special/agent_purefa -------------------------------------------------------------------------------- /check plugins 2.0/pure_fa/checks/agent_purefa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/pure_fa/checks/agent_purefa -------------------------------------------------------------------------------- /check plugins 2.0/pure_fa/pure_fa-1.0.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/pure_fa/pure_fa-1.0.mkp -------------------------------------------------------------------------------- /check plugins 2.0/pure_fa/web/plugins/wato/purefa_datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/pure_fa/web/plugins/wato/purefa_datasource.py -------------------------------------------------------------------------------- /check plugins 2.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/readme.md -------------------------------------------------------------------------------- /check plugins 2.0/redfish/agent_based/redfish_fans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/redfish/agent_based/redfish_fans.py -------------------------------------------------------------------------------- /check plugins 2.0/redfish/agent_based/redfish_logicaldrives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/redfish/agent_based/redfish_logicaldrives.py -------------------------------------------------------------------------------- /check plugins 2.0/redfish/agent_based/redfish_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/redfish/agent_based/redfish_memory.py -------------------------------------------------------------------------------- /check plugins 2.0/redfish/agent_based/redfish_memory_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/redfish/agent_based/redfish_memory_summary.py -------------------------------------------------------------------------------- /check plugins 2.0/redfish/agent_based/redfish_physicaldrives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/redfish/agent_based/redfish_physicaldrives.py -------------------------------------------------------------------------------- /check plugins 2.0/redfish/agent_based/redfish_power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/redfish/agent_based/redfish_power.py -------------------------------------------------------------------------------- /check plugins 2.0/redfish/agent_based/redfish_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/redfish/agent_based/redfish_processors.py -------------------------------------------------------------------------------- /check plugins 2.0/redfish/agent_based/redfish_psu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/redfish/agent_based/redfish_psu.py -------------------------------------------------------------------------------- /check plugins 2.0/redfish/agent_based/redfish_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/redfish/agent_based/redfish_storage.py -------------------------------------------------------------------------------- /check plugins 2.0/redfish/agent_based/redfish_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/redfish/agent_based/redfish_system.py -------------------------------------------------------------------------------- /check plugins 2.0/redfish/agent_based/redfish_temperatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/redfish/agent_based/redfish_temperatures.py -------------------------------------------------------------------------------- /check plugins 2.0/redfish/agent_based/redfish_thermal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/redfish/agent_based/redfish_thermal.py -------------------------------------------------------------------------------- /check plugins 2.0/redfish/agent_based/redfish_voltage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/redfish/agent_based/redfish_voltage.py -------------------------------------------------------------------------------- /check plugins 2.0/redfish/agent_based/utils/redfish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/redfish/agent_based/utils/redfish.py -------------------------------------------------------------------------------- /check plugins 2.0/redfish/agents/special/agent_redfish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/redfish/agents/special/agent_redfish -------------------------------------------------------------------------------- /check plugins 2.0/redfish/checks/agent_redfish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/redfish/checks/agent_redfish -------------------------------------------------------------------------------- /check plugins 2.0/redfish/redfish-1.4.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/redfish/redfish-1.4.mkp -------------------------------------------------------------------------------- /check plugins 2.0/redfish/web/plugins/metrics/redfish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/redfish/web/plugins/metrics/redfish.py -------------------------------------------------------------------------------- /check plugins 2.0/sccm_status/checks/sccm_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/sccm_status/checks/sccm_status -------------------------------------------------------------------------------- /check plugins 2.0/snmp_location/agent_based/snmp_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/snmp_location/agent_based/snmp_location.py -------------------------------------------------------------------------------- /check plugins 2.0/snmp_location/snmp_location-1.0.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/snmp_location/snmp_location-1.0.mkp -------------------------------------------------------------------------------- /check plugins 2.0/win_cert/agent_based/win_cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/win_cert/agent_based/win_cert.py -------------------------------------------------------------------------------- /check plugins 2.0/win_cert/agents/windows/cfg_examples/win_cert_cfg.ps1: -------------------------------------------------------------------------------- 1 | $expireInDays = 180 2 | $issuerstring = ".*" 3 | -------------------------------------------------------------------------------- /check plugins 2.0/win_cert/agents/windows/plugins/win_cert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/win_cert/agents/windows/plugins/win_cert.ps1 -------------------------------------------------------------------------------- /check plugins 2.0/win_cert/web/plugins/wato/win_cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/win_cert/web/plugins/wato/win_cert.py -------------------------------------------------------------------------------- /check plugins 2.0/win_cert/web/plugins/wato/win_cert_cee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/win_cert/web/plugins/wato/win_cert_cee.py -------------------------------------------------------------------------------- /check plugins 2.0/win_cert/win_cert-2.8.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/win_cert/win_cert-2.8.mkp -------------------------------------------------------------------------------- /check plugins 2.0/windows_dedup/checks/windows_dedup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/windows_dedup/checks/windows_dedup -------------------------------------------------------------------------------- /check plugins 2.0/windows_dedup/windows_dedup-1.0.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/windows_dedup/windows_dedup-1.0.mkp -------------------------------------------------------------------------------- /check plugins 2.0/windows_patch_day/windows_patch_day-1.9.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.0/windows_patch_day/windows_patch_day-1.9.mkp -------------------------------------------------------------------------------- /check plugins 2.1/bacs_battery/bacs_battery-1.4.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/bacs_battery/bacs_battery-1.4.mkp -------------------------------------------------------------------------------- /check plugins 2.1/bacs_battery/checks/bacs_battery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/bacs_battery/checks/bacs_battery -------------------------------------------------------------------------------- /check plugins 2.1/bacs_battery/checks/bacs_string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/bacs_battery/checks/bacs_string -------------------------------------------------------------------------------- /check plugins 2.1/dell_idrac_redfish/checks/agent_dell_idrac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/dell_idrac_redfish/checks/agent_dell_idrac -------------------------------------------------------------------------------- /check plugins 2.1/extreme_wlc/agent_based/extreme_wlc_aps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/extreme_wlc/agent_based/extreme_wlc_aps.py -------------------------------------------------------------------------------- /check plugins 2.1/extreme_wlc/extreme_wlc-1.2.1.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/extreme_wlc/extreme_wlc-1.2.1.mkp -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/agent_based/prism_alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/agent_based/prism_alerts.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/agent_based/prism_cluster_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/agent_based/prism_cluster_cpu.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/agent_based/prism_cluster_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/agent_based/prism_cluster_io.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/agent_based/prism_cluster_mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/agent_based/prism_cluster_mem.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/agent_based/prism_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/agent_based/prism_containers.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/agent_based/prism_ha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/agent_based/prism_ha.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/agent_based/prism_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/agent_based/prism_host.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/agent_based/prism_host_disks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/agent_based/prism_host_disks.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/agent_based/prism_host_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/agent_based/prism_host_stats.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/agent_based/prism_host_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/agent_based/prism_host_usage.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/agent_based/prism_hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/agent_based/prism_hosts.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/agent_based/prism_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/agent_based/prism_info.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/agent_based/prism_remote_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/agent_based/prism_remote_support.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/agent_based/prism_storage_pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/agent_based/prism_storage_pools.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/agent_based/prism_vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/agent_based/prism_vm.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/agent_based/prism_vm_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/agent_based/prism_vm_stats.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/agent_based/prism_vm_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/agent_based/prism_vm_status.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/agent_based/prism_vm_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/agent_based/prism_vm_tools.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/agent_based/prism_vms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/agent_based/prism_vms.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/agent_based/utils/prism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/agent_based/utils/prism.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checkman/prism_alerts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/checkman/prism_alerts -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checkman/prism_cluster_cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/checkman/prism_cluster_cpu -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checkman/prism_cluster_io: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/checkman/prism_cluster_io -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checkman/prism_cluster_mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/checkman/prism_cluster_mem -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checkman/prism_containers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/checkman/prism_containers -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checkman/prism_ha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/checkman/prism_ha -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checkman/prism_host_disks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/checkman/prism_host_disks -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checkman/prism_host_stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/checkman/prism_host_stats -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checkman/prism_host_stats_cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/checkman/prism_host_stats_cpu -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checkman/prism_host_stats_mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/checkman/prism_host_stats_mem -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checkman/prism_host_usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/checkman/prism_host_usage -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checkman/prism_hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/checkman/prism_hosts -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checkman/prism_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/checkman/prism_info -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checkman/prism_protection_domains: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/checkman/prism_protection_domains -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checkman/prism_remote_support: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/checkman/prism_remote_support -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checkman/prism_storage_pools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/checkman/prism_storage_pools -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checkman/prism_vm_stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/checkman/prism_vm_stats -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checkman/prism_vm_stats_cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/checkman/prism_vm_stats_cpu -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checkman/prism_vm_stats_mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/checkman/prism_vm_stats_mem -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checkman/prism_vm_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/checkman/prism_vm_status -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checkman/prism_vm_tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/checkman/prism_vm_tools -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checkman/prism_vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/checkman/prism_vms -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checks/prism_alerts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checks/prism_containers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checks/prism_info: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/checks/prism_storage_pools: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/nutanix_prism-4.0.4.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/nutanix_prism-4.0.4.mkp -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/web/plugins/metrics/prism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/web/plugins/metrics/prism.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/web/plugins/wato/prism_alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/web/plugins/wato/prism_alerts.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/web/plugins/wato/prism_cluster_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/web/plugins/wato/prism_cluster_cpu.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/web/plugins/wato/prism_cluster_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/web/plugins/wato/prism_cluster_io.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/web/plugins/wato/prism_cluster_mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/web/plugins/wato/prism_cluster_mem.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/web/plugins/wato/prism_host_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/web/plugins/wato/prism_host_cpu.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/web/plugins/wato/prism_host_disks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/web/plugins/wato/prism_host_disks.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/web/plugins/wato/prism_host_mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/web/plugins/wato/prism_host_mem.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/web/plugins/wato/prism_hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/web/plugins/wato/prism_hosts.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/web/plugins/wato/prism_vm_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/web/plugins/wato/prism_vm_cpu.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/web/plugins/wato/prism_vm_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/web/plugins/wato/prism_vm_memory.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/web/plugins/wato/prism_vm_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/web/plugins/wato/prism_vm_status.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/web/plugins/wato/prism_vm_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/web/plugins/wato/prism_vm_tools.py -------------------------------------------------------------------------------- /check plugins 2.1/nutanix/web/plugins/wato/prism_vms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/nutanix/web/plugins/wato/prism_vms.py -------------------------------------------------------------------------------- /check plugins 2.1/redfish/agent_based/redfish_drives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/redfish/agent_based/redfish_drives.py -------------------------------------------------------------------------------- /check plugins 2.1/redfish/agent_based/redfish_fans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/redfish/agent_based/redfish_fans.py -------------------------------------------------------------------------------- /check plugins 2.1/redfish/agent_based/redfish_logicaldrives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/redfish/agent_based/redfish_logicaldrives.py -------------------------------------------------------------------------------- /check plugins 2.1/redfish/agent_based/redfish_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/redfish/agent_based/redfish_memory.py -------------------------------------------------------------------------------- /check plugins 2.1/redfish/agent_based/redfish_memory_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/redfish/agent_based/redfish_memory_summary.py -------------------------------------------------------------------------------- /check plugins 2.1/redfish/agent_based/redfish_networkports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/redfish/agent_based/redfish_networkports.py -------------------------------------------------------------------------------- /check plugins 2.1/redfish/agent_based/redfish_physicaldrives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/redfish/agent_based/redfish_physicaldrives.py -------------------------------------------------------------------------------- /check plugins 2.1/redfish/agent_based/redfish_power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/redfish/agent_based/redfish_power.py -------------------------------------------------------------------------------- /check plugins 2.1/redfish/agent_based/redfish_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/redfish/agent_based/redfish_processors.py -------------------------------------------------------------------------------- /check plugins 2.1/redfish/agent_based/redfish_psu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/redfish/agent_based/redfish_psu.py -------------------------------------------------------------------------------- /check plugins 2.1/redfish/agent_based/redfish_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/redfish/agent_based/redfish_storage.py -------------------------------------------------------------------------------- /check plugins 2.1/redfish/agent_based/redfish_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/redfish/agent_based/redfish_system.py -------------------------------------------------------------------------------- /check plugins 2.1/redfish/agent_based/redfish_temperatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/redfish/agent_based/redfish_temperatures.py -------------------------------------------------------------------------------- /check plugins 2.1/redfish/agent_based/redfish_thermal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/redfish/agent_based/redfish_thermal.py -------------------------------------------------------------------------------- /check plugins 2.1/redfish/agent_based/redfish_voltage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/redfish/agent_based/redfish_voltage.py -------------------------------------------------------------------------------- /check plugins 2.1/redfish/agent_based/redfish_volumes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/redfish/agent_based/redfish_volumes.py -------------------------------------------------------------------------------- /check plugins 2.1/redfish/agent_based/utils/redfish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/redfish/agent_based/utils/redfish.py -------------------------------------------------------------------------------- /check plugins 2.1/redfish/agents/special/agent_redfish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/redfish/agents/special/agent_redfish -------------------------------------------------------------------------------- /check plugins 2.1/redfish/checks/agent_redfish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/redfish/checks/agent_redfish -------------------------------------------------------------------------------- /check plugins 2.1/redfish/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/redfish/readme.md -------------------------------------------------------------------------------- /check plugins 2.1/redfish/redfish-2.1.30.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/redfish/redfish-2.1.30.mkp -------------------------------------------------------------------------------- /check plugins 2.1/redfish/web/plugins/metrics/redfish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/redfish/web/plugins/metrics/redfish.py -------------------------------------------------------------------------------- /check plugins 2.1/windows_hyperv/checks/hyperv.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/windows_hyperv/checks/hyperv.include -------------------------------------------------------------------------------- /check plugins 2.1/windows_hyperv/checks/hyperv_cluster_csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/windows_hyperv/checks/hyperv_cluster_csv -------------------------------------------------------------------------------- /check plugins 2.1/windows_hyperv/checks/hyperv_cluster_disks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/windows_hyperv/checks/hyperv_cluster_disks -------------------------------------------------------------------------------- /check plugins 2.1/windows_hyperv/checks/hyperv_cluster_general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/windows_hyperv/checks/hyperv_cluster_general -------------------------------------------------------------------------------- /check plugins 2.1/windows_hyperv/checks/hyperv_cluster_network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/windows_hyperv/checks/hyperv_cluster_network -------------------------------------------------------------------------------- /check plugins 2.1/windows_hyperv/checks/hyperv_cluster_nodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/windows_hyperv/checks/hyperv_cluster_nodes -------------------------------------------------------------------------------- /check plugins 2.1/windows_hyperv/checks/hyperv_cluster_roles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/windows_hyperv/checks/hyperv_cluster_roles -------------------------------------------------------------------------------- /check plugins 2.1/windows_hyperv/checks/hyperv_host_io_local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/windows_hyperv/checks/hyperv_host_io_local -------------------------------------------------------------------------------- /check plugins 2.1/windows_hyperv/checks/hyperv_host_io_remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/windows_hyperv/checks/hyperv_host_io_remote -------------------------------------------------------------------------------- /check plugins 2.1/windows_hyperv/checks/hyperv_vm_checkpoints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/windows_hyperv/checks/hyperv_vm_checkpoints -------------------------------------------------------------------------------- /check plugins 2.1/windows_hyperv/checks/hyperv_vm_general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/windows_hyperv/checks/hyperv_vm_general -------------------------------------------------------------------------------- /check plugins 2.1/windows_hyperv/checks/hyperv_vm_integration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/windows_hyperv/checks/hyperv_vm_integration -------------------------------------------------------------------------------- /check plugins 2.1/windows_hyperv/checks/hyperv_vm_nic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/windows_hyperv/checks/hyperv_vm_nic -------------------------------------------------------------------------------- /check plugins 2.1/windows_hyperv/checks/hyperv_vm_ram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/windows_hyperv/checks/hyperv_vm_ram -------------------------------------------------------------------------------- /check plugins 2.1/windows_hyperv/checks/hyperv_vm_vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/windows_hyperv/checks/hyperv_vm_vhd -------------------------------------------------------------------------------- /check plugins 2.1/windows_hyperv/hyperv_cluster-2.0.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/windows_hyperv/hyperv_cluster-2.0.mkp -------------------------------------------------------------------------------- /check plugins 2.1/windows_hyperv/web/plugins/metrics/hyperv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/windows_hyperv/web/plugins/metrics/hyperv.py -------------------------------------------------------------------------------- /check plugins 2.1/windows_patch_day/windows_patch_day-2.1.0.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/windows_patch_day/windows_patch_day-2.1.0.mkp -------------------------------------------------------------------------------- /check plugins 2.1/windows_tasks/agent_based/windows_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/windows_tasks/agent_based/windows_tasks.py -------------------------------------------------------------------------------- /check plugins 2.1/windows_tasks/windows_tasks-2.5.0.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.1/windows_tasks/windows_tasks-2.5.0.mkp -------------------------------------------------------------------------------- /check plugins 2.2/aruba_cx_sensors/agent_based/aruba_cx_fan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/aruba_cx_sensors/agent_based/aruba_cx_fan.py -------------------------------------------------------------------------------- /check plugins 2.2/aruba_cx_sensors/agent_based/aruba_cx_psu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/aruba_cx_sensors/agent_based/aruba_cx_psu.py -------------------------------------------------------------------------------- /check plugins 2.2/aruba_cx_sensors/agent_based/aruba_cx_temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/aruba_cx_sensors/agent_based/aruba_cx_temp.py -------------------------------------------------------------------------------- /check plugins 2.2/aruba_cx_sensors/aruba_cx_sensors-1.1.0.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/aruba_cx_sensors/aruba_cx_sensors-1.1.0.mkp -------------------------------------------------------------------------------- /check plugins 2.2/bacs_battery/bacs_battery-2.0.0.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/bacs_battery/bacs_battery-2.0.0.mkp -------------------------------------------------------------------------------- /check plugins 2.2/bacs_battery/checks/bacs_battery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/bacs_battery/checks/bacs_battery -------------------------------------------------------------------------------- /check plugins 2.2/bacs_battery/checks/bacs_string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/bacs_battery/checks/bacs_string -------------------------------------------------------------------------------- /check plugins 2.2/dell_idrac_redfish/checks/agent_dell_idrac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/dell_idrac_redfish/checks/agent_dell_idrac -------------------------------------------------------------------------------- /check plugins 2.2/dell_idrac_redfish/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/dell_idrac_redfish/readme.md -------------------------------------------------------------------------------- /check plugins 2.2/dell_powervault_me4/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/dell_powervault_me4/readme.md -------------------------------------------------------------------------------- /check plugins 2.2/extreme_wlc/agent_based/extreme_wlc_aps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/extreme_wlc/agent_based/extreme_wlc_aps.py -------------------------------------------------------------------------------- /check plugins 2.2/extreme_wlc/extreme_wlc-1.2.1.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/extreme_wlc/extreme_wlc-1.2.1.mkp -------------------------------------------------------------------------------- /check plugins 2.2/fortigate_update/checks/fortigate_update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/fortigate_update/checks/fortigate_update -------------------------------------------------------------------------------- /check plugins 2.2/fortigate_update/fortigate_update-2.0.0.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/fortigate_update/fortigate_update-2.0.0.mkp -------------------------------------------------------------------------------- /check plugins 2.2/hpe_3par_ssh/agents/special/agent_3par_ssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_3par_ssh/agents/special/agent_3par_ssh -------------------------------------------------------------------------------- /check plugins 2.2/hpe_3par_ssh/checks/3par_cage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_3par_ssh/checks/3par_cage -------------------------------------------------------------------------------- /check plugins 2.2/hpe_3par_ssh/checks/3par_ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_3par_ssh/checks/3par_ld -------------------------------------------------------------------------------- /check plugins 2.2/hpe_3par_ssh/checks/3par_node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_3par_ssh/checks/3par_node -------------------------------------------------------------------------------- /check plugins 2.2/hpe_3par_ssh/checks/3par_pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_3par_ssh/checks/3par_pd -------------------------------------------------------------------------------- /check plugins 2.2/hpe_3par_ssh/checks/3par_ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_3par_ssh/checks/3par_ps -------------------------------------------------------------------------------- /check plugins 2.2/hpe_3par_ssh/checks/3par_vv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_3par_ssh/checks/3par_vv -------------------------------------------------------------------------------- /check plugins 2.2/hpe_3par_ssh/checks/agent_3par_ssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_3par_ssh/checks/agent_3par_ssh -------------------------------------------------------------------------------- /check plugins 2.2/hpe_3par_ssh/hpe_3par_ssh-1.0.1.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_3par_ssh/hpe_3par_ssh-1.0.1.mkp -------------------------------------------------------------------------------- /check plugins 2.2/hpe_ilo/agent_based/ilo_api_cntrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_ilo/agent_based/ilo_api_cntrl.py -------------------------------------------------------------------------------- /check plugins 2.2/hpe_ilo/agent_based/ilo_api_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_ilo/agent_based/ilo_api_cpu.py -------------------------------------------------------------------------------- /check plugins 2.2/hpe_ilo/agent_based/ilo_api_fans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_ilo/agent_based/ilo_api_fans.py -------------------------------------------------------------------------------- /check plugins 2.2/hpe_ilo/agent_based/ilo_api_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_ilo/agent_based/ilo_api_general.py -------------------------------------------------------------------------------- /check plugins 2.2/hpe_ilo/agent_based/ilo_api_mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_ilo/agent_based/ilo_api_mem.py -------------------------------------------------------------------------------- /check plugins 2.2/hpe_ilo/agent_based/ilo_api_phydrv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_ilo/agent_based/ilo_api_phydrv.py -------------------------------------------------------------------------------- /check plugins 2.2/hpe_ilo/agent_based/ilo_api_power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_ilo/agent_based/ilo_api_power.py -------------------------------------------------------------------------------- /check plugins 2.2/hpe_ilo/agent_based/ilo_api_power_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_ilo/agent_based/ilo_api_power_metrics.py -------------------------------------------------------------------------------- /check plugins 2.2/hpe_ilo/agent_based/ilo_api_raid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_ilo/agent_based/ilo_api_raid.py -------------------------------------------------------------------------------- /check plugins 2.2/hpe_ilo/agent_based/ilo_api_temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_ilo/agent_based/ilo_api_temp.py -------------------------------------------------------------------------------- /check plugins 2.2/hpe_ilo/agent_based/inventory_ilo_firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_ilo/agent_based/inventory_ilo_firmware.py -------------------------------------------------------------------------------- /check plugins 2.2/hpe_ilo/agent_based/utils/hp_ilo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_ilo/agent_based/utils/hp_ilo.py -------------------------------------------------------------------------------- /check plugins 2.2/hpe_ilo/agents/special/agent_ilo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_ilo/agents/special/agent_ilo -------------------------------------------------------------------------------- /check plugins 2.2/hpe_ilo/checks/agent_ilo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_ilo/checks/agent_ilo -------------------------------------------------------------------------------- /check plugins 2.2/hpe_ilo/hpe_ilo-4.0.2.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_ilo/hpe_ilo-4.0.2.mkp -------------------------------------------------------------------------------- /check plugins 2.2/hpe_ilo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_ilo/readme.md -------------------------------------------------------------------------------- /check plugins 2.2/hpe_ilo/web/plugins/metrics/ilo_api_fans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_ilo/web/plugins/metrics/ilo_api_fans.py -------------------------------------------------------------------------------- /check plugins 2.2/hpe_ilo/web/plugins/metrics/ilo_api_power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_ilo/web/plugins/metrics/ilo_api_power.py -------------------------------------------------------------------------------- /check plugins 2.2/hpe_ilo/web/plugins/views/ilo_firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/hpe_ilo/web/plugins/views/ilo_firmware.py -------------------------------------------------------------------------------- /check plugins 2.2/lenovo_xclarity/agent_based/utils/fan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/lenovo_xclarity/agent_based/utils/fan.py -------------------------------------------------------------------------------- /check plugins 2.2/lenovo_xclarity/checks/agent_lenovo_xclarity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/lenovo_xclarity/checks/agent_lenovo_xclarity -------------------------------------------------------------------------------- /check plugins 2.2/lenovo_xclarity/lenovo_xclarity-3.0.2.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/lenovo_xclarity/lenovo_xclarity-3.0.2.mkp -------------------------------------------------------------------------------- /check plugins 2.2/lenovo_xclarity/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/lenovo_xclarity/readme.md -------------------------------------------------------------------------------- /check plugins 2.2/lenovo_xclarity/web/plugins/wato/fan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/lenovo_xclarity/web/plugins/wato/fan.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/agent_based/prism_alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/agent_based/prism_alerts.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/agent_based/prism_cluster_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/agent_based/prism_cluster_cpu.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/agent_based/prism_cluster_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/agent_based/prism_cluster_io.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/agent_based/prism_cluster_mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/agent_based/prism_cluster_mem.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/agent_based/prism_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/agent_based/prism_containers.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/agent_based/prism_ha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/agent_based/prism_ha.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/agent_based/prism_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/agent_based/prism_host.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/agent_based/prism_host_disks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/agent_based/prism_host_disks.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/agent_based/prism_host_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/agent_based/prism_host_networks.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/agent_based/prism_host_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/agent_based/prism_host_stats.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/agent_based/prism_host_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/agent_based/prism_host_usage.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/agent_based/prism_hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/agent_based/prism_hosts.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/agent_based/prism_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/agent_based/prism_info.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/agent_based/prism_remote_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/agent_based/prism_remote_support.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/agent_based/prism_storage_pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/agent_based/prism_storage_pools.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/agent_based/prism_vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/agent_based/prism_vm.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/agent_based/prism_vm_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/agent_based/prism_vm_stats.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/agent_based/prism_vm_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/agent_based/prism_vm_status.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/agent_based/prism_vm_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/agent_based/prism_vm_tools.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/agent_based/prism_vms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/agent_based/prism_vms.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/agent_based/utils/prism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/agent_based/utils/prism.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checkman/prism_alerts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/checkman/prism_alerts -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checkman/prism_cluster_cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/checkman/prism_cluster_cpu -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checkman/prism_cluster_io: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/checkman/prism_cluster_io -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checkman/prism_cluster_mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/checkman/prism_cluster_mem -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checkman/prism_containers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/checkman/prism_containers -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checkman/prism_ha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/checkman/prism_ha -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checkman/prism_host_disks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/checkman/prism_host_disks -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checkman/prism_host_stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/checkman/prism_host_stats -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checkman/prism_host_stats_cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/checkman/prism_host_stats_cpu -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checkman/prism_host_stats_mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/checkman/prism_host_stats_mem -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checkman/prism_host_usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/checkman/prism_host_usage -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checkman/prism_hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/checkman/prism_hosts -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checkman/prism_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/checkman/prism_info -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checkman/prism_protection_domains: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/checkman/prism_protection_domains -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checkman/prism_remote_support: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/checkman/prism_remote_support -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checkman/prism_storage_pools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/checkman/prism_storage_pools -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checkman/prism_vm_stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/checkman/prism_vm_stats -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checkman/prism_vm_stats_cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/checkman/prism_vm_stats_cpu -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checkman/prism_vm_stats_mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/checkman/prism_vm_stats_mem -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checkman/prism_vm_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/checkman/prism_vm_status -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checkman/prism_vm_tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/checkman/prism_vm_tools -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checkman/prism_vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/checkman/prism_vms -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checks/prism_alerts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checks/prism_containers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checks/prism_info: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/checks/prism_storage_pools: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/nutanix_prism-5.0.10.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/nutanix_prism-5.0.10.mkp -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/readme.md -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/web/plugins/metrics/prism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/web/plugins/metrics/prism.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/web/plugins/wato/prism_alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/web/plugins/wato/prism_alerts.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/web/plugins/wato/prism_cluster_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/web/plugins/wato/prism_cluster_cpu.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/web/plugins/wato/prism_cluster_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/web/plugins/wato/prism_cluster_io.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/web/plugins/wato/prism_cluster_mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/web/plugins/wato/prism_cluster_mem.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/web/plugins/wato/prism_host_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/web/plugins/wato/prism_host_cpu.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/web/plugins/wato/prism_host_disks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/web/plugins/wato/prism_host_disks.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/web/plugins/wato/prism_host_mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/web/plugins/wato/prism_host_mem.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/web/plugins/wato/prism_hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/web/plugins/wato/prism_hosts.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/web/plugins/wato/prism_vm_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/web/plugins/wato/prism_vm_cpu.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/web/plugins/wato/prism_vm_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/web/plugins/wato/prism_vm_memory.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/web/plugins/wato/prism_vm_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/web/plugins/wato/prism_vm_status.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/web/plugins/wato/prism_vm_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/web/plugins/wato/prism_vm_tools.py -------------------------------------------------------------------------------- /check plugins 2.2/nutanix/web/plugins/wato/prism_vms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/nutanix/web/plugins/wato/prism_vms.py -------------------------------------------------------------------------------- /check plugins 2.2/redfish/agent_based/inv_redfish_firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/agent_based/inv_redfish_firmware.py -------------------------------------------------------------------------------- /check plugins 2.2/redfish/agent_based/redfish_drives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/agent_based/redfish_drives.py -------------------------------------------------------------------------------- /check plugins 2.2/redfish/agent_based/redfish_fans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/agent_based/redfish_fans.py -------------------------------------------------------------------------------- /check plugins 2.2/redfish/agent_based/redfish_logicaldrives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/agent_based/redfish_logicaldrives.py -------------------------------------------------------------------------------- /check plugins 2.2/redfish/agent_based/redfish_mains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/agent_based/redfish_mains.py -------------------------------------------------------------------------------- /check plugins 2.2/redfish/agent_based/redfish_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/agent_based/redfish_memory.py -------------------------------------------------------------------------------- /check plugins 2.2/redfish/agent_based/redfish_memory_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/agent_based/redfish_memory_summary.py -------------------------------------------------------------------------------- /check plugins 2.2/redfish/agent_based/redfish_networkports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/agent_based/redfish_networkports.py -------------------------------------------------------------------------------- /check plugins 2.2/redfish/agent_based/redfish_outlets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/agent_based/redfish_outlets.py -------------------------------------------------------------------------------- /check plugins 2.2/redfish/agent_based/redfish_physicaldrives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/agent_based/redfish_physicaldrives.py -------------------------------------------------------------------------------- /check plugins 2.2/redfish/agent_based/redfish_power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/agent_based/redfish_power.py -------------------------------------------------------------------------------- /check plugins 2.2/redfish/agent_based/redfish_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/agent_based/redfish_processors.py -------------------------------------------------------------------------------- /check plugins 2.2/redfish/agent_based/redfish_psu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/agent_based/redfish_psu.py -------------------------------------------------------------------------------- /check plugins 2.2/redfish/agent_based/redfish_sensors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/agent_based/redfish_sensors.py -------------------------------------------------------------------------------- /check plugins 2.2/redfish/agent_based/redfish_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/agent_based/redfish_storage.py -------------------------------------------------------------------------------- /check plugins 2.2/redfish/agent_based/redfish_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/agent_based/redfish_system.py -------------------------------------------------------------------------------- /check plugins 2.2/redfish/agent_based/redfish_temperatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/agent_based/redfish_temperatures.py -------------------------------------------------------------------------------- /check plugins 2.2/redfish/agent_based/redfish_thermal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/agent_based/redfish_thermal.py -------------------------------------------------------------------------------- /check plugins 2.2/redfish/agent_based/redfish_voltage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/agent_based/redfish_voltage.py -------------------------------------------------------------------------------- /check plugins 2.2/redfish/agent_based/redfish_volumes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/agent_based/redfish_volumes.py -------------------------------------------------------------------------------- /check plugins 2.2/redfish/agent_based/utils/redfish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/agent_based/utils/redfish.py -------------------------------------------------------------------------------- /check plugins 2.2/redfish/agents/special/agent_redfish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/agents/special/agent_redfish -------------------------------------------------------------------------------- /check plugins 2.2/redfish/agents/special/agent_redfish_power: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/agents/special/agent_redfish_power -------------------------------------------------------------------------------- /check plugins 2.2/redfish/checks/agent_redfish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/checks/agent_redfish -------------------------------------------------------------------------------- /check plugins 2.2/redfish/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/readme.md -------------------------------------------------------------------------------- /check plugins 2.2/redfish/redfish-2.2.60.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/redfish-2.2.60.mkp -------------------------------------------------------------------------------- /check plugins 2.2/redfish/web/plugins/metrics/redfish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/web/plugins/metrics/redfish.py -------------------------------------------------------------------------------- /check plugins 2.2/redfish/web/plugins/wato/redfish_outlets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/redfish/web/plugins/wato/redfish_outlets.py -------------------------------------------------------------------------------- /check plugins 2.2/sophosxg/agent_based/sophosxg_hastate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/sophosxg/agent_based/sophosxg_hastate.py -------------------------------------------------------------------------------- /check plugins 2.2/sophosxg/agent_based/sophosxg_lic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/sophosxg/agent_based/sophosxg_lic.py -------------------------------------------------------------------------------- /check plugins 2.2/sophosxg/agent_based/sophosxg_peerhastate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/sophosxg/agent_based/sophosxg_peerhastate.py -------------------------------------------------------------------------------- /check plugins 2.2/sophosxg/agent_based/sophosxg_srv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/sophosxg/agent_based/sophosxg_srv.py -------------------------------------------------------------------------------- /check plugins 2.2/sophosxg/agent_based/sophosxg_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/sophosxg/agent_based/sophosxg_version.py -------------------------------------------------------------------------------- /check plugins 2.2/sophosxg/sophosxg-1.3.1.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/sophosxg/sophosxg-1.3.1.mkp -------------------------------------------------------------------------------- /check plugins 2.2/sophosxg/web/plugins/wato/sophosxg_lic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/sophosxg/web/plugins/wato/sophosxg_lic.py -------------------------------------------------------------------------------- /check plugins 2.2/sophosxg/web/plugins/wato/sophosxg_srv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/sophosxg/web/plugins/wato/sophosxg_srv.py -------------------------------------------------------------------------------- /check plugins 2.2/sophosxg/web/plugins/wato/sophosxg_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.2/sophosxg/web/plugins/wato/sophosxg_version.py -------------------------------------------------------------------------------- /check plugins 2.3/arcserve_backup2/arcserve_backup2-1.1.1.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/arcserve_backup2/arcserve_backup2-1.1.1.mkp -------------------------------------------------------------------------------- /check plugins 2.3/arcserve_backup2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/arcserve_backup2/readme.md -------------------------------------------------------------------------------- /check plugins 2.3/arcserve_udp/arcserve_udp-2.2.2.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/arcserve_udp/arcserve_udp-2.2.2.mkp -------------------------------------------------------------------------------- /check plugins 2.3/arcserve_udp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/arcserve_udp/readme.md -------------------------------------------------------------------------------- /check plugins 2.3/aruba_cx_sensors/aruba_cx_sensors-2.4.4.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/aruba_cx_sensors/aruba_cx_sensors-2.4.4.mkp -------------------------------------------------------------------------------- /check plugins 2.3/aruba_cx_sensors/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/aruba_cx_sensors/readme.md -------------------------------------------------------------------------------- /check plugins 2.3/aruba_instant_wlan/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/aruba_instant_wlan/readme.md -------------------------------------------------------------------------------- /check plugins 2.3/bacs_battery/bacs_battery-2.2.1.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/bacs_battery/bacs_battery-2.2.1.mkp -------------------------------------------------------------------------------- /check plugins 2.3/bacs_battery/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/bacs_battery/readme.md -------------------------------------------------------------------------------- /check plugins 2.3/dell_powervault_me4/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/dell_powervault_me4/readme.md -------------------------------------------------------------------------------- /check plugins 2.3/extreme_hipath_wlc/extreme_wlc-2.4.5.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/extreme_hipath_wlc/extreme_wlc-2.4.5.mkp -------------------------------------------------------------------------------- /check plugins 2.3/extreme_hipath_wlc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/extreme_hipath_wlc/readme.md -------------------------------------------------------------------------------- /check plugins 2.3/extreme_vsp_sensors/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/extreme_vsp_sensors/readme.md -------------------------------------------------------------------------------- /check plugins 2.3/fail2ban/agents/plugins/fail2ban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/fail2ban/agents/plugins/fail2ban -------------------------------------------------------------------------------- /check plugins 2.3/fail2ban/fail2ban-2.3.1.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/fail2ban/fail2ban-2.3.1.mkp -------------------------------------------------------------------------------- /check plugins 2.3/fail2ban/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/fail2ban/readme.md -------------------------------------------------------------------------------- /check plugins 2.3/fortigate_update/fortigate_update-2.4.2.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/fortigate_update/fortigate_update-2.4.2.mkp -------------------------------------------------------------------------------- /check plugins 2.3/fortigate_update/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/fortigate_update/readme.md -------------------------------------------------------------------------------- /check plugins 2.3/hpe_3par_ssh/hpe_3par_ssh-2.3.3.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/hpe_3par_ssh/hpe_3par_ssh-2.3.3.mkp -------------------------------------------------------------------------------- /check plugins 2.3/hpe_3par_ssh/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/hpe_3par_ssh/readme.md -------------------------------------------------------------------------------- /check plugins 2.3/huawei_dorado/huawei_dorado-1.1.2.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/huawei_dorado/huawei_dorado-1.1.2.mkp -------------------------------------------------------------------------------- /check plugins 2.3/huawei_dorado/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/huawei_dorado/readme.md -------------------------------------------------------------------------------- /check plugins 2.3/huawei_wlc/huawei_wlc-1.1.0.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/huawei_wlc/huawei_wlc-1.1.0.mkp -------------------------------------------------------------------------------- /check plugins 2.3/huawei_wlc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/huawei_wlc/readme.md -------------------------------------------------------------------------------- /check plugins 2.3/hyperv_cluster/hyperv_cluster-3.3.11.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/hyperv_cluster/hyperv_cluster-3.3.11.mkp -------------------------------------------------------------------------------- /check plugins 2.3/hyperv_cluster/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/hyperv_cluster/readme.md -------------------------------------------------------------------------------- /check plugins 2.3/macmon/macmon_checks-2.1.0.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/macmon/macmon_checks-2.1.0.mkp -------------------------------------------------------------------------------- /check plugins 2.3/macmon/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/macmon/readme.md -------------------------------------------------------------------------------- /check plugins 2.3/nutanix/agents/special/agent_prism: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/nutanix/agents/special/agent_prism -------------------------------------------------------------------------------- /check plugins 2.3/nutanix/agents/special/agent_prism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/nutanix/agents/special/agent_prism.py -------------------------------------------------------------------------------- /check plugins 2.3/nutanix/prism_fix-1.0.1.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/nutanix/prism_fix-1.0.1.mkp -------------------------------------------------------------------------------- /check plugins 2.3/nutanix/readme.md: -------------------------------------------------------------------------------- 1 | mkp not needed anymore after update to 2.3.0p6 2 | -------------------------------------------------------------------------------- /check plugins 2.3/oracle_ilom/oracle_ilom-2.3.1.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/oracle_ilom/oracle_ilom-2.3.1.mkp -------------------------------------------------------------------------------- /check plugins 2.3/oracle_ilom/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/oracle_ilom/readme.md -------------------------------------------------------------------------------- /check plugins 2.3/redfish/cmk_addons_plugins/redfish/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/redfish/cmk_addons_plugins/redfish/lib.py -------------------------------------------------------------------------------- /check plugins 2.3/redfish/cmk_addons_plugins/redfish/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/redfish/cmk_addons_plugins/redfish/tools.py -------------------------------------------------------------------------------- /check plugins 2.3/redfish/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/redfish/links.md -------------------------------------------------------------------------------- /check plugins 2.3/redfish/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/redfish/readme.md -------------------------------------------------------------------------------- /check plugins 2.3/redfish/redfish-2.3.38.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/redfish/redfish-2.3.38.mkp -------------------------------------------------------------------------------- /check plugins 2.3/redfish/redfish-2.3.70.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/redfish/redfish-2.3.70.mkp -------------------------------------------------------------------------------- /check plugins 2.3/redfish/redfish-2.3.77.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/redfish/redfish-2.3.77.mkp -------------------------------------------------------------------------------- /check plugins 2.3/sophosxg/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/sophosxg/readme.md -------------------------------------------------------------------------------- /check plugins 2.3/sophosxg/sophosxg-2.4.1.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/sophosxg/sophosxg-2.4.1.mkp -------------------------------------------------------------------------------- /check plugins 2.3/win_firewall_status/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/win_firewall_status/readme.md -------------------------------------------------------------------------------- /check plugins 2.3/windows_dedup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/windows_dedup/readme.md -------------------------------------------------------------------------------- /check plugins 2.3/windows_dedup/windows_dedup-1.3.2.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/windows_dedup/windows_dedup-1.3.2.mkp -------------------------------------------------------------------------------- /check plugins 2.3/windows_patch_day/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/windows_patch_day/readme.md -------------------------------------------------------------------------------- /check plugins 2.3/windows_patch_day/windows_patch_day-2.3.7.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check plugins 2.3/windows_patch_day/windows_patch_day-2.3.7.mkp -------------------------------------------------------------------------------- /check_mk_erweiterungen/bi_status_ausgabe/bi.py.1.4.0.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check_mk_erweiterungen/bi_status_ausgabe/bi.py.1.4.0.diff -------------------------------------------------------------------------------- /check_mk_erweiterungen/bi_status_ausgabe/bi.py.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/check_mk_erweiterungen/bi_status_ausgabe/bi.py.diff -------------------------------------------------------------------------------- /check_mk_erweiterungen/bi_status_ausgabe/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /checks/dell_compellent/checks/dell_compellent_disks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/dell_compellent/checks/dell_compellent_disks -------------------------------------------------------------------------------- /checks/dell_compellent/checks/dell_compellent_encl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/dell_compellent/checks/dell_compellent_encl -------------------------------------------------------------------------------- /checks/dell_compellent/checks/dell_compellent_fans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/dell_compellent/checks/dell_compellent_fans -------------------------------------------------------------------------------- /checks/dell_compellent/checks/dell_compellent_psu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/dell_compellent/checks/dell_compellent_psu -------------------------------------------------------------------------------- /checks/dell_compellent/checks/dell_compellent_temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/dell_compellent/checks/dell_compellent_temp -------------------------------------------------------------------------------- /checks/dell_compellent/checks/fan_rpm.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/dell_compellent/checks/fan_rpm.include -------------------------------------------------------------------------------- /checks/eva_checks/checks/eva_array_controller_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/eva_checks/checks/eva_array_controller_status -------------------------------------------------------------------------------- /checks/eva_checks/checks/eva_array_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/eva_checks/checks/eva_array_status -------------------------------------------------------------------------------- /checks/eva_checks/checks/eva_host_port_statistics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/eva_checks/checks/eva_host_port_statistics -------------------------------------------------------------------------------- /checks/eva_checks/checks/eva_physical_disk_groups: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/eva_checks/checks/eva_physical_disk_groups -------------------------------------------------------------------------------- /checks/eva_checks/checks/eva_virtual_disk_groups: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/eva_checks/checks/eva_virtual_disk_groups -------------------------------------------------------------------------------- /checks/eva_checks/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/eva_checks/readme.md -------------------------------------------------------------------------------- /checks/exchange_db/checks/Ex2010_MBDB_Info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/exchange_db/checks/Ex2010_MBDB_Info -------------------------------------------------------------------------------- /checks/exchange_db/plugins/Ex2010_MBDB_Info.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/exchange_db/plugins/Ex2010_MBDB_Info.ps1 -------------------------------------------------------------------------------- /checks/f5_bigip_certs/f5_bigip_certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/f5_bigip_certs/f5_bigip_certs.py -------------------------------------------------------------------------------- /checks/fileinfo_extended/agent/windows/plugins/fileinfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/fileinfo_extended/agent/windows/plugins/fileinfo.ps1 -------------------------------------------------------------------------------- /checks/fileinfo_extended/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/fileinfo_extended/readme.md -------------------------------------------------------------------------------- /checks/force10_fan/checks/force10_fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/force10_fan/checks/force10_fan -------------------------------------------------------------------------------- /checks/force10_psu/checks/force10_psu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/force10_psu/checks/force10_psu -------------------------------------------------------------------------------- /checks/hp_procurve/hp_procurve_cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hp_procurve/hp_procurve_cpu -------------------------------------------------------------------------------- /checks/hp_procurve/hp_procurve_mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hp_procurve/hp_procurve_mem -------------------------------------------------------------------------------- /checks/hp_procurve/hp_procurve_sensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hp_procurve/hp_procurve_sensors -------------------------------------------------------------------------------- /checks/hp_procurve/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hp_procurve/readme.md -------------------------------------------------------------------------------- /checks/hyper-v/disabled-timesync/checks/hyperv_disabletimesync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyper-v/disabled-timesync/checks/hyperv_disabletimesync -------------------------------------------------------------------------------- /checks/hyper-v/disabled-timesync/plugins/Disabletimesync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyper-v/disabled-timesync/plugins/Disabletimesync.ps1 -------------------------------------------------------------------------------- /checks/hyper-v/dynamic-vhdx/checks/hyperv_dynamicvhdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyper-v/dynamic-vhdx/checks/hyperv_dynamicvhdx -------------------------------------------------------------------------------- /checks/hyper-v/dynamic-vhdx/plugins/Find_dynamic_VHDx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyper-v/dynamic-vhdx/plugins/Find_dynamic_VHDx.ps1 -------------------------------------------------------------------------------- /checks/hyperv_cluster/1.x/agents/bakery/hyperv_new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/1.x/agents/bakery/hyperv_new -------------------------------------------------------------------------------- /checks/hyperv_cluster/1.x/agents/bakery/hyperv_vms_guestinfos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/1.x/agents/bakery/hyperv_vms_guestinfos -------------------------------------------------------------------------------- /checks/hyperv_cluster/1.x/checks/hyperv.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/1.x/checks/hyperv.include -------------------------------------------------------------------------------- /checks/hyperv_cluster/1.x/checks/hyperv_cluster_csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/1.x/checks/hyperv_cluster_csv -------------------------------------------------------------------------------- /checks/hyperv_cluster/1.x/checks/hyperv_cluster_disks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/1.x/checks/hyperv_cluster_disks -------------------------------------------------------------------------------- /checks/hyperv_cluster/1.x/checks/hyperv_cluster_general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/1.x/checks/hyperv_cluster_general -------------------------------------------------------------------------------- /checks/hyperv_cluster/1.x/checks/hyperv_cluster_network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/1.x/checks/hyperv_cluster_network -------------------------------------------------------------------------------- /checks/hyperv_cluster/1.x/checks/hyperv_cluster_nodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/1.x/checks/hyperv_cluster_nodes -------------------------------------------------------------------------------- /checks/hyperv_cluster/1.x/checks/hyperv_cluster_roles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/1.x/checks/hyperv_cluster_roles -------------------------------------------------------------------------------- /checks/hyperv_cluster/1.x/checks/hyperv_host_io_local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/1.x/checks/hyperv_host_io_local -------------------------------------------------------------------------------- /checks/hyperv_cluster/1.x/checks/hyperv_host_io_remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/1.x/checks/hyperv_host_io_remote -------------------------------------------------------------------------------- /checks/hyperv_cluster/1.x/checks/hyperv_vm_checkpoints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/1.x/checks/hyperv_vm_checkpoints -------------------------------------------------------------------------------- /checks/hyperv_cluster/1.x/checks/hyperv_vm_general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/1.x/checks/hyperv_vm_general -------------------------------------------------------------------------------- /checks/hyperv_cluster/1.x/checks/hyperv_vm_integration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/1.x/checks/hyperv_vm_integration -------------------------------------------------------------------------------- /checks/hyperv_cluster/1.x/checks/hyperv_vm_nic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/1.x/checks/hyperv_vm_nic -------------------------------------------------------------------------------- /checks/hyperv_cluster/1.x/checks/hyperv_vm_ram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/1.x/checks/hyperv_vm_ram -------------------------------------------------------------------------------- /checks/hyperv_cluster/1.x/checks/hyperv_vm_vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/1.x/checks/hyperv_vm_vhd -------------------------------------------------------------------------------- /checks/hyperv_cluster/1.x/web/plugins/metrics/hyperv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/1.x/web/plugins/metrics/hyperv.py -------------------------------------------------------------------------------- /checks/hyperv_cluster/1.x/web/plugins/wato/hyperv_new_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/1.x/web/plugins/wato/hyperv_new_deploy.py -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checkman/hyperv_cluster_csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checkman/hyperv_cluster_csv -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checkman/hyperv_cluster_disks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checkman/hyperv_cluster_disks -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checkman/hyperv_cluster_general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checkman/hyperv_cluster_general -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checkman/hyperv_cluster_network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checkman/hyperv_cluster_network -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checkman/hyperv_cluster_nodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checkman/hyperv_cluster_nodes -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checkman/hyperv_cluster_roles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checkman/hyperv_cluster_roles -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checkman/hyperv_host_io_local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checkman/hyperv_host_io_local -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checkman/hyperv_host_io_remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checkman/hyperv_host_io_remote -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checkman/hyperv_vm_checkpoints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checkman/hyperv_vm_checkpoints -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checkman/hyperv_vm_general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checkman/hyperv_vm_general -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checkman/hyperv_vm_general.running_on: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checkman/hyperv_vm_general.running_on -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checkman/hyperv_vm_integration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checkman/hyperv_vm_integration -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checkman/hyperv_vm_nic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checkman/hyperv_vm_nic -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checkman/hyperv_vm_ram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checkman/hyperv_vm_ram -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checkman/hyperv_vm_vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checkman/hyperv_vm_vhd -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checks/hyperv.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checks/hyperv.include -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checks/hyperv_cluster_csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checks/hyperv_cluster_csv -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checks/hyperv_cluster_disks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checks/hyperv_cluster_disks -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checks/hyperv_cluster_general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checks/hyperv_cluster_general -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checks/hyperv_cluster_network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checks/hyperv_cluster_network -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checks/hyperv_cluster_nodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checks/hyperv_cluster_nodes -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checks/hyperv_cluster_roles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checks/hyperv_cluster_roles -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checks/hyperv_host_io_local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checks/hyperv_host_io_local -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checks/hyperv_host_io_remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checks/hyperv_host_io_remote -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checks/hyperv_node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checks/hyperv_node -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checks/hyperv_vm_checkpoints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checks/hyperv_vm_checkpoints -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checks/hyperv_vm_general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checks/hyperv_vm_general -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checks/hyperv_vm_integration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checks/hyperv_vm_integration -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checks/hyperv_vm_nic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checks/hyperv_vm_nic -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checks/hyperv_vm_ram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checks/hyperv_vm_ram -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/checks/hyperv_vm_vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/checks/hyperv_vm_vhd -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/web/plugins/metrics/hyperv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/web/plugins/metrics/hyperv.py -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/web/plugins/wato/hyperv_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/web/plugins/wato/hyperv_parameters.py -------------------------------------------------------------------------------- /checks/hyperv_cluster/2.0/web/plugins/wato/win_hyperv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/2.0/web/plugins/wato/win_hyperv.py -------------------------------------------------------------------------------- /checks/hyperv_cluster/hyperv_cluster-1.2.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/hyperv_cluster-1.2.mkp -------------------------------------------------------------------------------- /checks/hyperv_cluster/hyperv_monitoring-2.4.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/hyperv_cluster/hyperv_monitoring-2.4.mkp -------------------------------------------------------------------------------- /checks/knoerr_schrank_status/checks/knoerr_coolloop_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/knoerr_schrank_status/checks/knoerr_coolloop_status -------------------------------------------------------------------------------- /checks/knoerr_schrank_status/checks/knoerr_coolloop_temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/knoerr_schrank_status/checks/knoerr_coolloop_temp -------------------------------------------------------------------------------- /checks/knoerr_schrank_status/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/knoerr_schrank_status/readme.md -------------------------------------------------------------------------------- /checks/mikrotik/mikrotik-0.5.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/mikrotik/mikrotik-0.5.mkp -------------------------------------------------------------------------------- /checks/mssql_ha/agents/bakery/mssql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/mssql_ha/agents/bakery/mssql -------------------------------------------------------------------------------- /checks/mssql_ha/agents/windows/plugins/mssql.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/mssql_ha/agents/windows/plugins/mssql.vbs -------------------------------------------------------------------------------- /checks/mssql_ha/checks/mssql_blocked_sessions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/mssql_ha/checks/mssql_blocked_sessions -------------------------------------------------------------------------------- /checks/mssql_ha/checks/mssql_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/mssql_ha/checks/mssql_config -------------------------------------------------------------------------------- /checks/mssql_ha/checks/mssql_counters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/mssql_ha/checks/mssql_counters -------------------------------------------------------------------------------- /checks/mssql_ha/checks/mssql_dbbackup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/mssql_ha/checks/mssql_dbbackup -------------------------------------------------------------------------------- /checks/mssql_ha/checks/mssql_ha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/mssql_ha/checks/mssql_ha -------------------------------------------------------------------------------- /checks/mssql_ha/checks/mssql_ha2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/mssql_ha/checks/mssql_ha2 -------------------------------------------------------------------------------- /checks/mssql_ha/checks/mssql_instance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/mssql_ha/checks/mssql_instance -------------------------------------------------------------------------------- /checks/mssql_ha/checks/mssql_jobs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/mssql_ha/checks/mssql_jobs -------------------------------------------------------------------------------- /checks/mssql_ha/mssql_ha-1.3.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/mssql_ha/mssql_ha-1.3.mkp -------------------------------------------------------------------------------- /checks/mssql_ha/web/plugins/metrics/mssql_ha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/mssql_ha/web/plugins/metrics/mssql_ha.py -------------------------------------------------------------------------------- /checks/mssql_ha/web/plugins/wato/mssql_dbbackup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/mssql_ha/web/plugins/wato/mssql_dbbackup.py -------------------------------------------------------------------------------- /checks/snmp_template/check_parameters_mein_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/snmp_template/check_parameters_mein_check.py -------------------------------------------------------------------------------- /checks/snmp_template/mein_check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/snmp_template/mein_check -------------------------------------------------------------------------------- /checks/tcp_conn_stats - Windows/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/tcp_conn_stats - Windows/readme.md -------------------------------------------------------------------------------- /checks/ups_socomec_status/checks/ups_socomec_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/ups_socomec_status/checks/ups_socomec_status -------------------------------------------------------------------------------- /checks/win_printers/win_printers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/win_printers/win_printers -------------------------------------------------------------------------------- /checks/win_tasks_german/checks/windows_tasks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/win_tasks_german/checks/windows_tasks -------------------------------------------------------------------------------- /checks/win_tasks_german/plugin/windows_tasks_deutsch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/win_tasks_german/plugin/windows_tasks_deutsch.ps1 -------------------------------------------------------------------------------- /checks/windows_uptime/agents/windows/plugins/uptime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/windows_uptime/agents/windows/plugins/uptime.ps1 -------------------------------------------------------------------------------- /checks/windows_uptime/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/windows_uptime/readme.md -------------------------------------------------------------------------------- /checks/yum/check/yum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/yum/check/yum -------------------------------------------------------------------------------- /checks/yum/plugin/check_yum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/checks/yum/plugin/check_yum -------------------------------------------------------------------------------- /classic-checks/check_mkevents/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/classic-checks/check_mkevents/Makefile -------------------------------------------------------------------------------- /classic-checks/check_mkevents/check_mk-checks/check_mkevents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/classic-checks/check_mkevents/check_mk-checks/check_mkevents -------------------------------------------------------------------------------- /classic-checks/check_mkevents/check_mkevents.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/classic-checks/check_mkevents/check_mkevents.cc -------------------------------------------------------------------------------- /classic-checks/check_mkevents/check_mkevents_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/classic-checks/check_mkevents/check_mkevents_c -------------------------------------------------------------------------------- /classic-checks/smb_transfer/smb_transfer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/classic-checks/smb_transfer/smb_transfer -------------------------------------------------------------------------------- /datasource-programms/agent_3par/agents/special/agent_3par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_3par/agents/special/agent_3par -------------------------------------------------------------------------------- /datasource-programms/agent_3par/checks/3par_cage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_3par/checks/3par_cage -------------------------------------------------------------------------------- /datasource-programms/agent_3par/checks/3par_ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_3par/checks/3par_ld -------------------------------------------------------------------------------- /datasource-programms/agent_3par/checks/3par_node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_3par/checks/3par_node -------------------------------------------------------------------------------- /datasource-programms/agent_3par/checks/3par_pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_3par/checks/3par_pd -------------------------------------------------------------------------------- /datasource-programms/agent_3par/checks/3par_ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_3par/checks/3par_ps -------------------------------------------------------------------------------- /datasource-programms/agent_3par/checks/3par_vv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_3par/checks/3par_vv -------------------------------------------------------------------------------- /datasource-programms/agent_3par/checks/agent_3par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_3par/checks/agent_3par -------------------------------------------------------------------------------- /datasource-programms/agent_emcvnx/agent_emcvnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_emcvnx/agent_emcvnx -------------------------------------------------------------------------------- /datasource-programms/agent_emcvnx/agent_emcvnx.extension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_emcvnx/agent_emcvnx.extension -------------------------------------------------------------------------------- /datasource-programms/agent_emcvnx/emcvnx_disks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_emcvnx/emcvnx_disks -------------------------------------------------------------------------------- /datasource-programms/agent_emcvnx/emcvnx_hba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_emcvnx/emcvnx_hba -------------------------------------------------------------------------------- /datasource-programms/agent_emcvnx/emcvnx_hwstatus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_emcvnx/emcvnx_hwstatus -------------------------------------------------------------------------------- /datasource-programms/agent_emcvnx/emcvnx_hwstatus.extension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_emcvnx/emcvnx_hwstatus.extension -------------------------------------------------------------------------------- /datasource-programms/agent_emcvnx/emcvnx_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_emcvnx/emcvnx_info -------------------------------------------------------------------------------- /datasource-programms/agent_emcvnx/emcvnx_raidgroups: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_emcvnx/emcvnx_raidgroups -------------------------------------------------------------------------------- /datasource-programms/agent_emcvnxe/agent/agent_emcvnxe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_emcvnxe/agent/agent_emcvnxe.py -------------------------------------------------------------------------------- /datasource-programms/agent_emcvnxe/checks/emcvnxe_bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_emcvnxe/checks/emcvnxe_bat -------------------------------------------------------------------------------- /datasource-programms/agent_emcvnxe/checks/emcvnxe_ccard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_emcvnxe/checks/emcvnxe_ccard -------------------------------------------------------------------------------- /datasource-programms/agent_emcvnxe/checks/emcvnxe_dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_emcvnxe/checks/emcvnxe_dae -------------------------------------------------------------------------------- /datasource-programms/agent_emcvnxe/checks/emcvnxe_disk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_emcvnxe/checks/emcvnxe_disk -------------------------------------------------------------------------------- /datasource-programms/agent_emcvnxe/checks/emcvnxe_dpe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_emcvnxe/checks/emcvnxe_dpe -------------------------------------------------------------------------------- /datasource-programms/agent_emcvnxe/checks/emcvnxe_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_emcvnxe/checks/emcvnxe_info -------------------------------------------------------------------------------- /datasource-programms/agent_emcvnxe/checks/emcvnxe_iomodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_emcvnxe/checks/emcvnxe_iomodule -------------------------------------------------------------------------------- /datasource-programms/agent_emcvnxe/checks/emcvnxe_lcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_emcvnxe/checks/emcvnxe_lcc -------------------------------------------------------------------------------- /datasource-programms/agent_emcvnxe/checks/emcvnxe_mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_emcvnxe/checks/emcvnxe_mm -------------------------------------------------------------------------------- /datasource-programms/agent_emcvnxe/checks/emcvnxe_ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_emcvnxe/checks/emcvnxe_ps -------------------------------------------------------------------------------- /datasource-programms/agent_emcvnxe/checks/emcvnxe_sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_emcvnxe/checks/emcvnxe_sp -------------------------------------------------------------------------------- /datasource-programms/agent_emcvnxe/checks/emcvnxe_ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_emcvnxe/checks/emcvnxe_ssd -------------------------------------------------------------------------------- /datasource-programms/agent_ipmi/agent_ipmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_ipmi/agent_ipmi -------------------------------------------------------------------------------- /datasource-programms/agent_ipmi/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_ipmi/readme.md -------------------------------------------------------------------------------- /datasource-programms/agent_ipmi/remote-ipmi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_ipmi/remote-ipmi.png -------------------------------------------------------------------------------- /datasource-programms/agent_netapp/agents/special/agent_netapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_netapp/agents/special/agent_netapp -------------------------------------------------------------------------------- /datasource-programms/agent_netapp/checks/netapp_api.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_netapp/checks/netapp_api.include -------------------------------------------------------------------------------- /datasource-programms/agent_netapp/checks/netapp_api_bridges: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_netapp/checks/netapp_api_bridges -------------------------------------------------------------------------------- /datasource-programms/agent_netapp/checks/netapp_api_environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_netapp/checks/netapp_api_environment -------------------------------------------------------------------------------- /datasource-programms/agent_netapp/checks/netapp_api_if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_netapp/checks/netapp_api_if -------------------------------------------------------------------------------- /datasource-programms/agent_netapp/checks/netapp_api_if_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_netapp/checks/netapp_api_if_status -------------------------------------------------------------------------------- /datasource-programms/agent_netapp/checks/netapp_api_qtree_quota: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_netapp/checks/netapp_api_qtree_quota -------------------------------------------------------------------------------- /datasource-programms/agent_netapp/checks/netapp_api_volumes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_netapp/checks/netapp_api_volumes -------------------------------------------------------------------------------- /datasource-programms/agent_netapp/checks/netapp_api_vs_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_netapp/checks/netapp_api_vs_status -------------------------------------------------------------------------------- /datasource-programms/agent_netapp/netapp_update-1.2.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/datasource-programms/agent_netapp/netapp_update-1.2.mkp -------------------------------------------------------------------------------- /erweiterungen-webseite/agents-bakery-win_printers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/erweiterungen-webseite/agents-bakery-win_printers.py -------------------------------------------------------------------------------- /erweiterungen-webseite/wato_geo_fields-1.0.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/erweiterungen-webseite/wato_geo_fields-1.0.mkp -------------------------------------------------------------------------------- /erweiterungen-webseite/web-plugins-wato-win_printers_bakery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/erweiterungen-webseite/web-plugins-wato-win_printers_bakery.py -------------------------------------------------------------------------------- /local-checks/exchange/exchange-local-checks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/local-checks/exchange/exchange-local-checks.ps1 -------------------------------------------------------------------------------- /local-checks/exchange/exchange_oldest_item.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/local-checks/exchange/exchange_oldest_item.ps1 -------------------------------------------------------------------------------- /local-checks/filecount/file_count.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/local-checks/filecount/file_count.sh -------------------------------------------------------------------------------- /local-checks/filecount/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/local-checks/filecount/readme.md -------------------------------------------------------------------------------- /local-checks/klimate/klima.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/local-checks/klimate/klima.py -------------------------------------------------------------------------------- /local-checks/klimate/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/local-checks/klimate/readme.md -------------------------------------------------------------------------------- /local-checks/local_check_bi/check_bi_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/local-checks/local_check_bi/check_bi_local.py -------------------------------------------------------------------------------- /local-checks/office365_license/office365_license.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/local-checks/office365_license/office365_license.ps1 -------------------------------------------------------------------------------- /local-checks/rdp-user/rdp_user_count_local.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/local-checks/rdp-user/rdp_user_count_local.cmd -------------------------------------------------------------------------------- /local-checks/sep_sesam/check_sepsesam - aufruf Beispiel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/local-checks/sep_sesam/check_sepsesam - aufruf Beispiel.txt -------------------------------------------------------------------------------- /local-checks/sep_sesam/check_sepsesam - readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/local-checks/sep_sesam/check_sepsesam - readme.txt -------------------------------------------------------------------------------- /local-checks/sep_sesam/check_sepsesam.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/local-checks/sep_sesam/check_sepsesam.pl -------------------------------------------------------------------------------- /local-checks/ups_webscrapping/ups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/local-checks/ups_webscrapping/ups.py -------------------------------------------------------------------------------- /local-checks/usb_devices/agents-bakery-wmi_usb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/local-checks/usb_devices/agents-bakery-wmi_usb -------------------------------------------------------------------------------- /local-checks/usb_devices/web-plugins-wato-wmi_usb_bakery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/local-checks/usb_devices/web-plugins-wato-wmi_usb_bakery.py -------------------------------------------------------------------------------- /local-checks/usb_devices/wmi_usb.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/local-checks/usb_devices/wmi_usb.vbs -------------------------------------------------------------------------------- /local-checks/user_count/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/local-checks/user_count/readme.md -------------------------------------------------------------------------------- /local-checks/user_count/user_count.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/local-checks/user_count/user_count.sh -------------------------------------------------------------------------------- /mkp_only/cmciii_fix-1.0.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/mkp_only/cmciii_fix-1.0.mkp -------------------------------------------------------------------------------- /mkp_only/mac_inventory-1.0.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/mkp_only/mac_inventory-1.0.mkp -------------------------------------------------------------------------------- /mkp_only/win_oracle_deply-1.1.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/mkp_only/win_oracle_deply-1.1.mkp -------------------------------------------------------------------------------- /plugins/mssql_jobs/agents/bakery/mssql_jobs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/plugins/mssql_jobs/agents/bakery/mssql_jobs -------------------------------------------------------------------------------- /plugins/mssql_jobs/agents/windows/plugins/mssql_jobs.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/plugins/mssql_jobs/agents/windows/plugins/mssql_jobs.vbs -------------------------------------------------------------------------------- /plugins/mssql_jobs/web/plugins/wato/bakery_mssql_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/plugins/mssql_jobs/web/plugins/wato/bakery_mssql_job.py -------------------------------------------------------------------------------- /plugins/mssql_new/agents/bakery/mssql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/plugins/mssql_new/agents/bakery/mssql -------------------------------------------------------------------------------- /plugins/mssql_new/agents/windows/plugins/mssql.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/plugins/mssql_new/agents/windows/plugins/mssql.vbs -------------------------------------------------------------------------------- /plugins/mssql_new/checks/mssql_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/plugins/mssql_new/checks/mssql_config -------------------------------------------------------------------------------- /plugins/mssql_new/checks/mssql_dbbackup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/plugins/mssql_new/checks/mssql_dbbackup -------------------------------------------------------------------------------- /plugins/mssql_new/checks/mssql_ha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/plugins/mssql_new/checks/mssql_ha -------------------------------------------------------------------------------- /plugins/mssql_new/checks/mssql_jobs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/plugins/mssql_new/checks/mssql_jobs -------------------------------------------------------------------------------- /problems-and-bugs/esx_vsphere_counter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/problems-and-bugs/esx_vsphere_counter -------------------------------------------------------------------------------- /problems-and-bugs/netapp_api_snapshot_sizes/agent_netapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/problems-and-bugs/netapp_api_snapshot_sizes/agent_netapp -------------------------------------------------------------------------------- /problems-and-bugs/netapp_api_snapshot_sizes/agent_netapp.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/problems-and-bugs/netapp_api_snapshot_sizes/agent_netapp.diff -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/readme.md -------------------------------------------------------------------------------- /templates pre 2.0/multi_item_agent_check/checks/multiitem_check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/templates pre 2.0/multi_item_agent_check/checks/multiitem_check -------------------------------------------------------------------------------- /templates pre 2.0/snmp_multi_item_check/checks/multivalue_check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/templates pre 2.0/snmp_multi_item_check/checks/multivalue_check -------------------------------------------------------------------------------- /tools/agent_deployment_raw/agent_deployment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/tools/agent_deployment_raw/agent_deployment.ps1 -------------------------------------------------------------------------------- /tools/agent_deployment_raw/hostlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/tools/agent_deployment_raw/hostlist.txt -------------------------------------------------------------------------------- /tools/cisco_switch_config_backup/config_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/tools/cisco_switch_config_backup/config_backup.py -------------------------------------------------------------------------------- /tools/gitea_integration/GITEA.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/tools/gitea_integration/GITEA.hook -------------------------------------------------------------------------------- /tools/gitea_integration/gitea.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/tools/gitea_integration/gitea.init -------------------------------------------------------------------------------- /tools/gitea_integration/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/tools/gitea_integration/readme.md -------------------------------------------------------------------------------- /tools/import-with-host-check/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/tools/import-with-host-check/readme.md -------------------------------------------------------------------------------- /tools/import-with-host-check/wato_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/tools/import-with-host-check/wato_import.py -------------------------------------------------------------------------------- /tools/remote-datenübermittlung/Crontab-Empfang.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/tools/remote-datenübermittlung/Crontab-Empfang.txt -------------------------------------------------------------------------------- /tools/remote-datenübermittlung/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/tools/remote-datenübermittlung/config.sh -------------------------------------------------------------------------------- /tools/remote-datenübermittlung/data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/tools/remote-datenübermittlung/data.sh -------------------------------------------------------------------------------- /tools/remote-datenübermittlung/import_data_to_nagios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/tools/remote-datenübermittlung/import_data_to_nagios.sh -------------------------------------------------------------------------------- /tools/remote-datenübermittlung/postfix_snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/tools/remote-datenübermittlung/postfix_snippet.txt -------------------------------------------------------------------------------- /tools/remote-datenübermittlung/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/tools/remote-datenübermittlung/readme.md -------------------------------------------------------------------------------- /tools/remote-datenübermittlung/unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/tools/remote-datenübermittlung/unpack.py -------------------------------------------------------------------------------- /tools/voice_notify/etc-asterisk/extensions_voicealerts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/tools/voice_notify/etc-asterisk/extensions_voicealerts.conf -------------------------------------------------------------------------------- /tools/voice_notify/omd-sites-sitename-local-bin/call.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/tools/voice_notify/omd-sites-sitename-local-bin/call.pl -------------------------------------------------------------------------------- /tools/voice_notify/usr-share-asterisk-agi-bin/acknowledge.agi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yogibaer75/Check_MK-Things/HEAD/tools/voice_notify/usr-share-asterisk-agi-bin/acknowledge.agi --------------------------------------------------------------------------------