Fix compatibility with Zabbix 5.4 (skip applications filter) (#1214)

* Fix queries in Zabbix 5.4 (applications not supported)

* Fix alerting queries in Zabbix 5.4
This commit is contained in:
Alexander Zobnin
2021-05-18 17:22:49 +03:00
committed by GitHub
parent 29a8bde236
commit 3410593f9e
6 changed files with 59 additions and 13 deletions

View File

@@ -512,4 +512,8 @@ export class ZabbixQueryController extends QueryCtrl {
this.init();
this.targetChanged();
}
appFilterDisabled() {
return !this.zabbix.supportsApplications();
}
}