Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to know the active session counts for a particular website hosted in IIS using PowerShell

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.

like image 850
Imran Rizvi Avatar asked Jan 17 '23 01:01

Imran Rizvi


1 Answers

$ServerName = 'IIs1'
$SiteName = 'default web site'

get-counter "\\$ServerName\web service($SiteName)\current connections"
like image 117
Shay Levy Avatar answered Jan 29 '23 22:01

Shay Levy