Resolved #36 - Ability to use variables in filters (regex).

This commit is contained in:
Alexander Zobnin
2015-07-06 20:06:20 +03:00
parent 69f0d6d45a
commit dcf840fc07

View File

@@ -89,7 +89,10 @@ function (angular, _, kbn) {
// Filter hosts by regex
if (target.host.visible_name == 'All') {
if (target.hostFilter && _.every(items, _.identity.hosts)) {
var host_pattern = new RegExp(target.hostFilter);
// Use templated variables in filter
var pattern = templateSrv.replace(target.hostFilter);
var host_pattern = new RegExp(pattern);
items = _.filter(items, function (item) {
return _.some(item.hosts, function (host) {
return host_pattern.test(host.name);
@@ -102,7 +105,10 @@ function (angular, _, kbn) {
// Filter items by regex
if (target.itemFilter) {
var item_pattern = new RegExp(target.itemFilter);
// Use templated variables in filter
var pattern = templateSrv.replace(target.itemFilter);
var item_pattern = new RegExp(pattern);
return _.filter(items, function (item) {
return item_pattern.test(zabbix.expandItemName(item));
});