Examples of MeasurementOOB


Examples of org.rhq.core.domain.measurement.MeasurementOOB

        } else { // both are null
            oobFactor = null;
        }

        if (oobFactor != null) {
            MeasurementOOB oob = new MeasurementOOB();
            oob.setScheduleId(metric.getScheduleId());
            oob.setTimestamp(metric.getTimestamp());
            oob.setOobFactor(oobFactor);

            if (log.isDebugEnabled()) {
                log.debug("Generated OOB " + oob + " for 1 hr metric " + metric + " with baseline " + baseline);
            }
View Full Code Here

Examples of org.rhq.core.domain.measurement.MeasurementOOB

            }
        });
    }

    private MeasurementOOB oob(MeasurementSchedule schedule, int factor, long timestamp) {
        MeasurementOOB oob = new MeasurementOOB();
        oob.setScheduleId(schedule.getId());
        oob.setOobFactor(factor);
        oob.setTimestamp(timestamp);
        return oob;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.