下面为您介绍到目前为止的ThingJS-X各版本区间,关于性能和告警数据的存储及清理规则:
X4的4.1(包含)及后续版本
在thingjsx-server下的application-system.properties文件中可查看及配置相关的规则:
#是否保存历史告警(默认false)
uino.monitor.event.saveEventHis.enable=false
#清理性能数据配置
base.performance.history.auto.clear=true
#性能数据保留天数,默认保存1天
performance.history.save.days=1
#清理告警数据配置
event.history.auto.clear=true
#告警历史索引清除日期,默认保存1天
event.history.save.days=1
X4的4.0-4.1(不包含)版本
#是否保存历史告警(默认false)此配置不在配置文件中,但产品代码中已经是默认,如需改为 true,可自行在application-system.properties中添加
uino.monitor.event.saveEventHis.enable=false
#清理性能数据配置,在application-system.properties中默认有
base.performance.history.auto.clear=true
#性能数据保留天数,不在配置文件中,但产品代码中已经是默认值 30,如需修改 ,可自行在application-system.properties中添加,如下设置保存天数1天
performance.history.save.days=1
#清理告警数据配置,在application-system.properties中默认有
event.history.auto.clear=true
#告警历史索引清除日期,不在配置文件中,但产品代码中已经是默认值 365,如需修改 ,可自行在application-system.properties中添加,如下设置保存天数1天
event.history.save.days=1
X3的3.5(包含)及后续版本
所有配置均不在配置文件中,默认不保存历史告警,不清理历史告警和性能,如需修改,下面列出的配置项可以自行添加在application-system.properties文件中即可。
#是否保存历史告警(默认false)
uino.monitor.event.saveEventHis.enable=false
#清理性能数据配置
base.performance.history.auto.clear=true
#性能数据保留天数(如设置清理时间为1天)
performance.history.save.days=1
#清理告警数据配置
event.history.auto.clear=true
#告警历史索引清除日期(如设置清理时间为1天)
event.history.save.days=1
以上