本文整理汇总了VB.NET中System.Web.Management.WebProcessStatistics类的典型用法代码示例。如果您正苦于以下问题:VB.NET WebProcessStatistics类的具体用法?VB.NET WebProcessStatistics怎么用?VB.NET WebProcessStatistics使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了WebProcessStatistics类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的VB.NET代码示例。
示例1: SampleWebProcessStatistics
' 导入命名空间
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
开发者ID:VB.NET开发者,项目名称:System.Web.Management,代码行数:143,代码来源:WebProcessStatistics
注:本文中的System.Web.Management.WebProcessStatistics类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论