Spring Integration Metrics

来源:互联网 发布:魔剑生死棋刘依依知乎 编辑:程序博客网 时间:2024/06/16 12:36

Spring Integration Metric Items

Spring Integration运行过程中会产生很多的统计信息;
spring-integration-core模块中定义了如下的接口,所有的统计指标都在其中
1. MessageChannelMetrics
2. MessageHandlerMetrics
3. MessageSourceMetrics
非常的丰富;

Moving Average

对Spring Integration来说,数据的接收、处理、发送是持续不断的,数据源是流式数据,Spring Integration使用了滑动平均值计算这些指标,
1. ExponentialMovingAverage:滑动平均值方法计算普通指标,比如duration
2. ExponentialMovingAverageRate:滑动平均值方法计算速率类指标,比如发送速率,发送失败的速率
3. ExponentialMovingAverageRatio:滑动平均值方法计算比例类指标,比如发送成功的比例

Spring Boot Actuator

Spring Boot Actuator中对Spring Integration中的信息抽取出来,通过metrics endpoint 开放出来,spring-boot-actuator模块中的SpringIntegrationMetricReader展现了具体的实现细节

原创粉丝点击