Kiln » KilnSupportScripts Powershell Scripts to help monitor a Kiln environment. Contact Fog Creek support before using.
Clone URL:  
tools.ps1
1
2
3
function Get-BackendMemoryFromLog([string]$logFile){ cat $logFile | Select-String "service backend" | foreach{[int](($_ -split ":")[-1])} }