list categories & collector name
Is there a way to list all the Source categories with respect to collector name? and sort with collector names.
yes, I know to list all the categories using * | count by _sourceCategory | fields -_count
-
It sounds like the health events beta would be helpful for your use case.
You can always see health status of collectors on the Collection page by going to Manage Data > Collection.
A quick way to check whether or not a source category is collecting data over a time period would be to run a query that counts how many logs were added to the category over that time period. Using the query from earlier in the thread we can add a where statement and change the timeframe via the dropdown. This one shows zero new logs:
* | count by _sourceCategory, _collector | where _count=0
If you were to comment out the where statement you could see which sourceCategories are ingesting the most messages, or sort ascending to see which are ingesting the fewest.
Please sign in to leave a comment.
Comments
3 comments