Book Image

VMware Horizon View 6 Desktop Virtualization Cookbook

By : Jason Ventresco
Book Image

VMware Horizon View 6 Desktop Virtualization Cookbook

By: Jason Ventresco

Overview of this book

Table of Contents (18 chapters)
VMware Horizon View 6 Desktop Virtualization Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
4
Managing VMware Horizon View with PowerCLI
Index

Retrieving the Horizon View infrastructure's health monitors and their status


The Get-Monitor command is used to retrieve Horizon View's health-monitoring data from all or specific monitors.

How to do it…

The following example command retrieves all the health-monitoring data for the VIEWCS01 Connection Server:

Get-Monitor -Monitor_id "VIEWCS01"

Omit the options to retrieve a list of all the monitoring data.

How it works…

The Get-Monitor command supports two different options:

  • The Monitor_id option: This is the ID of the monitor. You can provide the specific monitor ID itself, as obtained from the Get-Monitor command, or you can specify a Horizon View server name; all monitors for that server will be returned.

  • The Monitor option: This is the name of the monitor. The possible values include the following:

    • The CBMonitor option: This is the Connection Server monitor

    • The DBMonitor option: This is the Horizon View event database monitor

    • The DomainMonitor option: This is the domain connection monitor

    • The...