0

Azure WADLogsTable is getting flooded with information traces on ServiceRunTime setting reads. Is it possible to configure the service to skip logging these unnecessary information?

Eg:

Getting "DataConnectionString" from ServiceRuntime: PASS (DefaultEndpointsProtocol=https;AccountName=xxxxxxxxxxx;AccountKey=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx).

-Thanks

Bandara
  • 780
  • 8
  • 29

1 Answers1

3

Yup - that's the verbose information. Azure logs at 5 different levels, Verbose (5), Information (4), Warning (3), Error (2) and Critical (1). You can filter the logs to skip the verbose or other levels as you see fit - an example being setting the log level to Information should capture all your Trace information and above.

To configure the log level, you set this within the Azure Cloud Project settings where the numeric filter will apply, i.e. by filtering on Information you will collect Information, Warnings, Errors and Criticals - if you filter by Error you will collection Errors and Criticals.

It would appear you're either collecting all everything or have you log level to Verbose / All.

HTH

SeanCocteau
  • 1,838
  • 19
  • 25
  • I have change the .wadcfg filter to transfer information as below, with this, vm only transfer entries up to level 4, no more Verbose entries. Thanks for your reply... – Bandara Sep 10 '14 at 10:00
  • Np - remember to mark this as an answer to help others in the future. – SeanCocteau Sep 10 '14 at 12:00