There are no reviews yet. Be the first to send feedback to the community and the maintainers!
Repository Details
The Get-Counter cmdlet is very useful in obtaining performance counter information. Unfortunately, the Chairman feels the output is less than friendly. Especially if you wish to consume the output such as with additional filtering, exporting to a json file or writing to a database. Your challenge is to create a PowerShell function that takes the output from Get-Counter and transforms it into a more user friendly object. Each counter sample should be a separate object with these properties: Timestamp Computername CounterSet Counter Value You are free to use whatever property names you want as long as it is clear what the values represent.