From f6b1d5a84a654666229008aa0aa120bb3d487e67 Mon Sep 17 00:00:00 2001 From: bmundt Date: Mon, 25 Jul 2016 04:36:38 -0400 Subject: [PATCH] Added '!=' option for where clause in the influx query builder (#5646) --- public/app/plugins/datasource/influxdb/query_ctrl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/plugins/datasource/influxdb/query_ctrl.ts b/public/app/plugins/datasource/influxdb/query_ctrl.ts index 69895e53c25..4cc07e9a64b 100644 --- a/public/app/plugins/datasource/influxdb/query_ctrl.ts +++ b/public/app/plugins/datasource/influxdb/query_ctrl.ts @@ -212,7 +212,7 @@ export class InfluxQueryCtrl extends QueryCtrl { if (/^\/.*\/$/.test(nextValue)) { return this.$q.when(this.uiSegmentSrv.newOperators(['=~', '!~'])); } else { - return this.$q.when(this.uiSegmentSrv.newOperators(['=', '<>', '<', '>'])); + return this.$q.when(this.uiSegmentSrv.newOperators(['=', '!=', '<>', '<', '>'])); } }