├── LICENSE ├── README.md ├── lib └── check_mk │ └── base │ └── plugins │ └── agent_based │ └── unifi_controller.py └── share └── check_mk ├── agents └── special │ └── agent_unifi_controller ├── checkman ├── unifi_controller ├── unifi_device ├── unifi_device_shortlist ├── unifi_network_ports_if ├── unifi_network_radios ├── unifi_network_ssids ├── unifi_sites └── unifi_ssid_list ├── checks └── agent_unifi_controller ├── inventory └── unifi_controller └── web └── plugins ├── metrics └── unifi_metrics.py ├── perfometer └── unifi_performeter.py └── wato └── datasource_unifi_controller.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashclub/check-unifi-controller/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashclub/check-unifi-controller/HEAD/README.md -------------------------------------------------------------------------------- /lib/check_mk/base/plugins/agent_based/unifi_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashclub/check-unifi-controller/HEAD/lib/check_mk/base/plugins/agent_based/unifi_controller.py -------------------------------------------------------------------------------- /share/check_mk/agents/special/agent_unifi_controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashclub/check-unifi-controller/HEAD/share/check_mk/agents/special/agent_unifi_controller -------------------------------------------------------------------------------- /share/check_mk/checkman/unifi_controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashclub/check-unifi-controller/HEAD/share/check_mk/checkman/unifi_controller -------------------------------------------------------------------------------- /share/check_mk/checkman/unifi_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashclub/check-unifi-controller/HEAD/share/check_mk/checkman/unifi_device -------------------------------------------------------------------------------- /share/check_mk/checkman/unifi_device_shortlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashclub/check-unifi-controller/HEAD/share/check_mk/checkman/unifi_device_shortlist -------------------------------------------------------------------------------- /share/check_mk/checkman/unifi_network_ports_if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashclub/check-unifi-controller/HEAD/share/check_mk/checkman/unifi_network_ports_if -------------------------------------------------------------------------------- /share/check_mk/checkman/unifi_network_radios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashclub/check-unifi-controller/HEAD/share/check_mk/checkman/unifi_network_radios -------------------------------------------------------------------------------- /share/check_mk/checkman/unifi_network_ssids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashclub/check-unifi-controller/HEAD/share/check_mk/checkman/unifi_network_ssids -------------------------------------------------------------------------------- /share/check_mk/checkman/unifi_sites: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashclub/check-unifi-controller/HEAD/share/check_mk/checkman/unifi_sites -------------------------------------------------------------------------------- /share/check_mk/checkman/unifi_ssid_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashclub/check-unifi-controller/HEAD/share/check_mk/checkman/unifi_ssid_list -------------------------------------------------------------------------------- /share/check_mk/checks/agent_unifi_controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashclub/check-unifi-controller/HEAD/share/check_mk/checks/agent_unifi_controller -------------------------------------------------------------------------------- /share/check_mk/inventory/unifi_controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashclub/check-unifi-controller/HEAD/share/check_mk/inventory/unifi_controller -------------------------------------------------------------------------------- /share/check_mk/web/plugins/metrics/unifi_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashclub/check-unifi-controller/HEAD/share/check_mk/web/plugins/metrics/unifi_metrics.py -------------------------------------------------------------------------------- /share/check_mk/web/plugins/perfometer/unifi_performeter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashclub/check-unifi-controller/HEAD/share/check_mk/web/plugins/perfometer/unifi_performeter.py -------------------------------------------------------------------------------- /share/check_mk/web/plugins/wato/datasource_unifi_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashclub/check-unifi-controller/HEAD/share/check_mk/web/plugins/wato/datasource_unifi_controller.py --------------------------------------------------------------------------------