diff --git a/doc/3-monitoring-basics.md b/doc/3-monitoring-basics.md
index 4df47d8a5..3d01e9c98 100644
--- a/doc/3-monitoring-basics.md
+++ b/doc/3-monitoring-basics.md
@@ -427,8 +427,6 @@ You can also specifiy the check command that way.
notes = "Interface check for Port " + string(vars.port) + " in VLAN " + vars.vlan + " on Address " + vars.address + " QoS " + vars.qos
notes_url = "http://foreman.company.com/hosts/" + host.name
action_url = "http://snmp.checker.company.com/" + host.name + "if-" + if_name
-
- assign where host.vars.interfaces
}
Note that numbers must be explicitely casted to string when adding to strings.
@@ -481,8 +479,6 @@ values for any object attribute specified in that apply rule.
notes_url = "http://foreman.company.com/hosts/" + host.name
action_url = "http://snmp.checker.company.com/" + host.name + "/" + vars.customer_id
-
- assign where host.vars.hosting
}
### Groups
@@ -1003,8 +999,6 @@ string values for passing multiple partitions to the `check_disk` check plugin.
vars.disk_wfree = 10
vars.disk_cfree = 5
-
- assign where host.vars.local_disks
}
diff --git a/doc/4-configuring-icinga-2.md b/doc/4-configuring-icinga-2.md
index d0a06403c..543f9e22f 100644
--- a/doc/4-configuring-icinga-2.md
+++ b/doc/4-configuring-icinga-2.md
@@ -366,8 +366,6 @@ Configuration example:
check_command = "disk"
vars += config
-
- assign where host.vars.disks
}
A similar example is used for the `http` services. That way you can make your
diff --git a/etc/icinga2/conf.d/services.conf b/etc/icinga2/conf.d/services.conf
index 4f794b61d..014f07784 100644
--- a/etc/icinga2/conf.d/services.conf
+++ b/etc/icinga2/conf.d/services.conf
@@ -61,8 +61,6 @@ apply Service for (http_vhost => config in host.vars.http_vhosts) {
check_command = "http"
vars += config
-
- assign where host.vars.http_vhosts
}
apply Service for (disk => config in host.vars.disks) {
@@ -71,8 +69,6 @@ apply Service for (disk => config in host.vars.disks) {
check_command = "disk"
vars += config
-
- assign where host.vars.disks
}
apply Service "icinga" {
diff --git a/lib/base/dictionary.cpp b/lib/base/dictionary.cpp
index 34c2368b3..509da9565 100644
--- a/lib/base/dictionary.cpp
+++ b/lib/base/dictionary.cpp
@@ -215,3 +215,23 @@ Dictionary::Ptr Dictionary::ShallowClone(void) const
CopyTo(clone);
return clone;
}
+
+/**
+ * Returns an array containing all keys
+ * which are currently set in this directory.
+ *
+ * @returns an array of key names
+ */
+std::vector Dictionary::GetKeys(void) const
+{
+ ASSERT(!OwnsLock());
+ ObjectLock olock(this);
+
+ std::vector keys;
+
+ BOOST_FOREACH(const Dictionary::Pair& kv, m_Data) {
+ keys.push_back(kv.first);
+ }
+
+ return keys;
+}
diff --git a/lib/base/dictionary.hpp b/lib/base/dictionary.hpp
index 10f278c50..d6fdefdfd 100644
--- a/lib/base/dictionary.hpp
+++ b/lib/base/dictionary.hpp
@@ -25,6 +25,7 @@
#include "base/value.hpp"
#include
#include