如何将Ui Path管弦乐队与Kibana联系起来



我们在Azure应用程序服务上安装了UiPath,我们需要将UiPath Orchestrator链接到Kibana以可视化日志。有人能解释/详细说明将日志放入Kibana 所需的步骤吗

因此,您需要了解Kibana的工作原理。Kibana实际上是一个弹性搜索的可视化工具。所以,您的问题应该更多地围绕我如何将UiPath Orchestrator链接到Elastic Search。

UiPath在https://docs.uipath.com/orchestrator

我认为您必须使用类似的内容来编辑Orchestrator的web.config文件

<target name="serverElasticBuffer" xsi:type="BufferingWrapper" flushTimeout="5000">
<target xsi:type="ElasticSearch" name="serverElastic" uri="http://localhost:9200" index="serverdiagnostics-${date:format=yyyy.MM}" documentType="logEvent" includeAllProperties="true" layout="${machinename} ${message}" />
</target>

最新更新