UiPath的监督和报告-Kibana
2018-11-07 本文已影响18人
前端混合开发
uipath的robot执行过程中会生成logs,这些log既会存在本地,也会发送给Orchestrator. 然后可能会被永久的存储起来。
![](https://img.haomeiwen.com/i2956070/1cea04b7d3c76908.png)
![](https://img.haomeiwen.com/i2956070/016afa17f415cdf5.png)
Elasticsearch数据库是NoSQL非关系型,分布式数据库和搜索引擎。
In the elasticsearch database, all the log messages are stored in collections called indexes.
UiPath有两类log message:
- default logs 是系统生成的,当process开始,结束或者遇到unhandled error时;如果是从Orchestrator queue取数据,那么在transaction开始和结束也分别会记一次log;
![](https://img.haomeiwen.com/i2956070/f9670a442420eb43.png)
2. user logs:当你的流程中有加入log messag时才会记录user logs
ELASTICSEARCH Kibana Architecture
![](https://img.haomeiwen.com/i2956070/1d3182b3fb46319a.png)
collection的命名规则:
tenantname-YYYY.MM
kibana只可以可视化log数据吗?