Mule 云集线器不在 Insight 选项卡中显示流名称

Mule cloud hub does not display flow name in the Insight tab

我定义了如下所示的 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。

改变

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

<exception-strategy ref="Default_Exception_Strategy"/>

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