Hi,
We have PRTG for a couple of weeks now but i'm searching for a Sessions connected and Average login Duration Citrix sensor for PRTG.
When i'm searching in Citrix Director i can see the stats: https://i.imgur.com/awYMAIC.png but i also want them in PRTG for our wall screen.
Can somebody help me with this?
Kind regards,
Arjan
Article Comments
Hi,
You can get your active (connected) sessions with the following Powershell commands
$Active_Session = (Get-BrokerSession | where {$_.SessionState -eq "Active" }).Count
On this Post you can find out more details about PRTG and Citrix Monitoring. Sadly i don't have an easy solution for monitoring the login duration.
Apr, 2018 - Permalink
Hi,
You can get your active (connected) sessions with the following Powershell commands
$Active_Session = (Get-BrokerSession | where {$_.SessionState -eq "Active" }).Count
On this Post you can find out more details about PRTG and Citrix Monitoring. Sadly i don't have an easy solution for monitoring the login duration.
Apr, 2018 - Permalink