Browse Source

Add getCpuUsageThreshold() method in SystemRuleManager (#770)

master
yikangfeng Eric Zhao 5 years ago
parent
commit
4ec0462e31
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      sentinel-core/src/main/java/com/alibaba/csp/sentinel/slots/system/SystemRuleManager.java

+ 5
- 1
sentinel-core/src/main/java/com/alibaba/csp/sentinel/slots/system/SystemRuleManager.java View File

@@ -241,6 +241,10 @@ public class SystemRuleManager {
public static void setHighestSystemLoad(double highestSystemLoad) {
SystemRuleManager.highestSystemLoad = highestSystemLoad;
}
public static double getCpuUsageThreshold() {
return highestCpuUsage;
}

public static void loadSystemConf(SystemRule rule) {
boolean checkStatus = false;
@@ -343,4 +347,4 @@ public class SystemRuleManager {
public static double getCurrentCpuUsage() {
return statusListener.getCpuUsage();
}
}
}

Loading…
Cancel
Save