如何读取 spring-xd 中的吞吐量采样器接收器值
How to read throughput-sampler sink values in spring-xd
流定义:
"http --port=9400 | throughput-sampler"
我已经发送了 START 和 END/STOP 负载,但我不确定如何读取吞吐量值。
它没有出现在日志中,所以我想知道如何访问这些值。似乎也没有详细说明它的文档。
感谢任何帮助!
这看起来像是一个错误;添加
log4j.logger.org.springframework.xd.integration.throughput=INFO
到
xd/config/xd-singlenode-logger.properties
或
xd/config/xd-container-logger.properties
取决于您使用的拓扑,您会看到...
09:56:16,358 1.1.0.SNAP INFO pool-10-thread-10 throughput.ThroughputSamplerMessageHandler - Throughput sampled for 2 items: 0/s in 5584ms elapsed time.
默认的endMessage
是END
。
流定义: "http --port=9400 | throughput-sampler"
我已经发送了 START 和 END/STOP 负载,但我不确定如何读取吞吐量值。
它没有出现在日志中,所以我想知道如何访问这些值。似乎也没有详细说明它的文档。
感谢任何帮助!
这看起来像是一个错误;添加
log4j.logger.org.springframework.xd.integration.throughput=INFO
到
xd/config/xd-singlenode-logger.properties
或
xd/config/xd-container-logger.properties
取决于您使用的拓扑,您会看到...
09:56:16,358 1.1.0.SNAP INFO pool-10-thread-10 throughput.ThroughputSamplerMessageHandler - Throughput sampled for 2 items: 0/s in 5584ms elapsed time.
默认的endMessage
是END
。