gpt4 book ai didi

asp.net - 如何使用 PowerShell 了解托管在 IIS 中的特定网站的事件 session 计数

转载 作者:行者123 更新时间:2023-12-04 23:06:54 26 4
gpt4 key购买 nike

我问了一个关于了解 IIS 中正在运行的 session 计数的问题。

Get running session count from IIS for my hosted Asp.Net web site

我得到了以下 powershell 脚本

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

现在,此脚本正在为 IIS 中托管的所有网站提供事件 session 计数

我只是想知道如何修改此脚本,以便它只为特定网站提供事件 session 计数。

最佳答案

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

get-counter "\\$ServerName\web service($SiteName)\current connections"

关于asp.net - 如何使用 PowerShell 了解托管在 IIS 中的特定网站的事件 session 计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9920281/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com