To address this challenge, you could develop a Power Bi report, similar to this one, that pulls in the Azure Activity Logand allows you to group and summarize data by various dimensions.You still need someone to review the report regularly however consuming the data this way makes it a ...
let TopHashtags = Tweets | summarize Count = count() by Hashtags | order by Count desc | take 10; TopHashtags | project Hashtags In this example, there are two query statements. The first statement creates a variable calledTopHashtagsthat holds the top 10 hashtags. The second statement proje...