├── .gitattributes ├── .github └── workflows │ └── build-package.yml ├── .gitignore ├── Developers.md ├── LICENSE.md ├── README.md ├── Template_Windows_Hyper-V_Host2.yaml ├── Template_Windows_Hyper-V_VM_Guest_2.yaml ├── hyper-v-monitoring2.ps1 ├── hyper-v.conf └── sample-data ├── apps-aarboard.json ├── counters.html ├── disk-counters.htm ├── legacy.json ├── nic-counters.htm ├── nic-legacy-counters.htm ├── nic-legacy-counters2.htm ├── nic_legacy2.htm ├── nic_monitoring.htm ├── sv101 (linux).json ├── sv101-2-legacy.htm └── sv101.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-schild/Zabbix-HyperV-Templates/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-schild/Zabbix-HyperV-Templates/HEAD/.github/workflows/build-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-schild/Zabbix-HyperV-Templates/HEAD/.gitignore -------------------------------------------------------------------------------- /Developers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-schild/Zabbix-HyperV-Templates/HEAD/Developers.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-schild/Zabbix-HyperV-Templates/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-schild/Zabbix-HyperV-Templates/HEAD/README.md -------------------------------------------------------------------------------- /Template_Windows_Hyper-V_Host2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-schild/Zabbix-HyperV-Templates/HEAD/Template_Windows_Hyper-V_Host2.yaml -------------------------------------------------------------------------------- /Template_Windows_Hyper-V_VM_Guest_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-schild/Zabbix-HyperV-Templates/HEAD/Template_Windows_Hyper-V_VM_Guest_2.yaml -------------------------------------------------------------------------------- /hyper-v-monitoring2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-schild/Zabbix-HyperV-Templates/HEAD/hyper-v-monitoring2.ps1 -------------------------------------------------------------------------------- /hyper-v.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-schild/Zabbix-HyperV-Templates/HEAD/hyper-v.conf -------------------------------------------------------------------------------- /sample-data/apps-aarboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-schild/Zabbix-HyperV-Templates/HEAD/sample-data/apps-aarboard.json -------------------------------------------------------------------------------- /sample-data/counters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-schild/Zabbix-HyperV-Templates/HEAD/sample-data/counters.html -------------------------------------------------------------------------------- /sample-data/disk-counters.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-schild/Zabbix-HyperV-Templates/HEAD/sample-data/disk-counters.htm -------------------------------------------------------------------------------- /sample-data/legacy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-schild/Zabbix-HyperV-Templates/HEAD/sample-data/legacy.json -------------------------------------------------------------------------------- /sample-data/nic-counters.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-schild/Zabbix-HyperV-Templates/HEAD/sample-data/nic-counters.htm -------------------------------------------------------------------------------- /sample-data/nic-legacy-counters.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-schild/Zabbix-HyperV-Templates/HEAD/sample-data/nic-legacy-counters.htm -------------------------------------------------------------------------------- /sample-data/nic-legacy-counters2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-schild/Zabbix-HyperV-Templates/HEAD/sample-data/nic-legacy-counters2.htm -------------------------------------------------------------------------------- /sample-data/nic_legacy2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-schild/Zabbix-HyperV-Templates/HEAD/sample-data/nic_legacy2.htm -------------------------------------------------------------------------------- /sample-data/nic_monitoring.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-schild/Zabbix-HyperV-Templates/HEAD/sample-data/nic_monitoring.htm -------------------------------------------------------------------------------- /sample-data/sv101 (linux).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-schild/Zabbix-HyperV-Templates/HEAD/sample-data/sv101 (linux).json -------------------------------------------------------------------------------- /sample-data/sv101-2-legacy.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-schild/Zabbix-HyperV-Templates/HEAD/sample-data/sv101-2-legacy.htm -------------------------------------------------------------------------------- /sample-data/sv101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-schild/Zabbix-HyperV-Templates/HEAD/sample-data/sv101.json --------------------------------------------------------------------------------