Part 3.[PSGet-Counter] The Powershell Get-Counter cmdlet

Part 1.[Overview] ElasticSearch, Kibana, Logstash, and Windows Metrics over PowerShell TCP Connections Part 2.[PSJSON] The Powershell JSON TCP Connection Part 3.[PSGet-Counter] The Powershell Get-Counter cmdlet In the github repo, let’s take a look at the actual counters that are being sent. We have Network, CPU, Disk and Pages counters. We will look at the Network counters. […]


Part 2.[PSJSON] The Powershell JSON TCP Connection

Part 1.[Overview] ElasticSearch, Kibana, Logstash, and Windows Metrics over PowerShell TCP Connections Part 2.[PSJSON] The Powershell JSON TCP Connection Part 3.[PSGet-Counter] The Powershell Get-Counter cmdlet The JSON TCP connection is as follows: Function Send-JsonOverTcp {     param ( [ValidateNotNullOrEmpty()]     [string] $LogstashServer,     [int] $Port,     $JsonObject)     $JsonString = […]