Azure Monitoring Log : I need distinct user list in chart tool tip can anybody please help me

Manoj Bobade 26 Reputation points
2021-08-17T06:35:28.987+00:00

let T1 = Data
| where user_AuthenticatedId contains "retail"
| summarize by session_Id;
T1
|join kind=inner
Data on session_Id
| where user_AuthenticatedId contains "retail"
| where timestamp between (startofweek((timestamp)).. now())
| where dayofweek(timestamp) between (1d .. 6d)
| summarize TotalUser = dcount(user_AuthenticatedId) by bin(timestamp,1d)
|order by timestamp desc
| render columnchart title = "Usage By Day"

123863-image.png

Azure Monitor
Azure Monitor
An Azure service that is used to collect, analyze, and act on telemetry data from Azure and on-premises environments.
2,812 questions
Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
6,910 questions
{count} votes

Accepted answer
  1. BhargaviAnnadevara-MSFT 5,456 Reputation points
    2021-08-25T10:45:31.63+00:00

    @Manoj Bobade Thanks for reaching out. As per our Product group, customizing tooltips for visuals/charts rendered from Kusto queries is not supported out of the box as of today. However, this is in our backlog as there have been similar requests from other customers in the past.

    While there aren't any timelines we can share on the ETA at this point, please watch out for any new announcements/updates on Azure Updates/Azure Blog.

    Hope this helps. Do let us know if you have further questions.

    ----------

    If an answer is helpful, please "Accept answer" and/or "Up-Vote" which might help other community members reading this thread.

    0 comments No comments

0 additional answers

Sort by: Most helpful