Recent content by Arbiter-Bryan

  1. A

    PowerShell Cmdlets

    I got this answer from support: Remove-Host ((Get-Host) | where-object {$_.IsLocal -eq $true}).HostAddress -Wait $true
  2. A

    PowerShell Cmdlets

    I am building a PowerShell script that will upgrade an existing installation of StateServer. I am trying to make it as graceful and robust as possible. I need a way to remove the host from the store before I uninstall it. The documentation is vague and references a command (leave_wait) that...
  3. A

    ScaleOut StateServer Performance Monitoring

    DataDog can collect custom Windows Performance Counters over WMI. It looks like the counters can be found with a bit of PowerShell: PS C:\Windows\system32> Get-WmiObject -Query "select * from Win32_PerfFormattedData_sossperflib_ScaleOutStateServerService" __GENUS : 2...
  4. A

    ScaleOut StateServer Performance Monitoring

    I'm interested in monitoring the performance of our ScaleOut StateServers (v5.10.5). I know I can view some stats with Windows PerfMon. Which stats are going to indicate an issue? What should I be watching for? And most importantly, how do I get those stats off the host and into a log...
Top