Reputation: 1435
I have created a could Storage account to be a destination of Azure cloud diagnostic. By default, there is WADLogstable
which is created for me.
I like to change the table name per a role. For example, for the Webrole
I would like to have WebroleWADLogstable
and WebServiceRole
write to WebServiceRoleWADLogs
table.
In the Diagnostics Connection string I can only set storage account name.
Upvotes: 2
Views: 248
Reputation: 136206
Simple answer: You can't do that. WADLogsTable
table contains an attribute (column) called RoleName
and you can filter the data for a particular role by querying on this attribute (along with PartitionKey
).
Upvotes: 4