Need sample to add Title, Subtitle in Tile in Azure Workbooks

Copper Contributor

Anyone having a query sample and instructions on how to add TITLE and SUBTITLE  in TILES in Azure Workbooks

It only shows the Count - how can I make a TEXT column with

TITLE: Need Critical updates

Subtitle: Servers

Footer: Last 30 days

-------

Sample query is provided below

Update
| where TimeGenerated > now(-30d)
| where OSType!="Linux" and Optional==false
| where (UpdateState =~ "Needed") and ((Classification == "Critical Updates")) and (Approved!=false) and (PublishedDate < ago(31d))
| where (Product contains "server") and (Product !contains "drivers")
| summarize arg_max(TimeGenerated, *) by Computer,UpdateID
| distinct Computer
| count

 

1.png

 

0 Replies