我们在azure应用服务上安装了uipath,我们需要将uipath orchestrator链接到kibana以便可视化日志。有人能解释/详细说明将日志放入kibana所需的步骤吗
ukdjmx9f1#
因此,你需要了解kibana的工作原理。kibana实际上是elasticsearch的可视化工具。所以你的问题应该是如何将uipath orchestrator链接到ElasticSearch。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>
1条答案
按热度按时间ukdjmx9f1#
因此,你需要了解kibana的工作原理。kibana实际上是elasticsearch的可视化工具。所以你的问题应该是如何将uipath orchestrator链接到ElasticSearch。
uipath上有一些相当全面的文档https://docs.uipath.com/orchestrator
我相信您必须按照下面的思路编辑orchestrator的web.config文件