oap-server/analyzer/agent-analyzer/src/main/java/org/apache/skywalking/oap/server/analyzer/provider/trace/CacheReadLatencyThresholdsAndWatcher.java [44:54]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private void activeSetting(String config) {
        Map<String, Integer> newThresholds = new HashMap<>();
        List<String> settings = Splitter.on(',').splitToList(config);
        for (String setting : settings) {
            List<String> typeValue = Splitter.on(":").splitToList(setting);
            if (typeValue.size() == 2) {
                newThresholds.put(typeValue.get(0).trim().toLowerCase(), Integer.parseInt(typeValue.get(1).trim()));
            }
        }
        thresholds.set(newThresholds);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



oap-server/analyzer/agent-analyzer/src/main/java/org/apache/skywalking/oap/server/analyzer/provider/trace/CacheWriteLatencyThresholdsAndWatcher.java [44:54]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private void activeSetting(String config) {
        Map<String, Integer> newThresholds = new HashMap<>();
        List<String> settings = Splitter.on(',').splitToList(config);
        for (String setting : settings) {
            List<String> typeValue = Splitter.on(":").splitToList(setting);
            if (typeValue.size() == 2) {
                newThresholds.put(typeValue.get(0).trim().toLowerCase(), Integer.parseInt(typeValue.get(1).trim()));
            }
        }
        thresholds.set(newThresholds);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



