How to analysis service calls based on consumers?

kong exports serivce call count by prometheus, is there any way to known every service call count for every consumer ? How about creating a new plugin and rewrite parts of consumer logic ?

The Prometheus plugin doesn’t do this out of the box as the consumer data can be of extremely high cardinality. A very high cardinality will increase Kongs memory usage and place quite some load on your Prometheus server too.

If you really want this, you can use statsd plugin with a statsd exporter for Prometheus.

thanks, statsd may be a good choice