Add imports support for Endpoint
This commit is contained in:
parent
f1c3f9025b
commit
775bc67fec
|
@ -53,5 +53,10 @@ class IcingaEndpointForm extends DirectorObjectForm
|
||||||
'description' => $this->translate('Check this host in this specific Icinga cluster zone'),
|
'description' => $this->translate('Check this host in this specific Icinga cluster zone'),
|
||||||
'required' => true
|
'required' => true
|
||||||
));
|
));
|
||||||
|
|
||||||
|
$this->addElement('text', 'imports', array(
|
||||||
|
'label' => $this->translate('Imports'),
|
||||||
|
'description' => $this->translate('The inherited endpoint template names')
|
||||||
|
));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,8 @@ class IcingaEndpoint extends IcingaObject
|
||||||
{
|
{
|
||||||
protected $table = 'icinga_endpoint';
|
protected $table = 'icinga_endpoint';
|
||||||
|
|
||||||
|
protected $supportsImports = true;
|
||||||
|
|
||||||
protected $defaultProperties = array(
|
protected $defaultProperties = array(
|
||||||
'id' => null,
|
'id' => null,
|
||||||
'zone_id' => null,
|
'zone_id' => null,
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
CREATE TABLE icinga_endpoint_inheritance (
|
||||||
|
endpoint_id INT(10) UNSIGNED NOT NULL,
|
||||||
|
parent_endpoint_id INT(10) UNSIGNED NOT NULL,
|
||||||
|
weight MEDIUMINT UNSIGNED DEFAULT NULL,
|
||||||
|
PRIMARY KEY (endpoint_id, parent_endpoint_id),
|
||||||
|
UNIQUE KEY unique_order (endpoint_id, weight),
|
||||||
|
CONSTRAINT icinga_endpoint_inheritance_endpoint
|
||||||
|
FOREIGN KEY endpoint (endpoint_id)
|
||||||
|
REFERENCES icinga_endpoint (id)
|
||||||
|
ON DELETE CASCADE
|
||||||
|
ON UPDATE CASCADE,
|
||||||
|
CONSTRAINT icinga_endpoint_inheritance_parent_endpoint
|
||||||
|
FOREIGN KEY endpoint (parent_endpoint_id)
|
||||||
|
REFERENCES icinga_endpoint (id)
|
||||||
|
ON DELETE RESTRICT
|
||||||
|
ON UPDATE CASCADE
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
@ -295,6 +295,24 @@ CREATE TABLE icinga_endpoint (
|
||||||
ON UPDATE CASCADE
|
ON UPDATE CASCADE
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
|
CREATE TABLE icinga_endpoint_inheritance (
|
||||||
|
endpoint_id INT(10) UNSIGNED NOT NULL,
|
||||||
|
parent_endpoint_id INT(10) UNSIGNED NOT NULL,
|
||||||
|
weight MEDIUMINT UNSIGNED DEFAULT NULL,
|
||||||
|
PRIMARY KEY (endpoint_id, parent_endpoint_id),
|
||||||
|
UNIQUE KEY unique_order (endpoint_id, weight),
|
||||||
|
CONSTRAINT icinga_endpoint_inheritance_endpoint
|
||||||
|
FOREIGN KEY endpoint (endpoint_id)
|
||||||
|
REFERENCES icinga_endpoint (id)
|
||||||
|
ON DELETE CASCADE
|
||||||
|
ON UPDATE CASCADE,
|
||||||
|
CONSTRAINT icinga_endpoint_inheritance_parent_endpoint
|
||||||
|
FOREIGN KEY endpoint (parent_endpoint_id)
|
||||||
|
REFERENCES icinga_endpoint (id)
|
||||||
|
ON DELETE RESTRICT
|
||||||
|
ON UPDATE CASCADE
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
CREATE TABLE icinga_host (
|
CREATE TABLE icinga_host (
|
||||||
id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
|
id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
|
||||||
object_name VARCHAR(255) NOT NULL,
|
object_name VARCHAR(255) NOT NULL,
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
CREATE TABLE icinga_endpoint_inheritance (
|
||||||
|
endpoint_id integer NOT NULL,
|
||||||
|
parent_endpoint_id integer NOT NULL,
|
||||||
|
weight integer DEFAULT NULL,
|
||||||
|
PRIMARY KEY (endpoint_id, parent_endpoint_id),
|
||||||
|
CONSTRAINT icinga_endpoint_inheritance_endpoint
|
||||||
|
FOREIGN KEY (endpoint_id)
|
||||||
|
REFERENCES icinga_endpoint (id)
|
||||||
|
ON DELETE CASCADE
|
||||||
|
ON UPDATE CASCADE,
|
||||||
|
CONSTRAINT icinga_endpoint_inheritance_parent_endpoint
|
||||||
|
FOREIGN KEY (parent_endpoint_id)
|
||||||
|
REFERENCES icinga_endpoint (id)
|
||||||
|
ON DELETE RESTRICT
|
||||||
|
ON UPDATE CASCADE
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE UNIQUE INDEX endpoint_inheritance_unique_order ON icinga_endpoint_inheritance (endpoint_id, weight);
|
||||||
|
CREATE INDEX endpoint_inheritance_endpoint ON icinga_endpoint_inheritance (endpoint_id);
|
||||||
|
CREATE INDEX endpoint_inheritance_endpoint_parent ON icinga_endpoint_inheritance (parent_endpoint_id);
|
|
@ -375,6 +375,28 @@ COMMENT ON COLUMN icinga_endpoint.port IS '5665 if not set';
|
||||||
COMMENT ON COLUMN icinga_endpoint.log_duration IS '1d if not set';
|
COMMENT ON COLUMN icinga_endpoint.log_duration IS '1d if not set';
|
||||||
|
|
||||||
|
|
||||||
|
CREATE TABLE icinga_endpoint_inheritance (
|
||||||
|
endpoint_id integer NOT NULL,
|
||||||
|
parent_endpoint_id integer NOT NULL,
|
||||||
|
weight integer DEFAULT NULL,
|
||||||
|
PRIMARY KEY (endpoint_id, parent_endpoint_id),
|
||||||
|
CONSTRAINT icinga_endpoint_inheritance_endpoint
|
||||||
|
FOREIGN KEY (endpoint_id)
|
||||||
|
REFERENCES icinga_endpoint (id)
|
||||||
|
ON DELETE CASCADE
|
||||||
|
ON UPDATE CASCADE,
|
||||||
|
CONSTRAINT icinga_endpoint_inheritance_parent_endpoint
|
||||||
|
FOREIGN KEY (parent_endpoint_id)
|
||||||
|
REFERENCES icinga_endpoint (id)
|
||||||
|
ON DELETE RESTRICT
|
||||||
|
ON UPDATE CASCADE
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE UNIQUE INDEX endpoint_inheritance_unique_order ON icinga_endpoint_inheritance (endpoint_id, weight);
|
||||||
|
CREATE INDEX endpoint_inheritance_endpoint ON icinga_endpoint_inheritance (endpoint_id);
|
||||||
|
CREATE INDEX endpoint_inheritance_endpoint_parent ON icinga_endpoint_inheritance (parent_endpoint_id);
|
||||||
|
|
||||||
|
|
||||||
CREATE TABLE icinga_host (
|
CREATE TABLE icinga_host (
|
||||||
id serial,
|
id serial,
|
||||||
object_name character varying(255) NOT NULL,
|
object_name character varying(255) NOT NULL,
|
||||||
|
|
Loading…
Reference in New Issue