[ server ] - monitor all agent status - 2

This commit is contained in:
zeaslity
2023-01-11 10:52:01 +08:00
parent b7958f5c78
commit 1b17a5cf44
10 changed files with 167 additions and 60 deletions

View File

@@ -13,7 +13,7 @@ import org.springframework.util.ReflectionUtils;
import java.lang.reflect.Method;
@Async
@Deprecated
public class ExecutionJob extends QuartzJobBean {
@Override

View File

@@ -0,0 +1,22 @@
package io.wdd.rpc.scheduler.config;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
/**
* save the octopus quartz log to database
*/
@Service
@Slf4j
public class QuartzLogOperator {
public boolean save(){
log.info("QuartzLogOperator pretend to have saved the log !");
return true;
}
}

View File

@@ -7,6 +7,7 @@ import org.springframework.util.ReflectionUtils;
import java.lang.reflect.Method;
import java.util.concurrent.Callable;
@Deprecated
public class QuartzRunnable implements Callable<Object> {
private final Object target;