Hi :wave: . I there a way to expose micrometer/pro...
# ktor
s
Hi 👋 . I there a way to expose micrometer/prometheus
GET /metrics
endpoint on a different port?
a
you could always just launch two `embeddedServer`s, one listening on your traffic port and the other just serving the metrics endpoint on a different port.
s
Cool. Thank you.