CoreOps/System/Get-SDPStatsSystem.ps1
function Get-SDPStatsSystem { param( [parameter()] [string] $k2context = 'k2rfconnection' ) begin { $endpoint = "stats/system" } process { $results = Invoke-SDPRestCall -endpoint $endpoint -method GET -parameterList $PSBoundParameters -k2context $k2context return $results } } |