1 Answer
- Newest
- Most votes
- Most comments
1
Hi. One way is to enable AWS ioT Logging. Then use CloudWatch Logs Insights to query the AWSioTLogsV2 log group with a query like this (over whatever timeframe you want to check):
fields @timestamp, @message
| filter eventType = 'Publish-In'
| stats count(*) by topicName
This will give you a list of every topic during that timeframe and the number of messages published to each topic.
Relevant content
- asked 3 years ago
- asked 6 years ago

That did exactly what I needed, thank you!