Created
April 28, 2012 17:09
-
-
Save RobBlackwell/2520279 to your computer and use it in GitHub Desktop.
Sample Windows Azure diagnostics.wadcfg
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" ?> | |
<DiagnosticMonitorConfiguration xmlns="http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration" configurationChangePollInterval="PT1M" overallQuotaInMB="4096"> | |
<DiagnosticInfrastructureLogs bufferQuotaInMB="1024" | |
scheduledTransferLogLevelFilter="Verbose" | |
scheduledTransferPeriod="PT1M" /> | |
<Logs bufferQuotaInMB="1024" | |
scheduledTransferLogLevelFilter="Verbose" | |
scheduledTransferPeriod="PT1M" /> | |
<WindowsEventLog bufferQuotaInMB="1024" | |
scheduledTransferLogLevelFilter="Verbose" | |
scheduledTransferPeriod="PT1M"> | |
<DataSource name="Application!*"/> | |
<DataSource name="System!*"/> | |
</WindowsEventLog> | |
<PerformanceCounters bufferQuotaInMB="1024" scheduledTransferPeriod="PT2M"> | |
<PerformanceCounterConfiguration counterSpecifier="\Memory\Available MBytes" sampleRate="PT1M"/> | |
<PerformanceCounterConfiguration counterSpecifier="\Processor(_Total)\% Processor Time" sampleRate="PT1M"/> | |
<PerformanceCounterConfiguration counterSpecifier="\Network Interface(*)\Bytes Sent/sec" sampleRate="PT1M"/> | |
<PerformanceCounterConfiguration counterSpecifier="\Network Interface(*)\Bytes Total/sec" sampleRate="PT1M"/> | |
</PerformanceCounters> | |
</DiagnosticMonitorConfiguration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment