]> granicus.if.org Git - icinga2/commitdiff
Documentation: Add a note on unique template/object names
authorMichael Friedrich <michael.friedrich@netways.de>
Tue, 25 Nov 2014 17:51:53 +0000 (18:51 +0100)
committerMichael Friedrich <michael.friedrich@netways.de>
Tue, 25 Nov 2014 17:51:53 +0000 (18:51 +0100)
fixes #7671

doc/4-monitoring-basics.md

index fdf8e278e80d6c07ced941a1965113a717a3c88f..5106105811d339c097a8f39547f4d477a97a43de 100644 (file)
@@ -200,6 +200,23 @@ Objects as well as templates themselves can import an arbitrary number of
 templates. Attributes inherited from a template can be overridden in the
 object if necessary.
 
+You can import existing non-template objects into objects which
+requires you to use unique names for templates and objects sharing
+the same namespace.
+
+Example for importing objects:
+
+    object CheckCommand "snmp-simple" {
+      ...
+      vars.snmp_defaults = ...
+    }
+
+    object CheckCommand "snmp-advanced" {
+      import "snmp-simple"
+      ...
+      vars.snmp_advanced = ...
+    }
+
 ### <a id="using-apply"></a> Apply objects based on rules
 
 Instead of assigning each object ([Service](#objecttype-service),