javamelody 可以与 spring webflux 一起使用吗?

Does javamelody work with spring webflux?

谁能给我指点资源,我怎样才能让 spring-webflux 和 javamelody 一起工作? 似乎,servletcontext 是启动所必需的,但我不需要 have/need。

我知道 spring-boot 2.x 附带的 coll 指标,但我没有任何可用于显示指标的东西,并且被锁定到一家公司环境,只安装一些东西不是一个有效的选择。

谢谢, 亨宁

例如

javamelody is mainly based on monitoring of memory, cpu, http requests, sql requests and spring components among other things. See javamelody-spring-boot-starter

但据我所知,Spring webflux 不使用 servlet api。那你想监控什么?

如果您只想在浏览器中显示图表,则像 standalone. And if you also want to monitor sql requests and spring components, then add in your application all methods from this example 那样启动一个用于 javamelody 报告的 http 服务器,但 monitoringSessionListener 和 monitoringFilter 除外。

如果有意义,可以在 webflux 中为 javamelody 创建一个新的 spring-boot-starter。