Uri Barash
Uri Barash

Reputation: 419

How to monitor the usage of the ADX dashboard?

I created an Azure Data Explorer dashboard. How can I monitor its usage? Who is using it and when?

Upvotes: 1

Views: 398

Answers (1)

Uri Barash
Uri Barash

Reputation: 419

client activity ID for queries has the following structure:

RTD;<dashbaord>;<executionId>

you can get the dashboard id from the dashboard URL

.show queries  
| where ClientActivityId startswith "RTD;"
| parse ClientActivityId with "RTD;" DashboardId ";" ExecutionId
| project DashboardId, ExecutionId

Upvotes: 2

Related Questions