Closed as not planned
Description
My team is currently evaluating the embedded Undertow within Spring Boot. One concern that has come up which is that it does not appear as though Undertow exposes its internal metrics (active connections, active requests, etc.) via the MeterRegistry.
Additionally, the UndertowWebServer class does not expose the underlying Undertow server object in the same way that TomcatWebServer and JettyWebServer expose their underlying server objects.
What we'd like to have is either Spring support for Undertow internal metrics from the ConnectorStatistics (similar to the TomcatMetricsBinder and AbstractJettyMetricsBinder) or at least have the Undertow object exposed via the UndertowWebServer
class so that we could expose those metrics ourselves.