Bug 697580

Summary: string form of alert condition on baseline shows "null"
Product: [Other] RHQ Project Reporter: John Mazzitelli <mazz>
Component: Core UIAssignee: John Mazzitelli <mazz>
Status: CLOSED CURRENTRELEASE QA Contact: Mike Foley <mfoley>
Severity: high Docs Contact:
Priority: high    
Version: 4.0.0.Beta1CC: hrupp, skondkar
Target Milestone: ---   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2013-09-02 07:17:15 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 585306    

Description John Mazzitelli 2011-04-18 16:33:50 UTC
Create an alert condition whose condition type is "measurement baseline threshold". Notice in the condition table, the string form is this:

"Metric Value Baseline [Free Memory < 10.0% of null]

I don't know if I'm alerting on average, min or max of the baseline. I think it should be these, depending on the avg/min/max baseline being alerted on:

"Metric Value Baseline [Free Memory < 10.0% of average baseline]"
"Metric Value Baseline [Free Memory < 10.0% of minimum baseline]"
"Metric Value Baseline [Free Memory < 10.0% of maximum baseline]"

I do not know if this is going to cause actual errors when determining if an alert is triggered. Right now I suspect this is only a UI issue, which is why its only at medium severity. If this affects the actual alert trigger, it should be increased to high severity/priority.

Comment 1 John Mazzitelli 2011-04-18 16:56:23 UTC
sorry - ignore that last assignment to jshaugn, wrong BZ

Comment 2 John Mazzitelli 2011-04-18 17:23:43 UTC
this appears to be worse than just a ui issue.

I got baseline alerts to work, but only if I used the "minimum" threshold. Using maximum baseline threshold didn't trigger alerts.

Looking in the rhq_alert_condition table, it appears there is nothing getting stored that indicates if something is to use min/avg/max threashold. The column OPTION_STATUS seems to be the more logical place to put such information, but its null (which might be why the UI shows "null" in the condition string).

I also assume "null" defaults to "minimum" threshold, since that works.

Here's what the row in the DB looks like when setting up a condition "measurement baseline threshold when Free Memory is less than 95% maximum baseline":

ID=10017
TYPE=BASELINE
MEASUREMENT_DEFINITION_ID=10031
NAME=Free Memory
COMPARATOR=<
THRESHOLD=0.95
OPTION_STATUS=<null>
ALERT_DEFINITION_ID=10012
TRIGGER_ID=<null>

Note there is nothing to tell us to use the maximum baseline, versus minimum or average.

Comment 3 John Mazzitelli 2011-04-18 17:29:01 UTC
from AlertCondition.java:

    /**
     * The option string is optional and its semantics differ based on the category of this condition:
     * AVAILABILITY: the {@link AvailabilityType} to trigger off of (DOWN or UP)
     * THRESHOLD: for calltime metric conditions, one of "MIN, "MAX", "AVG" - all others are n/a
     * BASELINE: one of "min", "max" or "mean" - indicates what the threshold is compared to (min/max/avg baseline value)
     * CHANGE: for calltime metric conditions, one of "MIN, "MAX", "AVG" - all others are n/a
     * TRAIT: n/a
     * CONTROL: the {@link OperationRequestStatus} name (SUCCESS, FAILURE, etc).
     * EVENT: the regular expression of the message to match (which may be empty string if not specified)
     * 
     * @return additional information about the condition
     */
    public String getOption() {
        return this.option;
    }

    public void setOption(String option) {
        this.option = option;
    }

from NewConditionEditor.java:

        case BASELINE: {
...
            newCondition.setOption(null);
...

Why we are setting it to null I have no idea - probably just an oversight.

Comment 4 John Mazzitelli 2011-04-18 17:36:03 UTC
the fix:

@@ -305,3 +305,3 @@ public class NewConditionEditor extends LocatableDynamicForm {
             newCondition.setComparator(getValueAsString(BASELINE_COMPARATOR_ITEMNAME));
-            newCondition.setOption(null);
+            newCondition.setOption(getValueAsString(BASELINE_SELECTION_ITEMNAME));
             newCondition.setMeasurementDefinition(measDef);

git commit to master: 3e47bb8

To test, test baseline alerts work for all three types of baseline thresholds - min, max and avg.

Comment 5 Sunil Kondkar 2011-06-22 10:32:32 UTC
Verified on build#149 (Version: 4.1.0-SNAPSHOT  Build Number: 04f721e)

Created alerts for the condition - Measurement baseline threshold and verified that it works for all three types of baseline thresholds- Minimum, Average and Maximum.

Marking as verified.

Comment 6 Heiko W. Rupp 2013-09-02 07:17:15 UTC
Bulk closing of issues that were VERIFIED, had no target release and where the status changed more than a year ago.