WebProcessStatistics 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
실행 중인 프로세스의 상태를 평가하기 위한 정보를 제공합니다.
public ref class WebProcessStatistics
public class WebProcessStatistics
type WebProcessStatistics = class
Public Class WebProcessStatistics
- 상속
-
WebProcessStatistics
예제
다음 코드 예제는 두 부분으로 구성 합니다. 첫 번째는 ASP.NET을 사용 하는 사용자 지정 이벤트를 사용할 수 있도록 하는 구성 파일의 일부는 WebProcessStatistics 형식입니다. 두 번째는 이 사용자 지정 이벤트를 구현하는 방법을 보여줍니다.
사용자 지정 이벤트가 발생 하는지 적절 한 시기, 이벤트가 발생할 때 해당 하는 시스템 상태를 대체는 수를 확인 합니다.
<healthMonitoring
enabled="true" heartBeatInterval="0">
<eventMappings>
<add name="SampleProcessStatistics" type="SamplesAspNet.SampleWebProcessStatistics, webprocessstatistics, Version=1.0.1585.27289, Culture=neutral, PublicKeyToken=3648e5c763a8239f, processorArchitecture=MSIL"/>
</eventMappings>
<rules>
<add
name="Custom Process Statistics"
eventName="SampleProcessStatistics"
provider="EventLogProvider"
profile="Default"/>
</rules>
</healthMonitoring>
using System;
using System.Text;
using System.Web;
using System.Web.Management;
namespace SamplesAspNet
{
// Implements a custom WebBaseEvent type that
// uses the WebProcessStatistics.
public class SampleWebProcessStatistics :
WebBaseEvent
{
private StringBuilder eventInfo;
private static WebProcessStatistics processStatistics;
// Instantiate the SampleWebProcessStatistics
// type.
public SampleWebProcessStatistics(string msg,
object eventSource, int eventCode):
base(msg, eventSource, eventCode)
{
// Perform custom initialization.
string customMsg =
string.Format("Event created at: {0}",
EventTime.ToString());
eventInfo = new StringBuilder();
eventInfo.AppendLine(customMsg);
// Instantiate the WebProcessStatistics
// type.
processStatistics = new WebProcessStatistics();
}
// Raises the event.
public override void Raise()
{
// Perform custom processing.
eventInfo.Append(
string.Format(
"Event raised at: {0}\n", EventTime.ToString()));
// Raise the event.
base.Raise();
}
public string GetAppDomainCount()
{
// Get the app domain count.
return (string.Format(
"Application domain count: {0}",
processStatistics.AppDomainCount.ToString()));
}
public string GetManagedHeapSize()
{
// Get the mamaged heap size.
return (string.Format(
"Managed heap size: {0}",
processStatistics.ManagedHeapSize.ToString()));
}
public string GetPeakWorkingSet()
{
// Get the peak working set.
return (string.Format(
"Peak working set: {0}",
processStatistics.PeakWorkingSet.ToString()));
}
public string GetProcessStartTime()
{
// Get the process start time.
return (string.Format(
"Process start time: {0}",
processStatistics.ProcessStartTime.ToString()));
}
public string GetRequestsExecuting()
{
// Get the requests in execution.
return (string.Format(
"Requests executing: {0}",
processStatistics.RequestsExecuting.ToString()));
}
public string GetRequestsQueued()
{
// Get the requests queued.
return (string.Format(
"Requests queued: {0}",
processStatistics.RequestsQueued.ToString()));
}
public string GetRequestsRejected()
{
// Get the requests rejected.
return (string.Format(
"Requests rejected: {0}",
processStatistics.RequestsRejected.ToString()));
}
public string GetThreadCount()
{
// Get the thread count.
return (string.Format(
"Thread count: {0}",
processStatistics.ThreadCount.ToString()));
}
public string GetWorkingSet()
{
// Get the working set.
return (string.Format(
"Working set: {0}",
processStatistics.WorkingSet.ToString()));
}
//Formats Web request event information.
public override void FormatCustomEventDetails(
WebEventFormatter formatter)
{
base.FormatCustomEventDetails(formatter);
// Add custom data.
formatter.AppendLine("");
formatter.AppendLine(
"Custom Process Statistics:");
formatter.IndentationLevel += 1;
// Get the process statistics.
formatter.AppendLine(GetAppDomainCount());
formatter.AppendLine(GetManagedHeapSize());
formatter.AppendLine(GetPeakWorkingSet());
formatter.AppendLine(GetProcessStartTime());
formatter.AppendLine(GetRequestsExecuting());
formatter.AppendLine(GetRequestsQueued());
formatter.AppendLine(GetRequestsRejected());
formatter.AppendLine(GetThreadCount());
formatter.AppendLine(GetWorkingSet());
formatter.IndentationLevel -= 1;
formatter.AppendLine(eventInfo.ToString());
}
}
}
Imports System.Text
Imports System.Web
Imports System.Web.Management
' Implements a custom WebBaseEvent type that
' uses the WebProcessStatistics.
Public Class SampleWebProcessStatistics
Inherits WebBaseEvent
Private eventInfo As StringBuilder
Private Shared processStatistics As WebProcessStatistics
' Instantiate the SampleWebProcessStatistics
' type.
Public Sub New(ByVal msg As String, ByVal eventSource As Object, ByVal eventCode As Integer)
MyBase.New(msg, eventSource, eventCode)
' Perform custom initialization.
Dim customMsg As String = String.Format("Event created at: {0}", EventTime.ToString())
eventInfo = New StringBuilder()
eventInfo.AppendLine(customMsg)
' Instantiate the WebProcessStatistics
' type.
processStatistics = New WebProcessStatistics()
End Sub
' Raises the event.
Public Overrides Sub Raise()
' Perform custom processing.
eventInfo.Append(String.Format( _
"Event raised at: {0}" + _
ControlChars.Lf, EventTime.ToString()))
' Raise the event.
MyBase.Raise()
End Sub
Public Function GetAppDomainCount() As String
' Get the app domain count.
Return String.Format( _
"Application domain count: {0}", _
processStatistics.AppDomainCount.ToString())
End Function 'GetAppDomainCount
Public Function GetManagedHeapSize() As String
' Get the mamaged heap size.
Return String.Format( _
"Managed heap size: {0}", _
processStatistics.ManagedHeapSize.ToString())
End Function 'GetManagedHeapSize
Public Function GetPeakWorkingSet() As String
' Get the peak working set.
Return String.Format( _
"Peak working set: {0}", _
processStatistics.PeakWorkingSet.ToString())
End Function 'GetPeakWorkingSet
Public Function GetProcessStartTime() As String
' Get the process start time.
Return String.Format( _
"Process start time: {0}", _
processStatistics.ProcessStartTime.ToString())
End Function 'GetProcessStartTime
Public Function GetRequestsExecuting() As String
' Get the requests in execution.
Return String.Format( _
"Requests executing: {0}", _
processStatistics.RequestsExecuting.ToString())
End Function 'GetRequestsExecuting
Public Function GetRequestsQueued() As String
' Get the requests queued.
Return String.Format( _
"Requests queued: {0}", _
processStatistics.RequestsQueued.ToString())
End Function 'GetRequestsQueued
Public Function GetRequestsRejected() As String
' Get the requests rejected.
Return String.Format( _
"Requests rejected: {0}", _
processStatistics.RequestsRejected.ToString())
End Function 'GetRequestsRejected
Public Function GetThreadCount() As String
' Get the thread count.
Return String.Format( _
"Thread count: {0}", _
processStatistics.ThreadCount.ToString())
End Function 'GetThreadCount
Public Function GetWorkingSet() As String
' Get the working set.
Return String.Format( _
"Working set: {0}", _
processStatistics.WorkingSet.ToString())
End Function 'GetWorkingSet
'Formats Web request event information.
Public Overrides Sub FormatCustomEventDetails( _
ByVal formatter As WebEventFormatter)
MyBase.FormatCustomEventDetails(formatter)
' Add custom data.
formatter.AppendLine("")
formatter.AppendLine("Custom Process Statistics:")
formatter.IndentationLevel += 1
' Get the process statistics.
formatter.AppendLine(GetAppDomainCount())
formatter.AppendLine(GetManagedHeapSize())
formatter.AppendLine(GetPeakWorkingSet())
formatter.AppendLine(GetProcessStartTime())
formatter.AppendLine(GetRequestsExecuting())
formatter.AppendLine(GetRequestsQueued())
formatter.AppendLine(GetRequestsRejected())
formatter.AppendLine(GetThreadCount())
formatter.AppendLine(GetWorkingSet())
formatter.IndentationLevel -= 1
formatter.AppendLine(eventInfo.ToString())
End Sub
End Class
설명
ASP.NET 상태 모니터링 프로덕션와 운영 스태프를 배포 된 웹 애플리케이션을 관리할 수 있습니다. System.Web.Management 네임 스페이스 애플리케이션 상태 데이터 및이 데이터 처리를 담당 하는 공급자 형식이 패키징 담당 상태 이벤트 형식을 포함 합니다. 또한 상태 이벤트를 관리 하는 동안 유용한 지 원하는 형식을 포함 합니다.
인스턴스를 WebProcessStatistics 클래스를 사용 하 여 얻은 정보를 포함 합니다 WebHeartbeatEvent 형식입니다.
참고
대부분의 경우에 구현 된 대로 ASP.NET 상태 모니터링 유형을 사용할 수 없게 됩니다 및에서 값을 지정 하 여 상태 모니터링 시스템을 제어 하는 healthMonitoring
구성 섹션입니다. 사용자 고유의 사용자 지정 이벤트 및 공급자 상태 모니터링 형식에서 파생할 수 있습니다. 사용자 지정 이벤트 클래스를 만드는 예제를이 항목에 제공 된 예제를 참조 하세요.
다음은 ASP.NET 프로세스 통계를 포함 하는 하트 비트 이벤트 로그를 사용 하도록 설정 하려면 사용할 수는 구성 파일의 일부입니다.
<healthMonitoring
enabled="true" heartBeatInterval="100">
<rules>
<add
name="Process Statistics"
eventName="Heartbeats"
provider="EventLogProvider"
profile="Default"/>
</rules>
</healthMonitoring>
생성자
WebProcessStatistics() |
WebProcessStatistics 클래스의 새 인스턴스를 초기화합니다. |
속성
AppDomainCount |
프로세스의 애플리케이션 도메인 수를 가져옵니다. |
ManagedHeapSize |
관리되는 힙의 크기를 가져옵니다. |
PeakWorkingSet |
현재까지 프로세스의 수명에 대한 최대 작업 집합을 가져옵니다. |
ProcessStartTime |
프로세스가 시작된 시간을 가져옵니다. |
RequestsExecuting |
현재 실행 중인 요청의 수를 가져옵니다. |
RequestsQueued |
처리 대기 중인 요청 수를 가져옵니다. |
RequestsRejected |
거부된 요청의 수를 가져옵니다. |
ThreadCount |
프로세스 스레드의 총 수를 가져옵니다. |
WorkingSet |
프로세스의 작업 집합을 가져옵니다. |
메서드
Equals(Object) |
지정된 개체가 현재 개체와 같은지 확인합니다. (다음에서 상속됨 Object) |
FormatToString(WebEventFormatter) |
프로세스 통계를 서식 지정합니다. |
GetHashCode() |
기본 해시 함수로 작동합니다. (다음에서 상속됨 Object) |
GetType() |
현재 인스턴스의 Type을 가져옵니다. (다음에서 상속됨 Object) |
MemberwiseClone() |
현재 Object의 단순 복사본을 만듭니다. (다음에서 상속됨 Object) |
ToString() |
현재 개체를 나타내는 문자열을 반환합니다. (다음에서 상속됨 Object) |