![JAR search and dependency download from the Maven repository](/logo.png)
org.jppf.ui.monitoring.diagnostics.Thresholds Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jppf-admin Show documentation
Show all versions of jppf-admin Show documentation
JPPF, the open source grid computing solution
/*
* JPPF.
* Copyright (C) 2005-2015 JPPF Team.
* http://www.jppf.org
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jppf.ui.monitoring.diagnostics;
import java.util.*;
/**
*
* @author Laurent Cohen
*/
public class Thresholds {
/**
* An enumeration of names for all types of thresholds.
*/
public enum Name {
/**
* Memory warning.
*/
MEMORY_WARNING("health.thresholds.memory.warning", "Warning"),
/**
* Critical memory.
*/
MEMORY_CRITICAL("health.thresholds.memory.critical", "Critical"),
/**
* CPU warning.
*/
CPU_WARNING("health.thresholds.cpu.warning", "Warning"),
/**
* Critical CPU.
*/
CPU_CRITICAL("health.thresholds.cpu.critical", "Critical");
/**
* The associated name.
*/
private final String name;
/**
* The display name.
*/
private final String displayName;
/**
* Initialize with t he specified name.
* @param name the name to use.
* @param displayName the display name to use.
*/
private Name(final String name, final String displayName) {
this.name = name;
this.displayName = displayName;
}
/**
* Get the associated name.
* @return the name as a string.
*/
public String getName() {
return name;
}
/**
* Get the display name.
* @return the name as a string.
*/
public String getDisplayName() {
return displayName;
}
}
/**
* The map of values.
*/
private final Map values = new EnumMap<>(Name.class);
/**
* Default contructor.
*/
public Thresholds() {
values.put(Name.MEMORY_WARNING, 0.6d);
values.put(Name.MEMORY_CRITICAL, 0.8d);
values.put(Name.CPU_WARNING, 0.6d);
values.put(Name.CPU_CRITICAL, 0.8d);
}
/**
* Get the map of values.
* @return a map of Name
enum values to their threshold value.
*/
public Map getValues() {
return values;
}
/**
* Get the threashold value for the specified threshold.
* @param name the name of the threshold.
* @return the threshold value as a Double
.
*/
public Double getValue(final Name name) {
return values.get(name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy