Mule云中心不会在Insight选项卡中显示流名称

时间:2015-04-21 23:13:14

标签: mule cloudhub

我已经定义了如下所示的Mule流程并在其中启用了事件跟踪

<flow name="DownloadFTPFileIntoLocalFlow" processingStrategy="synchronous" tracking:enable-default-events="true">
    <sftp:inbound-endpoint connector-ref="InputSFTP" host="${source.host}" port="22" path="${source.path}" user="${source.username}" 
    password="${source.password}" responseTimeout="90000" pollingFrequency="${source.pollingfrequency}" sizeCheckWaitTime="1000" doc:name="InputSFTP" autoDelete="true">
        <file:filename-regex-filter pattern="[Z].*\.csv" caseSensitive="false" />
    </sftp:inbound-endpoint>
    <byte-array-to-object-transformer doc:name="Byte Array to Object"/>
    <flow-ref name="ProcessCSVFlow" doc:name="ProcessCSVFlow"/>
    <sftp:outbound-endpoint exchange-pattern="one-way" connector-ref="InputSFTP" outputPattern="#[message.inboundProperties.originalFilename]" host="${source.host}" port="22" 
            path="${source.processed.path}" user="${source.username}" password="${source.password}" responseTimeout="10000" duplicateHandling="addSeqNo" doc:name="MoveToProcessedFolder"/>
    <exception-strategy ref="Default_Exception_Strategy" doc:name="Reference Exception Strategy"/>
</flow>

我希望当我启用Cloudhub洞察时,我开始看到Flow名称以及消息何时通过此流程,但我看到的是下面的内容,如果您仔细注意到它实际上正在接收 doc:name =“Reference Exception Strategy ,来自流程的最后一个消息处理器:)

Cloud hub Insight

任何想法为什么会这样。我使用的是Mule版本3.5.2。

1 个答案:

答案 0 :(得分:0)

更改

<exception-strategy ref="Default_Exception_Strategy" doc:name="Reference Exception Strategy"/>

<exception-strategy ref="Default_Exception_Strategy"/>

我们需要删除文档名称,这是一个解决方法,因为它似乎是Mule实现中的一个问题