-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
63 additions
and
121 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ServiceDefinition name="CloudService" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition" schemaVersion="2015-04.2.6"> | ||
<WorkerRole name="ServiceWorkerRole" vmsize="ExtraSmall"> | ||
<WorkerRole name="ServiceWorkerRole" vmsize="Standard_D1_v2"> | ||
<Runtime executionContext="elevated" /> | ||
<Imports></Imports> | ||
<Endpoints> | ||
<InputEndpoint name="SyndicationEndpoint" protocol="http" port="80" /> | ||
</Endpoints> | ||
<LocalResources> | ||
<LocalStorage name="NETFXInstall" sizeInMB="1024" cleanOnRoleRecycle="false" /> | ||
</LocalResources> | ||
<Startup> | ||
<Task commandLine="install.cmd" executionContext="elevated" taskType="simple"> | ||
<Environment> | ||
<Variable name="PathToNETFXInstall"> | ||
<RoleInstanceValue xpath="/RoleEnvironment/CurrentInstance/LocalResources/LocalResource[@name='NETFXInstall']/@path" /> | ||
</Variable> | ||
<Variable name="ComputeEmulatorRunning"> | ||
<RoleInstanceValue xpath="/RoleEnvironment/Deployment/@emulated" /> | ||
</Variable> | ||
</Environment> | ||
</Task> | ||
</Startup> | ||
<ConfigurationSettings> | ||
<Setting name="APPINSIGHTS_INSTRUMENTATIONKEY" /> | ||
</ConfigurationSettings> | ||
</WorkerRole> | ||
</ServiceDefinition> |
Binary file not shown.
21 changes: 0 additions & 21 deletions
21
src/CloudService/ServiceWorkerRoleContent/diagnostics.wadcfg
This file was deleted.
Oops, something went wrong.
50 changes: 50 additions & 0 deletions
50
src/CloudService/ServiceWorkerRoleContent/diagnostics.wadcfgx
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<DiagnosticsConfiguration xmlns="http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration"> | ||
<PublicConfig xmlns="http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration"> | ||
<WadCfg> | ||
<DiagnosticMonitorConfiguration overallQuotaInMB="4096" sinks="applicationInsights.errors"> | ||
<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!*[System[(Level=1 or Level=2 or Level=3)]]" /> | ||
<DataSource name="Windows Azure!*[System[(Level=1 or Level=2 or Level=3 or Level=4)]]" /> | ||
</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> | ||
<SinksConfig> | ||
<Sink name="applicationInsights"> | ||
<ApplicationInsights /> | ||
<Channels> | ||
<Channel logLevel="Error" name="errors" /> | ||
</Channels> | ||
</Sink> | ||
</SinksConfig> | ||
</WadCfg> | ||
<StorageAccount>youcast</StorageAccount> | ||
</PublicConfig> | ||
<PrivateConfig xmlns="http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration"> | ||
<StorageAccount name="youcast" endpoint="https://core.windows.net/" /> | ||
</PrivateConfig> | ||
<IsEnabled>true</IsEnabled> | ||
</DiagnosticsConfiguration> |
This file was deleted.
Oops, something went wrong.