Hi
Prior to switching to switching to Citrix Cloud control plane, we used the below saved/scheduled search to embed a list of VDA on a screen in our NOC - it currently just shows our old delivery controller
Is there a way to get a list of all registered VDAs, if they are in maintenance mode etc via Citrix Cloud integration?
| pivot uberAgent Citrix_Machines
latest(CatalogDisplayName) as "Machine catalog"
latest(IsRegistered) as "Registered?"
latest(IsInMaintenanceMode) as "Maint. mode?"
latest(EffectiveLoadIndex) as "Load index"
latest(CurrentSessionCount) as "#Sessions"
latest(CPUCoresLogical) as "#CPU cores"
latest(RAMSizeGB) as "RAM (GB)"
latest(HwIsVirtualMachine) as "Is VM?"
latest(HwModel) as "Hardware model"
latest(OsVersion) as "OS version #"
latest(OsBuild) as "OS build #"
latest(AgentVersion) as "VDA version"
values(TagsSplit) as TagsSplit
splitrow
NameHost as Name
filter host is "*"
filter SiteGuid is "*"
| eval Tags = mvjoin (TagsSplit, ", ")
| table
Name
"Machine catalog"
"Registered?"
"Maint. mode?"
"Load index"
"#Sessions"
"#CPU cores"
"RAM (GB)"
"OS version #"
"OS build #"
"VDA version"