标签: spring-boot grafana graphite micrometer
我正在为我的弹簧靴应用设置石墨/ grafana。我试图找到如何获取网络信息,例如字节输入/输出(网络统计信息)。有人可以告诉我如何获取此信息吗?我正在使用tomcat作为启动服务器
答案 0 :(得分:1)
请分别查看来自Tomcat JMX Bean tomcat.global.received的{{1}}和tomcat.global.sent属性的仪表名称GlobalRequestProcessor和bytesReceived。
tomcat.global.received
tomcat.global.sent
GlobalRequestProcessor
bytesReceived
另请参阅the relevant part of code in Micrometer。