I am trying to understand various ways to configure Diagnostics in Windows Azure. So far, I have installed .wadcfg diagnostics that Azure uses properly when I get its contents in an xml block stored in the diagnostics in the wad-control container container (and the tables are updated with the correct refresh rate).
Now I would like to redefine some fields from cscfg, for example, to increase the log transmission period for all instances (without updating each container file of the cotton file, which will be deleted in case of an instance to recycle btw). Therefore, in my WebRole.Run (), I get the parameter from RoleEnvironment.GetConfigurationSettingValue () and try to apply it to the current configuration; but my problem is that the values ββthat I read from DiagnosticMonitor.GetDefaultInitialConfiguration () do not match the contents of my .wadcfg diagnostics, and setting new values ββthere has no effect.
Can someone explain the relationship between what is taken from diagnostics.wadcfg and the values ββthat you can set at runtime?
thanks
source share