Created
May 25, 2015 17:13
-
-
Save TianyuanC/67cc9f66f996da0d112d to your computer and use it in GitHub Desktop.
WAD Config XML
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <PublicConfig xmlns="http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration"> | |
| <WadCfg> | |
| <DiagnosticMonitorConfiguration overallQuotaInMB="4096"> | |
| <DiagnosticInfrastructureLogs scheduledTransferLogLevelFilter="Verbose" /> | |
| <Directories scheduledTransferPeriod="PT1M"> | |
| <IISLogs containerName="wad-iis-logfiles" /> | |
| <FailedRequestLogs containerName="wad-failedrequestlogs" /> | |
| </Directories> | |
| <PerformanceCounters scheduledTransferPeriod="PT1M"> | |
| <PerformanceCounterConfiguration counterSpecifier="\Memory\Available MBytes" sampleRate="PT3M" /> | |
| <PerformanceCounterConfiguration counterSpecifier="\Web Service(_Total)\ISAPI Extension Requests/sec" sampleRate="PT3M" /> | |
| <PerformanceCounterConfiguration counterSpecifier="\Web Service(_Total)\Bytes Total/Sec" sampleRate="PT3M" /> | |
| <PerformanceCounterConfiguration counterSpecifier="\ASP.NET Applications(__Total__)\Requests/Sec" sampleRate="PT3M" /> | |
| <PerformanceCounterConfiguration counterSpecifier="\ASP.NET Applications(__Total__)\Errors Total/Sec" sampleRate="PT3M" /> | |
| <PerformanceCounterConfiguration counterSpecifier="\ASP.NET\Requests Queued" sampleRate="PT3M" /> | |
| <PerformanceCounterConfiguration counterSpecifier="\ASP.NET\Requests Rejected" sampleRate="PT3M" /> | |
| <PerformanceCounterConfiguration counterSpecifier="\Processor(_Total)\% Processor Time" sampleRate="PT3M" /> | |
| </PerformanceCounters> | |
| <WindowsEventLog scheduledTransferPeriod="PT1M"> | |
| <DataSource name="Application!*" /> | |
| </WindowsEventLog> | |
| <CrashDumps dumpType="Full"> | |
| <CrashDumpConfiguration processName="WaAppAgent.exe" /> | |
| <CrashDumpConfiguration processName="WaIISHost.exe" /> | |
| <CrashDumpConfiguration processName="WindowsAzureGuestAgent.exe" /> | |
| <CrashDumpConfiguration processName="WaWorkerHost.exe" /> | |
| <CrashDumpConfiguration processName="DiagnosticsAgent.exe" /> | |
| <CrashDumpConfiguration processName="w3wp.exe" /> | |
| </CrashDumps> | |
| <Logs scheduledTransferPeriod="PT1M" scheduledTransferLogLevelFilter="Verbose" /> | |
| </DiagnosticMonitorConfiguration> | |
| </WadCfg> | |
| </PublicConfig> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment