我认为Proxy Services
不是序列没有统计功能。我的核心要求是获取统计数据和我的代理服务可用性统计信息。标准方法是什么?在序列中包裹Proxy Service
?有这样的例子吗?
另外,Monitor/Mediation Statistics
页面有一个Proxy Service Statistics
部分,是否可以启用我错过的Proxy Service
个统计信息。如果没有,这个数据到底在哪里?
答案 0 :(得分:0)
要使用Synapse配置语言启用中介组件的统计信息,请在序列,代理或端点配置中将“statistics”属性的值设置为“enabled”,如https://docs.wso2.com/display/ESB470/Monitoring+the+ESB文档中所述。
以下是启用统计信息的示例代理。
<proxy xmlns="http://ws.apache.org/ns/synapse"
name="oldmac"
transports="https,http"
statistics="enable"
trace="disable"
startOnLoad="true">
<target>
<inSequence>
<log level="full"/>
<send>
<endpoint>
<address uri="http://www.google.com"/>
</endpoint>
</send>
</inSequence>
</target>
<description/>
</proxy>