backend? E.g. which endpoints get called the most, from which countries, which browsers etc?
🚫 1
d
dave08
12/10/2018, 2:46 PM
You could use Micrometer.io, or just simply the Dropwizard metrics plugin and instrument your code with one of them. For Dropwizard there's an existing Feature, for micrometer, I made a pull request (the current code is usable), then you gain Prometheus support (which is standard in Kubernetes and Docker worlds..)
@dave08 how does micrometer comapre to dropwizard metrics
d
dave08
12/11/2018, 8:47 PM
It's a wrapper around dropwizard and other libs like prometheus, so you just instrument your code once, then you can switch the backend metrics db according to your needs. I think Prometheus is one of the more popular metrics dbs out there and I don't think dropwizard by itself supports it, which is why I made the pull request. @Saša Šijak