0

我已经定义了如下所示的 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 洞察力时,当消息通过此流时,我开始看到流名称,但我看到的是下面,如果您仔细注意到它实际上是在拾取doc:name="Reference Exception Strategy , 流中的最后一个消息处理器 :)

云中心洞察

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

4

1 回答 1

0

改变

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

<exception-strategy ref="Default_Exception_Strategy"/>

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

于 2015-05-09T03:19:43.950 回答