I asked a question about knowing the running session count in IIS.
Get running session count from IIS for my hosted Asp.Net web site
and I got the following powershell script
Write-host Getting performance counters ...
$perfCounterString = "\asp.net applications(__total__)\sessions active"
$counter = get-counter -counter $perfCounterString
$rawValue = $counter.CounterSamples[0].CookedValue
write-host Session Count is $rawValue
Rightnow this script is giving active session count for all websites hosted in IIS
I just wanted to know how to modify this script so that it should give active session count only for a particular website.
$ServerName = 'IIs1'
$SiteName = 'default web site'
get-counter "\\$ServerName\web service($SiteName)\current connections"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With