Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8327419
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T01:06:10+00:00 2026-06-09T01:06:10+00:00

I have enabled Diagnostics in my Azure PHP Web Role. It seems to be

  • 0

I have enabled Diagnostics in my Azure PHP Web Role. It seems to be indeed enabled as it’s creating two tables WADDiagnosticInfraestructureLogsTable and WADWindowsEventsLogTable, as well as dumping the config in the blob container wad-control-container.

But it’s not creating tables for the other two sections (PerformanceCounters and Logs) of my diagnostics.wadcfg. What am I doing wrong?

This is my diagnostics.wadcfg:

<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>

This is the configuration file that Azure Diagnostics dumps into my blob storage:

<?xml version="1.0"?>
<ConfigRequest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <DataSources>
        <OverallQuotaInMB>4096</OverallQuotaInMB>
        <Logs>
            <BufferQuotaInMB>1024</BufferQuotaInMB>
            <ScheduledTransferPeriodInMinutes>1</ScheduledTransferPeriodInMinutes>
            <ScheduledTransferLogLevelFilter>Verbose</ScheduledTransferLogLevelFilter>
        </Logs>
        <DiagnosticInfrastructureLogs>
            <BufferQuotaInMB>1024</BufferQuotaInMB>
            <ScheduledTransferPeriodInMinutes>1</ScheduledTransferPeriodInMinutes>
            <ScheduledTransferLogLevelFilter>Verbose</ScheduledTransferLogLevelFilter>
        </DiagnosticInfrastructureLogs>
        <PerformanceCounters>
            <BufferQuotaInMB>1024</BufferQuotaInMB>
            <ScheduledTransferPeriodInMinutes>2</ScheduledTransferPeriodInMinutes>
            <Subscriptions>
                <PerformanceCounterConfiguration>
                    <CounterSpecifier>\Memory\Available MBytes</CounterSpecifier>
                    <SampleRateInSeconds>60</SampleRateInSeconds>
                </PerformanceCounterConfiguration>
                <PerformanceCounterConfiguration>
                    <CounterSpecifier>\Processor(_Total)\% Processor Time</CounterSpecifier>
                    <SampleRateInSeconds>60</SampleRateInSeconds>
                </PerformanceCounterConfiguration>
                <PerformanceCounterConfiguration>
                    <CounterSpecifier>\Network Interface(*)\Bytes Sent/sec</CounterSpecifier>
                    <SampleRateInSeconds>60</SampleRateInSeconds>
                </PerformanceCounterConfiguration>
                <PerformanceCounterConfiguration>
                    <CounterSpecifier>\Network Interface(*)\Bytes Total/sec</CounterSpecifier>
                    <SampleRateInSeconds>60</SampleRateInSeconds>
                </PerformanceCounterConfiguration>
            </Subscriptions>
        </PerformanceCounters>
        <WindowsEventLog>
            <BufferQuotaInMB>1024</BufferQuotaInMB>
            <ScheduledTransferPeriodInMinutes>1</ScheduledTransferPeriodInMinutes>
            <Subscriptions>
                <string>Application!*</string>
                <string>System!*</string>
            </Subscriptions>
            <ScheduledTransferLogLevelFilter>Verbose</ScheduledTransferLogLevelFilter>
        </WindowsEventLog>
        <Directories>
            <BufferQuotaInMB>0</BufferQuotaInMB>
            <ScheduledTransferPeriodInMinutes>0</ScheduledTransferPeriodInMinutes>
            <Subscriptions />
        </Directories>
    </DataSources>
    <IsDefault>true</IsDefault>
  </ConfigRequest>

In my ServiceConfiguration.cscfg I have this:

<ConfigurationSettings>
    <Setting name="Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString" value="[myconnectionstring]"/>
    [...]
</ConfigurationSettings>

And in my ServiceDefinition.csdef:

<Imports>
    <Import moduleName="Diagnostics"/>
</Imports>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T01:06:14+00:00Added an answer on June 9, 2026 at 1:06 am

    Your configuration looks good.

    Did you give the deployment at least 5-10 minutes to start creating the tables and start logging?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an azure solution configured with one MVC4 web role, and two back-end
Azure web role (MVC 3 project) wont' start with Twilio controller class I have
I have recently deployed my web role to Windows Azure. In the properties of
I have created my first app for azure. It's has an MVC3 web role
I have a web service hosted on azure as a web role. In this
I have enabled the Web Server on my Mac OS X (10.5.6) by going
I have enabled GZip compression via web.config with many helps from another question: Enable
I have enabled Xdbug from php.ini. How do i enable debugging from eclipse. I
I have developed one web application for monitoring azure application (Webrole) by console(EXE) application
I've enabled Diagnostics in one of my Worker roles and published it to Azure.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.