I am using AWS Cloudwatch to monitor my application. I want to track the number of requests I receive per client per API. I have micrometer configured for other metrics. How do I track this metric using micrometer?
For reference, I have a finite set of clients using my service. I can make a manual Counter
for each of them. But is there a way to automate this since I don't want to manually create a counter every time a new client is added. Or is there any other way of doing this?