Authored by FengRuwei

Merge branch 'master' of http://git.yoho.cn/ops/monitor-service

... ... @@ -21,7 +21,7 @@ public class NginxCalTask {
@Autowired
InfluxComp qcInfluxComp;
@Scheduled(cron = "0 0/3 * * * ? ")
@Scheduled(fixedRate = 2*60*1000L)
public void call() {
try {
... ...
... ... @@ -29,7 +29,7 @@ public class NginxScanTask {
ITypeInfoService typeService;
//自动发现Nginx监控对象
@Scheduled(cron = "0 0/1 * * * ? ")
@Scheduled(fixedRate = 60*1000L)
public void doTask() {
List<TypeInfo> typeInfosList = typeService.queryAllTypesInfo();
... ...