What do people use for metrics when deploying serv...
# getting-started
e
What do people use for metrics when deploying server side kotlin/jvm code in an environment that scrapes with prometheus? Do they just use the prometheus simpleclient* or something else like micrometer or what ?
s
Micrometer is very common, especially since it was adopted by Spring Boot
I anticipate a shift towards OpenTelemetry as a metrics SDK though. Distributed tracing isn’t going away, and having one tool for both tracing and metrics is a nice prospect.
e
I was looking @ micrometer last night and it has some sort of tracing support. Not sure if its OTel compatible though.