├── .gitignore ├── CHANGELOG.md ├── Module.php ├── README.md ├── actions ├── CControllerBGHost.php ├── CControllerBGHostView.php └── CControllerBGHostViewRefresh.php ├── manifest.json ├── partials ├── js │ └── monitoring.host.view.refresh.js.php └── module.monitoring.host.view.html.php ├── screenshots └── zabbix-module-hosts-tree-1.png └── views ├── css └── bghost.css ├── js └── monitoring.host.view.js.php ├── module.monitoring.bghost.view.php └── module.monitoring.bghost.view.refresh.php /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGmot/zabbix-module-hosts-tree/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGmot/zabbix-module-hosts-tree/HEAD/Module.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGmot/zabbix-module-hosts-tree/HEAD/README.md -------------------------------------------------------------------------------- /actions/CControllerBGHost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGmot/zabbix-module-hosts-tree/HEAD/actions/CControllerBGHost.php -------------------------------------------------------------------------------- /actions/CControllerBGHostView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGmot/zabbix-module-hosts-tree/HEAD/actions/CControllerBGHostView.php -------------------------------------------------------------------------------- /actions/CControllerBGHostViewRefresh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGmot/zabbix-module-hosts-tree/HEAD/actions/CControllerBGHostViewRefresh.php -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGmot/zabbix-module-hosts-tree/HEAD/manifest.json -------------------------------------------------------------------------------- /partials/js/monitoring.host.view.refresh.js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGmot/zabbix-module-hosts-tree/HEAD/partials/js/monitoring.host.view.refresh.js.php -------------------------------------------------------------------------------- /partials/module.monitoring.host.view.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGmot/zabbix-module-hosts-tree/HEAD/partials/module.monitoring.host.view.html.php -------------------------------------------------------------------------------- /screenshots/zabbix-module-hosts-tree-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGmot/zabbix-module-hosts-tree/HEAD/screenshots/zabbix-module-hosts-tree-1.png -------------------------------------------------------------------------------- /views/css/bghost.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGmot/zabbix-module-hosts-tree/HEAD/views/css/bghost.css -------------------------------------------------------------------------------- /views/js/monitoring.host.view.js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGmot/zabbix-module-hosts-tree/HEAD/views/js/monitoring.host.view.js.php -------------------------------------------------------------------------------- /views/module.monitoring.bghost.view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGmot/zabbix-module-hosts-tree/HEAD/views/module.monitoring.bghost.view.php -------------------------------------------------------------------------------- /views/module.monitoring.bghost.view.refresh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGmot/zabbix-module-hosts-tree/HEAD/views/module.monitoring.bghost.view.refresh.php --------------------------------------------------------------------------------