【发布时间】:2017-04-11 13:53:26
【问题描述】:
我正在尝试用esb analytics 配置wso2 esb5.0.0。我使用了 wso2 文档中给出的默认配置。 ESB 在 9443 上运行,esb 分析在 9444 上运行。我正在调用我的test 代理,但analytics 仪表板中没有条目。以下是configs 和proxy。
突触.属性
# Configuration to enable mediation flow analytics
mediation.flow.statistics.enable=true
mediation.flow.statistics.tracer.collect.payloads=true
mediation.flow.statistics.tracer.collect.properties=true
mediation.flow.statistics.event.consume.interval=1000
mediation.flow.statistics.event.clean.interval=15000
# Configuration to enable statistics globally irrespective of the individual artifact level setting
mediation.flow.statistics.collect.all=true
代理:
<?xml version="1.0" encoding="UTF-8"?>
<proxy xmlns="http://ws.apache.org/ns/synapse"
name="test"
startOnLoad="true"
statistics="enable"
trace="enable"
transports="http,https">
<target>
<inSequence>
<log level="full" separator="*****"/>
</inSequence>
<outSequence>
<respond/>
</outSequence>
</target>
<description/>
</proxy>
任何人都可以帮助我缺少什么吗?
【问题讨论】: