Forum Discussion

Cole_McDonald's avatar
Cole_McDonald
Icon for Professor rankProfessor
6 years ago

RDP Active Users Powershell DataSource - Counter only

(invoke-command -ComputerName ##system.displayname## -ScriptBlock { qwinsta } | sls active | % { ($_ -split "\s+")[2] }).count

I'm currently working through creating a script datasource using the powershell above.  When making the datasource and testing the script on an arbitrary windows server, the stdOutput reads an integer that matches the number of active users on that system.  When I graph it, it shows very strange numbers as a result.  .059 & 23.68million are both not integers, nor accurate to what the script when tested is showing as a stdOutput response.

What am I doing wrong?

1 Reply

Replies have been turned off for this discussion
  • I figured it out... I was using "Counter" rather than "Gauge" when collecting the data.  All better now.