Manoranjini M
Manoranjini M

Reputation: 91

how to identify the users using the specific cluster in Kusto explorer

I was trying to take a list on users using the specific cluster in the kusto explorer. I dont know how to do this task. Please help me on this.

Thank you

Upvotes: 0

Views: 905

Answers (1)

Avnera
Avnera

Reputation: 7618

If you have monitoring permission on the cluster you can use the ".show queries" command to see the activity on the cluster, see more in the docs

Here is an example:

.show queries 
| where StartedOn > ago(1d)
| summarize count() by Database, User

Upvotes: 2

Related Questions