Forum Discussion
ScottAllison
Nov 28, 2018Iron Contributor
Row count for all tables
Good morning everyone!
I'm looking for a query that will return all DataTypes and their current row count. This is easy to do for individual DataTypes:
AzureMetrics| where TimeGenerated < now()| count
The Usage table--while useful--does not have this detail, unfortunately.
Any suggestions are appreciated.
Thanks!
I think you are looking for this query:
search * | summarize count() by $tableHope it helps,Meir
2 Replies
- Meir_Mendelovich
Microsoft
I think you are looking for this query:
search * | summarize count() by $tableHope it helps,Meir- ScottAllisonIron Contributor
This is perfect (and so simple). Thanks!