├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── DashboardConfig ├── Begin-EUCMonitor.ps1 ├── Dashboards │ ├── AD-Details.json │ ├── App-V-Details.json │ ├── CC-Details.json │ ├── Director-Details.json │ ├── EUCMonitoring.json │ ├── FAS-Details.json │ ├── Netscaler-Details.json │ ├── NetscalerGateway-Details.json │ ├── PVS-Details.json │ ├── SQL-Details.json │ ├── Session-Details.json │ ├── Storefront-Details.json │ ├── UPS-Details.json │ ├── WEM-Details.json │ ├── XDController-Details.json │ ├── XDLicensing-Details.json │ └── Xenserver-Details.json ├── DataSource.json └── Format-DashboardJSON.ps1 ├── LICENSE ├── PSGallery ├── EUCMonitoring.psd1 ├── EUCMonitoring.psm1 ├── Private │ ├── Get-AAAUser.ps1 │ ├── Get-CTXLicenseCount.ps1 │ ├── Get-DonutHTML.ps1 │ ├── Get-InfluxTimestamp.ps1 │ ├── Get-InfluxURI.ps1 │ ├── Get-LogonDuration.ps1 │ ├── Get-XDLicenseCount.ps1 │ ├── Get-vServer.ps1 │ ├── Install-VisualizationSetup.ps1 │ ├── New-HtmlReport.ps1 │ ├── Send-EUCResultToInfluxDB.ps1 │ ├── Send-SlackMessage.ps1 │ ├── Test-IP.ps1 │ ├── Test-NetScaler.ps1 │ ├── Test-NetscalerGateway.ps1 │ ├── Test-Series.ps1 │ ├── Test-Service.ps1 │ ├── Test-URL.ps1 │ ├── Test-ValidCert.ps1 │ ├── Test-XdCatalogHealth.ps1 │ ├── Test-XdControllerHealth.ps1 │ ├── Test-XdDeliveryGroupHealth.ps1 │ ├── Test-XdHypervisorHealth.ps1 │ ├── Test-XdLicense.ps1 │ ├── Test-XdSessionInfo.ps1 │ ├── Test-XdWorker.ps1 │ ├── Test-XdWorkerAdvanced.ps1 │ ├── Test-XenServer.ps1 │ ├── Uninstall-VisualizationSetup.ps1 │ ├── connect-netscaler.ps1 │ ├── connect-server.ps1 │ └── disconnect-netscaler.ps1 └── Public │ ├── New-EUCMonitoringConfig.ps1 │ ├── Set-EUCMonitoring.ps1 │ ├── Show-EUCResult.ps1 │ └── Start-EUCMonitor.ps1 ├── Package ├── euc-monitoring-json-ref.txt ├── euc-monitoring.css └── euc-monitoring.json.template ├── README.MD ├── Tests ├── EUCMonitoring.tests.ps1 ├── JSON.tests.ps1 └── Main.tests.ps1 ├── _config.yml ├── appveyor.yml └── img ├── logo.png └── overview.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/.gitignore -------------------------------------------------------------------------------- /DashboardConfig/Begin-EUCMonitor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/DashboardConfig/Begin-EUCMonitor.ps1 -------------------------------------------------------------------------------- /DashboardConfig/Dashboards/AD-Details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/DashboardConfig/Dashboards/AD-Details.json -------------------------------------------------------------------------------- /DashboardConfig/Dashboards/App-V-Details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/DashboardConfig/Dashboards/App-V-Details.json -------------------------------------------------------------------------------- /DashboardConfig/Dashboards/CC-Details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/DashboardConfig/Dashboards/CC-Details.json -------------------------------------------------------------------------------- /DashboardConfig/Dashboards/Director-Details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/DashboardConfig/Dashboards/Director-Details.json -------------------------------------------------------------------------------- /DashboardConfig/Dashboards/EUCMonitoring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/DashboardConfig/Dashboards/EUCMonitoring.json -------------------------------------------------------------------------------- /DashboardConfig/Dashboards/FAS-Details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/DashboardConfig/Dashboards/FAS-Details.json -------------------------------------------------------------------------------- /DashboardConfig/Dashboards/Netscaler-Details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/DashboardConfig/Dashboards/Netscaler-Details.json -------------------------------------------------------------------------------- /DashboardConfig/Dashboards/NetscalerGateway-Details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/DashboardConfig/Dashboards/NetscalerGateway-Details.json -------------------------------------------------------------------------------- /DashboardConfig/Dashboards/PVS-Details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/DashboardConfig/Dashboards/PVS-Details.json -------------------------------------------------------------------------------- /DashboardConfig/Dashboards/SQL-Details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/DashboardConfig/Dashboards/SQL-Details.json -------------------------------------------------------------------------------- /DashboardConfig/Dashboards/Session-Details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/DashboardConfig/Dashboards/Session-Details.json -------------------------------------------------------------------------------- /DashboardConfig/Dashboards/Storefront-Details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/DashboardConfig/Dashboards/Storefront-Details.json -------------------------------------------------------------------------------- /DashboardConfig/Dashboards/UPS-Details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/DashboardConfig/Dashboards/UPS-Details.json -------------------------------------------------------------------------------- /DashboardConfig/Dashboards/WEM-Details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/DashboardConfig/Dashboards/WEM-Details.json -------------------------------------------------------------------------------- /DashboardConfig/Dashboards/XDController-Details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/DashboardConfig/Dashboards/XDController-Details.json -------------------------------------------------------------------------------- /DashboardConfig/Dashboards/XDLicensing-Details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/DashboardConfig/Dashboards/XDLicensing-Details.json -------------------------------------------------------------------------------- /DashboardConfig/Dashboards/Xenserver-Details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/DashboardConfig/Dashboards/Xenserver-Details.json -------------------------------------------------------------------------------- /DashboardConfig/DataSource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/DashboardConfig/DataSource.json -------------------------------------------------------------------------------- /DashboardConfig/Format-DashboardJSON.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/DashboardConfig/Format-DashboardJSON.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/LICENSE -------------------------------------------------------------------------------- /PSGallery/EUCMonitoring.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/EUCMonitoring.psd1 -------------------------------------------------------------------------------- /PSGallery/EUCMonitoring.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/EUCMonitoring.psm1 -------------------------------------------------------------------------------- /PSGallery/Private/Get-AAAUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Get-AAAUser.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Get-CTXLicenseCount.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Get-CTXLicenseCount.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Get-DonutHTML.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Get-DonutHTML.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Get-InfluxTimestamp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Get-InfluxTimestamp.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Get-InfluxURI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Get-InfluxURI.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Get-LogonDuration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Get-LogonDuration.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Get-XDLicenseCount.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Get-XDLicenseCount.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Get-vServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Get-vServer.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Install-VisualizationSetup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Install-VisualizationSetup.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/New-HtmlReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/New-HtmlReport.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Send-EUCResultToInfluxDB.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Send-EUCResultToInfluxDB.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Send-SlackMessage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Send-SlackMessage.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Test-IP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Test-IP.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Test-NetScaler.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Test-NetScaler.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Test-NetscalerGateway.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Test-NetscalerGateway.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Test-Series.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Test-Series.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Test-Service.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Test-Service.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Test-URL.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Test-URL.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Test-ValidCert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Test-ValidCert.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Test-XdCatalogHealth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Test-XdCatalogHealth.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Test-XdControllerHealth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Test-XdControllerHealth.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Test-XdDeliveryGroupHealth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Test-XdDeliveryGroupHealth.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Test-XdHypervisorHealth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Test-XdHypervisorHealth.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Test-XdLicense.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Test-XdLicense.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Test-XdSessionInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Test-XdSessionInfo.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Test-XdWorker.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Test-XdWorker.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Test-XdWorkerAdvanced.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Test-XdWorkerAdvanced.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Test-XenServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Test-XenServer.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/Uninstall-VisualizationSetup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/Uninstall-VisualizationSetup.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/connect-netscaler.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/connect-netscaler.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/connect-server.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/connect-server.ps1 -------------------------------------------------------------------------------- /PSGallery/Private/disconnect-netscaler.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Private/disconnect-netscaler.ps1 -------------------------------------------------------------------------------- /PSGallery/Public/New-EUCMonitoringConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Public/New-EUCMonitoringConfig.ps1 -------------------------------------------------------------------------------- /PSGallery/Public/Set-EUCMonitoring.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Public/Set-EUCMonitoring.ps1 -------------------------------------------------------------------------------- /PSGallery/Public/Show-EUCResult.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Public/Show-EUCResult.ps1 -------------------------------------------------------------------------------- /PSGallery/Public/Start-EUCMonitor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/PSGallery/Public/Start-EUCMonitor.ps1 -------------------------------------------------------------------------------- /Package/euc-monitoring-json-ref.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/Package/euc-monitoring-json-ref.txt -------------------------------------------------------------------------------- /Package/euc-monitoring.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/Package/euc-monitoring.css -------------------------------------------------------------------------------- /Package/euc-monitoring.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/Package/euc-monitoring.json.template -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/README.MD -------------------------------------------------------------------------------- /Tests/EUCMonitoring.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/Tests/EUCMonitoring.tests.ps1 -------------------------------------------------------------------------------- /Tests/JSON.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/Tests/JSON.tests.ps1 -------------------------------------------------------------------------------- /Tests/Main.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/Tests/Main.tests.ps1 -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/_config.yml -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/appveyor.yml -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbretty/EUCMonitoring/HEAD/img/overview.png --------------------------------------------------------------------------------