PRTG Citrix Sensor (Sessions Connected and Average Login Duration)
Modified on 2025-06-10 12:52:34 +0200
Attention: This article is a record of a conversation with the Paessler support team. The information in this conversation is not updated to preserve the historical record. As a result, some of the information or recommendations in this conversation might be out of date.
Important: We no longer maintain this article. The information might be out of date.
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
Disclaimer:
The information in the Paessler Knowledge Base comes without warranty of any kind. Use at your own risk. Before applying any instructions please exercise proper system administrator housekeeping. You must make sure that a proper backup of all your data is available.
Hi,
You can get your active (connected) sessions with the following Powershell commands
$Active_Session = (Get-BrokerSession | where {$_.SessionState -eq "Active" }).CountOn 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