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