public interface MeasurementBaselineManagerLocal extends MeasurementBaselineManagerRemote
MeasurementBaselines.| Modifier and Type | Method and Description |
|---|---|
int |
_calculateAutoBaselinesDELETE(long olderThanTime)
Deletes baselines that are older than the time specified
|
org.rhq.core.domain.measurement.MeasurementBaseline |
calculateAutoBaseline(org.rhq.core.domain.auth.Subject subject,
Integer measurementScheduleId,
long startDate,
long endDate,
boolean save)
Calculate a baseline value for the given metric based on the specified date range, optionally setting the
metric's baseline to the calculated value.
|
org.rhq.core.domain.measurement.MeasurementBaseline |
calculateAutoBaseline(org.rhq.core.domain.auth.Subject subject,
int groupId,
int definitionId,
long startDate,
long endDate,
boolean save) |
org.rhq.core.domain.measurement.MeasurementBaseline |
calculateAutoBaselineForGroupInNewTransaction(org.rhq.core.domain.auth.Subject subject,
int groupId,
int definitionId,
long startDate,
long endDate,
boolean save) |
org.rhq.core.domain.measurement.MeasurementBaseline |
calculateAutoBaselineInNewTransaction(org.rhq.core.domain.auth.Subject subject,
Integer measurementScheduleId,
long startDate,
long endDate,
boolean save) |
void |
calculateAutoBaselines()
This is the entry point which calls out to all other *calculateAutoBaselines* methods seen
in this interface.
|
long |
calculateAutoBaselines(long amountOfData,
long olderThanTime)
Calculates baselines for all scheduled measurements.
|
void |
calculateBaselines(Set<Integer> scheduleIds,
long olderThan,
long amountOfData)
Given a list of scheduleIds, this method calculates and stores baselines using the
amount of 1 hr data specified and older than the time specified.
|
void |
enableAutoBaselineCalculation(org.rhq.core.domain.auth.Subject subject,
Integer[] resourceIds,
Integer[] definitionIds)
Unset the
user-entered property in baselines so that we can
do autobaselines on it again. |
org.rhq.core.domain.measurement.MeasurementBaseline |
getBaselineIfEqual(org.rhq.core.domain.auth.Subject subject,
int groupId,
int definitionId) |
Set<Integer> |
getSchedulesWithoutBaselines()
Note This method exists only for transaction demarcation.
|
void |
saveNewBaselines(Set<Integer> scheduleIds,
Map<Integer,org.rhq.core.domain.measurement.MeasurementBaseline> baselines)
Persists the newly calculated baselines.
|
findBaselinesForResourcevoid calculateAutoBaselines()
long calculateAutoBaselines(long amountOfData,
long olderThanTime)
amountOfData - will use amountOfData to compute new min/max/mean for baselines as appropriateolderThanTime - deletes baselines older than the time specifiedint _calculateAutoBaselinesDELETE(long olderThanTime)
throws Exception
olderThanTime - deletes baselines older than the time specifiedExceptionSet<Integer> getSchedulesWithoutBaselines()
void calculateBaselines(Set<Integer> scheduleIds, long olderThan, long amountOfData)
scheduleIds - The schedules that do not yet have baselinesolderThan - Use 1 hr data prior to this timeamountOfData - The amount of data to use for calculating baselines. This value
is treated as a duration. For example, a value of 259200000
would be treated as 3 days.void saveNewBaselines(Set<Integer> scheduleIds, Map<Integer,org.rhq.core.domain.measurement.MeasurementBaseline> baselines)
scheduleIds - the scheduleIds for whom we want to persist baselines (a subset of baselines.keyset,
we may not save them all in one call to this method)baselines - Map of scheduleIds to The baselines to persist.org.rhq.core.domain.measurement.MeasurementBaseline getBaselineIfEqual(org.rhq.core.domain.auth.Subject subject,
int groupId,
int definitionId)
org.rhq.core.domain.measurement.MeasurementBaseline calculateAutoBaseline(org.rhq.core.domain.auth.Subject subject,
Integer measurementScheduleId,
long startDate,
long endDate,
boolean save)
throws BaselineCreationException,
MeasurementNotFoundException
subject - measurementScheduleId - measurement id to recalc.startDate - begin date rangeendDate - end date rangesave - whether or not to save the recalculated baselineBaselineCreationExceptionMeasurementNotFoundExceptionorg.rhq.core.domain.measurement.MeasurementBaseline calculateAutoBaselineInNewTransaction(org.rhq.core.domain.auth.Subject subject,
Integer measurementScheduleId,
long startDate,
long endDate,
boolean save)
throws BaselineCreationException,
MeasurementNotFoundException
org.rhq.core.domain.measurement.MeasurementBaseline calculateAutoBaseline(org.rhq.core.domain.auth.Subject subject,
int groupId,
int definitionId,
long startDate,
long endDate,
boolean save)
throws BaselineCreationException,
MeasurementNotFoundException
org.rhq.core.domain.measurement.MeasurementBaseline calculateAutoBaselineForGroupInNewTransaction(org.rhq.core.domain.auth.Subject subject,
int groupId,
int definitionId,
long startDate,
long endDate,
boolean save)
throws BaselineCreationException,
MeasurementNotFoundException
void enableAutoBaselineCalculation(org.rhq.core.domain.auth.Subject subject,
Integer[] resourceIds,
Integer[] definitionIds)
user-entered property in baselines so that we can
do autobaselines on it again.subject - resourceIds - definitionIds - measurement definition IDsCopyright © 2008-2014 Red Hat, Inc.. All Rights Reserved.