Commit 1a317037 by Torkel Ödegaard

Merge branch 'alertList-notOK'

parents a534ac49 ba8c02f5
......@@ -94,7 +94,12 @@ func HandleAlertsQuery(query *m.GetAlertsQuery) error {
if i > 0 {
sql.WriteString(" OR ")
}
sql.WriteString("state = ? ")
if strings.HasPrefix(v, "not_") {
sql.WriteString("state <> ? ")
v = strings.TrimPrefix(v, "not_")
} else {
sql.WriteString("state = ? ")
}
params = append(params, v)
}
sql.WriteString(")")
......
......@@ -11,6 +11,7 @@ export class AlertListCtrl {
stateFilters = [
{text: 'All', value: null},
{text: 'OK', value: 'ok'},
{text: 'Not OK', value: 'not_ok'},
{text: 'Alerting', value: 'alerting'},
{text: 'No Data', value: 'no_data'},
{text: 'Paused', value: 'paused'},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment