diff --git a/pandora_console/extras/pandoradb_migrate_5.1_to_6.0.oracle.sql b/pandora_console/extras/pandoradb_migrate_5.1_to_6.0.oracle.sql deleted file mode 100755 index c831a10ab2..0000000000 --- a/pandora_console/extras/pandoradb_migrate_5.1_to_6.0.oracle.sql +++ /dev/null @@ -1,133 +0,0 @@ --- --------------------------------------------------------------------- --- Table `tlayout` --- --------------------------------------------------------------------- - -ALTER TABLE tlayout DROP COLUMN fullscreen; - --- --------------------------------------------------------------------- --- Table `tlayout_data` --- --------------------------------------------------------------------- - -ALTER TABLE tlayout_data DROP COLUMN no_link_color; -ALTER TABLE tlayout_data DROP COLUMN label_color; -ALTER TABLE tlayout_data ADD COLUMN border_width INTEGER NOT NULL default 0; -ALTER TABLE tlayout_data ADD COLUMN border_color varchar(200) DEFAULT ""; -ALTER TABLE tlayout_data ADD COLUMN fill_color varchar(200) DEFAULT ""; - --- --------------------------------------------------------------------- --- Table `tconfig_os` --- --------------------------------------------------------------------- - -INSERT INTO tconfig_os (name, description, icon_name) VALUES ('Mainframe', 'Mainframe agent', 'so_mainframe.png'); - --- --------------------------------------------------------------------- --- Table `ttag_module` --- --------------------------------------------------------------------- - -ALTER TABLE tlayout_data ADD COLUMN id_policy_module NUMBER(10, 0) DEFAULT 0 NOT NULL; - -UPDATE ttag_module t1 -SET t1.id_policy_module = ( - SELECT t2.id_policy_module - FROM tagente_modulo t2 - WHERE t1.id_agente_modulo = t2.id_agente_modulo); - -/* 2014/12/10 */ --- ---------------------------------------------------------------------- --- Table `tuser_double_auth` --- ---------------------------------------------------------------------- -CREATE TABLE tuser_double_auth ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_user VARCHAR2(60) NOT NULL REFERENCES tusuario(id_user) ON DELETE CASCADE, - secret VARCHAR2(20) NOT NULL -); -CREATE SEQUENCE tuser_double_auth_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tuser_double_auth_inc BEFORE INSERT ON tuser_double_auth REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tuser_double_auth_s.nextval INTO :NEW.ID FROM dual; END tuser_double_auth_inc;; - --- ---------------------------------------------------------------------- --- Table `ttipo_modulo` --- ---------------------------------------------------------------------- -INSERT INTO ttipo_modulo VALUES (5,'generic_data_inc_abs',0,'Generic numeric incremental (absolute)','mod_data_inc_abs.png'); - --- --------------------------------------------------------------------- --- Table `tusuario` --- --------------------------------------------------------------------- -ALTER TABLE tusuario ADD COLUMN strict_acl NUMBER(5, 0) DEFAULT 0; - --- --------------------------------------------------------------------- --- Table `talert_commands` --- --------------------------------------------------------------------- -UPDATE talert_commands SET fields_descriptions = '["Destination address","Subject","Text","","","","","","",""]', fields_values = '["\",\"\",\"_html_editor_\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]' WHERE id = 1 AND name = 'eMail'; - --- --------------------------------------------------------------------- --- Table `tconfig` --- --------------------------------------------------------------------- -INSERT INTO tconfig (token, value) VALUES ('post_process_custom_values', '{"0.00000038580247":"Seconds to months","0.00000165343915":"Seconds to weeks","0.00001157407407":"Seconds to days","0.01666666666667":"Seconds to minutes","0.00000000093132":"Bytes to Gigabytes","0.00000095367432":"Bytes to Megabytes","0.0009765625":"Bytes to Kilobytes","0.00000001653439":"Timeticks to weeks","0.00000011574074":"Timeticks to days"}'); -UPDATE tconfig SET value = 'v6.0dev' WHERE token = 'db_scheme_version'; -UPDATE tconfig SET value = 'https://firefly.artica.es/pandoraupdate6/server.php' WHERE token='url_update_manager'; - --- --------------------------------------------------------------------- --- Table `tnetwork_map` --- --------------------------------------------------------------------- -ALTER TABLE tnetwork_map ADD COLUMN id_tag NUMBER(11, 0) DEFAULT 0; -ALTER TABLE tnetwork_map ADD COLUMN store_group NUMBER(11, 0) DEFAULT 0; -UPDATE tnetwork_map SET store_group = id_group; - --- --------------------------------------------------------------------- --- Table `tperfil` --- --------------------------------------------------------------------- -ALTER TABLE tperfil ADD COLUMN map_view NUMBER(1, 0) DEFAULT 0 NOT NULL; -ALTER TABLE tperfil ADD COLUMN map_edit NUMBER(1, 0) DEFAULT 0 NOT NULL; -ALTER TABLE tperfil ADD COLUMN map_management NUMBER(1, 0) DEFAULT 0 NOT NULL; -ALTER TABLE tperfil ADD COLUMN vconsole_view NUMBER(1, 0) DEFAULT 0 NOT NULL; -ALTER TABLE tperfil ADD COLUMN vconsole_edit NUMBER(1, 0) DEFAULT 0 NOT NULL; -ALTER TABLE tperfil ADD COLUMN vconsole_management NUMBER(1, 0) DEFAULT 0 NOT NULL; - -UPDATE tperfil SET map_view = 1, vconsole_view = 1 WHERE report_view = 1; -UPDATE tperfil SET map_edit = 1, vconsole_edit = 1 WHERE report_edit = 1; -UPDATE tperfil SET map_management = 1, vconsole_management = 1 WHERE report_management = 1; - --- --------------------------------------------------------------------- --- Table tsessions_php --- --------------------------------------------------------------------- -CREATE TABLE tsessions_php ( - id_session VARCHAR2(52) NOT NULL PRIMARY KEY, - last_active NUMBER(20, 0) NOT NULL, - data CLOB default '' -); - --- --------------------------------------------------------------------- --- Table tplugin --- --------------------------------------------------------------------- -UPDATE tplugin - SET macros = '{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":"","hide":""},"2":{"macro":"_field2_","desc":"Username","help":"","value":"","hide":""},"3":{"macro":"_field3_","desc":"Password","help":"","value":"","hide":""},"4":{"macro":"_field4_","desc":"Sensor","help":"","value":"","hide":""},"5":{"macro":"_field5_","desc":"Additional Options","help":"","value":"","hide":""}}', - SET parameters = '-h _field1_ -u _field2_ -p _field3_ -s _field4_ -- _field5_' -WHERE id = 1 AND name = 'IPMI Plugin'; - --- --------------------------------------------------------------------- --- Table trecon_script --- --------------------------------------------------------------------- -UPDATE trecon_script SET - description = 'Specific Pandora FMS Intel DCM Discovery (c) Artica ST 2011 <info@artica.es> Usage: ./ipmi-recon.pl <task_id> <group_id> <create_incident_flag> <custom_field1> <custom_field2> <custom_field3> <custom_field4> * custom_field1 = Network i.e.: 192.168.100.0/24 * custom_field2 = Username * custom_field3 = Password * custom_field4 = Additional parameters i.e.: -D LAN_2_0', - macros = '{"1":{"macro":"_field1_","desc":"Network","help":"i.e.: 192.168.100.0/24","value":"","hide":""},"2":{"macro":"_field2_","desc":"Username","help":"","value":"","hide":""},"3":{"macro":"_field3_","desc":"Password","help":"","value":"","hide":"1"},"4":{"macro":"_field4_","desc":"Additional parameters","help":"Optional additional parameters such as -D LAN_2_0 to use IPMI ver 2.0 instead of 1.5. These options will also be passed to the IPMI plugin when the current values are read.","value":"","hide":""}}' -WHERE id_recon_script = 2 AND name = 'IPMI Recon'; - --- --------------------------------------------------------------------- --- Table `tnetwork_component` --- --------------------------------------------------------------------- - -UPDATE tnetwork_component SET snmp_oid ='SELECT DNSHostName FROM Win32_ComputerSystem' WHERE id_nc = 204 AND name = 'Hostname'; -UPDATE `tnetwork_component` set `tcp_port`=0 WHERE id_nc=207; -UPDATE `tnetwork_component` set `tcp_port`=0 WHERE id_nc=219; - --- --------------------------------------------------------------------- --- Table `tevent_filter` --- --------------------------------------------------------------------- -ALTER TABLE tevent_filter ADD COLUMN id_agent_module int(25) DEFAULT 0; -ALTER TABLE tevent_filter ADD COLUMN id_agent int(25) DEFAULT 0; - --- --------------------------------------------------------------------- --- Table `tgraph_source` --- --------------------------------------------------------------------- -ALTER TABLE tgraph_source ADD COLUMN label VARCHAR2(150) DEFAULT ''; -ALTER TABLE tgraph_source ADD COLUMN "id_server" BIGINT NOT NULL default 0; diff --git a/pandora_console/extras/pandoradb_migrate_5.1_to_6.0.postgreSQL.sql b/pandora_console/extras/pandoradb_migrate_5.1_to_6.0.postgreSQL.sql deleted file mode 100755 index 2baccd29a4..0000000000 --- a/pandora_console/extras/pandoradb_migrate_5.1_to_6.0.postgreSQL.sql +++ /dev/null @@ -1,129 +0,0 @@ --- --------------------------------------------------------------------- --- Table `tlayout` --- --------------------------------------------------------------------- - -ALTER TABLE "tlayout" DROP COLUMN "fullscreen"; - --- --------------------------------------------------------------------- --- Table `tlayout_data` --- --------------------------------------------------------------------- - -ALTER TABLE "tlayout_data" DROP COLUMN "no_link_color"; -ALTER TABLE "tlayout_data" DROP COLUMN "label_color"; -ALTER TABLE "tlayout_data" ADD COLUMN "border_width" INTEGER NOT NULL default 0; -ALTER TABLE "tlayout_data" ADD COLUMN "border_color" varchar(200) DEFAULT ""; -ALTER TABLE "tlayout_data" ADD COLUMN "fill_color" varchar(200) DEFAULT ""; - --- --------------------------------------------------------------------- --- Table `tconfig_os` --- --------------------------------------------------------------------- - -INSERT INTO "tconfig_os" ("name", "description", "icon_name") VALUES ('Mainframe', 'Mainframe agent', 'so_mainframe.png'); - --- --------------------------------------------------------------------- --- Table `ttag_module` --- --------------------------------------------------------------------- - -ALTER TABLE tlayout_data ADD COLUMN "id_policy_module" INTEGER NOT NULL DEFAULT 0; - -UPDATE ttag_module t1 -SET t1.id_policy_module = ( - SELECT t2.id_policy_module - FROM tagente_modulo t2 - WHERE t1.id_agente_modulo = t2.id_agente_modulo); - -/* 2014/12/10 */ --- ---------------------------------------------------------------------- --- Table `tuser_double_auth` --- ---------------------------------------------------------------------- -CREATE TABLE "tuser_double_auth" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_user" varchar(60) NOT NULL UNIQUE REFERENCES "tusuario"("id_user") ON DELETE CASCADE, - "secret" varchar(20) NOT NULL -); - --- ---------------------------------------------------------------------- --- Table `ttipo_modulo` --- ---------------------------------------------------------------------- -INSERT INTO "ttipo_modulo" VALUES (5,'generic_data_inc_abs',0,'Generic numeric incremental (absolute)','mod_data_inc_abs.png'); - --- --------------------------------------------------------------------- --- Table `tusuario` --- --------------------------------------------------------------------- -ALTER TABLE "tusuario" ADD COLUMN "strict_acl" SMALLINT DEFAULT 0; - --- --------------------------------------------------------------------- --- Table `talert_commands` --- --------------------------------------------------------------------- -UPDATE "talert_commands" SET "fields_descriptions" = '[\"Destination address\",\"Subject\",\"Text\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]', "fields_values" = '[\"\",\"\",\"_html_editor_\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]' WHERE "id" = 1 AND "name" = 'eMail'; - --- --------------------------------------------------------------------- --- Table `tconfig` --- --------------------------------------------------------------------- -INSERT INTO "tconfig" ("token", "value") VALUES ('post_process_custom_values', '{"0.00000038580247":"Seconds to months","0.00000165343915":"Seconds to weeks","0.00001157407407":"Seconds to days","0.01666666666667":"Seconds to minutes","0.00000000093132":"Bytes to Gigabytes","0.00000095367432":"Bytes to Megabytes","0.0009765625":"Bytes to Kilobytes","0.00000001653439":"Timeticks to weeks","0.00000011574074":"Timeticks to days"}'); - --- --------------------------------------------------------------------- --- Table `tnetwork_map` --- --------------------------------------------------------------------- -ALTER TABLE "tnetwork_map" ADD COLUMN "id_tag" INTEGER DEFAULT 0; -ALTER TABLE "tnetwork_map" ADD COLUMN "store_group" INTEGER DEFAULT 0; -UPDATE "tnetwork_map" SET "store_group" = "id_group"; - --- --------------------------------------------------------------------- --- Table `tperfil` --- --------------------------------------------------------------------- -ALTER TABLE "tperfil" ADD COLUMN "map_view" SMALLINT NOT NULL DEFAULT 0; -ALTER TABLE "tperfil" ADD COLUMN "map_edit" SMALLINT NOT NULL DEFAULT 0; -ALTER TABLE "tperfil" ADD COLUMN "map_management" SMALLINT NOT NULL DEFAULT 0; -ALTER TABLE "tperfil" ADD COLUMN "vconsole_view" SMALLINT NOT NULL DEFAULT 0; -ALTER TABLE "tperfil" ADD COLUMN "vconsole_edit" SMALLINT NOT NULL DEFAULT 0; -ALTER TABLE "tperfil" ADD COLUMN "vconsole_management" SMALLINT NOT NULL DEFAULT 0; - -UPDATE "tperfil" SET "map_view" = 1, "vconsole_view" = 1 WHERE "report_view" = 1; -UPDATE "tperfil" SET "map_edit" = 1, "vconsole_edit" = 1 WHERE "report_edit" = 1; -UPDATE "tperfil" SET "map_management" = 1, "vconsole_management" = 1 WHERE "report_management" = 1; - --- --------------------------------------------------------------------- --- Table tsessions_php --- --------------------------------------------------------------------- -CREATE TABLE "tsessions_php" ( - "id_session" SERIAL NOT NULL PRIMARY KEY, - "last_active" INTEGER NOT NULL, - "data" TEXT default '' -); - --- --------------------------------------------------------------------- --- Table tplugin --- --------------------------------------------------------------------- -UPDATE "tplugin" SET - "macros" = '{\"1\":{\"macro\":\"_field1_\",\"desc\":\"Target IP\",\"help\":\"\",\"value\":\"\",\"hide\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"\",\"value\":\"\",\"hide\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"\",\"value\":\"\",\"hide\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Sensor\",\"help\":\"\",\"value\":\"\",\"hide\":\"\"},\"5\":{\"macro\":\"_field5_\",\"desc\":\"Additional Options\",\"help\":\"\",\"value\":\"\",\"hide\":\"\"}}', - "parameters" = '-h _field1_ -u _field2_ -p _field3_ -s _field4_ -- _field5_' -WHERE "id" = 1 AND "name" = 'IPMI Plugin'; - --- --------------------------------------------------------------------- --- Table `trecon_script` --- --------------------------------------------------------------------- -UPDATE "trecon_script"SET - "description" = 'Specific Pandora FMS Intel DCM Discovery (c) Artica ST 2011 <info@artica.es> Usage: ./ipmi-recon.pl <task_id> <group_id> <create_incident_flag> <custom_field1> <custom_field2> <custom_field3> <custom_field4> * custom_field1 = Network i.e.: 192.168.100.0/24 * custom_field2 = Username * custom_field3 = Password * custom_field4 = Additional parameters i.e.: -D LAN_2_0', - "macros" = '{\"1\":{\"macro\":\"_field1_\",\"desc\":\"Network\",\"help\":\"i.e.: 192.168.100.0/24\",\"value\":\"\",\"hide\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"\",\"value\":\"\",\"hide\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"\",\"value\":\"\",\"hide\":\"1\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Additional parameters\",\"help\":\"Optional additional parameters such as -D LAN_2_0 to use IPMI ver 2.0 instead of 1.5. These options will also be passed to the IPMI plugin when the current values are read.\",\"value\":\"\",\"hide\":\"\"}}' -WHERE "id_recon_script" = 2 AND "name" = 'IPMI Recon'; - --- --------------------------------------------------------------------- --- Table `tnetwork_component` --- --------------------------------------------------------------------- - -UPDATE tnetwork_component SET snmp_oid ='SELECT DNSHostName FROM Win32_ComputerSystem' WHERE id_nc = 204 AND name = 'Hostname'; -UPDATE `tnetwork_component` set `tcp_port`=0 WHERE id_nc=207; -UPDATE `tnetwork_component` set `tcp_port`=0 WHERE id_nc=219; - --- --------------------------------------------------------------------- --- Table `tnetwork_component` --- --------------------------------------------------------------------- -ALTER TABLE tevent_filter ADD COLUMN id_agent_module int(25) DEFAULT 0; -ALTER TABLE tevent_filter ADD COLUMN id_agent int(25) DEFAULT 0; - --- --------------------------------------------------------------------- --- Table `tgraph_source` --- --------------------------------------------------------------------- -ALTER TABLE tgraph_source ADD COLUMN label VARCHAR2(150) DEFAULT ''; -ALTER TABLE tgraph_source ADD COLUMN id_graph NUMBER(19, 0) DEFAULT 0; \ No newline at end of file diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.oracle.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.oracle.sql deleted file mode 100644 index 133526ea2d..0000000000 --- a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.oracle.sql +++ /dev/null @@ -1,1251 +0,0 @@ --- ----------------------------------------------------- --- Table "tlocal_component" --- ----------------------------------------------------- --- tlocal_component is a repository of local modules for --- physical agents on Windows / Unix physical agents -CREATE TABLE tlocal_component ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - name CLOB NOT NULL, - data CLOB NOT NULL, - description VARCHAR2(1024) default NULL, - id_os NUMBER(10, 0) default 0 NOT NULL, - os_version VARCHAR2(100) default '', - id_network_component_group NUMBER(10, 0) default 0 NOT NULL REFERENCES tnetwork_component_group(id_sg) ON DELETE CASCADE, - type NUMBER(6, 0) default 6 NOT NULL, - max NUMBER(19, 0) default 0 NOT NULL, - min NUMBER(19, 0) default 0 NOT NULL, - module_interval NUMBER(10, 0) default 0 NULL, - id_module_group NUMBER(10, 0) default 0 NOT NULL, - history_data NUMBER(5, 0) default 1 NOT NULL, - min_warning DOUBLE PRECISION default 0 NOT NULL, - max_warning DOUBLE PRECISION default 0 NOT NULL, - str_warning CLOB default '', - min_critical DOUBLE PRECISION default 0 NOT NULL, - max_critical DOUBLE PRECISION default 0 NOT NULL, - str_critical CLOB default '', - min_ff_event NUMBER(10, 0) default 0 NOT NULL, - post_process DOUBLE PRECISION default 0 NOT NULL, - unit CLOB default '', - wizard_level VARCHAR2(100) default 'nowizard' NOT NULL, - macros CLOB default '', - critical_instructions VARCHAR2(255) default '', - warning_instructions VARCHAR2(255) default '', - unknown_instructions VARCHAR2(255) default '', - critical_inverse NUMBER(1, 0) default 0 NOT NULL, - warning_inverse NUMBER(1, 0) default 0 NOT NULL, - id_category NUMBER(10, 0) default 0 NOT NULL, - tags CLOB default '', - disabled_types_event CLOB default '', - min_ff_event_normal INTEGER default 0, - min_ff_event_warning INTEGER default 0, - min_ff_event_critical INTEGER default 0, - each_ff NUMBER(1, 0) default 0, - ff_timeout INTEGER default 0, - dynamic_interval INTEGER default 0, - dynamic_max INTEGER default 0, - dynamic_min INTEGER default 0, - dynamic_next INTEGER default 0 NOT NULL, - dynamic_two_tailed NUMBER(1, 0) default 0, - prediction_sample_window INTEGER default 0, - prediction_samples INTEGER default 0, - prediction_threshold INTEGER default 0, - CONSTRAINT t_local_component_wizard_cons CHECK (wizard_level IN ('basic','advanced','nowizard')) -); - -CREATE SEQUENCE tlocal_component_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tlocal_component_inc BEFORE INSERT ON tlocal_component REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tlocal_component_s.nextval INTO :NEW.ID FROM dual; END tlocal_component_inc;; --- on update trigger -CREATE OR REPLACE TRIGGER tlocal_component_update AFTER UPDATE OF ID_SG ON tnetwork_component_group FOR EACH ROW BEGIN UPDATE tlocal_component SET ID_NETWORK_COMPONENT_GROUP = :NEW.ID_SG WHERE ID_NETWORK_COMPONENT_GROUP = :OLD.ID_SG; END;; - - --- ----------------------------------------------------- --- Table "tpolicy_modules" --- ----------------------------------------------------- -CREATE TABLE tpolicy_modules ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_policy NUMBER(10, 0) default 0 NOT NULL, - configuration_data CLOB default '', - id_tipo_modulo NUMBER(5, 0) default 0 NOT NULL, - description VARCHAR2(1024) default '', - name VARCHAR2(200) default '' NOT NULL, - unit CLOB default '', - max NUMBER(19, 0) default 0 NOT NULL, - min NUMBER(19, 0) default 0 NOT NULL, - module_interval NUMBER(10, 0) default 0 NOT NULL, - tcp_port NUMBER(10, 0) default 0 NOT NULL, - tcp_send CLOB default '', - tcp_rcv CLOB default '', - snmp_community VARCHAR2(100) default '', - snmp_oid VARCHAR2(255) default '0', - id_module_group NUMBER(10, 0) default 0 NOT NULL, - flag NUMBER(5, 0) default 0 NOT NULL, - id_module NUMBER(10, 0) default 0 NOT NULL, - disabled NUMBER(5, 0) default 0 NOT NULL, - id_export NUMBER(5, 0) default 0 NOT NULL, - plugin_user CLOB default '', - plugin_pass CLOB default '', - plugin_parameter CLOB, - id_plugin NUMBER(10, 0) default 0 NOT NULL, - post_process BINARY_DOUBLE default NULL, - prediction_module NUMBER(19, 0) default 0 NOT NULL, - max_timeout NUMBER(10, 0) default 0 NOT NULL, - max_retries NUMBER(10, 0) default 0 NOT NULL, - custom_id VARCHAR2(255) default '', - history_data NUMBER(5, 0) default 1 NOT NULL, - min_warning BINARY_DOUBLE default 0, - max_warning BINARY_DOUBLE default 0, - str_warning CLOB default '', - min_critical BINARY_DOUBLE default 0, - max_critical BINARY_DOUBLE default 0, - str_critical CLOB default '', - min_ff_event NUMBER(10, 0) default 0 NOT NULL, - custom_string_1 CLOB default '', - custom_string_2 CLOB default '', - custom_string_3 CLOB default '', - custom_integer_1 NUMBER(10, 0) default 0 NOT NULL, - custom_integer_2 NUMBER(10, 0) default 0 NOT NULL, - pending_delete NUMBER(5, 0) default 0 NOT NULL, - critical_instructions CLOB default '', - warning_instructions CLOB default '', - unknown_instructions CLOB default '', - critical_inverse NUMBER(1, 0) default 0 NOT NULL, - warning_inverse NUMBER(1, 0) default 0 NOT NULL, - id_category NUMBER(10, 0) default 0 NOT NULL, - module_ff_interval NUMBER(19, 0) default 0 NOT NULL, - quiet NUMBER(5, 0) default 0 NOT NULL, - cron_interval VARCHAR2(100) DEFAULT '', - macros CLOB default '', - disabled_types_event CLOB default '', - module_macros CLOB default '', - min_ff_event_normal INTEGER default 0, - min_ff_event_warning INTEGER default 0, - min_ff_event_critical INTEGER default 0, - each_ff NUMBER(1, 0) default 0, - ff_timeout INTEGER default 0, - dynamic_interval INTEGER default 0, - dynamic_max INTEGER default 0, - dynamic_min INTEGER default 0, - dynamic_next INTEGER NOT NULL default 0, - dynamic_two_tailed INTEGER default 0, - prediction_sample_window INTEGER default 0, - prediction_samples INTEGER default 0, - prediction_threshold INTEGER default 0 -); -CREATE UNIQUE INDEX tpolicy_modules_id_pol_na_idx ON tpolicy_modules(id_policy, name); -CREATE INDEX tpolicy_modules_id_policy_idx ON tpolicy_modules(id_policy); - -CREATE SEQUENCE tpolicy_modules_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tpolicy_modules_inc BEFORE INSERT ON tpolicy_modules REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tpolicy_modules_s.nextval INTO :NEW.ID FROM dual; END tpolicy_modules_inc;; - - --- ----------------------------------------------------- --- Table "tpolicies" --- ----------------------------------------------------- --- 'status' could be 0 (without changes, updated), 1 (needy update only database) or 2 (needy update database and conf files) -CREATE TABLE tpolicies ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - name VARCHAR2(255) NOT NULL, - description VARCHAR2(255) default '', - id_group NUMBER(10, 0) default 0 NOT NULL, - status NUMBER(10, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tpolicies_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tpolicies_inc BEFORE INSERT ON tpolicies REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tpolicies_s.nextval INTO :NEW.ID FROM dual; END tpolicies_inc;; - - --- ----------------------------------------------------- --- Table "tpolicy_alerts" --- ----------------------------------------------------- -CREATE TABLE tpolicy_alerts ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_policy NUMBER(10, 0) default 0 NOT NULL REFERENCES tpolicies(id) ON DELETE CASCADE, - id_policy_module NUMBER(10, 0) default 0 NOT NULL, - id_alert_template NUMBER(10, 0) default 0 NOT NULL REFERENCES talert_templates(id) ON DELETE CASCADE, - name_extern_module VARCHAR2(300) default '', - disabled NUMBER(5, 0) default 0 NOT NULL, - standby NUMBER(5, 0) default 0 NOT NULL, - pending_delete NUMBER(5, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tpolicy_alerts_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tpolicy_alerts_inc BEFORE INSERT ON tpolicy_alerts REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tpolicy_alerts_s.nextval INTO :NEW.ID FROM dual; END tpolicy_alerts_inc;; --- on update trigger -CREATE OR REPLACE TRIGGER tpolicy_alerts_update AFTER UPDATE OF ID ON tpolicies FOR EACH ROW BEGIN UPDATE tpolicy_alerts SET ID_POLICY = :NEW.ID WHERE ID_POLICY = :OLD.ID; END;; --- on update trigger 1 -CREATE OR REPLACE TRIGGER tpolicy_alerts_update1 AFTER UPDATE OF ID ON talert_templates FOR EACH ROW BEGIN UPDATE tpolicy_alerts SET ID_ALERT_TEMPLATE = :NEW.ID WHERE ID_ALERT_TEMPLATE = :OLD.ID; END;; - - --- ----------------------------------------------------- --- Table "tpolicy_agents" --- ----------------------------------------------------- -CREATE TABLE tpolicy_agents ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_policy NUMBER(10, 0) default 0 NOT NULL, - id_agent NUMBER(10, 0) default 0 NOT NULL, - policy_applied NUMBER(5, 0) default 0 NOT NULL, - pending_delete NUMBER(5, 0) default 0 NOT NULL, - last_apply_utimestamp NUMBER(10, 0) default 0 NOT NULL -); -CREATE UNIQUE INDEX tpolicy_agents_id_po_id_ag_idx ON tpolicy_agents(id_policy, id_agent); - -CREATE SEQUENCE tpolicy_agents_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tpolicy_agents_inc BEFORE INSERT ON tpolicy_agents REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tpolicy_agents_s.nextval INTO :NEW.ID FROM dual; END tpolicy_agents_inc;; - - --- ----------------------------------------------------- --- Table "tdashboard" --- ----------------------------------------------------- -CREATE TABLE tdashboard ( - id NUMBER(19, 0) NOT NULL PRIMARY KEY, - name VARCHAR2(60) default '' NOT NULL, - id_user VARCHAR2(60) default '' NOT NULL, - id_group NUMBER(10, 0) default 0 NOT NULL, - active NUMBER(5, 0) default 0 NOT NULL, - cells CLOB default '' -); - -CREATE SEQUENCE tdashboard_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tdashboard_inc BEFORE INSERT ON tdashboard REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tdashboard_s.nextval INTO :NEW.ID FROM dual; END tdashboard_inc;; - - --- ----------------------------------------------------- --- Table "twidget" --- ----------------------------------------------------- -CREATE TABLE twidget ( - id NUMBER(19, 0) NOT NULL PRIMARY KEY, - class_name VARCHAR2(60) default '' NOT NULL, - unique_name VARCHAR2(60) default '' NOT NULL, - description CLOB default '' NOT NULL, - options CLOB default '' NOT NULL, - page VARCHAR2(120) default '' NOT NULL -); - -CREATE SEQUENCE twidget_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER twidget_inc BEFORE INSERT ON twidget REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT twidget_s.nextval INTO :NEW.ID FROM dual; END twidget_inc;; - - --- ----------------------------------------------------- --- Table "twidget_dashboard" --- ----------------------------------------------------- -CREATE TABLE twidget_dashboard ( - id NUMBER(19, 0) NOT NULL PRIMARY KEY, - options CLOB default '', - "order" NUMBER(10, 0) default 0 NOT NULL, - id_dashboard NUMBER(19, 0) default 0 NOT NULL REFERENCES tdashboard(id) ON DELETE CASCADE, - id_widget NUMBER(19, 0) default 0 NOT NULL, - prop_width DOUBLE PRECISION default 0.32 NOT NULL, - prop_height DOUBLE PRECISION default 0.32 NOT NULL -); - -CREATE SEQUENCE twidget_dashboard_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER twidget_dashboard_inc BEFORE INSERT ON twidget_dashboard REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT twidget_dashboard_s.nextval INTO :NEW.ID FROM dual; END twidget_dashboard_inc;; --- on update trigger -CREATE OR REPLACE TRIGGER twidget_dashboard_update AFTER UPDATE OF ID ON tdashboard FOR EACH ROW BEGIN UPDATE twidget_dashboard SET ID_DASHBOARD = :NEW.ID WHERE ID_DASHBOARD = :OLD.ID; END;; --- on update trigger 1 -CREATE OR REPLACE TRIGGER twidget_dashboard_update1 AFTER UPDATE OF ID ON twidget FOR EACH ROW BEGIN UPDATE twidget_dashboard SET ID_WIDGET = :NEW.ID WHERE ID_WIDGET = :OLD.ID; END;; - - --- ----------------------------------------------------- --- Table "tmodule_inventory" --- ----------------------------------------------------- -CREATE TABLE tmodule_inventory ( - id_module_inventory NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_os NUMBER(10, 0) default NULL REFERENCES tconfig_os(id_os) ON DELETE CASCADE, - name VARCHAR2(100) default '', - description VARCHAR2(100) default '', - interpreter VARCHAR2(100) default '', - data_format VARCHAR2(100) default '', - code CLOB default '', - block_mode NUMBER(3, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tmodule_inventory_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tmodule_inventory_inc BEFORE INSERT ON tmodule_inventory REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tmodule_inventory_s.nextval INTO :NEW.ID_MODULE_INVENTORY FROM dual; END tmodule_inventory_inc;; - - --- ----------------------------------------------------- --- Table "tagente_datos_inventory" --- ----------------------------------------------------- -CREATE TABLE tagente_datos_inventory ( - id_agent_module_inventory NUMBER (10, 0) NOT NULL, - data CLOB default '', - utimestamp NUMBER(10, 0) default 0 NOT NULL, - timestamp TIMESTAMP default NULL -); -CREATE INDEX tagente_datos_inventory_id ON tagente_datos_inventory(id_agent_module_inventory); -CREATE INDEX tagente_datos_inventory_ut ON tagente_datos_inventory(utimestamp); - --- This sequence will not work with the 'insert_id' procedure - --- on update trigger -CREATE OR REPLACE TRIGGER tmodule_inventory_update AFTER UPDATE OF ID_OS ON tconfig_os FOR EACH ROW BEGIN UPDATE tmodule_inventory SET ID_OS = :NEW.ID_OS WHERE ID_OS = :OLD.ID_OS; END;; - - --- ----------------------------------------------------- --- Table "tagent_module_inventory" --- ----------------------------------------------------- -CREATE TABLE tagent_module_inventory ( - id_agent_module_inventory NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_agente NUMBER(10, 0) NOT NULL REFERENCES tagente(id_agente) ON DELETE CASCADE, - id_module_inventory NUMBER(10, 0) NOT NULL REFERENCES tmodule_inventory(id_module_inventory) ON DELETE CASCADE, - target VARCHAR2(100) default '', - "interval" NUMBER(10, 0) default 3600 NOT NULL, - username VARCHAR2(100) default '', - password VARCHAR2(100) default '', - data CLOB default '', - timestamp TIMESTAMP default NULL, - utimestamp NUMBER(19, 0) default 0 NOT NULL, - flag NUMBER(5, 0) default 1 NOT NULL, - id_policy_module_inventory NUMBER(10, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tagent_module_inventory_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tagent_module_inventory_inc BEFORE INSERT ON tagent_module_inventory REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tagent_module_inventory_s.nextval INTO :NEW.ID_AGENT_MODULE_INVENTORY FROM dual; END tagent_module_inventory_inc;; --- on update trigger -CREATE OR REPLACE TRIGGER tagent_module_inventory_update AFTER UPDATE OF ID_AGENTE ON tagente FOR EACH ROW BEGIN UPDATE tagent_module_inventory SET ID_AGENTE = :NEW.ID_AGENTE WHERE ID_AGENTE = :OLD.ID_AGENTE; END;; --- on update trigger 1 -CREATE OR REPLACE TRIGGER tagent_module_inventor_update1 AFTER UPDATE OF ID_MODULE_INVENTORY ON tmodule_inventory FOR EACH ROW BEGIN UPDATE tagent_module_inventory SET ID_MODULE_INVENTORY = :NEW.ID_MODULE_INVENTORY WHERE ID_MODULE_INVENTORY = :OLD.ID_MODULE_INVENTORY; END;; - - --- ----------------------------------------------------- --- Table "ttrap_custom_values" --- ----------------------------------------------------- -CREATE TABLE ttrap_custom_values ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - oid VARCHAR2(255) default '' NOT NULL, - custom_oid VARCHAR2(255) default '' NOT NULL, - text VARCHAR2(255) default '', - description VARCHAR2(255) default '', - severity NUMBER(10, 0) default 2 NOT NULL, - CONSTRAINT oid_custom_oid UNIQUE(oid, custom_oid) -); - -CREATE SEQUENCE ttrap_custom_values_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER ttrap_custom_values_inc BEFORE INSERT ON ttrap_custom_values REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT ttrap_custom_values_s.nextval INTO :NEW.ID FROM dual; END ttrap_custom_values_inc;; - - --- ----------------------------------------------------- --- Table "tmetaconsole_setup" --- ----------------------------------------------------- ---Table to store metaconsole sources -CREATE TABLE tmetaconsole_setup ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - server_name VARCHAR2(1000) default '', - server_url CLOB default '', - dbuser CLOB default '', - dbpass CLOB default '', - dbhost CLOB default '', - dbport CLOB default '', - dbname CLOB default '', - auth_token CLOB default '', - id_group NUMBER(10, 0) default 0 NOT NULL, - api_password CLOB default '', - disabled NUMBER(10, 0) default 0, - last_event_replication NUMBER(19, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tmetaconsole_setup_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tmetaconsole_setup_inc BEFORE INSERT ON tmetaconsole_setup REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tmetaconsole_setup_s.nextval INTO :NEW.ID FROM dual; END tmetaconsole_setup_inc;; - - --- ----------------------------------------------------- --- Table "tprofile_view" --- ----------------------------------------------------- ---Table to define by each profile defined in Pandora, to which sec/page has access independently of its ACL (for showing in the console or not). By default have access to all pages allowed by ACL, if forbidden here, then pages are not shown. -CREATE TABLE tprofile_view ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_profile NUMBER(10, 0) default 0 NOT NULL, - sec CLOB default '', - sec2 CLOB default '', - sec3 CLOB default '' -); - -CREATE SEQUENCE tprofile_view_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tprofile_view_inc BEFORE INSERT ON tprofile_view REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tprofile_view_s.nextval INTO :NEW.ID FROM dual; END tprofile_view_inc;; - - --- ----------------------------------------------------- --- Table "tservice" --- ----------------------------------------------------- ---Table to define services to monitor -CREATE TABLE tservice ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - name VARCHAR2(100) default '' NOT NULL, - description CLOB default '' NOT NULL, - id_group NUMBER(10, 0) default 0 NOT NULL, - critical BINARY_DOUBLE default 0 NOT NULL, - warning BINARY_DOUBLE default 0 NOT NULL, - service_interval BINARY_DOUBLE default 0 NOT NULL, - service_value BINARY_DOUBLE default 0 NOT NULL, - status NUMBER(10, 0) default -1 NOT NULL, - utimestamp NUMBER(10, 0) default 0 NOT NULL, - auto_calculate NUMBER(10, 0) default 1 NOT NULL, - id_agent_module NUMBER(10, 0) default 0 NOT NULL, - sla_interval DOUBLE PRECISION default 0 NOT NULL, - sla_id_module NUMBER(10, 0) default 0 NOT NULL, - sla_value_id_module NUMBER(10, 0) default 0 NOT NULL, - sla_limit DOUBLE PRECISION default 100 NOT NULL, - id_template_alert_warning NUMBER(10, 0) default 0 NOT NULL, - id_template_alert_critical NUMBER(10, 0) default 0 NOT NULL, - id_template_alert_unknown NUMBER(10, 0) default 0 NOT NULL, - id_template_alert_critical_sla NUMBER(10, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tservice_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tservice_inc BEFORE INSERT ON tservice REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tservice_s.nextval INTO :NEW.ID FROM dual; END tservice_inc;; - - --- ----------------------------------------------------- --- Table "tservice_element" --- ----------------------------------------------------- ---Table to define the modules and the weights of the modules that define a service -CREATE TABLE tservice_element ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_service NUMBER(10, 0) NOT NULL, - weight_ok BINARY_DOUBLE default 0 NOT NULL, - weight_warning BINARY_DOUBLE default 0 NOT NULL, - weight_critical DOUBLE PRECISION default 0 NOT NULL, - weight_unknown DOUBLE PRECISION default 0 NOT NULL, - description CLOB default '', - id_agente_modulo NUMBER(10, 0) default 0 NOT NULL, - id_agent NUMBER(10, 0) default 0 NOT NULL, - id_service_child NUMBER(10, 0) default 0 NOT NULL, - id_server_meta NUMBER(10, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tservice_element_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tservice_element_inc BEFORE INSERT ON tservice_element REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tservice_element_s.nextval INTO :NEW.ID FROM dual; END tservice_element_inc;; - - --- ----------------------------------------------------- --- Table "tcollection" --- ----------------------------------------------------- -CREATE TABLE tcollection ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - name VARCHAR2(100) default '' NOT NULL, - short_name VARCHAR2(100) default '' NOT NULL, - id_group NUMBER(10, 0) default 0 NOT NULL, - description CLOB, - status NUMBER(10, 0) default 0 NOT NULL -); --- status: 0 - Not apply --- status: 1 - Applied - -CREATE SEQUENCE tcollection_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tcollection_inc BEFORE INSERT ON tcollection REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tcollection_s.nextval INTO :NEW.ID FROM dual; END tcollection_inc;; - - --- ----------------------------------------------------- --- Table "tpolicy_collections" --- ----------------------------------------------------- -CREATE TABLE tpolicy_collections ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_policy NUMBER(10, 0) default 0 NOT NULL REFERENCES tpolicies (id) ON DELETE CASCADE, - id_collection NUMBER(10, 0) default 0 NOT NULL REFERENCES tcollection (id) ON DELETE CASCADE, - pending_delete NUMBER(5, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tpolicy_collections_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tpolicy_collections_inc BEFORE INSERT ON tpolicy_collections REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tpolicy_collections_s.nextval INTO :NEW.ID FROM dual; END tpolicy_collections_inc;; --- on update trigger -CREATE OR REPLACE TRIGGER tpolicy_collections_update AFTER UPDATE OF ID ON tpolicies FOR EACH ROW BEGIN UPDATE tpolicy_collections SET ID_POLICY = :NEW.ID WHERE ID_POLICY = :OLD.ID; END;; --- on update trigger 1 -CREATE OR REPLACE TRIGGER tpolicy_collections_update1 AFTER UPDATE OF ID ON tcollection FOR EACH ROW BEGIN UPDATE tpolicy_collections SET ID_COLLECTION = :NEW.ID WHERE ID_COLLECTION = :OLD.ID; END;; - - --- ----------------------------------------------------- --- Table "tpolicy_alerts_actions" --- ----------------------------------------------------- -CREATE TABLE tpolicy_alerts_actions ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_policy_alert NUMBER(10, 0) default 0 NOT NULL REFERENCES tpolicy_alerts (id) ON DELETE CASCADE, - id_alert_action NUMBER(10, 0) default 0 NOT NULL REFERENCES talert_actions (id) ON DELETE CASCADE, - fires_min NUMBER(10, 0) default 0, - fires_max NUMBER(10, 0) default 0 -); - -CREATE SEQUENCE tpolicy_alerts_actions_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tpolicy_alerts_actions_inc BEFORE INSERT ON tpolicy_alerts_actions REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tpolicy_alerts_actions_s.nextval INTO :NEW.ID FROM dual; END tpolicy_alerts_actions_inc;; --- on update trigger -CREATE OR REPLACE TRIGGER tpolicy_alerts_actions_update AFTER UPDATE OF ID ON tpolicy_alerts FOR EACH ROW BEGIN UPDATE tpolicy_alerts_actions SET ID_POLICY_ALERT = :NEW.ID WHERE ID_POLICY_ALERT = :OLD.ID; END;; --- on update trigger 1 -CREATE OR REPLACE TRIGGER tpolicy_alerts_actions_update1 AFTER UPDATE OF ID ON talert_actions FOR EACH ROW BEGIN UPDATE tpolicy_alerts_actions SET ID_ALERT_ACTION = :NEW.ID WHERE ID_ALERT_ACTION = :OLD.ID; END;; - --- ----------------------------------------------------- --- Table "tpolicy_plugins" --- ----------------------------------------------------- -CREATE TABLE tpolicy_plugins ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_policy NUMBER(10, 0) default 0 NOT NULL, - plugin_exec CLOB default '', - pending_delete NUMBER(5, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tpolicy_plugins_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tpolicy_plugins_inc BEFORE INSERT ON tpolicy_plugins REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tpolicy_plugins_s.nextval INTO :NEW.ID FROM dual; END tpolicy_plugins_inc;; - - --- ----------------------------------------------------- --- Table "tsesion_extended" --- ----------------------------------------------------- -CREATE TABLE tsesion_extended ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_sesion NUMBER(10, 0) NOT NULL, - extended_info CLOB default '', - hash VARCHAR2(255) default '' -); - -CREATE SEQUENCE tsesion_extended_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tsesion_extended_inc BEFORE INSERT ON tsesion_extended REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tsesion_extended_s.nextval INTO :NEW.ID FROM dual; END tsesion_extended_inc;; - - --- ----------------------------------------------------- --- Table `tskin` --- ----------------------------------------------------- -CREATE TABLE tskin ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - name CLOB DEFAULT '' NOT NULL, - relative_path CLOB DEFAULT '' NOT NULL, - description CLOB DEFAULT '' NOT NULL, - disabled NUMBER(10,0) default 0 NOT NULL -); - -CREATE SEQUENCE tskin_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tskin_inc BEFORE INSERT ON tskin REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tskin_s.nextval INTO :NEW.ID FROM dual; END tskin_inc;; - - --- ----------------------------------------------------- --- Table `tpolicy_queue` --- ----------------------------------------------------- -CREATE TABLE tpolicy_queue ( - id NUMBER(19, 0) NOT NULL PRIMARY KEY, - id_policy NUMBER(10, 0) default 0 NOT NULL, - id_agent NUMBER(10, 0) default 0 NOT NULL, - operation VARCHAR2(15) default '' NOT NULL, - progress NUMBER(10, 0) default 0 NOT NULL, - end_utimestamp NUMBER(10, 0) default 0 NOT NULL, - priority NUMBER(10, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tpolicy_queue_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tpolicy_queue_inc BEFORE INSERT ON tpolicy_queue REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tpolicy_queue_s.nextval INTO :NEW.ID FROM dual; END tpolicy_queue_inc;; - - --- ----------------------------------------------------- --- Table `tmodule_synth` --- ----------------------------------------------------- -CREATE TABLE tmodule_synth ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_agent_module_source NUMBER(10, 0) default 0 NOT NULL, - id_agent_module_target NUMBER(10, 0) default 0 NOT NULL REFERENCES tagente_modulo(id_agente_modulo) ON DELETE CASCADE, - fixed_value BINARY_DOUBLE default NULL, - operation VARCHAR2(20) default 'NOP', - "order" NUMBER(11, 0) default 0 NOT NULL, - CONSTRAINT t_module_synth_operation_cons CHECK (operation IN ('ADD', 'SUB', 'DIV', 'MUL', 'AVG', 'NOP')) -); - -CREATE SEQUENCE tmodule_synth_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tmodule_synth_inc BEFORE INSERT ON tmodule_synth REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tmodule_synth_s.nextval INTO :NEW.ID FROM dual; END tmodule_synth_inc;; - - --- ----------------------------------------------------- --- Table `tevent_rule` --- ----------------------------------------------------- -CREATE TABLE tevent_rule ( - id_event_rule NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_event_alert NUMBER(10, 0) NOT NULL, - operation VARCHAR2(20) NOT NULL, - "order" NUMBER(10, 0) default '0', - window NUMBER(10, 0) default '0' NOT NULL, - count NUMBER(10, 0) default '1' NOT NULL, - agent CLOB default '', - id_usuario VARCHAR2(100) default '' NOT NULL, - id_grupo NUMBER(10, 0) default '0' NOT NULL, - evento CLOB default '' NOT NULL, - event_type VARCHAR2(50) default 'unknown', - module CLOB default '', - alert CLOB default '', - criticity NUMBER(10, 0) default '0' NOT NULL, - user_comment CLOB NOT NULL, - id_tag NUMBER(10, 0) default '0' NOT NULL, - name CLOB default '', - CONSTRAINT t_event_rule_operation_cons CHECK (operation IN ('NOP', 'AND','OR','XOR','NAND','NOR','NXOR')), - CONSTRAINT t_event_rule_event_type CHECK (event_type IN ('','unknown','alert_fired','alert_recovered','alert_ceased','alert_manual_validation','recon_host_detected','system','error','new_agent','going_up_warning','going_up_critical','going_down_warning','going_down_normal','going_down_critical','going_up_normal')) -); -CREATE INDEX tevent_rule_id_event_alert_idx ON tevent_rule(id_event_alert); - -CREATE SEQUENCE tevent_rule_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tevent_rule_inc BEFORE INSERT ON tevent_rule REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tevent_rule_s.nextval INTO :NEW.ID_EVENT_RULE FROM dual; END tevent_rule_inc;; - - --- ----------------------------------------------------- --- Table `tevent_alert` --- ----------------------------------------------------- --- use to_char(time_from, 'hh24:mi:ss') function to retrieve time_from field info --- use to_char(time_to, 'hh24:mi:ss') function to retrieve time_to field info -CREATE TABLE tevent_alert ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - name CLOB default '', - description CLOB, - "order" NUMBER(10, 0) default 0, - "mode" VARCHAR2(20), - field1 CLOB default '' NOT NULL, - field2 CLOB default '' NOT NULL, - field3 CLOB default '' NOT NULL, - field4 CLOB default '' NOT NULL, - field5 CLOB default '' NOT NULL, - field6 CLOB default '' NOT NULL, - field7 CLOB default '' NOT NULL, - field8 CLOB default '' NOT NULL, - field9 CLOB default '' NOT NULL, - field10 CLOB default '' NOT NULL, - time_threshold NUMBER(10, 0) default 0 NOT NULL, - max_alerts NUMBER(10, 0) default 1 NOT NULL, - min_alerts NUMBER(10, 0) default 0 NOT NULL, - time_from TIMESTAMP default to_date('00:00:00','hh24:mi:ss'), - time_to TIMESTAMP default to_date('00:00:00','hh24:mi:ss'), - monday NUMBER(10, 0) default 1, - tuesday NUMBER(10, 0) default 1, - wednesday NUMBER(10, 0) default 1, - thursday NUMBER(10, 0) default 1, - friday NUMBER(10, 0) default 1, - saturday NUMBER(10, 0) default 1, - sunday NUMBER(10, 0) default 1, - recovery_notify NUMBER(10, 0) default '0', - field2_recovery CLOB default '' NOT NULL, - field3_recovery CLOB NOT NULL, - id_group NUMBER(10, 0) default 0 NULL, - internal_counter NUMBER(10, 0) default 0, - last_fired NUMBER(19, 0) default 0 NOT NULL, - last_reference NUMBER(19, 0) default 0 NOT NULL, - times_fired NUMBER(10, 0) default 0 NOT NULL, - disabled NUMBER(10, 0) default 0, - standby NUMBER(10, 0) default 0, - priority NUMBER(10, 0) default 0, - force_execution NUMBER(10, 0) default 0, - "group_by" VARCHAR2(20) default '', - CONSTRAINT t_event_alert_group_by CHECK ("group_by" IN ('','id_agente','id_agentmodule','id_alert_am','id_grupo')), - CONSTRAINT t_event_alert_mode_cons CHECK ("mode" IN ('PASS','DROP')) -); - -CREATE SEQUENCE tevent_alert_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tevent_alert_inc BEFORE INSERT ON tevent_alert REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tevent_alert_s.nextval INTO :NEW.ID FROM dual; END tevent_alert_inc;; - - --- ----------------------------------------------------- --- Table `tevent_alert_action` --- ----------------------------------------------------- -CREATE TABLE tevent_alert_action ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_event_alert NUMBER(10, 0) NOT NULL REFERENCES tevent_alert(id) ON DELETE CASCADE, - id_alert_action NUMBER(10, 0) NOT NULL REFERENCES talert_actions(id) ON DELETE CASCADE, - fires_min NUMBER(10, 0) default 0, - fires_max NUMBER(10, 0) default 0, - module_action_threshold NUMBER(10, 0) default 0 NOT NULL, - last_execution NUMBER(19, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tevent_alert_action_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tevent_alert_action_inc BEFORE INSERT ON tevent_alert_action REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tevent_alert_action_s.nextval INTO :NEW.ID FROM dual; END tevent_alert_action_inc;; - --- on update trigger -CREATE OR REPLACE TRIGGER tevent_alert_action_update AFTER UPDATE OF ID ON tevent_alert FOR EACH ROW BEGIN UPDATE tevent_alert_action SET ID_EVENT_ALERT = :NEW.ID WHERE ID_EVENT_ALERT = :OLD.ID; END;; --- on update trigger 1 -CREATE OR REPLACE TRIGGER tevent_alert_action_update1 AFTER UPDATE OF ID ON talert_actions FOR EACH ROW BEGIN UPDATE tevent_alert_action SET ID_ALERT_ACTION = :NEW.ID WHERE ID_ALERT_ACTION = :OLD.ID; END;; - - --- ----------------------------------------------------- --- Table `tpolicy_modules_inventory` --- ----------------------------------------------------- -CREATE TABLE tpolicy_modules_inventory ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_policy NUMBER(10, 0) NOT NULL REFERENCES tpolicies(id) ON DELETE CASCADE, - id_module_inventory NUMBER(10, 0) NOT NULL REFERENCES tmodule_inventory(id_module_inventory) ON DELETE CASCADE, - interval NUMBER(10, 0) default 3600 NOT NULL, - username VARCHAR2(100) default '', - password VARCHAR2(100) default '', - pending_delete NUMBER(5, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tpolicy_modules_inventory_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tpolicy_modules_inventory_inc BEFORE INSERT ON tpolicy_modules_inventory REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tpolicy_modules_inventory_s.nextval INTO :NEW.ID FROM dual; END tpolicy_modules_inventory_inc;; - - --- ----------------------------------------------------- --- Table `tnetworkmap_enterprise` --- ----------------------------------------------------- -CREATE TABLE tnetworkmap_enterprise ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - name VARCHAR2(500) default '', - id_group NUMBER(10, 0) default 0 NOT NULL, - options CLOB default '' -); - -CREATE SEQUENCE tnetworkmap_enterprise_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tnetworkmap_enterprise_inc BEFORE INSERT ON tnetworkmap_enterprise REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tnetworkmap_enterprise_s.nextval INTO :NEW.ID FROM dual; END tnetworkmap_enterprise_inc;; - - --- ----------------------------------------------------- --- Table `tnetworkmap_enterprise_nodes` --- ----------------------------------------------------- -CREATE TABLE tnetworkmap_enterprise_nodes ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_networkmap_enterprise NUMBER(10, 0) NOT NULL REFERENCES tnetworkmap_enterprise(id) ON DELETE CASCADE, - x NUMBER(10, 0) default 0 NOT NULL, - y NUMBER(10, 0) default 0 NOT NULL, - z NUMBER(10, 0) default 0 NOT NULL, - id_agent NUMBER(10, 0) default 0 NOT NULL, - id_module NUMBER(10, 0) default 0 NOT NULL, - id_agent_module NUMBER(10, 0) default 0 NOT NULL, - parent NUMBER(10, 0) default 0, - options CLOB default '', - deleted NUMBER(10, 0) default 0 NOT NULL, - state CLOB default '' -); - -CREATE SEQUENCE tnetworkmap_enterprise_nodes_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tnetworkmap_enter_nod_inc BEFORE INSERT ON tnetworkmap_enterprise_nodes REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tnetworkmap_enterprise_nodes_s.nextval INTO :NEW.ID FROM dual; END tnetworkmap_enter_nod_inc;; --- on update trigger -CREATE OR REPLACE TRIGGER tnetworkmap_enter_nod_update AFTER UPDATE OF ID ON tnetworkmap_enterprise FOR EACH ROW BEGIN UPDATE tnetworkmap_enterprise_nodes SET ID_NETWORKMAP_ENTERPRISE = :NEW.ID WHERE ID_NETWORKMAP_ENTERPRISE = :OLD.ID; END;; - - --- ----------------------------------------------------- --- Table `tnetworkmap_ent_rel_nodes` (Before `tnetworkmap_enterprise_relation_nodes`) --- ----------------------------------------------------- -CREATE TABLE tnetworkmap_ent_rel_nodes ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_networkmap_enterprise NUMBER(10, 0) NOT NULL REFERENCES tnetworkmap_enterprise(id) ON DELETE CASCADE, - parent NUMBER(10, 0) default 0, - parent_type VARCHAR2(30) default 'node', - child NUMBER(10, 0) default 0, - child_type VARCHAR2(30) default 'node', - deleted NUMBER(10, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tnetworkmap_ent_rel_nodes_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tnetworkmap_ent_rel_nodes_inc BEFORE INSERT ON tnetworkmap_ent_rel_nodes REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tnetworkmap_ent_rel_nodes_s.nextval INTO :NEW.ID FROM dual; END tnetworkmap_ent_rel_nodes_inc;; --- on update trigger -CREATE OR REPLACE TRIGGER tnetworkmap_enter_rel_nod_upd AFTER UPDATE OF ID ON tnetworkmap_enterprise FOR EACH ROW BEGIN UPDATE tnetworkmap_ent_rel_nodes SET ID_NETWORKMAP_ENTERPRISE = :NEW.ID WHERE ID_NETWORKMAP_ENTERPRISE = :OLD.ID; END;; - - --- ----------------------------------------------------- --- Table `treport_template` --- ----------------------------------------------------- -CREATE TABLE treport_template ( - id_report NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_user varchar2(100) default '' NOT NULL, - name varchar2(150) default '' NOT NULL, - description CLOB NOT NULL, - private NUMBER(10, 0) default 0 NOT NULL, - id_group NUMBER(10, 0) default NULL NULL, - custom_logo varchar2(200) default NULL, - header CLOB default NULL, - first_page CLOB default NULL, - footer CLOB default NULL, - custom_font varchar2(200) default NULL, - metaconsole NUMBER(5, 0) DEFAULT 0 -); - -CREATE SEQUENCE treport_template_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER treport_template_inc BEFORE INSERT ON treport_template REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT treport_template_s.nextval INTO :NEW.ID_REPORT FROM dual; END treport_template_inc;; - - --- ----------------------------------------------------- --- Table `treport_content_template` --- ----------------------------------------------------- -CREATE TABLE treport_content_template ( - id_rc NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_report NUMBER(10, 0) default 0 NOT NULL REFERENCES treport_template(id_report) ON DELETE CASCADE, - id_gs NUMBER(10, 0) default NULL NULL, - text_agent_module CLOB default NULL, - type varchar2(30) default 'simple_graph', - period NUMBER(10, 0) default 0 NOT NULL, - "order" NUMBER(10, 0) default 0 NOT NULL, - description CLOB, - text_agent CLOB default '', - text CLOB default NULL, - external_source CLOB default NULL, - treport_custom_sql_id NUMBER(10, 0) default 0, - header_definition CLOB default NULL, - column_separator CLOB default NULL, - line_separator CLOB default NULL, - time_from TIMESTAMP default to_date('00:00:00','hh24:mi:ss'), - time_to TIMESTAMP default to_date('00:00:00','hh24:mi:ss'), - monday NUMBER(5, 0) default 1 NOT NULL, - tuesday NUMBER(5, 0) default 1 NOT NULL, - wednesday NUMBER(5, 0) default 1 NOT NULL, - thursday NUMBER(5, 0) default 1 NOT NULL, - friday NUMBER(5, 0) default 1 NOT NULL, - saturday NUMBER(5, 0) default 1 NOT NULL, - sunday NUMBER(5, 0) default 1 NOT NULL, - only_display_wrong NUMBER(5, 0) default 0 not null, - top_n NUMBER(10, 0) default 0 NOT NULL, - top_n_value NUMBER(10, 0) default 10 NOT NULL, - exception_condition NUMBER(10, 0) default 0 NOT NULL, - exception_condition_value DOUBLE PRECISION default 0 NOT NULL, - show_resume DOUBLE PRECISION default 0 NOT NULL, - order_uptodown DOUBLE PRECISION default 0 NOT NULL, - show_graph DOUBLE PRECISION default 0 NOT NULL, - group_by_agent DOUBLE PRECISION default 0 NOT NULL, - style CLOB DEFAULT '' NOT NULL, - id_group NUMBER(10, 0) DEFAULT 0 NOT NULL, - id_module_group NUMBER(10, 0) DEFAULT 0 NOT NULL, - server_name CLOB default '', - exact_match NUMBER(10, 0) default 0, - module_names CLOB default NULL, - module_free_text CLOB default NULL, - each_agent NUMBER(5, 0) default 1 NOT NULL -); - -CREATE SEQUENCE treport_content_template_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER treport_content_template_inc BEFORE INSERT ON treport_content_template REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT treport_content_template_s.nextval INTO :NEW.ID_RC FROM dual; END treport_content_template_inc;; - - --- ----------------------------------------------------- --- Table `treport_content_sla_com_temp` (treport_content_sla_combined_template) --- ----------------------------------------------------- -CREATE TABLE treport_content_sla_com_temp ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_report_content NUMBER(10, 0) NOT NULL REFERENCES treport_content_template(id_rc) ON DELETE CASCADE, - text_agent CLOB default '', - text_agent_module CLOB default '', - sla_max DOUBLE PRECISION default 0 NOT NULL, - sla_min DOUBLE PRECISION default 0 NOT NULL, - sla_limit DOUBLE PRECISION default 0 NOT NULL, - server_name CLOB default '', - exact_match NUMBER(5, 0) default 0 -); - -CREATE SEQUENCE treport_content_sla_com_temp_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER treport_content_sla_c_t_inc BEFORE INSERT ON treport_content_sla_com_temp REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT treport_content_sla_com_temp_s.nextval INTO :NEW.ID FROM dual; END treport_content_sla_c_t_inc;; - - --- ----------------------------------------------------- --- Table `treport_content_item_temp` (treport_content_item_template) --- ----------------------------------------------------- -CREATE TABLE treport_content_item_temp ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_report_content NUMBER(10, 0) NOT NULL REFERENCES treport_content_template(id_rc) ON DELETE CASCADE, - text_agent CLOB default '', - text_agent_module CLOB default '', - server_name CLOB default '', - exact_match NUMBER(5, 0) default 0, - operation CLOB -); - -CREATE SEQUENCE treport_content_item_temp_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER treport_content_item_temp_inc BEFORE INSERT ON treport_content_item_temp REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT treport_content_item_temp_s.nextval INTO :NEW.ID FROM dual; END treport_content_item_temp_inc;; - - --- ----------------------------------------------------- --- Table `tgraph_template` --- ----------------------------------------------------- -CREATE TABLE tgraph_template ( - id_graph_template NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_user VARCHAR2(255) NOT NULL, - name VARCHAR2(255) NOT NULL, - description CLOB default '', - period NUMBER(11, 0) default 0 NOT NULL, - width SMALLINT default 0 NOT NULL, - height SMALLINT default 0 NOT NULL, - private SMALLINT default 0 NOT NULL, - events SMALLINT default 0 NOT NULL, - stacked SMALLINT default 0 NOT NULL, - id_group NUMBER(8, 0) default 0 -); - -CREATE SEQUENCE tgraph_template_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tgraph_template_inc BEFORE INSERT ON tgraph_template REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tgraph_template_s.nextval INTO :NEW.ID_GRAPH_TEMPLATE FROM dual; END tgraph_template_inc;; - - --- --------------------------------------------------------------------- --- Table `tgraph_source_template` --- --------------------------------------------------------------------- -CREATE TABLE tgraph_source_template ( - id_gs_template NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_template NUMBER(10, 0) default 0 NOT NULL, - agent VARCHAR2(255), - module VARCHAR2(255), - weight FLOAT(5) DEFAULT 2 NOT NULL, - exact_match SMALLINT default 0 NOT NULL -); - -CREATE SEQUENCE tgraph_source_template_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tgraph_source_template_inc BEFORE INSERT ON tgraph_source_template REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tgraph_source_template_s.nextval INTO :NEW.ID_GS_TEMPLATE FROM dual; END tgraph_source_template_inc;; - - --- --------------------------------------------------------------------- --- Table `textension_translate_string` --- --------------------------------------------------------------------- -CREATE TABLE textension_translate_string ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - lang VARCHAR2(50) NOT NULL, - string VARCHAR2(4000) NOT NULL, - translation VARCHAR2(4000) NOT NULL -); - -CREATE SEQUENCE textension_translate_string_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER textension_translate_str_inc BEFORE INSERT ON textension_translate_string REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT textension_translate_string_s.nextval INTO :NEW.ID FROM dual; END;; - --- --------------------------------------------------------------------- --- Table `tmetaconsole_event` --- --------------------------------------------------------------------- --- use to_char(timestamp, 'hh24:mi:ss') function to retrieve timestamp field info -CREATE TABLE tmetaconsole_event ( - id_evento NUMBER(19, 0) NOT NULL PRIMARY KEY, - id_source_event NUMBER(19, 0) NOT NULL, - id_agente NUMBER(10, 0) DEFAULT 0, - agent_name VARCHAR2(600) DEFAULT '', - id_usuario VARCHAR2(100) DEFAULT '0', - id_grupo NUMBER(10, 0) DEFAULT 0, - group_name CLOB DEFAULT '', - estado NUMBER(10, 0) DEFAULT 0, - timestamp TIMESTAMP DEFAULT NULL, - evento CLOB DEFAULT '', - utimestamp NUMBER(19, 0) DEFAULT 0, - event_type VARCHAR2(50) DEFAULT 'unknown', - id_agentmodule NUMBER(10, 0) DEFAULT 0, - module_name CLOB DEFAULT '', - id_alert_am NUMBER(10, 0) DEFAULT 0, - alert_template_name CLOB DEFAULT '', - criticity NUMBER(10, 0) DEFAULT 0, - user_comment CLOB, - tags CLOB, - source VARCHAR2(100) DEFAULT '', - id_extra VARCHAR2(100) DEFAULT '', - critical_instructions CLOB DEFAULT '', - warning_instructions CLOB DEFAULT '', - unknown_instructions CLOB DEFAULT '', - owner_user VARCHAR2(100) DEFAULT '0', - ack_utimestamp NUMBER(19, 0) DEFAULT 0, - server_id NUMBER(10, 0) DEFAULT 0 NOT NULL, - custom_data CLOB DEFAULT '', - CONSTRAINT tmetaconsole_e_event_type_cons CHECK (event_type IN ('going_unknown','unknown','alert_fired','alert_recovered','alert_ceased','alert_manual_validation','recon_host_detected','system','error','new_agent','going_up_warning','going_up_critical','going_down_warning','going_down_normal','going_down_critical','going_up_normal', 'configuration_change')) -); -CREATE INDEX tmetaconsole_e_id_1_idx ON tmetaconsole_event(id_agente, id_evento); -CREATE INDEX tmetaconsole_e_id_am_idx ON tmetaconsole_event(id_agentmodule); -CREATE INDEX tmetaconsole_e_id_server_idx ON tmetaconsole_event(server_id); -CREATE INDEX tmetaconsole_e_id_grupo_idx ON tmetaconsole_event(id_grupo); -CREATE INDEX tmetaconsole_e_criticity_idx ON tmetaconsole_event(criticity); -CREATE INDEX tmetaconsole_e_estado_idx ON tmetaconsole_event(estado); - -CREATE SEQUENCE tmetaconsole_event_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tmetaconsole_event_inc BEFORE INSERT ON tmetaconsole_event REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tmetaconsole_event_s.nextval INTO :NEW.ID_EVENTO FROM dual; END;; - --- --------------------------------------------------------------------- --- Table `tmetaconsole_event_history` --- --------------------------------------------------------------------- --- use to_char(timestamp, 'hh24:mi:ss') function to retrieve timestamp field info -CREATE TABLE tmetaconsole_event_history ( - id_evento NUMBER(19, 0) NOT NULL PRIMARY KEY, - id_source_event NUMBER(19, 0) NOT NULL, - id_agente NUMBER(10, 0) default 0 NOT NULL, - agent_name VARCHAR2(600) default '', - id_usuario VARCHAR2(100) default '0' NOT NULL, - id_grupo NUMBER(10, 0) default 0 NOT NULL, - group_name CLOB default '', - estado NUMBER(10, 0) default 0 NOT NULL, - timestamp TIMESTAMP default NULL, - evento CLOB default '', - utimestamp NUMBER(19, 0) default 0 NOT NULL, - event_type VARCHAR2(50) default 'unknown', - id_agentmodule NUMBER(10, 0) default 0 NOT NULL, - module_name CLOB default '', - id_alert_am NUMBER(10, 0) default 0 NOT NULL, - alert_template_name CLOB default '', - criticity NUMBER(10, 0) default 0 NOT NULL, - user_comment CLOB, - tags CLOB, - source VARCHAR2(100) default '' NOT NULL, - id_extra VARCHAR2(100) default '' NOT NULL, - critical_instructions VARCHAR2(255) default '', - warning_instructions VARCHAR2(255) default '', - unknown_instructions VARCHAR2(255) default '', - owner_user VARCHAR2(100) default '0' NOT NULL, - ack_utimestamp NUMBER(19, 0) default 0 NOT NULL, - server_id NUMBER(10, 0) default 0 NOT NULL, - custom_data CLOB default '', - CONSTRAINT tmeta_eh_event_type_cons CHECK (event_type IN ('going_unknown','unknown','alert_fired','alert_recovered','alert_ceased','alert_manual_validation','recon_host_detected','system','error','new_agent','going_up_warning','going_up_critical','going_down_warning','going_down_normal','going_down_critical','going_up_normal', 'configuration_change')) -); -CREATE INDEX tmetaconsole_eh_id_1_idx ON tmetaconsole_event_history(id_agente, id_evento); -CREATE INDEX tmetaconsole_eh_id_am_idx ON tmetaconsole_event_history(id_agentmodule); -CREATE INDEX tmetaconsole_eh_id_server_idx ON tmetaconsole_event_history(server_id); -CREATE INDEX tmetaconsole_eh_id_grupo_idx ON tmetaconsole_event_history(id_grupo); -CREATE INDEX tmetaconsole_eh_criticity_idx ON tmetaconsole_event_history(criticity); -CREATE INDEX tmetaconsole_eh_estado_idx ON tmetaconsole_event_history(estado); - -CREATE SEQUENCE tmetaconsole_event_h_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tmetaconsole_event_h_inc BEFORE INSERT ON tmetaconsole_event_history REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tmetaconsole_event_h_s.nextval INTO :NEW.ID_EVENTO FROM dual; END;; - --- --------------------------------------------------------------------- --- Table `tagent_module_log` --- --------------------------------------------------------------------- -CREATE TABLE tagent_module_log ( - id_agent_module_log NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_agent NUMBER(10, 0) NOT NULL REFERENCES tagente(id_agente) ON DELETE CASCADE, - source VARCHAR2(4000) NOT NULL, - timestamp TIMESTAMP NULL, - utimestamp NUMBER(10, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tagent_module_log_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tagent_module_log_inc BEFORE INSERT ON tagent_module_log REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tagent_module_log_s.nextval INTO :NEW.ID_AGENT_MODULE_LOG FROM dual; END tagent_module_log_inc;; - --- --------------------------------------------------------------------- --- Table `tevent_custom_field` --- --------------------------------------------------------------------- -CREATE TABLE tevent_custom_field ( - id_group NUMBER(4, 0) default 0 NOT NULL PRIMARY KEY, - value VARCHAR2(255) default '' NOT NULL -); - --- This sequence will not work with the 'insert_id' procedure - --- --------------------------------------------------------------------- --- Table `tmetaconsole_agent` --- --------------------------------------------------------------------- -CREATE TABLE tmetaconsole_agent ( - id_agente NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_tagente NUMBER(10, 0) NOT NULL, - id_tmetaconsole_setup NUMBER(10) NOT NULL REFERENCES tmetaconsole_setup(id) ON DELETE CASCADE, - nombre VARCHAR2(600) default '' NOT NULL, - direccion VARCHAR2(100) default '' NULL, - comentarios VARCHAR2(255) default '' NULL, - id_grupo NUMBER(10, 0) default 0 NOT NULL, - ultimo_contacto TIMESTAMP NOT NULL, - modo NUMBER(1, 0) default 0 NOT NULL, - intervalo NUMBER(11, 0) default 300 NOT NULL, - id_os NUMBER(10, 0) default 0 NOT NULL, - os_version VARCHAR2(100) default '', - agent_version VARCHAR2(100) default '', - ultimo_contacto_remoto TIMESTAMP default NULL, - disabled NUMBER(1, 0) default 0 NOT NULL, - remote NUMBER(1) default 0 NOT NULL, - id_parent NUMBER(10, 0) default 0 NOT NULL, - custom_id VARCHAR2(255) default '', - server_name VARCHAR2(100) default '', - cascade_protection NUMBER(1, 0) default 0 NOT NULL, - cascade_protection_module NUMBER(10, 0) default 0 NOT NULL, - -- Number of hours of diference with the server timezone - timezone_offset NUMBER(2, 2) default 0 NULL, - -- Path in the server to the image of the icon representing the agent - icon_path VARCHAR2(127) default NULL, - -- Set it to one to update the position data (altitude, longitude, latitude) when getting information from the agent or to 0 to keep the last value and do not update it - update_gis_data NUMBER(1) default 1 NOT NULL, - url_address CLOB NULL, - quiet NUMBER(1) default 0 NOT NULL, - normal_count NUMBER(20, 0) default 0 NOT NULL, - warning_count NUMBER(20, 0) default 0 NOT NULL, - critical_count NUMBER(20, 0) default 0 NOT NULL, - unknown_count NUMBER(20, 0) default 0 NOT NULL, - notinit_count NUMBER(20, 0) default 0 NOT NULL, - total_count NUMBER(20, 0) default 0 NOT NULL, - fired_count NUMBER(20, 0) default 0 NOT NULL, - update_module_count NUMBER(1, 0) default 0 NOT NULL, - update_alert_count NUMBER(1, 0) default 0 NOT NULL, - alias varchar2(600) NOT NULL default '', - transactional_agent NUMBER(1) default 0 NOT NULL -); -CREATE INDEX tmetaconsole_agent_nombre_idx ON tmetaconsole_agent(nombre); -CREATE INDEX tmetaconsole_agent_dir_idx ON tmetaconsole_agent(direccion); -CREATE INDEX tmetaconsole_agent_dis_idx ON tmetaconsole_agent(disabled); -CREATE INDEX tmetaconsole_agent_id_g_idx ON tmetaconsole_agent(id_grupo); - -CREATE SEQUENCE tmetaconsole_agent_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tmetaconsole_agent_inc BEFORE INSERT ON tmetaconsole_agent REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tmetaconsole_agent_s.nextval INTO :NEW.ID_AGENTE FROM dual; END tmetaconsole_agent_inc;; - --- --------------------------------------------------------------------- --- Table `talert_templates` --- --------------------------------------------------------------------- - -ALTER TABLE talert_templates ADD COLUMN min_alerts_reset_counter NUMBER(5, 0) DEFAULT 0; -ALTER TABLE talert_templates ADD COLUMN field11 CLOB DEFAULT ""; -ALTER TABLE talert_templates ADD COLUMN field12 CLOB DEFAULT ""; -ALTER TABLE talert_templates ADD COLUMN field13 CLOB DEFAULT ""; -ALTER TABLE talert_templates ADD COLUMN field14 CLOB DEFAULT ""; -ALTER TABLE talert_templates ADD COLUMN field15 CLOB DEFAULT ""; -ALTER TABLE talert_templates ADD COLUMN field11_recovery CLOB DEFAULT ""; -ALTER TABLE talert_templates ADD COLUMN field12_recovery CLOB DEFAULT ""; -ALTER TABLE talert_templates ADD COLUMN field13_recovery CLOB DEFAULT ""; -ALTER TABLE talert_templates ADD COLUMN field14_recovery CLOB DEFAULT ""; -ALTER TABLE talert_templates ADD COLUMN field15_recovery CLOB DEFAULT ""; - --- --------------------------------------------------------------------- --- Table `talert_snmp` --- --------------------------------------------------------------------- -ALTER TABLE talert_snmp ADD COLUMN al_field11 CLOB DEFAULT ""; -ALTER TABLE talert_snmp ADD COLUMN al_field12 CLOB DEFAULT ""; -ALTER TABLE talert_snmp ADD COLUMN al_field13 CLOB DEFAULT ""; -ALTER TABLE talert_snmp ADD COLUMN al_field14 CLOB DEFAULT ""; -ALTER TABLE talert_snmp ADD COLUMN al_field15 CLOB DEFAULT ""; - --- --------------------------------------------------------------------- --- Table `talert_snmp_action` --- --------------------------------------------------------------------- -ALTER TABLE talert_snmp_action ADD COLUMN al_field11 CLOB DEFAULT ""; -ALTER TABLE talert_snmp_action ADD COLUMN al_field12 CLOB DEFAULT ""; -ALTER TABLE talert_snmp_action ADD COLUMN al_field13 CLOB DEFAULT ""; -ALTER TABLE talert_snmp_action ADD COLUMN al_field14 CLOB DEFAULT ""; -ALTER TABLE talert_snmp_action ADD COLUMN al_field15 CLOB DEFAULT ""; - --- ---------------------------------------------------------------------- --- Table `tserver` --- ---------------------------------------------------------------------- - -ALTER TABLE tserver ADD COLUMN server_keepalive NUMBER(10, 0) DEFAULT 0; - --- ---------------------------------------------------------------------- --- Table `tagente_estado` --- ---------------------------------------------------------------------- - -ALTER TABLE tagente_estado RENAME COLUMN last_known_status TO known_status; -ALTER TABLE tagente_estado ADD COLUMN last_known_status NUMBER(10, 0) DEFAULT 0; - --- --------------------------------------------------------------------- --- Table `talert_actions` --- --------------------------------------------------------------------- -UPDATE talert_actions SET field4 = 'integria', - field5 = '_agent_: _alert_name_', - field6 = '1', - field7 = '3', - field8 = 'copy@dom.com', - field9 = 'admin', - field10 = '_alert_description_' -WHERE id = 4 AND id_alert_command = 11; -ALTER TABLE talert_actions ADD COLUMN field11 CLOB DEFAULT ""; -ALTER TABLE talert_actions ADD COLUMN field12 CLOB DEFAULT ""; -ALTER TABLE talert_actions ADD COLUMN field13 CLOB DEFAULT ""; -ALTER TABLE talert_actions ADD COLUMN field14 CLOB DEFAULT ""; -ALTER TABLE talert_actions ADD COLUMN field15 CLOB DEFAULT ""; -ALTER TABLE talert_actions ADD COLUMN field11_recovery CLOB DEFAULT ""; -ALTER TABLE talert_actions ADD COLUMN field12_recovery CLOB DEFAULT ""; -ALTER TABLE talert_actions ADD COLUMN field13_recovery CLOB DEFAULT ""; -ALTER TABLE talert_actions ADD COLUMN field14_recovery CLOB DEFAULT ""; -ALTER TABLE talert_actions ADD COLUMN field15_recovery CLOB DEFAULT ""; - --- --------------------------------------------------------------------- --- Table `talert_commands` --- --------------------------------------------------------------------- -UPDATE talert_commands SET fields_descriptions = '[\"Integria IMS API path\",\"Integria IMS API pass\",\"Integria IMS user\",\"Integria IMS user pass\",\"Ticket title\",\"Ticket group ID\",\"Ticket priority\",\"Email copy\",\"Ticket owner\",\"Ticket description\"]', fields_values = '[\"\",\"\",\"\",\"\",\"\",\"\",\"10,Maintenance;0,Informative;1,Low;2,Medium;3,Serious;4,Very Serious\",\"\",\"\",\"\"]' WHERE id = 11 AND name = 'Integria IMS Ticket'; - --- --------------------------------------------------------------------- --- Table `tconfig` --- --------------------------------------------------------------------- - -INSERT INTO tconfig (token, value) VALUES ('big_operation_step_datos_purge', '100'); -INSERT INTO tconfig (token, value) VALUES ('small_operation_step_datos_purge', '1000'); -INSERT INTO tconfig (token, value) VALUES ('days_autodisable_deletion', '30'); -INSERT INTO tconfig (token, value) VALUES ('MR', 0); -UPDATE tconfig SET value = 'https://licensing.artica.es/pandoraupdate7/server.php' WHERE token='url_update_manager'; -DELETE FROM tconfig WHERE token = 'current_package_enterprise'; -INSERT INTO tconfig (token, value) VALUES ('current_package_enterprise', 700); - --- --------------------------------------------------------------------- --- Table `tplanned_downtime_agents` --- --------------------------------------------------------------------- -ALTER TABLE tplanned_downtime_agents ADD COLUMN manually_disabled NUMBER(5, 0) DEFAULT 0; - --- --------------------------------------------------------------------- --- Table `tlink` --- --------------------------------------------------------------------- -UPDATE tlink SET link = 'http://library.pandorafms.com/' WHERE name = 'Module library'; -UPDATE tlink SET name = 'Enterprise Edition' WHERE id_link = 0000000002; -UPDATE tlink SET name = 'Documentation', link = 'http://wiki.pandorafms.com/' WHERE id_link = 0000000001; -UPDATE tlink SET link = 'http://forums.pandorafms.com/index.php?board=22.0' WHERE id_link = 0000000004; -UPDATE tlink SET link = 'https://github.com/pandorafms/pandorafms/issues' WHERE id_link = 0000000003; - --- --------------------------------------------------------------------- --- Table `tevent_filter` --- --------------------------------------------------------------------- -ALTER TABLE tevent_filter ADD COLUMN date_from date DEFAULT NULL; -ALTER TABLE tevent_filter ADD COLUMN date_to date DEFAULT NULL; - --- --------------------------------------------------------------------- --- Table `tusuario` --- --------------------------------------------------------------------- -ALTER TABLE tusuario ADD COLUMN id_filter int(10) unsigned default NULL; -ALTER TABLE tusuario ADD COLUMN CONSTRAINT fk_id_filter FOREIGN KEY (id_filter) REFERENCES tevent_filter(id_filter) ON DELETE SET NULL; -ALTER TABLE tusuario ADD COLUMN session_time INTEGER NOT NULL default '0'; - --- --------------------------------------------------------------------- --- Table `tagente_modulo` --- --------------------------------------------------------------------- -ALTER TABLE tagente_modulo ADD COLUMN dynamic_interval int(4) unsigned default '0'; -ALTER TABLE tagente_modulo ADD COLUMN dynamic_max bigint(20) default '0'; -ALTER TABLE tagente_modulo ADD COLUMN dynamic_min bigint(20) default '0'; -ALTER TABLE tagente_modulo ADD COLUMN dynamic_next bigint(20) NOT NULL default '0'; -ALTER TABLE tagente_modulo ADD COLUMN dynamic_two_tailed tinyint(1) unsigned default '0'; -ALTER TABLE tagente_modulo ADD COLUMN parent_module_id NUMBER(10, 0); - --- --------------------------------------------------------------------- --- Table `tnetwork_component` --- --------------------------------------------------------------------- -ALTER TABLE tnetwork_component ADD COLUMN dynamic_interval int(4) unsigned default '0'; -ALTER TABLE tnetwork_component ADD COLUMN dynamic_max int(4) default '0'; -ALTER TABLE tnetwork_component ADD COLUMN dynamic_min int(4) default '0'; -ALTER TABLE tnetwork_component ADD COLUMN dynamic_next bigint(20) NOT NULL default '0'; -ALTER TABLE tnetwork_component ADD COLUMN dynamic_two_tailed tinyint(1) unsigned default '0'; - --- --------------------------------------------------------------------- --- Table `tagente` --- --------------------------------------------------------------------- -ALTER TABLE tagente ADD transactional_agent tinyint(1) NOT NULL default 0; -ALTER TABLE tagente ADD remoteto tinyint(1) NOT NULL default 0; -ALTER TABLE tagente ADD cascade_protection_module int(10) unsigned default '0'; -ALTER TABLE tagente ADD COLUMN (alias VARCHAR2(600) not null DEFAULT ''); - -UPDATE `tagente` SET tagente.alias = tagente.nombre; --- --------------------------------------------------------------------- --- Table `tlayout` --- --------------------------------------------------------------------- -ALTER TABLE tlayout ADD COLUMN background_color varchar(50) NOT NULL default '#FFF'; - --- --------------------------------------------------------------------- --- Table `tlayout_data` --- --------------------------------------------------------------------- -ALTER TABLE tlayout_data ADD COLUMN type_graph varchar(50) NOT NULL default 'area'; -ALTER TABLE tlayout_data ADD COLUMN label_position varchar(50) NOT NULL default 'down'; - --- --------------------------------------------------------------------- --- Table `tagent_custom_fields` --- --------------------------------------------------------------------- -INSERT INTO tagent_custom_fields (name) VALUES ('eHorusID'); - --- --------------------------------------------------------------------- --- Table `tgraph` --- --------------------------------------------------------------------- -ALTER TABLE tgraph ADD COLUMN percentil int(4) unsigned default '0'; - --- --------------------------------------------------------------------- --- Table `tnetflow_filter` --- --------------------------------------------------------------------- -ALTER TABLE tnetflow_filter ADD COLUMN router_ip CLOB DEFAULT ""; - --- --------------------------------------------------------------------- --- Table `tlocal_component` --- --------------------------------------------------------------------- -ALTER TABLE tlocal_component ADD dynamic_interval INTEGER default 0; -ALTER TABLE tlocal_component ADD dynamic_max INTEGER default 0; -ALTER TABLE tlocal_component ADD dynamic_min INTEGER default 0; -ALTER TABLE tlocal_component ADD dynamic_next INTEGER default 0 NOT NULL; -ALTER TABLE tlocal_component ADD dynamic_two_tailed NUMBER(1, 0) default 0; - --- --------------------------------------------------------------------- --- Table `tpolicy_module` --- --------------------------------------------------------------------- -ALTER TABLE tpolicy_modules ADD dynamic_interval INTEGER default 0; -ALTER TABLE tpolicy_modules ADD dynamic_max INTEGER default 0; -ALTER TABLE tpolicy_modules ADD dynamic_min INTEGER default 0; -ALTER TABLE tpolicy_modules ADD dynamic_next INTEGER default 0 NOT NULL; -ALTER TABLE tpolicy_modules ADD dynamic_two_tailed NUMBER(1, 0) default 0; - --- --------------------------------------------------------------------- --- Table `tmetaconsole_agent` --- --------------------------------------------------------------------- -ALTER TABLE tmetaconsole_agent ADD remote INTEGER default 0 NOT NULL; -ALTER TABLE tmetaconsole_agent ADD cascade_protection_module NUMBER(10, 0) default 0 NOT NULL; -ALTER TABLE tmetaconsole_agent ADD transactional_agent INTEGER default 0 NOT NULL; -ALTER TABLE tmetaconsole_agent ADD COLUMN (alias VARCHAR2(600) not null DEFAULT ''); - -UPDATE `tmetaconsole_agent` SET tagente.alias = tagente.nombre; diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.postgreSQL.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.postgreSQL.sql deleted file mode 100644 index fa11ac6497..0000000000 --- a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.postgreSQL.sql +++ /dev/null @@ -1,947 +0,0 @@ --- ----------------------------------------------------- --- Table "tlocal_component" --- ----------------------------------------------------- --- tlocal_component is a repository of local modules for --- physical agents on Windows / Unix physical agents -CREATE TABLE "tlocal_component" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "name" TEXT NOT NULL, - "data" TEXT NOT NULL, - "description" varchar(1024) default NULL, - "id_os" INTEGER NOT NULL default 0, - "os_version" varchar(100) default '', - "id_network_component_group" INTEGER NOT NULL default 0 REFERENCES tnetwork_component_group("id_sg") ON DELETE CASCADE ON UPDATE CASCADE, - "type" SMALLINT NOT NULL default 6, - "max" INTEGER NOT NULL default 0, - "min" INTEGER NOT NULL default 0, - "module_interval" INTEGER NOT NULL default 0, - "id_module_group" INTEGER NOT NULL default 0, - "history_data" INTEGER default '1', - "min_warning" DOUBLE PRECISION default NULL, - "max_warning" DOUBLE PRECISION default NULL, - "str_warning" TEXT default '', - "min_critical" DOUBLE PRECISION default NULL, - "max_critical" DOUBLE PRECISION default NULL, - "str_critical" TEXT default '', - "min_ff_event" INTEGER NOT NULL default 0, - "post_process" DOUBLE PRECISION default NULL, - "unit" TEXT default '', - "wizard_level" type_tlocal_component_wizard_level default 'nowizard', - "macros" TEXT default '', - "critical_instructions" TEXT default '', - "warning_instructions" TEXT default '', - "unknown_instructions" TEXT default '', - "critical_inverse" SMALLINT default 0 NOT NULL, - "warning_inverse" SMALLINT default 0 NOT NULL, - "id_category" INTEGER NOT NULL default 0, - "tags" TEXT default '', - "disabled_types_event" TEXT default '', - "min_ff_event_normal" INTEGER default 0, - "min_ff_event_warning" INTEGER default 0, - "min_ff_event_critical" INTEGER default 0, - "dynamic_interval" INTEGER default 0, - "dynamic_max" INTEGER default 0, - "dynamic_min" INTEGER default 0, - "dynamic_next" INTEGER default 0 NOT NULL, - "dynamic_two_tailed" SMALLINT default 0, - "each_ff" SMALLINT default 0, - "ff_timeout" INTEGER default 0 -); - - --- ----------------------------------------------------- --- Table "tpolicy_modules" --- ----------------------------------------------------- -CREATE TABLE "tpolicy_modules" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_policy" INTEGER NOT NULL default 0, - "configuration_data" TEXT NOT NULL, - "id_tipo_modulo" SMALLINT NOT NULL default 0, - "description" varchar(1024) NOT NULL default '', - "name" varchar(200) NOT NULL default '', - "unit" TEXT default '', - "max" BIGINT NOT NULL default 0, - "min" BIGINT NOT NULL default 0, - "module_interval" INTEGER NOT NULL default 0, - "tcp_port" INTEGER NOT NULL default 0, - "tcp_send" text default '', - "tcp_rcv" text default '', - "snmp_community" varchar(100) default '', - "snmp_oid" varchar(255) default '0', - "id_module_group" INTEGER NOT NULL default 0, - "flag" SMALLINT NOT NULL default 0, - "id_module" INTEGER NOT NULL default 0, - "disabled" SMALLINT NOT NULL default 0, - "id_export" SMALLINT NOT NULL default 0, - "plugin_user" text default '', - "plugin_pass" text default '', - "plugin_parameter" text, - "id_plugin" INTEGER NOT NULL default 0, - "post_process" DOUBLE PRECISION default NULL, - "prediction_module" BIGINT NOT NULL default 0, - "max_timeout" INTEGER NOT NULL default 0, - "max_retries" INTEGER NOT NULL default 0, - "custom_id" varchar(255) default '', - "history_data" SMALLINT NOT NULL default 1, - "min_warning" DOUBLE PRECISION default 0, - "max_warning" DOUBLE PRECISION default 0, - "str_warning" text default '', - "min_critical" DOUBLE PRECISION default 0, - "max_critical" DOUBLE PRECISION default 0, - "str_critical" text default '', - "min_ff_event" INTEGER NOT NULL default 0, - "custom_string_1" text default '', - "custom_string_2" text default '', - "custom_string_3" text default '', - "custom_integer_1" INTEGER NOT NULL default 0, - "custom_integer_2" INTEGER NOT NULL default 0, - "pending_delete" SMALLINT NOT NULL default 0, - "critical_instructions" TEXT default '', - "warning_instructions" TEXT default '', - "unknown_instructions" TEXT default '', - "critical_inverse" SMALLINT default 0 NOT NULL, - "warning_inverse" SMALLINT default 0 NOT NULL, - "id_category" INTEGER NOT NULL default 0, - "module_ff_interval" INTEGER NOT NULL default 0, - "quiet" SMALLINT NOT NULL default 0, - "cron_interval" varchar(100) default '', - "macros" text default '', - "disabled_types_event" TEXT default '', - "module_macros" TEXT default '', - "min_ff_event_normal" INTEGER default 0, - "min_ff_event_warning" INTEGER default 0, - "min_ff_event_critical" INTEGER default 0, - "each_ff" SMALLINT default 0, - "ff_timeout" INTEGER default 0, - "dynamic_interval" INTEGER default 0, - "dynamic_max" INTEGER default 0, - "dynamic_min" INTEGER default 0, - "dynamic_next" INTEGER NOT NULL default 0, - "dynamic_two_tailed" INTEGER default 0 -); -CREATE UNIQUE INDEX "tpolicy_modules_id_policy_name_idx" ON "tpolicy_modules"("id_policy", "name"); -CREATE INDEX "tpolicy_modules_id_policy_idx" ON "tpolicy_modules"("id_policy"); - - --- ----------------------------------------------------- --- Table "tpolicies" --- ----------------------------------------------------- --- 'status' could be 0 (without changes, updated), 1 (needy update only database) or 2 (needy update database and conf files) -CREATE TABLE "tpolicies" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "name" text NOT NULL default '', - "description" varchar(255) NOT NULL default '', - "id_group" INTEGER NOT NULL default 0, - "status" INTEGER NOT NULL default 0 -); - - --- ----------------------------------------------------- --- Table "tpolicy_alerts" --- ----------------------------------------------------- -CREATE TABLE "tpolicy_alerts" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_policy" INTEGER NOT NULL default 0 REFERENCES tpolicies("id") ON DELETE CASCADE ON UPDATE CASCADE, - "id_policy_module" INTEGER NOT NULL default 0, - "id_alert_template" INTEGER NOT NULL default 0 REFERENCES talert_templates("id") ON DELETE CASCADE ON UPDATE CASCADE, - "name_extern_module" TEXT NOT NULL default '', - "disabled" SMALLINT NOT NULL default 0, - "standby" SMALLINT NOT NULL default 0, - "pending_delete" SMALLINT NOT NULL default 0 -); - - --- ----------------------------------------------------- --- Table "tpolicy_agents" --- ----------------------------------------------------- -CREATE TABLE "tpolicy_agents" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_policy" INTEGER NOT NULL default 0, - "id_agent" INTEGER NOT NULL default 0, - "policy_applied" SMALLINT NOT NULL default 0, - "pending_delete" SMALLINT NOT NULL default 0, - "last_apply_utimestamp" INTEGER NOT NULL default 0 -); -CREATE UNIQUE INDEX "tpolicy_agents_id_policy_id_agent_idx" ON "tpolicy_agents"("id_policy", "id_agent"); - - --- ----------------------------------------------------- --- Table "tdashboard" --- ----------------------------------------------------- -CREATE TABLE "tdashboard" ( - "id" BIGSERIAL NOT NULL PRIMARY KEY, - "name" varchar(60) NOT NULL default '', - "id_user" varchar(60) NOT NULL default '', - "id_group" INTEGER NOT NULL default 0, - "active" SMALLINT NOT NULL default 0, - "cells" text default '' -); - - --- ----------------------------------------------------- --- Table "twidget" --- ----------------------------------------------------- -CREATE TABLE "twidget" ( - "id" BIGSERIAL NOT NULL PRIMARY KEY, - "class_name" varchar(60) NOT NULL default '', - "unique_name" varchar(60) NOT NULL default '', - "description" text NOT NULL default '', - "options" text NOT NULL default '', - "page" varchar(120) NOT NULL default '' -); - - --- ----------------------------------------------------- --- Table "twidget_dashboard" --- ----------------------------------------------------- -CREATE TABLE "twidget_dashboard" ( - "id" BIGSERIAL NOT NULL PRIMARY KEY, - "options" text NOT NULL default '', - "order" INTEGER NOT NULL default 0, - "id_dashboard" BIGINT NOT NULL default 0 REFERENCES tdashboard("id") ON DELETE CASCADE ON UPDATE CASCADE, - "id_widget" BIGINT NOT NULL default 0, - "prop_width" DOUBLE PRECISION NOT NULL default 0.32, - "prop_height" DOUBLE PRECISION NOT NULL default 0.32, -); - - --- ----------------------------------------------------- --- Table "tmodule_inventory" --- ----------------------------------------------------- -CREATE TABLE "tmodule_inventory" ( - "id_module_inventory"SERIAL NOT NULL PRIMARY KEY, - "id_os" INTEGER default NULL REFERENCES tconfig_os("id_os") ON UPDATE CASCADE ON DELETE CASCADE, - "name" varchar(100) default '', - "description" varchar(100) default '', - "interpreter" varchar(100) default '', - "data_format" varchar(100) default '', - "code" BYTEA NOT NULL -); - - --- --------------------------------------------------------------------- --- Table "tagent_module_inventory" --- --------------------------------------------------------------------- -CREATE TABLE "tagent_module_inventory" ( - "id_agent_module_inventory" SERIAL NOT NULL PRIMARY KEY, - "id_agente" INTEGER NOT NULL REFERENCES tagente("id_agente") ON UPDATE CASCADE ON DELETE CASCADE, - "id_module_inventory" INTEGER NOT NULL REFERENCES tmodule_inventory("id_module_inventory") ON UPDATE CASCADE ON DELETE CASCADE, - "target" varchar(100) default '', - "interval" INTEGER NOT NULL default 3600, - "username" varchar(100) default '', - "password" varchar(100) default '', - "data" BYTEA NOT NULL, - "timestamp" TIMESTAMP without time zone default '1970-01-01 00:00:00', - "utimestamp" INTEGER NOT NULL default 0, - "flag" SMALLINT NOT NULL default 1, - "id_policy_module_inventory" INTEGER NOT NULL default 0 -); - - --- ----------------------------------------------------- --- Table "tagente_datos_inventory" --- ----------------------------------------------------- -CREATE TABLE "tagente_datos_inventory" ( - "id_agent_module_inventory" SERIAL NOT NULL, - "data" BYTEA NOT NULL, - "utimestamp" INTEGER NOT NULL default 0, - "timestamp" TIMESTAMP without time zone default '1970-01-01 00:00:00' -); -CREATE UNIQUE INDEX "tagente_datos_inventory_id" ON "tagente_datos_inventory"("id_agent_module_inventory"); -CREATE UNIQUE INDEX "tagente_datos_inventory_ut" ON "tagente_datos_inventory"("utimestamp"); - - --- ----------------------------------------------------- --- Table "ttrap_custom_values" --- ----------------------------------------------------- -CREATE TABLE "ttrap_custom_values" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "oid" varchar(255) NOT NULL default '', - "custom_oid" varchar(255) NOT NULL default '', - "text" varchar(255) default '', - "description" varchar(255) default '', - "severity" INTEGER NOT NULL default 2 -); - - --- ----------------------------------------------------- --- Table "tmetaconsole_setup" --- ----------------------------------------------------- ---Table to store metaconsole sources -CREATE TABLE "tmetaconsole_setup" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "server_name" text default '', - "server_url" text default '', - "dbuser" text default '', - "dbpass" text default '', - "dbhost" text default '', - "dbport" text default '', - "dbname" text default '', - "auth_token" text default '', - "id_group" INTEGER NOT NULL default 0, - "api_password" text default '', - "disabled" SMALLINT NOT NULL default 0, - "last_event_replication" BIGINT NOT NULL default 0 -); - - --- ----------------------------------------------------- --- Table "tprofile_view" --- ----------------------------------------------------- ---Table to define by each profile defined in Pandora, to which sec/page has access independently of its ACL (for showing in the console or not). By default have access to all pages allowed by ACL, if forbidden here, then pages are not shown. -CREATE TABLE "tprofile_view" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_profile" INTEGER NOT NULL default 0, - "sec" text default '', - "sec2" text default '' -); - - --- --------------------------------------------------------------------- --- Table "tservice" --- --------------------------------------------------------------------- ---Table to define services to monitor -CREATE TABLE "tservice" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "name" varchar(100) NOT NULL default '', - "description" text NOT NULL default '', - "id_group" INTEGER NOT NULL default 0, - "critical" DOUBLE PRECISION NOT NULL default 0, - "warning" DOUBLE PRECISION NOT NULL default 0, - "service_interval" DOUBLE PRECISION NOT NULL default 0, - "service_value" DOUBLE PRECISION NOT NULL default 0, - "status" INTEGER NOT NULL default -1, - "utimestamp" INTEGER NOT NULL default 0, - "auto_calculate" INTEGER NOT NULL default 1, - "id_agent_module" INTEGER NOT NULL default 0, - "sla_interval" DOUBLE PRECISION NOT NULL default 0, - "sla_id_module" INTEGER NOT NULL default 0, - "sla_value_id_module" INTEGER NOT NULL default 0, - "sla_limit" DOUBLE PRECISION NOT NULL default 100, - "id_template_alert_warning" INTEGER NOT NULL default 0, - "id_template_alert_critical" INTEGER NOT NULL default 0, - "id_template_alert_unknown" INTEGER NOT NULL default 0, - "id_template_alert_critical_sla" INTEGER NOT NULL default 0 -); - - --- ----------------------------------------------------- --- Table "tservice_element" --- ----------------------------------------------------- ---Table to define the modules and the weights of the modules that define a service -CREATE TABLE "tservice_element" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_service" INTEGER NOT NULL, - "weight_ok" DOUBLE PRECISION NOT NULL default 0, - "weight_warning" DOUBLE PRECISION NOT NULL default 0, - "weight_critical" DOUBLE PRECISION NOT NULL default 0, - "weight_unknown" DOUBLE PRECISION NOT NULL default 0, - "description" text NOT NULL default '', - "id_agente_modulo" INTEGER NOT NULL default 0, - "id_agent" INTEGER NOT NULL default 0, - "id_service_child" INTEGER NOT NULL default 0, - "id_server_meta" INTEGER NOT NULL default 0 -); - - --- --------------------------------------------------------------------- --- Table "tcollection" --- --------------------------------------------------------------------- -CREATE TABLE "tcollection" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "name" varchar(100) NOT NULL default '', - "short_name" varchar(100) NOT NULL default '', - "id_group" INTEGER NOT NULL default 0, - "description" TEXT, - "status" INTEGER NOT NULL default 0 -); --- status: 0 - Not apply --- status: 1 - Applied - - --- ----------------------------------------------------- --- Table "tpolicy_collections" --- ----------------------------------------------------- -CREATE TABLE "tpolicy_collections" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_policy" INTEGER NOT NULL default 0 REFERENCES "tpolicies" ("id") ON DELETE CASCADE ON UPDATE CASCADE, - "id_collection" INTEGER NOT NULL default 0 REFERENCES "tcollection" ("id") ON DELETE CASCADE ON UPDATE CASCADE, - "pending_delete" SMALLINT NOT NULL default 0 -); - - --- ----------------------------------------------------- --- Table "tpolicy_alerts_actions" --- ----------------------------------------------------- -CREATE TABLE "tpolicy_alerts_actions" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_policy_alert" INTEGER NOT NULL default 0 REFERENCES "tpolicy_alerts" ("id") ON DELETE CASCADE ON UPDATE CASCADE, - "id_alert_action" INTEGER NOT NULL default 0 REFERENCES "talert_actions" ("id") ON DELETE CASCADE ON UPDATE CASCADE, - "fires_min" INTEGER default 0, - "fires_max" INTEGER default 0 -); - --- --------------------------------------------------------------------- --- Table "tpolicy_plugins" --- --------------------------------------------------------------------- -CREATE TABLE "tpolicy_plugins" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_policy" INTEGER NOT NULL default 0, - "plugin_exec" TEXT default '', - "pending_delete" SMALLINT NOT NULL default 0 -); - --- ----------------------------------------------------- --- Table "tsesion_extended" --- ----------------------------------------------------- -CREATE TABLE "tsesion_extended" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_sesion" INTEGER NOT NULL, - "extended_info" TEXT default '', - "hash" varchar(255) default '' -); - - --- ----------------------------------------------------- --- Table `tskin` --- ----------------------------------------------------- -CREATE TABLE "tskin" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "name" TEXT NOT NULL DEFAULT '', - "relative_path" TEXT NOT NULL DEFAULT '', - "description" text NOT NULL DEFAULT '', - "disabled" INTEGER NOT NULL default 0 -); - - --- --------------------------------------------------------------------- --- Table `tpolicy_queue` --- --------------------------------------------------------------------- -CREATE TABLE "tpolicy_queue" ( - "id" BIGSERIAL NOT NULL PRIMARY KEY, - "id_policy" INTEGER NOT NULL default 0, - "id_agent" INTEGER NOT NULL default 0, - "operation" varchar(15) NOT NULL default '', - "progress" INTEGER NOT NULL default 0, - "end_utimestamp" INTEGER NOT NULL default 0, - "priority" INTEGER NOT NULL default 0 -); - - --- ----------------------------------------------------- --- Table `tmodule_synth` --- ----------------------------------------------------- -CREATE TYPE type_tmodule_synth_operation AS ENUM ('ADD', 'SUB', 'DIV', 'MUL', 'AVG', 'NOP'); -CREATE TABLE "tmodule_synth" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_agent_module_source" INTEGER NOT NULL default 0, - "id_agent_module_target" INTEGER NOT NULL default 0 REFERENCES tagente_modulo("id_agente_modulo") ON UPDATE CASCADE ON DELETE CASCADE, - "fixed_value" float default NULL, - "operation" type_tmodule_synth_operation NOT NULL default 'NOP', - "order" INTEGER NOT NULL default 0 -); - - --- ----------------------------------------------------- --- Table `tevent_rule` --- ----------------------------------------------------- -CREATE TYPE type_tevent_rule_operation AS ENUM ('NOP', 'AND','OR','XOR','NAND','NOR','NXOR'); -CREATE TYPE type_tevent_rule_event_type AS ENUM ('','unknown','alert_fired','alert_recovered','alert_ceased','alert_manual_validation','recon_host_detected','system','error','new_agent','going_up_warning','going_up_critical','going_down_warning','going_down_normal','going_down_critical','going_up_normal'); -CREATE TABLE "tevent_rule" ( - "id_event_rule" SERIAL NOT NULL PRIMARY KEY, - "id_event_alert" INTEGER NOT NULL, - "operation" type_tevent_rule_operation NOT NULL, - "order" INTEGER default '0', - "window" INTEGER NOT NULL default '0', - "count" INTEGER NOT NULL default '1', - "agent" text default '', - "id_usuario" VARCHAR(100) NOT NULL default '', - "id_grupo" INTEGER NOT NULL default '0', - "evento" text NOT NULL default '', - "event_type" type_tevent_rule_event_type default 'unknown', - "module" text default '', - "alert" text default '', - "criticity" INTEGER NOT NULL default '0', - "user_comment" text NOT NULL, - "id_tag" INTEGER NOT NULL default '0', - "name" text default '' -); -CREATE INDEX "tevent_rule_id_event_alert_idx" ON "tevent_rule"("id_event_alert"); - - --- ----------------------------------------------------- --- Table `tevent_alert` --- ----------------------------------------------------- -CREATE TYPE type_tevent_alert_mode AS ENUM ('PASS','DROP'); -CREATE TYPE type_tevent_alert_group_by AS ENUM ('','id_agente','id_agentmodule','id_alert_am','id_grupo'); -CREATE TABLE "tevent_alert" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "name" text default '', - "description" text, - "order" INTEGER default 0, - "mode" type_tevent_alert_mode, - "field1" text NOT NULL default '', - "field2" text NOT NULL default '', - "field3" text NOT NULL default '', - "field4" text NOT NULL default '', - "field5" text NOT NULL default '', - "field6" text NOT NULL default '', - "field7" text NOT NULL default '', - "field8" text NOT NULL default '', - "field9" text NOT NULL default '', - "field10" text NOT NULL default '', - "time_threshold" INTEGER NOT NULL default '0', - "max_alerts" INTEGER NOT NULL default '1', - "min_alerts" INTEGER NOT NULL default '0', - "time_from" time default '00:00:00', - "time_to" time default '00:00:00', - "monday" INTEGER default 1, - "tuesday" INTEGER default 1, - "wednesday" INTEGER default 1, - "thursday" INTEGER default 1, - "friday" INTEGER default 1, - "saturday" INTEGER default 1, - "sunday" INTEGER default 1, - "recovery_notify" INTEGER default '0', - "field2_recovery" text NOT NULL default '', - "field3_recovery" text NOT NULL, - "id_group" INTEGER NULL default 0, - "internal_counter" INTEGER default '0', - "last_fired" BIGINT NOT NULL default '0', - "last_reference" BIGINT NOT NULL default '0', - "times_fired" INTEGER NOT NULL default '0', - "disabled" INTEGER default '0', - "standby" INTEGER default '0', - "priority" INTEGER default '0', - "force_execution" INTEGER default '0', - "group_by" type_tevent_alert_group_by default '' -); - --- ----------------------------------------------------- --- Table `tevent_alert_action` --- ----------------------------------------------------- -CREATE TABLE "tevent_alert_action" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_event_alert" INTEGER NOT NULL REFERENCES tevent_alert("id") ON DELETE CASCADE ON UPDATE CASCADE, - "id_alert_action" INTEGER NOT NULL REFERENCES talert_actions("id") ON DELETE CASCADE ON UPDATE CASCADE, - "fires_min" INTEGER default 0, - "fires_max" INTEGER default 0, - "module_action_threshold" INTEGER NOT NULL default '0', - "last_execution" BIGINT NOT NULL default '0' -); - - --- --------------------------------------------------------------------- --- Table `tpolicy_modules_inventory` --- --------------------------------------------------------------------- -CREATE TABLE "tpolicy_modules_inventory" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_policy" INTEGER NOT NULL REFERENCES tpolicies("id") ON UPDATE CASCADE ON DELETE CASCADE, - "id_module_inventory" INTEGER NOT NULL REFERENCES tmodule_inventory("id_module_inventory") ON UPDATE CASCADE ON DELETE CASCADE, - "interval" INTEGER NOT NULL default 3600, - "username" varchar(100) default '', - "password" varchar(100) default '', - "pending_delete" SMALLINT NOT NULL default 0 -); - - --- ----------------------------------------------------- --- Table `tnetworkmap_enterprise` --- ----------------------------------------------------- -CREATE TABLE "tnetworkmap_enterprise" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "name" varchar(500) default '', - "id_group" INTEGER NOT NULL default 0, - "options" TEXT default '' -); - - --- ----------------------------------------------------- --- Table `tnetworkmap_enterprise_nodes` --- ----------------------------------------------------- -CREATE TABLE "tnetworkmap_enterprise_nodes" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_networkmap_enterprise" INTEGER NOT NULL REFERENCES tnetworkmap_enterprise("id") ON UPDATE CASCADE ON DELETE CASCADE, - "x" INTEGER NOT NULL default 0, - "y" INTEGER NOT NULL default 0, - "z" INTEGER NOT NULL default 0, - "id_agent" INTEGER NOT NULL default 0, - "id_module" INTEGER NOT NULL default 0, - "id_agent_module" INTEGER NOT NULL default 0, - "parent" INTEGER default 0, - "options" text default '', - "deleted" text default '', - "state" TEXT default '' -); - - --- ----------------------------------------------------- --- Table `tnetworkmap_ent_rel_nodes` (Before `tnetworkmap_enterprise_relation_nodes`) --- ----------------------------------------------------- -CREATE TABLE "tnetworkmap_ent_rel_nodes" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_networkmap_enterprise" INTEGER NOT NULL REFERENCES tnetworkmap_enterprise("id") ON UPDATE CASCADE ON DELETE CASCADE, - "parent" INTEGER default 0, - "parent_type" varchar(30) default 'node', - "child" INTEGER default 0, - "child_type" varchar(30) default 'node', - "deleted" text default '' -); - - --- ----------------------------------------------------- --- Table `treport_template` --- ----------------------------------------------------- -CREATE TABLE "treport_template" ( - "id_report" SERIAL NOT NULL PRIMARY KEY, - "id_user" varchar(100) NOT NULL default '', - "name" varchar(150) NOT NULL default '', - "description" TEXT NOT NULL, - "private" SMALLINT NOT NULL default 0, - "id_group" SMALLINT NULL default NULL, - "custom_logo" varchar(200) default NULL, - "header" TEXT default NULL, - "first_page" TEXT default NULL, - "footer" TEXT default NULL, - "custom_font" varchar(200) default NULL, - "metaconsole" SMALLINT DEFAULT 0 -); - - --- ----------------------------------------------------- --- Table `treport_content_template` --- ----------------------------------------------------- -CREATE TABLE "treport_content_template" ( - "id_rc" SERIAL NOT NULL PRIMARY KEY, - "id_report" INTEGER NOT NULL default 0 REFERENCES treport_template("id_report") ON DELETE CASCADE, - "id_gs" INTEGER NULL default NULL, - "text_agent_module" TEXT default NULL, - "type" varchar(30) default 'simple_graph', - "period" INTEGER NOT NULL default 0, - "order" INTEGER NOT NULL default 0, - "description" TEXT, - "text_agent" TEXT default '', - "text" TEXT default NULL, - "external_source" TEXT default NULL, - "treport_custom_sql_id" INTEGER default 0, - "header_definition" TEXT default NULL, - "column_separator" TEXT default NULL, - "line_separator" TEXT default NULL, - "time_from" TIME without time zone default '00:00:00', - "time_to" TIME without time zone default '00:00:00', - "monday" SMALLINT NOT NULL default 1, - "tuesday" SMALLINT NOT NULL default 1, - "wednesday" SMALLINT NOT NULL default 1, - "thursday" SMALLINT NOT NULL default 1, - "friday" SMALLINT NOT NULL default 1, - "saturday" SMALLINT NOT NULL default 1, - "sunday" SMALLINT NOT NULL default 1, - "only_display_wrong" SMALLINT not null default 0, - "top_n" INTEGER NOT NULL default 0, - "top_n_value" INTEGER NOT NULL default 10, - "exception_condition" INTEGER NOT NULL default 0, - "exception_condition_value" DOUBLE PRECISION NOT NULL default 0, - "show_resume" INTEGER NOT NULL default 0, - "order_uptodown" INTEGER NOT NULL default 0, - "show_graph" INTEGER NOT NULL default 0, - "group_by_agent" INTEGER NOT NULL default 0, - "style" TEXT NOT NULL DEFAULT '', - "id_group" INTEGER NOT NULL DEFAULT 0, - "id_module_group" INTEGER NOT NULL DEFAULT 0, - "server_name" text default '', - "exact_match" SMALLINT default 0, - "module_names" TEXT default NULL, - "module_free_text" TEXT default NULL, - "each_agent" SMALLINT NOT NULL default 1 -); - - --- ----------------------------------------------------- --- Table `treport_content_sla_com_temp` --- ----------------------------------------------------- -CREATE TABLE "treport_content_sla_com_temp" ( - "id" SERIAL NOT NULL, - "id_report_content" INTEGER NOT NULL REFERENCES treport_content_template("id_rc") ON DELETE CASCADE, - "text_agent" TEXT default '', - "text_agent_module" TEXT default '', - "sla_max" DOUBLE PRECISION NOT NULL default 0, - "sla_min" DOUBLE PRECISION NOT NULL default 0, - "sla_limit" DOUBLE PRECISION NOT NULL default 0, - "server_name" TEXT default '', - "exact_match" SMALLINT default 0 -); - - --- ----------------------------------------------------- --- Table `treport_content_item_temp` (treport_content_item_template) --- ----------------------------------------------------- -CREATE TABLE "treport_content_item_temp" ( - "id" SERIAL NOT NULL, - "id_report_content" INTEGER NOT NULL REFERENCES treport_content_template("id_rc") ON DELETE CASCADE, - "text_agent" TEXT default '', - "text_agent_module" TEXT default '', - "server_name" TEXT default '', - "exact_match" SMALLINT default 0, - "operation" TEXT -); - - --- ----------------------------------------------------- --- Table `tgraph_template` --- ----------------------------------------------------- -CREATE TABLE "tgraph_template" ( - "id_graph_template" SERIAL NOT NULL PRIMARY KEY, - "id_user" TEXT NOT NULL default '', - "name" TEXT NOT NULL default '', - "description" TEXT NOT NULL default '', - "period" INTEGER NOT NULL default 0, - "width" SMALLINT NOT NULL default 0, - "height" SMALLINT NOT NULL default 0, - "private" SMALLINT NOT NULL default 0, - "events" SMALLINT NOT NULL default 0, - "stacked" SMALLINT NOT NULL default 0, - "id_group" INTEGER NOT NULL default 0 - ); - - --- ----------------------------------------------------- --- Table `tgraph_source_template` --- ----------------------------------------------------- -CREATE TABLE "tgraph_source_template" ( - "id_gs_template" SERIAL NOT NULL PRIMARY KEY, - "id_template" INTEGER NOT NULL default 0, - "agent" TEXT NOT NULL default '', - "module" TEXT NOT NULL default '', - "period" INTEGER NOT NULL default 0, - "weight" DOUBLE PRECISION default 2.0, - "exact_match" SMALLINT NOT NULL default 0 - ); - --- --------------------------------------------------------------------- --- Table `tmetaconsole_event` --- --------------------------------------------------------------------- -CREATE TYPE type_tmetaconsole_event_event AS ENUM ('going_unknown','unknown','alert_fired','alert_recovered','alert_ceased','alert_manual_validation','recon_host_detected','system','error','new_agent','going_up_warning','going_up_critical','going_down_warning','going_down_normal','going_down_critical','going_up_normal', 'configuration_change'); -CREATE TABLE "tmetaconsole_event" ( - "id_evento" BIGSERIAL NOT NULL PRIMARY KEY, - "id_source_event" BIGSERIAL NOT NULL, - "id_agente" INTEGER NOT NULL default 0, - "agent_name" varchar(600) NOT NULL default '', - "id_usuario" varchar(100) NOT NULL default '0', - "id_grupo" INTEGER NOT NULL default 0, - "group_name" text NOT NULL default '', - "estado" INTEGER NOT NULL default 0, - "timestamp" TIMESTAMP without time zone default '1970-01-01 00:00:00', - "evento" text NOT NULL default '', - "utimestamp" BIGINT NOT NULL default 0, - "event_type" type_tmetaconsole_event_event default 'unknown', - "id_agentmodule" INTEGER NOT NULL default 0, - "module_name" TEXT NOT NULL default '', - "id_alert_am" INTEGER NOT NULL default 0, - "alert_template_name" text default '', - "criticity" INTEGER NOT NULL default 0, - "user_comment" text NOT NULL, - "tags" text NOT NULL, - "source" text NOT NULL default '', - "id_extra" text NOT NULL default '', - "critical_instructions" TEXT default '', - "warning_instructions" TEXT default '', - "unknown_instructions" TEXT default '', - "owner_user" varchar(100) NOT NULL default '0', - "ack_utimestamp" BIGINT NOT NULL default 0, - "server_id" INTEGER NOT NULL, - "custom_data" text NOT NULL -); -CREATE INDEX "tmetaconsole_event_id_1_idx" ON "tmetaconsole_event"("id_agente", "id_evento"); -CREATE INDEX "tmetaconsole_event_id_agentmodule_idx" ON "tmetaconsole_event"("id_agentmodule"); -CREATE INDEX "tmetaconsole_event_server_id_idx" ON "tmetaconsole_event"("server_id"); -CREATE INDEX "tmetaconsole_event_id_grupo_idx" ON "tmetaconsole_event"("id_grupo"); -CREATE INDEX "tmetaconsole_event_criticity_idx" ON "tmetaconsole_event"("criticity"); -CREATE INDEX "tmetaconsole_event_estado_idx" ON "tmetaconsole_event"("estado"); - - --- --------------------------------------------------------------------- --- Table `tmetaconsole_event_history` --- --------------------------------------------------------------------- -CREATE TYPE type_tmetaconsole_event_event_h AS ENUM ('going_unknown','unknown','alert_fired','alert_recovered','alert_ceased','alert_manual_validation','recon_host_detected','system','error','new_agent','going_up_warning','going_up_critical','going_down_warning','going_down_normal','going_down_critical','going_up_normal', 'configuration_change'); -CREATE TABLE "tmetaconsole_event_history" ( - "id_evento" BIGSERIAL NOT NULL PRIMARY KEY, - "id_source_event" BIGSERIAL NOT NULL, - "id_agente" INTEGER NOT NULL default 0, - "agent_name" varchar(600) NOT NULL default '', - "id_usuario" varchar(100) NOT NULL default '0', - "id_grupo" INTEGER NOT NULL default 0, - "group_name" text NOT NULL default '', - "estado" INTEGER NOT NULL default 0, - "timestamp" TIMESTAMP without time zone default '1970-01-01 00:00:00', - "evento" text NOT NULL default '', - "utimestamp" BIGINT NOT NULL default 0, - "event_type" type_tmetaconsole_event_event_h default 'unknown', - "id_agentmodule" INTEGER NOT NULL default 0, - "module_name" TEXT NOT NULL default '', - "id_alert_am" INTEGER NOT NULL default 0, - "alert_template_name" text default '', - "criticity" INTEGER NOT NULL default 0, - "user_comment" text NOT NULL, - "tags" text NOT NULL, - "source" text NOT NULL default '', - "id_extra" text NOT NULL default '', - "critical_instructions" TEXT default '', - "warning_instructions" TEXT default '', - "unknown_instructions" TEXT default '', - "owner_user" varchar(100) NOT NULL default '0', - "ack_utimestamp" BIGINT NOT NULL default 0, - "server_id" INTEGER NOT NULL, - "custom_data" text NOT NULL -); -CREATE INDEX "tmetaconsole_event_h_id_1_idx" ON "tmetaconsole_event_history"("id_agente", "id_evento"); -CREATE INDEX "tmetaconsole_event_h_id_agentmodule_idx" ON "tmetaconsole_event_history"("id_agentmodule"); -CREATE INDEX "tmetaconsole_event_h_server_id_idx" ON "tmetaconsole_event_history"("server_id"); -CREATE INDEX "tmetaconsole_event_h_id_grupo_idx" ON "tmetaconsole_event_history"("id_grupo"); -CREATE INDEX "tmetaconsole_event_h_criticity_idx" ON "tmetaconsole_event_history"("criticity"); -CREATE INDEX "tmetaconsole_event_h_estado_idx" ON "tmetaconsole_event_history"("estado"); - --- --------------------------------------------------------------------- --- Table `tagent_module_log` --- --------------------------------------------------------------------- -CREATE TABLE "tagent_module_log" ( - "id_agent_module_log" SERIAL NOT NULL PRIMARY KEY, - "id_agent" INTEGER NOT NULL REFERENCES tagente("id_agente") ON UPDATE CASCADE ON DELETE CASCADE, - "source" TEXT, - "timestamp" TIMESTAMP without time zone default '1970-01-01 00:00:00', - "utimestamp" BIGINT NOT NULL default 0 -); - --- --------------------------------------------------------------------- --- Table `tevent_custom_field` --- --------------------------------------------------------------------- -CREATE TABLE "tevent_custom_field" ( - "id_group" INTEGER NOT NULL default 0, - "value" text NOT NULL default '' -); - --- ---------------------------------------------------------------------- --- Table `tagente_estado` --- ---------------------------------------------------------------------- - -ALTER TABLE tagente_estado RENAME COLUMN last_known_status TO known_status; -ALTER TABLE tagente_estado ADD COLUMN last_known_status NUMBER(10, 0) DEFAULT 0; - --- --------------------------------------------------------------------- --- Table `tusuario` --- --------------------------------------------------------------------- - -ALTER TABLE tusuario ADD COLUMN id_filter int(10) unsigned default NULL; -ALTER TABLE tusuario ADD COLUMN CONSTRAINT fk_id_filter FOREIGN KEY (id_filter) REFERENCES tevent_filter(id_filter) ON DELETE SET NULL; -ALTER TABLE tusuario ADD COLUMN session_time int(10) NOT NULL default 0; - --- --------------------------------------------------------------------- --- Table `tagente_modulo` --- --------------------------------------------------------------------- -ALTER TABLE tagente_modulo ADD COLUMN dynamic_interval int(4) unsigned default 0; -ALTER TABLE tagente_modulo ADD COLUMN dynamic_max bigint(20) default 0; -ALTER TABLE tagente_modulo ADD COLUMN dynamic_min bigint(20) default 0; -ALTER TABLE tagente_modulo ADD COLUMN dynamic_next bigint(20) NOT NULL default 0; -ALTER TABLE tagente_modulo ADD COLUMN dynamic_two_tailed tinyint(1) unsigned default 0; - --- --------------------------------------------------------------------- --- Table `tnetwork_component` --- --------------------------------------------------------------------- -ALTER TABLE tnetwork_component ADD COLUMN dynamic_interval int(4) unsigned default 0; -ALTER TABLE tnetwork_component ADD COLUMN dynamic_max int(4) default 0; -ALTER TABLE tnetwork_component ADD COLUMN dynamic_min int(4) default 0; -ALTER TABLE tnetwork_component ADD COLUMN dynamic_next bigint(20) NOT NULL default 0; -ALTER TABLE tnetwork_component ADD COLUMN dynamic_two_tailed tinyint(1) unsigned default 0; - --- --------------------------------------------------------------------- --- Table `tagente` --- --------------------------------------------------------------------- -ALTER TABLE tagente ADD transactional_agent tinyint(1) NOT NULL default 0; -ALTER TABLE tagente ADD remote tinyint(1) NOT NULL default 0; -ALTER TABLE tagente ADD cascade_protection_module int(10) unsigned default '0'; - --- --------------------------------------------------------------------- --- Table `tlayout` --- --------------------------------------------------------------------- -ALTER TABLE tlayout ADD COLUMN background_color varchar(50) NOT NULL default '#FFF'; - --- --------------------------------------------------------------------- --- Table `tlayout_data` --- --------------------------------------------------------------------- -ALTER TABLE tlayout_data ADD COLUMN type_graph varchar(50) NOT NULL default 'area'; -ALTER TABLE tlayout_data ADD COLUMN label_position varchar(50) NOT NULL default 'down'; - --- --------------------------------------------------------------------- --- Table `talert_templates` --- --------------------------------------------------------------------- -ALTER TABLE talert_templates ADD COLUMN field11 TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_templates ADD COLUMN field12 TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_templates ADD COLUMN field13 TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_templates ADD COLUMN field14 TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_templates ADD COLUMN field15 TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_templates ADD COLUMN field11_recovery TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_templates ADD COLUMN field12_recovery TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_templates ADD COLUMN field13_recovery TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_templates ADD COLUMN field14_recovery TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_templates ADD COLUMN field15_recovery TEXT NOT NULL DEFAULT ""; - --- --------------------------------------------------------------------- --- Table `talert_snmp` --- --------------------------------------------------------------------- -ALTER TABLE talert_snmp ADD COLUMN al_field11 TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_snmp ADD COLUMN al_field12 TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_snmp ADD COLUMN al_field13 TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_snmp ADD COLUMN al_field14 TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_snmp ADD COLUMN al_field15 TEXT NOT NULL DEFAULT ""; - --- --------------------------------------------------------------------- --- Table `talert_snmp_action` --- --------------------------------------------------------------------- -ALTER TABLE talert_snmp_action ADD COLUMN al_field11 TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_snmp_action ADD COLUMN al_field12 TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_snmp_action ADD COLUMN al_field13 TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_snmp_action ADD COLUMN al_field14 TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_snmp_action ADD COLUMN al_field15 TEXT NOT NULL DEFAULT ""; - --- --------------------------------------------------------------------- --- Table `talert_actions` --- --------------------------------------------------------------------- -ALTER TABLE talert_actions ADD COLUMN field11 TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_actions ADD COLUMN field12 TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_actions ADD COLUMN field13 TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_actions ADD COLUMN field14 TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_actions ADD COLUMN field15 TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_actions ADD COLUMN field11_recovery TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_actions ADD COLUMN field12_recovery TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_actions ADD COLUMN field13_recovery TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_actions ADD COLUMN field14_recovery TEXT NOT NULL DEFAULT ""; -ALTER TABLE talert_actions ADD COLUMN field15_recovery TEXT NOT NULL DEFAULT ""; - --- --------------------------------------------------------------------- --- Table `tnetflow_filter` --- --------------------------------------------------------------------- -ALTER TABLE tnetflow_filter ADD COLUMN router_ip TEXT NOT NULL DEFAULT ""; - --- --------------------------------------------------------------------- --- Table `tlocal_component` --- --------------------------------------------------------------------- -ALTER TABLE tlocal_component ADD "dynamic_interval" INTEGER default 0; -ALTER TABLE tlocal_component ADD "dynamic_max" INTEGER default 0; -ALTER TABLE tlocal_component ADD "dynamic_min" INTEGER default 0; -ALTER TABLE tlocal_component ADD "dynamic_next" INTEGER default 0 NOT NULL; -ALTER TABLE tlocal_component ADD "dynamic_two_tailed" SMALLINT default 0; - --- --------------------------------------------------------------------- --- Table `tpolicy_module` --- --------------------------------------------------------------------- -ALTER TABLE tpolicy_modules ADD "dynamic_interval" INTEGER default 0; -ALTER TABLE tpolicy_modules ADD "dynamic_max" INTEGER default 0; -ALTER TABLE tpolicy_modules ADD "dynamic_min" INTEGER default 0; -ALTER TABLE tpolicy_modules ADD "dynamic_next" INTEGER default 0 NOT NULL; -ALTER TABLE tpolicy_modules ADD "dynamic_two_tailed" SMALLINT default 0; - --- --------------------------------------------------------------------- --- Table `tmetaconsole_agent` --- --------------------------------------------------------------------- -ALTER TABLE tmetaconsole_agent ADD "remote" INTEGER default 0 NOT NULL; -ALTER TABLE tmetaconsole_agent ADD "cascade_protection_module" INTEGER default 0; -ALTER TABLE tmetaconsole_agent ADD "transactional_agent" INTEGER default 0 NOT NULL; \ No newline at end of file diff --git a/pandora_console/pandoradb.data.oracle.sql b/pandora_console/pandoradb.data.oracle.sql deleted file mode 100644 index 056e5b2312..0000000000 --- a/pandora_console/pandoradb.data.oracle.sql +++ /dev/null @@ -1,1820 +0,0 @@ --- Pandora FMS - the Flexible Monitoring System --- ============================================ --- Copyright (c) 2011 Artica Soluciones Tecnologicas, http://www.artica.es --- Please see http://www.pandorafms.org for full contribution list - --- This program is free software; you can redistribute it and/or --- modify it under the terms of the GNU General Public License --- as published by the Free Software Foundation for version 2. --- This program is distributed in the hope that it will be useful, --- but WITHOUT ANY WARRANTY; without even the implied warranty of --- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --- GNU General Public License for more details. --- You should have received a copy of the GNU General Public License --- along with this program; if not, write to the Free Software --- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - --- Database Data for Pandora FMS 6.0RC1 - --- PLEASE NO NOT USE MULTILINE COMMENTS --- Because Pandora Installer don't understand them --- and fails creating database !!! - --- PL/SQL blocks must end with two semicolons because Pandora installer need it - --- --- Dumping data for table talert_commands --- -BEGIN -LOCK TABLE talert_commands IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER talert_commands_inc DISABLE'; - -INSERT INTO talert_commands (id, name, command, description, internal, fields_descriptions, fields_values) VALUES (1,'eMail','Internal type','This alert send an email using internal Pandora FMS Server SMTP capabilities (defined in each server, using: _field1_ as destination email address, and _field2_ as subject for message. _field3_ as text of message.',1,'[\"Destination address\",\"Subject\",\"Text\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]','[\"\",\"\",\"_html_editor_\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]'); -INSERT INTO talert_commands (id, name, command, description, internal, fields_descriptions, fields_values) VALUES (2,'Internal Audit','Internal type','This alert save alert in Pandora internal audit system. Fields are static and only _field1_ is used.',1,'[\"Description\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]','[\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]'); -INSERT INTO talert_commands (id, name, command, description, internal, fields_descriptions, fields_values) VALUES (3,'Pandora FMS Event','Internal type','This alert create an special event into Pandora FMS event manager.',1,'[\"Event text\",\"Event type\",\"Source\",\"Agent name or _agent_\",\"Event criticity\",\"ID extra\",\"Tags separated by commas\",\"Comments\",\"\",\"\"]','[\"\",\"alert_ceased,Alert ceased;alert_fired,Alert fired;alert_manual_validation,Alert manual validation;alert_recovered,Alert recovered;configuration_change,Configuration change ;error,Error;critical,Monitor Critical;normal,Monitor Normal;going_unknown,Monitor\",\"\",\"\",\"4,Critical;1,Informational;0,Maintenance;6,Major;5,Minor;2,Normal;3,Warning\",\"\",\"\",\"\",\"\",\"\"]'); -INSERT INTO talert_commands (id, name, command, description, internal, fields_descriptions, fields_values) VALUES (4,'Pandora FMS Alertlog','echo _timestamp_ pandora _agent_ _data_ _field1_ _field2_ >> /var/log/pandora/pandora_alert.log','This is a default alert to write alerts in a standard ASCII plaintext log file in /var/log/pandora/pandora_alert.log ',0,'[\"Log Info 1\",\"Log Info 2\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]','[\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]'); -INSERT INTO talert_commands (id, name, command, description, internal, fields_descriptions, fields_values) VALUES (5,'SNMP Trap','/usr/bin/snmptrap -v 1 -c _field1_ _field2_ _field3_ _field4_','Send a SNMPTRAP to 192.168.0.4. Please review config and adapt to your needs, this is only a sample, not functional itself.',0,'[\"Community\",\"Destination address\",\"OID\",\"Source address\",\"\",\"\",\"\",\"\",\"\",\"\"]','[\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]'); -INSERT INTO talert_commands (id, name, command, description, internal, fields_descriptions, fields_values) VALUES (6,'Syslog','logger -p daemon.alert Pandora Alert _agent_ _data_ _field1_ _field2_','Uses field1 and field2 to generate Syslog alert in facility daemon with "alert" level.',0,'[\"Log Info 1\",\"Log Info 2\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]','[\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]'); -INSERT INTO talert_commands (id, name, command, description, internal, fields_descriptions, fields_values) VALUES (7,'Sound Alert','/usr/bin/play /usr/share/sounds/alarm.wav','',0,NULL,NULL); -INSERT INTO talert_commands (id, name, command, description, internal, fields_descriptions, fields_values) VALUES (8,'Jabber Alert','echo _field3_ | sendxmpp -r _field1_ --chatroom _field2_','Send jabber alert to chat room in a predefined server (configure first .sendxmpprc file). Uses field3 as text message, field1 as useralias for source message, and field2 for chatroom name',0,'[\"User alias\",\"Chatroom name\",\Message\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]','[\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]'); -INSERT INTO talert_commands (id, name, command, description, internal, fields_descriptions, fields_values) VALUES (9,'SMS','sendsms _field1_ _field2_','Send SMS using the Pandora FMS standard SMS device, using smstools. Uses field2 as text message, field1 as destination phone (include international prefix!)',0,'[\"Destination number\",\"Message\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]','[\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]'); -INSERT INTO talert_commands (id, name, command, description, internal, fields_descriptions, fields_values) VALUES (10,'Validate Event','Internal type','This alert validate the events matched with a module given the agent name (_field1_) and module name (_field2_)',1,'[\"Agent name\",\"Module name\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]','[\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]'); -INSERT INTO talert_commands (id, name, command, description, internal, fields_descriptions, fields_values) VALUES (11,'Integria IMS Ticket','Internal type','This alert create a ticket into your Integria IMS.',1,'[\"Integria IMS API path\",\"Integria IMS API pass\",\"Integria IMS user\",\"Integria IMS user pass\",\"Ticket title\",\"Ticket group ID\",\"Ticket priority\",\"Email copy\",\"Ticket owner\",\"Ticket description\"]','[\"\",\"\",\"\",\"\",\"\",\"\",\"10,Maintenance;0,Informative;1,Low;2,Medium;3,Serious;4,Very Serious\",\"\",\"\",\"\"]'); -INSERT INTO talert_commands (id, name, command, description, internal, fields_descriptions, fields_values) VALUES (12,'Remote agent control','/usr/share/pandora_server/util/udp_client.pl _address_ 41122 "_field1_"','This command is used to send commands to the Pandora FMS agents with the UDP server enabled. The UDP server is used to order agents (Windows and UNIX) to "refresh" the agent execution: that means, to force the agent to execute and send data',0,'[\"Command\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]','[\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]'); - --- Update curr val of sequence -update_currval('talert_commands', 'id'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER talert_commands_inc ENABLE'; - -COMMIT; -END;; - --- --- Dumping data for table tconfig --- -BEGIN -LOCK TABLE tconfig IN EXCLUSIVE MODE; -INSERT INTO tconfig (token, value) VALUES ('language','en_GB'); -INSERT INTO tconfig (token, value) VALUES ('block_size','20'); -INSERT INTO tconfig (token, value) VALUES ('days_purge','45'); -INSERT INTO tconfig (token, value) VALUES ('days_delete_unknown','0'); -INSERT INTO tconfig (token, value) VALUES ('days_autodisable_deletion','30'); -INSERT INTO tconfig (token, value) VALUES ('days_compact','0'); -INSERT INTO tconfig (token, value) VALUES ('graph_res','5'); -INSERT INTO tconfig (token, value) VALUES ('step_compact','1'); -INSERT INTO tconfig (token, value) VALUES ('db_scheme_first_version','6.0orc'); -INSERT INTO tconfig (token, value) VALUES('db_scheme_version','7.0NG'); -INSERT INTO tconfig (token, value) VALUES('db_scheme_build','PD170315'); -INSERT INTO tconfig (token, value) VALUES ('show_unknown','0'); -INSERT INTO tconfig (token, value) VALUES ('show_lastalerts','1'); -INSERT INTO tconfig (token, value) VALUES ('style','pandora'); -INSERT INTO tconfig (token, value) VALUES ('graph_color1', '#38B800'); -INSERT INTO tconfig (token, value) VALUES ('graph_color2', '#FFFF00'); -INSERT INTO tconfig (token, value) VALUES ('graph_color3', '#FF6600'); -INSERT INTO tconfig (token, value) VALUES ('graph_color4', '#FF66CC'); -INSERT INTO tconfig (token, value) VALUES ('graph_color5', '#CC0000'); -INSERT INTO tconfig (token, value) VALUES ('graph_color6', '#0033FF'); -INSERT INTO tconfig (token, value) VALUES ('graph_color7', '#99FF99'); -INSERT INTO tconfig (token, value) VALUES ('graph_color8', '#330066'); -INSERT INTO tconfig (token, value) VALUES ('graph_color9', '#66FFFF'); -INSERT INTO tconfig (token, value) VALUES ('graph_color10', '#6666FF'); -INSERT INTO tconfig (token, value) VALUES ('trap2agent', '0'); -INSERT INTO tconfig (token, value) VALUES ('date_format', 'F j, Y, g:i a'); -INSERT INTO tconfig (token, value) VALUES ('event_view_hr', 8); -INSERT INTO tconfig (token, value) VALUES ('loginhash_pwd', ''); -INSERT INTO tconfig (token, value) VALUES ('trap2agent', 0); -INSERT INTO tconfig (token, value) VALUES ('prominent_time', 'comparation'); -INSERT INTO tconfig (token, value) VALUES ('timesource', 'system'); -INSERT INTO tconfig (token, value) VALUES ('realtimestats', '1'); -INSERT INTO tconfig (token, value) VALUES ('stats_interval', '60'); -INSERT INTO tconfig (token, value) VALUES ('activate_gis', '0'); -INSERT INTO tconfig (token, value) VALUES ('activate_netflow', '0'); -INSERT INTO tconfig (token, value) VALUES ('timezone', 'Europe/Berlin'); -INSERT INTO tconfig (token, value) VALUES ('string_purge', 7); -INSERT INTO tconfig (token, value) VALUES ('audit_purge', 15); -INSERT INTO tconfig (token, value) VALUES ('trap_purge', 7); -INSERT INTO tconfig (token, value) VALUES ('event_purge', 7); -INSERT INTO tconfig (token, value) VALUES ('gis_purge', 7); -INSERT INTO tconfig (token, value) VALUES ('big_operation_step_datos_purge', '100'); -INSERT INTO tconfig (token, value) VALUES ('small_operation_step_datos_purge', '1000'); -INSERT INTO tconfig (token, value) VALUES ('sound_alert', 'include/sounds/air_shock_alarm.wav'); -INSERT INTO tconfig (token, value) VALUES ('sound_critical', 'include/sounds/Star_Trek_emergency_simulation.wav'); -INSERT INTO tconfig (token, value) VALUES ('sound_warning', 'include/sounds/negativebeep.wav'); -INSERT INTO tconfig (token, value) VALUES ('integria_enabled', '0'); -INSERT INTO tconfig (token, value) VALUES ('integria_api_password', ''); -INSERT INTO tconfig (token, value) VALUES ('integria_inventory', '0'); -INSERT INTO tconfig (token, value) VALUES ('integria_url', ''); -INSERT INTO tconfig (token, value) VALUES ('netflow_interval', '3600'); -INSERT INTO tconfig (token, value) VALUES ('netflow_daemon', '/usr/bin/nfcapd'); -INSERT INTO tconfig (token, value) VALUES ('netflow_nfdump', '/usr/bin/nfdump'); -INSERT INTO tconfig (token, value) VALUES ('netflow_max_resolution', '50'); -INSERT INTO tconfig (token, value) VALUES ('event_fields', 'evento,id_agente,estado,timestamp'); -INSERT INTO tconfig (token, value) VALUES ('list_ACL_IPs_for_API', '127.0.0.1'); -INSERT INTO tconfig (token, value) VALUES ('enable_pass_policy', 0); -INSERT INTO tconfig (token, value) VALUES ('pass_size', 4); -INSERT INTO tconfig (token, value) VALUES ('pass_needs_numbers', 0); -INSERT INTO tconfig (token, value) VALUES ('pass_needs_simbols', 0); -INSERT INTO tconfig (token, value) VALUES ('pass_expire', 0); -INSERT INTO tconfig (token, value) VALUES ('first_login', 0); -INSERT INTO tconfig (token, value) VALUES ('mins_fail_pass', 5); -INSERT INTO tconfig (token, value) VALUES ('number_attempts', 5); -INSERT INTO tconfig (token, value) VALUES ('enable_pass_policy_admin', 0); -INSERT INTO tconfig (token, value) VALUES ('enable_pass_history', 0); -INSERT INTO tconfig (token, value) VALUES ('compare_pass', 3); -INSERT INTO tconfig (token, value) VALUES ('meta_style', 'meta_pandora'); -INSERT INTO tconfig (token, value) VALUES ('enable_refr', 0); -INSERT INTO tconfig (token, value) VALUES ('meta_num_elements', 100); -INSERT INTO tconfig (token, value) VALUES ('update_manager_installed', 1); -INSERT INTO tconfig (token, value) VALUES ('num_files_attachment', 250); -INSERT INTO tconfig (token, value) VALUES ('show_vc', 1); -INSERT INTO tconfig (token, value) VALUES ('inventory_changes_blacklist', '1,2,20,21'); -INSERT INTO tconfig (token, value) VALUES ('custom_report_front', 0); -INSERT INTO tconfig (token, value) VALUES ('custom_report_front_font', 'FreeSans.ttf'); -INSERT INTO tconfig (token, value) VALUES ('custom_report_front_logo', 'images/pandora_logo_white.jpg'); -INSERT INTO tconfig (token, value) VALUES ('custom_report_front_header', ''); -INSERT INTO tconfig (token, value) VALUES ('custom_report_front_footer', ''); -INSERT INTO tconfig (token, value) VALUES ('identification_reminder', 1); -INSERT INTO tconfig (token, value) VALUES ('identification_reminder_timestamp', 0); -INSERT INTO tconfig (token, value) VALUES ('MR', 0); -INSERT INTO tconfig (token, value) VALUES ('current_package_enterprise', 700); -INSERT INTO tconfig (token, value) VALUES ('post_process_custom_values', '{"0.00000038580247":"Seconds to months","0.00000165343915":"Seconds to weeks","0.00001157407407":"Seconds to days","0.01666666666667":"Seconds to minutes","0.00000000093132":"Bytes to Gigabytes","0.00000095367432":"Bytes to Megabytes","0.0009765625":"Bytes to Kilobytes","0.00000001653439":"Timeticks to weeks","0.00000011574074":"Timeticks to days"}'); - -COMMIT; -END;; - --- --- Dumping data for table tconfig_os --- -BEGIN -LOCK TABLE tconfig_os IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER tconfig_os_inc DISABLE'; - -INSERT INTO tconfig_os VALUES (1,'Linux','Linux: All versions','so_linux.png'); -INSERT INTO tconfig_os VALUES (2,'Solaris','Sun Solaris','so_solaris.png'); -INSERT INTO tconfig_os VALUES (3,'AIX','IBM AIX','so_aix.png'); -INSERT INTO tconfig_os VALUES (4,'BSD','OpenBSD, FreeBSD and Others','so_bsd.png'); -INSERT INTO tconfig_os VALUES (5,'HP-UX','HP-UX Unix OS','so_hpux.png'); -INSERT INTO tconfig_os VALUES (7,'Cisco','CISCO IOS','so_cisco.png'); -INSERT INTO tconfig_os VALUES (8,'MacOS','MAC OS','so_mac.png'); -INSERT INTO tconfig_os VALUES (9,'Windows','Microsoft Windows OS','so_win.png'); -INSERT INTO tconfig_os VALUES (10,'Other','Other SO','so_other.png'); -INSERT INTO tconfig_os VALUES (11,'Network','Pandora FMS Network Agent','network.png'); -INSERT INTO tconfig_os VALUES (12,'Web Server','Web Server/Application','network.png'); -INSERT INTO tconfig_os VALUES (13,'Octopods','Octopods Pandora FMS Hardware Agent','network.png'); -INSERT INTO tconfig_os VALUES (14,'Embedded','Embedded device running a Pandora FMS agent','embedded.png'); -INSERT INTO tconfig_os VALUES (15,'Android','Android agent','android.png'); -INSERT INTO tconfig_os VALUES (16, 'VMware', 'VMware Architecture', 'so_vmware.png'); -INSERT INTO tconfig_os VALUES (17, 'Router', 'Generic router', 'so_router.png'); -INSERT INTO tconfig_os VALUES (18, 'Switch', 'Generic switch', 'so_switch.png'); -INSERT INTO tconfig_os VALUES (19, 'Satellite', 'Satellite agent', 'satellite.png'); -INSERT INTO tconfig_os VALUES (20, 'Mainframe', 'Mainframe agent', 'so_mainframe.png'); - --- Update curr val of sequence -update_currval('tconfig_os', 'id_os'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER tconfig_os_inc ENABLE'; - -COMMIT; -END;; - --- --- Dumping data for table tgrupo --- -BEGIN -LOCK TABLE tgrupo IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER tgrupo_inc DISABLE'; - -INSERT INTO tgrupo (id_grupo, nombre, icon, parent, propagate, disabled, custom_id, id_skin, description) VALUES (2,'Servers','server_database',0,0,0,'',1,''); -INSERT INTO tgrupo (id_grupo, nombre, icon, parent, propagate, disabled, custom_id, id_skin, description) VALUES (4,'Firewalls','firewall',0,0,0,'',1,''); -INSERT INTO tgrupo (id_grupo, nombre, icon, parent, propagate, disabled, custom_id, id_skin, description) VALUES (8,'Databases','database_gear',0,0,0,'',1,''); -INSERT INTO tgrupo (id_grupo, nombre, icon, parent, propagate, disabled, custom_id, id_skin, description) VALUES (9,'Network','transmit',0,0,0,'',1,''); -INSERT INTO tgrupo (id_grupo, nombre, icon, parent, propagate, disabled, custom_id, id_skin, description) VALUES (10,'Unknown','world',0,0,0,'',1,''); -INSERT INTO tgrupo (id_grupo, nombre, icon, parent, propagate, disabled, custom_id, id_skin, description) VALUES (11,'Workstations','computer',0,0,0,'',1,''); -INSERT INTO tgrupo (id_grupo, nombre, icon, parent, propagate, disabled, custom_id, id_skin, description) VALUES (12,'Applications','applications',0,0,0,'',1,''); -INSERT INTO tgrupo (id_grupo, nombre, icon, parent, propagate, disabled, custom_id, id_skin, description) VALUES (13,'Web','world',0,0,0,'',1,''); - --- Update curr val of sequence -update_currval('tgrupo', 'id_grupo'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER tgrupo_inc ENABLE'; - -COMMIT; -END;; - --- --- Dumping data for table tlanguage --- -BEGIN -LOCK TABLE tlanguage IN EXCLUSIVE MODE; -INSERT INTO tlanguage VALUES ('en_GB','English (UK)'); -INSERT INTO tlanguage VALUES ('es','Español'); -INSERT INTO tlanguage VALUES ('ar','العربية'); -INSERT INTO tlanguage VALUES ('cs','Česky'); -INSERT INTO tlanguage VALUES ('de','Deutch'); -INSERT INTO tlanguage VALUES ('el','Ελληνικά'); -INSERT INTO tlanguage VALUES ('fr','Français'); -INSERT INTO tlanguage VALUES ('it','Italiano'); -INSERT INTO tlanguage VALUES ('ja','日本語'); -INSERT INTO tlanguage VALUES ('nl','Nederlands'); -INSERT INTO tlanguage VALUES ('pl','Polski'); -INSERT INTO tlanguage VALUES ('pt_BR','Português-Brasil'); -INSERT INTO tlanguage VALUES ('pt','Português'); -INSERT INTO tlanguage VALUES ('ru','Русский'); -INSERT INTO tlanguage VALUES ('sk','Slovenčina'); -INSERT INTO tlanguage VALUES ('tr','Türkçe'); -INSERT INTO tlanguage VALUES ('zh_CN','简化字'); -INSERT INTO tlanguage VALUES ('ca','Catalan'); -COMMIT; -END;; - --- --- Dumping data for table tlink --- -BEGIN -LOCK TABLE tlink IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER tlink_inc DISABLE'; - -INSERT INTO tlink VALUES (1,'Documentation','http://wiki.pandorafms.com/'); -INSERT INTO tlink VALUES (2,'Enterprise Edition','http://pandorafms.com'); -INSERT INTO tlink VALUES (3,'Report a bug','{https://github.com/pandorafms/pandorafms/issues}'); -INSERT INTO tlink VALUES (4,'Suggest new feature','http://forums.pandorafms.com/index.php?board=22.0'); -INSERT INTO tlink VALUES (5,'Module library','http://library.pandorafms.com/'); - --- Update curr val of sequence -update_currval('tlink', 'id_link'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER tlink_inc ENABLE'; - -COMMIT; -END;; - --- --- Dumping data for table tmodule_group --- -BEGIN -LOCK TABLE tmodule_group IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER tmodule_group_inc DISABLE'; - -INSERT INTO tmodule_group VALUES (1,'General'); -INSERT INTO tmodule_group VALUES (2,'Networking'); -INSERT INTO tmodule_group VALUES (3,'Application'); -INSERT INTO tmodule_group VALUES (4,'System'); -INSERT INTO tmodule_group VALUES (5,'Miscellaneous'); -INSERT INTO tmodule_group VALUES (6,'Performance'); -INSERT INTO tmodule_group VALUES (7,'Database'); -INSERT INTO tmodule_group VALUES (8,'Enviromental'); -INSERT INTO tmodule_group VALUES (9,'Users'); - --- Update curr val of sequence -update_currval('tmodule_group', 'id_mg'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER tmodule_group_inc ENABLE'; - -COMMIT; -END;; - --- --- Dumping data for table torigen --- -BEGIN -LOCK TABLE torigen IN EXCLUSIVE MODE; -INSERT INTO torigen VALUES ('Operating System event'); -INSERT INTO torigen VALUES ('Firewall records'); -INSERT INTO torigen VALUES ('Database event'); -INSERT INTO torigen VALUES ('Application data'); -INSERT INTO torigen VALUES ('Logfiles'); -INSERT INTO torigen VALUES ('Other data source'); -INSERT INTO torigen VALUES ('Pandora FMS Event'); -INSERT INTO torigen VALUES ('User report'); -INSERT INTO torigen VALUES ('Unknown source'); -COMMIT; -END;; - --- --- Dumping data for table ttipo_modulo --- --- Identifiers 30 and 31 are reserved for Enterprise data types -BEGIN -LOCK TABLE ttipo_modulo IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER ttipo_modulo_inc DISABLE'; - -INSERT INTO ttipo_modulo VALUES (1,'generic_data',0,'Generic data','mod_data.png'); -INSERT INTO ttipo_modulo VALUES (2,'generic_proc',1,'Generic boolean','mod_proc.png'); -INSERT INTO ttipo_modulo VALUES (3,'generic_data_string',2,'Generic string','mod_string.png'); -INSERT INTO ttipo_modulo VALUES (4,'generic_data_inc',0,'Generic data incremental','mod_data_inc.png'); -INSERT INTO ttipo_modulo VALUES (5,'generic_data_inc_abs',0,'Generic numeric incremental (absolute)','mod_data_inc_abs.png'); -INSERT INTO ttipo_modulo VALUES (6,'remote_icmp_proc',4,'Remote ICMP network agent, boolean data','mod_icmp_proc.png'); -INSERT INTO ttipo_modulo VALUES (7,'remote_icmp',3,'Remote ICMP network agent (latency)','mod_icmp_data.png'); -INSERT INTO ttipo_modulo VALUES (8,'remote_tcp',3,'Remote TCP network agent, numeric data','mod_tcp_data.png'); -INSERT INTO ttipo_modulo VALUES (9,'remote_tcp_proc',4,'Remote TCP network agent, boolean data','mod_tcp_proc.png'); -INSERT INTO ttipo_modulo VALUES (10,'remote_tcp_string',5,'Remote TCP network agent, alphanumeric data','mod_tcp_string.png'); -INSERT INTO ttipo_modulo VALUES (11,'remote_tcp_inc',3,'Remote TCP network agent, incremental data','mod_tcp_inc.png'); -INSERT INTO ttipo_modulo VALUES (15,'remote_snmp',3,'Remote SNMP network agent, numeric data','mod_snmp_data.png'); -INSERT INTO ttipo_modulo VALUES (16,'remote_snmp_inc',3,'Remote SNMP network agent, incremental data','mod_snmp_inc.png'); -INSERT INTO ttipo_modulo VALUES (17,'remote_snmp_string',5,'Remote SNMP network agent, alphanumeric data','mod_snmp_string.png'); -INSERT INTO ttipo_modulo VALUES (18,'remote_snmp_proc',4,'Remote SNMP network agent, boolean data','mod_snmp_proc.png'); -INSERT INTO ttipo_modulo VALUES (21,'async_proc', 7, 'Asyncronous proc data', 'mod_async_proc.png'); -INSERT INTO ttipo_modulo VALUES (22,'async_data', 6, 'Asyncronous numeric data', 'mod_async_data.png'); -INSERT INTO ttipo_modulo VALUES (23,'async_string', 8, 'Asyncronous string data', 'mod_async_string.png'); -INSERT INTO ttipo_modulo VALUES (24,'log4x',0,'Log4x','mod_log4x.png'); -INSERT INTO ttipo_modulo VALUES (100,'keep_alive',-1,'KeepAlive','mod_keepalive.png'); - --- Update curr val of sequence -update_currval('ttipo_modulo', 'id_tipo'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER ttipo_modulo_inc ENABLE'; - -COMMIT; - -END;; - --- Categoria field is used to segregate several types --- (plugin, agents, network) on their data --- types, could be used or could be avoided and use directly primary key (id_tipo) - --- --- Dumping data for table tusuario --- -BEGIN -LOCK TABLE tusuario IN EXCLUSIVE MODE; -INSERT INTO tusuario (id_user, fullname, firstname, lastname, middlename, password, comments, last_connect, registered, email, phone, is_admin, flash_chart, language, block_size, section, data_section, metaconsole_access) VALUES -('admin', 'Pandora', 'Pandora', 'Admin', '', '1da7ee7d45b96d0e1f45ee4ee23da560', 'Admin Pandora', 1232642121, 0, 'admin@example.com', '555-555-5555', 1, -1, 'default', 0, 'Default', '', 'advanced'); -COMMIT; -END;; - --- --- Dumping data for table tusuario_perfil --- -BEGIN -LOCK TABLE tusuario_perfil IN EXCLUSIVE MODE; -INSERT INTO tusuario_perfil (id_up, id_usuario, id_perfil, id_grupo, assigned_by, id_policy, tags) -VALUES (1,'admin',5,0,'admin',0,''); -COMMIT; -END;; - --- --- Dumping data for table tperfil --- -BEGIN -LOCK TABLE tperfil IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER tperfil_inc DISABLE'; - -INSERT INTO tperfil VALUES (1,'Operator (Read)',0,1,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0); -INSERT INTO tperfil VALUES (2,'Operator (Write)',1,1,0,1,0,0,0,0,0,0,1,1,0,1,1,0,0,1,1,0,1,1,0); -INSERT INTO tperfil VALUES (3,'Chief Operator',1,1,1,1,0,0,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1); -INSERT INTO tperfil VALUES (4,'Group coordinator',1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1); -INSERT INTO tperfil VALUES (5,'Pandora Administrator',1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1); - --- Update curr val of sequence -update_currval('tperfil', 'id_perfil'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER tperfil_inc ENABLE'; - -COMMIT; -END;; - --- --- Dumping data for table tnews --- -BEGIN -LOCK TABLE tnews IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER tnews_inc DISABLE'; - -INSERT INTO tnews (id_news, author, subject, text, timestamp) VALUES (1,'admin','Welcome to Pandora FMS!','This is the Pandora FMS Console. A lot of new features have been added since last version. Please read the documentation about it, and feel free to test any option.\r\n\r\nThe Pandora FMS Team.',current_timestamp); -INSERT INTO tnews (id_news, author, subject, text, timestamp) VALUES (2,'admin','New Pandora FMS Agent Features','Feel free to test our new features for both Windows and Linux agents: Proxy and Broker modes.',current_timestamp); - --- Update curr val of sequence -update_currval('tnews', 'id_news'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER tnews_inc ENABLE'; - -COMMIT; -END;; - --- --- Dumping data for table tmodule --- -BEGIN -LOCK TABLE tmodule IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER tmodule_inc DISABLE'; - -INSERT INTO tmodule VALUES (1,'Agent module'); -INSERT INTO tmodule VALUES (2,'Network module'); -INSERT INTO tmodule VALUES (4,'Plugin module'); -INSERT INTO tmodule VALUES (5,'Prediction module'); -INSERT INTO tmodule VALUES (6,'WMI module'); - --- Update curr val of sequence -update_currval('tmodule', 'id_module'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER tmodule_inc ENABLE'; - -COMMIT; -END;; - --- --- Dumping data for table tnetwork_component --- -BEGIN -LOCK TABLE tnetwork_component IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER tnetwork_component_inc DISABLE'; - -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (1,'OS Total process','Total process in Operating System (UNIX MIB)',13,15,0,0,300,0,'','','public','HOST-RESOURCES-MIB::hrSystemProcesses.0 ',4,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (2,'OS CPU Load (1 min)','CPU Load in Operating System (UNIX MIB)',13,15,0,0,300,0,'','','public','UCD-SNMP-MIB::laLoad.1',4,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (3,'Sysname','Get name of system using SNMP standard MIB',1,17,0,0,900,0,'','','public','.1.3.6.1.2.1.1.1.0',1,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (4,'OS Users','Active users in Operating System (UNIX MIB)',13,15,0,0,300,0,'','','public','HOST-RESOURCES-MIB::hrSystemNumUsers.0',4,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (11,'Catalyst CPU Usage (5min)','Cisco Catayst Switches CPU Usage. Taken from ftp://ftp.cisco.com/pub/mibs/oid/OLD-CISCO-CPU-MIB.oid',2,15,0,0,300,0,'','','public','1.3.6.1.4.1.9.2.1.58',4,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (22,'HSRP Status','Get status of HSRP',2,18,0,0,300,0,'','','public','1.3.6.1.4.1.9.9.106.1.2.1.1.15.12.106',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, max_retries, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff) VALUES (24,'ifOperStatus_if1','Status of NIC#1',10,18,0,0,300,0,'1','','public','.1.3.6.1.2.1.2.2.1.8.1',2,2,0,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.00000,'','basic','','','','',0,0,0,'','{\going_unknown\":0}','',0,0,0,0); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, max_retries, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff) VALUES (25,'ifOperStatus_if2','Status of NIC #2',10,18,0,0,300,0,'1','','public','.1.3.6.1.2.1.2.2.1.8.2',2,2,0,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.00000,'','basic','','','','',0,0,0,'','{\going_unknown\":0}','',0,0,0,0); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, max_retries, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff) VALUES (26,'ifOperStatus_if3','Status of NIC #3',10,18,0,0,300,0,'1','','public','.1.3.6.1.2.1.2.2.1.8.3',2,2,0,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.00000,'','basic','','','','',0,0,0,'','{\going_unknown\":0}','',0,0,0,0); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, max_retries, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff) VALUES (27,'ifOutOctets_if1','Output throughtput on Interface #1',10,16,0,0,300,0,'1','','public','.1.3.6.1.2.1.2.2.1.16.1',2,2,0,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.00000,'bytes/sec','basic','','','','',0,0,0,'','{\going_unknown\":0}','',0,0,0,0); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, max_retries, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff) VALUES (28,'ifOutOctets_if2','Output troughtput on interface #2',10,16,0,0,300,0,'1','','public','.1.3.6.1.2.1.2.2.1.16.2',1,2,0,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.00000,'bytes/sec','basic','','','','',0,0,0,'','{\going_unknown\":0}','',0,0,0,0); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, max_retries, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff) VALUES (29,'ifOutOctets_if3','Output troughtput on Interface #3',10,16,0,0,300,0,'1','','public','.1.3.6.1.2.1.2.2.1.16.3',2,2,0,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.00000,'bytes/sec','basic','','','','',0,0,0,'','{\going_unknown\":0}','',0,0,0,0); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, max_retries, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff) VALUES (30,'ifInOctets_if1','Input troughtput on Interface #1',10,16,0,0,300,0,'1','','public','.1.3.6.1.2.1.2.2.1.10.1',2,2,0,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.00000,'bytes/sec','basic','','','','',0,0,0,'','{\going_unknown\":0}','',0,0,0,0); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, max_retries, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff) VALUES (31,'ifInOctets_if2','Input throughtput for interface #2',10,16,0,0,300,0,'1','','public','.1.3.6.1.2.1.2.2.1.10.2',2,2,0,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.00000,'bytes/sec','basic','','','','',0,0,0,'','{\going_unknown\":0}','',0,0,0,0); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, max_retries, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff) VALUES (32,'ifInOctets_if3','Input throught on interface #3',10,16,0,0,300,0,'1','','public','.1.3.6.1.2.1.2.2.1.10.3',2,2,0,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.00000,'bytes/sec','basic','','','','',0,0,0,'','{\going_unknown\":0}','',0,0,0,0); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (34,'Host Alive','Check if host is alive using ICMP ping check.',10,6,0,0,300,0,'','','','',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (36,'Host Latency','Get host network latency in miliseconds, using ICMP.',10,7,0,0,300,0,'','','','',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (37,'Check HTTP Server','Test APACHE2 HTTP service remotely (Protocol response, not only openport)',10,9,0,0,300,80,'GET / HTTP/1.0^M^M','HTTP/1.1 200 OK','','',3,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (38,'Check FTP Server','Check FTP protocol, not only check port.',10,9,0,0,300,21,'QUIT','220','','',3,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (39,'Check SSH Server','Checks port 22 is opened',10,9,0,0,300,22,'','','','',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (40,'Check Telnet server','Check telnet port',10,9,0,0,300,23,'','','','',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (41,'Check SMTP server','Check if SMTP port it's open',10,9,0,0,300,25,'','','','',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (42,'Check POP3 server','Check POP3 port.',10,9,0,0,300,110,'','','','',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (49,'OS CPU Load (5 min)','CPU load on a 5 min average interval. UCD-SNMP Mib (Usually for all Linux and some UNIX)',13,15,0,0,300,0,'','','public','UCD-SNMP-MIB::laLoad.2',4,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (50,'System Description','Get system description (all mibs).',1,17,0,0,9000,0,'','','public','SNMPv2-MIB::sysDescr.0',4,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (51,'OS Raw Interrupts','Get system raw interrupts from SO',13,16,0,0,300,0,'','','public','UCD-SNMP-MIB::ssRawInterrupts.0',4,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (52,'OS IO Signals sent','IO Signals sent by Kernel',13,16,0,0,300,0,'','','public','UCD-SNMP-MIB::ssIOSent.0',4,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, unit, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (53,'System Uptime','Sistem uptime in timeticks',1,15,0,0,3600,0,'','','public','.1.3.6.1.2.1.1.3.0',4,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.000000115740741,'days','basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (176,'Catalyst Free Mem','Taken from ftp://ftp.cisco.com/pub/mibs/oid/OLD-CISCO-MEMORY-MIB.oid',2,15,0,0,300,0,'','','public','1.3.6.1.4.1.9.2.1.8',4,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (200,'CPU load','CPU0 load average',16,1,100,0,300,1,'','','','SELECT LoadPercentage from Win32_Processor WHERE DeviceID = "CPU0"',1,6,0,'Administrator','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (201,'Free RAM','Available RAM memory in bytes',16,1,0,0,300,0,'','','','SELECT AvailableBytes from Win32_PerfRawData_PerfOS_Memory',1,6,0,'Administrator',NULL,NULL,10,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (202,'Windows version','Operating system version',16,3,0,0,300,1,'','','','SELECT Caption FROM Win32_OperatingSystem',1,6,0,'Administrator',NULL,NULL,10,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (203,'Free RAM','Available RAM memory in bytes',16,1,0,0,300,0,'','','','SELECT AvailableBytes from Win32_PerfRawData_PerfOS_Memory',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (204,'Hostname','The hostname of the machine.',16,3,0,0,300,0,'','','','ServerName FROM Win32_WindowsProductActivation',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (205,'Computer number of CPUs','Displays the number of CPUs present in the system',17,1,0,0,300,1,'','','','SELECT NumberOfProcessors FROM Win32_ComputerSystem',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (206,'Server Domain','Display the Domain the machine belongs to.',16,3,0,0,300,0,'','','','SELECT Domain FROM Win32_ComputerSystem',2,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (207,'Number of Processes','Displays the number of processes running in the system',16,1,0,0,300,3,'','','','SELECT NumberOfProcesses FROM Win32_OperatingSystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (208,'Serial Number','Serial Number of the machine',16,3,0,0,300,3,'','','','SELECT SerialNumber FROM Win32_OperatingSystem',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (209,'CPU Model','Displays the CPU model',17,3,0,0,300,1,'','','','SELECT Name FROM Win32_Processor',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (210,'Service Pack','Service Pack Version Installed',16,1,0,0,300,3,'','','','SELECT ServicePackMajorVersion FROM Win32_OperatingSystem',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (211,'Free Physical Memory','Displays the amount of free physical memory in the system',16,1,0,0,300,0,'','','','SELECT FreePhysicalMemory FROM Win32_OperatingSystem',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (212,'Free Virtual Memory','Displays the amount of free virtual memory in the system',16,1,0,0,300,0,'','','','SELECT FreeVirtualMemory FROM Win32_OperatingSystem',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (213,'License Activation','This module lets you know whether you have to activate your Windows license or not.\r\n\r\n0 = No\r\n1= Yes',16,2,0,0,300,0,'','','','SELECT ActivationRequired FROM Win32_WindowsProductActivation',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (214,'Total Swap Space Size','Total Swap Space Size',16,1,0,0,300,3,'','','','SELECT TotalSwapSpaceSize from win32_operatingsystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (215,'Total Virtual Memory Size','Total Virtual Memory Size',16,1,0,0,300,3,'','','','select TotalVirtualMemorySize from win32_operatingsystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (216,'Total Visible Memory Size','Total Visible Memory Size',16,1,0,0,300,3,'','','','SELECT TotalVisibleMemorySize from win32_operatingsystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (217,'Free Space In Paging Files','Gets the free space in paging files',16,1,0,0,300,0,'','','','Select FreeSpaceInPagingFiles from Win32_operatingsystem',4,6,0,'none','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (218,'Free Space In Paging Files','Gets the free space in paging files',16,1,0,0,300,0,'','','','Select FreeSpaceInPagingFiles from Win32_operatingsystem',4,6,0,'none','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (219,'Number of Users','Displays the number of users',16,1,0,0,300,3,'','','','SELECT NumberOfUsers FROM Win32_operatingsystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (220,'Last BootUp Time','Displays the Last BootUp Time',16,3,0,0,300,0,'','','','SELECT LastBootUpTime FROM Win32_operatingsystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (221,'BIOS Name','Displays the BIOS Name',17,3,0,0,300,1,'','','','SELECT BiosCharacteristics FROM Win32_BIOS',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (222,'BIOS Version','Displays the BIOS version',17,3,0,0,300,5,'','','','SELECT BIOSVersion FROM Win32_BIOS',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (223,'BIOS Manufacturer','Displays the BIOS Manufacturer',17,3,0,0,300,0,'','','','SELECT Manufacturer FROM Win32_BIOS',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (224,'BIOS Status','Displays the BIOS Status',17,3,0,0,300,3,'','','','SELECT Status FROM Win32_BIOS',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (225,'BIOS Serial Number','Displays the BIOS Serial Number',17,3,0,0,300,1,'','','','SELECT SerialNumber FROM Win32_BIOS',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (226,'Windows Temp Directory','Path of the Windows Temp Directory',16,3,0,0,300,1,'','','','SELECT TempDirectory FROM Win32_BootConfiguration',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (227,'Windows Admin Password Status','Status of the Windows Admin password: 1 is set.',16,2,0,0,300,0,'','','','SELECT AdminPasswordStatus FROM Win32_ComputerSystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (228,'Computer System Description','Displays the computer System description',17,3,0,0,300,0,'','','','SELECT Description FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (230,'Computer Automatic Reset Boot Option','Displays the computer Automatic reset boot option',17,3,0,0,300,0,'','','','SELECT AutomaticResetBootOption FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (231,'Computer Automatic Reset Capability','Displays the computer automatic reset capability',17,3,0,0,300,0,'','','','SELECT AutomaticResetCapability FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (232,'Computer Boot Option On Limit','Displays the computer Boot Option on Limit',17,1,0,0,300,0,'','','','SELECT BootOptionOnLimit FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (233,'Computer Boot Option On Watch Dog','Displays the Computer Boot Option On Watch Dog',17,1,0,0,300,0,'','','','SELECT BootOptionOnWatchDog FROM Win32_ComputerSystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (234,'Computer Boot ROM Supported','Displays if the computer Boot ROM is supported',17,3,0,0,300,0,'','','','SELECT BootROMSupported FROM Win32_ComputerSystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (235,'Computer Bootup State','Displays the computer Bootup State',17,3,0,0,300,0,'','','','SELECT BootupState FROM Win32_ComputerSystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (236,'Computer Chassis Bootup State','Displays the computer Chassis Bootup State',16,1,0,0,300,0,'','','','SELECT ChassisBootupState FROM Win32_ComputerSystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (237,'Computer Daylight In Effect','Displays whether the computer Daylight In Effect is enabler or not',16,3,0,0,300,0,'','','','SELECT DaylightInEffect FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (238,'Computer DNS Host Name','Displays the DNS Host Name',16,3,0,0,300,0,'','','','SELECT DNSHostName FROM Win32_ComputerSystem',2,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (239,'Computer Domain','Displays the computer Domain',16,3,0,0,300,0,'','','','SELECT Domain FROM Win32_ComputerSystem',2,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (240,'Computer Domain Role','Displays the computer Domain Role',16,1,0,0,300,0,'','','','SELECT DomainRole FROM Win32_ComputerSystem',2,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (241,'Computer Enable Daylight Savings Time','Displays whether the computer Daylight Savings Time is enabled',16,3,0,0,300,0,'','','','SELECT EnableDaylightSavingsTime FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (242,'Computer Front Panel Reset Status','Displays the computer Front Panel Reset Status',16,1,0,0,300,0,'','','','SELECT FrontPanelResetStatus FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (243,'Computer Infrared Support','Displays the computer Infrared Support',16,3,0,0,300,0,'','','','SELECT InfraredSupported FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (244,'Computer Initial Load Info','Displays the computer Initial Load Info',16,3,0,0,300,0,'','','','SELECT InitialLoadInfo FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (245,'Computer Install Date','Displays the computer install date',16,3,0,0,300,0,'','','','SELECT InstallDate FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (246,'Computer Keyboard Password Status','Displays the computer keyboard password status',16,1,0,0,300,0,'','','','SELECT KeyboardPasswordStatus FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (247,'Computer Last Load Info','Displays the computer last load info',16,3,0,0,300,0,'','','','SELECT LastLoadInfo FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (248,'Computer Manufacturer','Displays the computer manufacturer',16,3,0,0,300,0,'','','','SELECT Manufacturer FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (249,'Computer Model','Displays the computer model',17,3,0,0,300,0,'','','','SELECT Model FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (250,'Computer Name','Displays the computer name',16,3,0,0,300,0,'','','','SELECT Name FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (251,'Computer Network Server Mode Enabled','Displays the computer Network Server Mode Enabled',16,3,0,0,300,1,'','','','SELECT NetworkServerModeEnabled FROM Win32_ComputerSystem',2,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (252,'Computer Part of Domain','Displays the computer Part of Domain',16,3,0,0,300,1,'','','','SELECT PartOfDomain FROM Win32_ComputerSystem',2,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (253,'Computer Pause After Reset','Displays the computer Pause After Reset',17,1,0,0,300,1,'','','','SELECT PauseAfterReset FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (254,'Computer Power Management Capabilities','Displays the computer Power Management Capabilities',17,3,0,0,300,1,'','','','SELECT PowerManagementCapabilities FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (255,'Computer Power Management Support','Displays the computer Power Management Support',17,3,0,0,300,1,'','','','SELECT PowerManagementSupported FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (256,'Computer Power on Password Status','Displays the computer Power on Password Status',17,2,0,0,300,1,'','','','SELECT PowerOnPasswordStatus FROM Win32_ComputerSystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (257,'Computer Power State','Displays the computer Power State',17,2,0,0,300,1,'','','','SELECT PowerState FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (258,'Computer Power Supply State','Displays the computer Power Supply State',17,1,0,0,300,1,'','','','SELECT PowerSupplyState FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (259,'Computer Reset Capability','Displays the computer Reset Capability',16,1,0,0,300,1,'','','','SELECT ResetCapability FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (260,'Computer Reset Count','Displays the computer Reset Count',16,1,0,0,300,1,'','','','SELECT ResetCount FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (261,'Computer Reset Limit','Displays the computer Reset Limit',16,1,0,0,300,1,'','','','SELECT ResetLimit FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (262,'Computer Roles','Displays the computer Roles',16,3,0,0,300,1,'','','','SELECT Roles FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (263,'Computer Status','Displays the computer Status',16,3,0,0,300,1,'','','','SELECT Status FROM Win32_ComputerSystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (264,'Computer System Startup Delay','Displays the computer System Startup Delay',16,1,0,0,300,1,'','','','SELECT SystemStartupDelay FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (265,'Computer System Startup Options','Displays the computer System Startup Options',16,3,0,0,300,1,'','','','SELECT SystemStartupOptions FROM Win32_ComputerSystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (266,'Exchange VMLargestBlockSize key','The VMLargestBlockSize key represents the size (in bytes) of the largest available block of virtual memory',20,1,0,0,300,0,'','','','SELECT VMLargestBlockSize FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (267,'Exchange VMTotalLargeFreeBlockBytes','The VMTotalFreeBlocks key represents the size (in bytes) of the total largest free available block of virtual memory',20,1,0,0,300,0,'','','','SELECT VMTotalLargeFreeBlockBytes FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (268,'Exchange VMTotalFreeBlocks','The VMTotalFreeBlocks key represents the size (in bytes) of the Total Free Available blocks of virtual memory',20,1,0,0,300,0,'','','','SELECT VMTotalFreeBlocks FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (269,'Exchange TotalMessagesScannedforUCE','The total number of messages scanned by Intelligent Message Filter. If this number is 0 or very low, Intelligent Message Filter might not&#x',20,1,0,0,300,1,'','','','SELECT TotalMessagesScannedforUCE FROM Win32_PerfRawData_MSExchangeUCF_MSExchangeIntelligentMessageFilter Where Name='_Total'',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (270,'Exchange TotalUCEMessagesActedUpon','The total number of messages that Intelligent Message Filter has identified as UCE and acted on based on the action specified by an adm',20,1,0,0,300,1,'','','','SELECT TotalUCEMessagesActedUpon FROM Win32_PerfRawData_MSExchangeUCF_MSExchangeIntelligentMessageFilter Where Name='_Total'',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (271,'Exchange TotalMessagesAssignedanSCLRatingof1','The total number of messages scanned by Intelligent Message Filter that were assigned a spam confidence level (SCL) rating of x, where x',20,1,0,0,300,1,'','','','SELECT TotalMessagesAssignedanSCLRatingof1 FROM Win32_PerfRawData_MSExchangeUCF_MSExchangeIntelligentMessageFilter Where Name='_Total'',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (272,'Exchange TotalMessagesAssignedanSCLRatingof3','The total number of messages scanned by Intelligent Message Filter that were assigned a spam confidence level (SCL) rating of x, where x',20,1,0,0,300,1,'','','','SELECT TotalMessagesAssignedanSCLRatingof3 FROM Win32_PerfRawData_MSExchangeUCF_MSExchangeIntelligentMessageFilter Where Name='_Total'',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (273,'Exchange TotalMessagesAssignedanSCLRatingof5','The total number of messages scanned by Intelligent Message Filter that were assigned a spam confidence level (SCL) rating of x, where x',20,1,0,0,300,1,'','','','SELECT TotalMessagesAssignedanSCLRatingof5 FROM Win32_PerfRawData_MSExchangeUCF_MSExchangeIntelligentMessageFilter Where Name='_Total'',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (274,'Exchange TotalMessagesAssignedanSCLRatingof6','The total number of messages scanned by Intelligent Message Filter that were assigned a spam confidence level (SCL) rating of x, where x',20,1,0,0,300,1,'','','','SELECT TotalMessagesAssignedanSCLRatingof6 FROM Win32_PerfRawData_MSExchangeUCF_MSExchangeIntelligentMessageFilter Where Name='_Total'',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (275,'Exchange TotalMessagesAssignedanSCLRatingof7','The total number of messages scanned by Intelligent Message Filter that were assigned a spam confidence level (SCL) rating of x, where x',20,1,0,0,300,1,'','','','SELECT TotalMessagesAssignedanSCLRatingof7 FROM Win32_PerfRawData_MSExchangeUCF_MSExchangeIntelligentMessageFilter Where Name='_Total'',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (276,'Exchange TotalMessagesAssignedanSCLRatingof8','The total number of messages scanned by Intelligent Message Filter that were assigned a spam confidence level (SCL) rating of x, where x',20,1,0,0,300,1,'','','','SELECT TotalMessagesAssignedanSCLRatingof8 FROM Win32_PerfRawData_MSExchangeUCF_MSExchangeIntelligentMessageFilter Where Name='_Total'',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (277,'Exchange TotalMessagesAssignedanSCLRatingof9','The total number of messages scanned by Intelligent Message Filter that were assigned a spam confidence level (SCL) rating of x, where x',20,1,0,0,300,1,'','','','SELECT TotalMessagesAssignedanSCLRatingof9 FROM Win32_PerfRawData_MSExchangeUCF_MSExchangeIntelligentMessageFilter Where Name='_Total'',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (278,'Exchange ClientBackgroundRPCsFailed','Shows the client-reported rate of failed RPCs (since the store was started) due to the Server Too Busy ROC error.',20,1,0,0,300,0,'','','','SELECT ClientBackgroundRPCsFailed FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (279,'Exchange ClientBackgroundRPCssucceeded','The count of succeeded RPC calls.',20,1,0,0,300,0,'','','','SELECT ClientBackgroundRPCssucceeded FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (280,'Exchange ClientForegroundRPCssucceeded','The number of RPCs that Outlook successfully sent to the server.',20,1,0,0,300,0,'','','','SELECT ClientForegroundRPCssucceeded FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (281,'Exchange ClientRPCsattempted','The number of remote procedure calls (RPCs) that Outlook tried to send to the server.',20,1,0,0,300,0,'','','','SELECT ClientRPCsattempted FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (282,'Exchange ClientRPCsFailed','The number of RPCs that were tried and that failed',20,1,0,0,300,0,'','','','SELECT ClientRPCsFailed FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (283,'Exchange ClientRPCsFailedAccessDenied','Failed RPC connections with a Access Denied error.',20,1,0,0,300,0,'','','','SELECT ClientRPCsFailedAccessDenied FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (284,'Exchange ClientRPCsFailedAllothererrors','The rate of failed RPC requests (since the Exchange store was started) due to all other RPC errors.',20,1,0,0,300,0,'','','','SELECT ClientRPCsFailedAllothererrors FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (285,'Exchange ClientRPCsFailedCallCancelled','RPC connections that got cancelled.',20,1,0,0,300,0,'','','','SELECT ClientRPCsFailedCallCancelled FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (286,'Exchange ClientRPCsFailedCallFailed','RPC Failed connections with exit code: Failed Call',20,1,0,0,300,0,'','','','SELECT ClientRPCsFailedCallFailed FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (287,'Exchange ClientRPCsFailedServerTooBusy','The number of failed RPC requests (since the Exchange store was started) due to the "Server Too Busy" RPC error.',20,1,0,0,300,0,'','','','SELECT ClientRPCsFailedServerTooBusy FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (288,'Exchange ClientRPCsFailedServerUnavailable','The rate of failed RPC requests (since the Exchange store was started) due to the "Server Unavailable" RPC error. ',20,1,0,0,300,0,'','','','SELECT ClientRPCsFailedServerUnavailable FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (289,'Exchange ClientRPCssucceeded','The rate of successful RPC requests.',20,1,0,0,300,0,'','','','SELECT ClientRPCssucceeded FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (290,'Exchange RPCRequests','Rate of RPC requests.',20,1,0,0,300,0,'','','','SELECT RPCRequests FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (291,'Exchange RPCAveragedLatency','Average reported latency',20,1,0,0,300,0,'','','','SELECT RPCAveragedLatency FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (292,'Exchange RPCOperationsPersec','RPC operations per Second',20,1,0,0,300,0,'','','','SELECT RPCOperationsPersec FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (293,'Exchange RPCRequestsPeak','Peak of RPC requests',20,1,0,0,300,0,'','','','SELECT RPCRequestsPeak FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (294,'Exchange UserCount','The number of users connected to the information store',20,1,0,0,300,0,'','','','SELECT UserCount FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (295,'Exchange ActiveConnectionCount','Number of connections that have shown some activity in the last 10 minutes.',20,1,0,0,300,0,'','','','SELECT ActiveConnectionCount FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (296,'Exchange ActiveUserCount','This counter gives the number of unique users that have logged on to the server and been active in the last 10 minutes',20,1,0,0,300,0,'','','','SELECT ActiveUserCount FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (297,'Exchange MaximumConnections','Maximum Connections',20,1,0,0,300,0,'','','','SELECT MaximumConnections FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (298,'Exchange MaximumUsers','Maximum number of Users.',20,1,0,0,300,0,'','','','SELECT MaximumUsers FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (299,'AD AppMgmt','Status of the AppMgmt service.',18,3,0,0,300,1,'','','','SELECT name,status,state from Win32_Service WHERE name='AppMgmt'',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (300,'AD Dnscache','Status of the Dnscache service used by the AD.',18,3,0,0,300,1,'','','','SELECT name,status,state from Win32_Service WHERE name='Dnscache'',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (301,'IIS CurrentFileCacheMemoryUsage','The number of bytes currently used for the user-mode file cache. ',19,1,0,0,300,0,'','','','select CurrentFileCacheMemoryUsage from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (302,'IIS ActiveFlushedEntries','The number of user-mode cache entries that have been flushed, though memory is still allocated for these entries. The allocated memory will ',19,1,0,0,300,0,'','','','select ActiveFlushedEntries from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (303,'IIS CurrentFilesCached','The number of files whose content is currently in the user-mode cache. ',19,1,0,0,300,0,'','','','select CurrentFilesCached from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (304,'IIS CurrentMetadataCached','The current number of metadata information blocks in the user-mode cache. ',19,1,0,0,300,0,'','','','select CurrentMetadataCached from Win32_PerfRawData_W3SVC_WebServiceCache',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (305,'IIS CurrentURIsCached','The number of URI information blocks that are currently stored in the user-mode cache. ',19,1,0,0,300,0,'','','','select CurrentURIsCached from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (306,'IIS DescriptionFileCacheFlushes','Description of the number of files that have been removed from the user-mode cache since the WWW service started. ',19,1,0,0,300,0,'','','','select DescriptionFileCacheFlushes from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (307,'IIS FileCacheHits','The number of successful lookups in the user-mode file cache that have occurred since the WWW service started. ',19,1,0,0,300,0,'','','','select FileCacheHits from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (308,'IIS FileCacheHitsPercent','The ratio of user-mode file cache hits to total cache requests that have been made since the WWW service started up',19,1,0,0,300,0,'','','','select FileCacheHitsPercent from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (309,'IIS FileCacheHitsPercent_Base','Base value for FileCacheHitsPercent used to calculate percentage.',19,1,0,0,300,0,'','','','select FileCacheHitsPercent_Base from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (310,'IIS FileCacheMisses','The number of unsuccessful lookups in the user-mode file cache that have been made since the WWW service started. ',19,1,0,0,300,0,'','','','select FileCacheMisses from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (311,'IIS Frequency_Object','Frequency, in ticks per second, of Timestamp_Object. This property is defined by the provider',19,1,0,0,300,0,'','','','select Frequency_Object from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (312,'IIS Frequency_PerfTime','Frequency, in ticks per second, of Timestamp_Perftime',19,1,0,0,300,0,'','','','select Frequency_PerfTime from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (313,'IIS KernelCurrentURIsCached','The number of URI information blocks currently cached by the kernel. ',19,1,0,0,300,0,'','','','select KernelCurrentURIsCached from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (314,'IIS KernelTotalFlushedURIs','The number of URI information blocks that have been removed from the kernel cache since the WWW service started. ',19,1,0,0,300,0,'','','','select KernelTotalFlushedURIs from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (315,'IIS KernelTotalURIsCached','The number of URI information blocks that have been added to the kernel URI cache since the WWW service started. ',19,1,0,0,300,0,'','','','select KernelTotalURIsCached from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (316,'IIS KernelURICacheFlushes','The number of kernel URI cache flushes that have occurred since the WWW service started. ',19,1,0,0,300,0,'','','','select KernelURICacheFlushes from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (317,'IIS KernelURICacheHits','The number of successful lookups in the kernel URI cache that have occurred since the WWW service started. ',19,1,0,0,300,0,'','','','select KernelURICacheHits from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (318,'IIS KernelURICacheHitsPercent','The ratio of Kernel: URI Cache Hits to total cache requests since the WWW service started',19,1,0,0,300,0,'','','','select KernelURICacheHitsPercent from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (319,'IIS KernelUriCacheHitsPersec','The average number of kernel URI cache hits that are being made per second. ',19,1,0,0,300,0,'','','','select KernelUriCacheHitsPersec from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (320,'Free disk','_VOLUME_ID is your volume ID, for example "c:"',16,1,0,0,600,1,'','','','SELECT FreeSpace FROM Win32_LogicalDisk WHERE DeviceID = _VOLUME_ID_',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (321,'Process Status','Return status of Process Status given it's name (case sensitive!) including extension. Use process manager to get process name. Returns 1 if',16,2,0,0,300,1,'','','Running','ELECT State FROM Win32_Service WHERE Name = "_Name of process_"',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (322,'IIS KernelURICacheMisses','The number of unsuccessful lookups in the kernel URI cache that have occurred since the WWW service started. ',19,1,0,0,300,0,'','','','select KernelURICacheMisses from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (323,'IIS MaximumFileCacheMemoryUsage','The maximum number of bytes that have been used for the user-mode file cache since the WWW service started. ',19,1,0,0,300,0,'','','','select MaximumFileCacheMemoryUsage from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (324,'IIS MetadataCacheFlushes','The number of user-mode metadata cache flushes that have occurred since the WWW service started.',19,1,0,0,300,0,'','','','select MetadataCacheFlushes from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (325,'IIS MetadataCacheHits','The number of successful lookups in the user-mode metadata cache that have occurred since the WWW service started. ',19,1,0,0,300,0,'','','','select MetadataCacheHits from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (326,'IIS MetadataCacheHitsPercent','The ratio of successful lookups to total metadata cache requests. ',19,1,0,0,300,0,'','','','select MetadataCacheHitsPercent from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (327,'IIS MetadataCacheMisses','The number of unsuccessful lookups in the user-mode metadata cache that have occurred since the WWW service started. ',19,1,0,0,300,0,'','','','select MetadataCacheMisses from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (328,'IIS TotalFilesCached','The number of files whose content has been added to the user-mode cache since the WWW service started. ',19,1,0,0,300,0,'','','','select TotalFilesCached from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (329,'IIS TotalFlushedFiles','The number of file handles that have been removed from the user-mode cache since the WWW service started. ',19,1,0,0,300,0,'','','','select TotalFlushedFiles from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (330,'IIS TotalFlushedMetadata','The number of metadata information blocks that have been removed from the user-mode cache since the WWW service started. ',19,1,0,0,300,0,'','','','select TotalFlushedMetadata from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (331,'IIS TotalFlushedURIs','The number of URI information blocks that have been removed from the user-mode cache since the WWW service started. ',19,1,0,0,300,0,'','','','select TotalFlushedURIs from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (332,'IIS TotalMetadataCached','The number of metadata information blocks that have been added to the user-mode cache since the WWW service started. ',19,1,0,0,300,0,'','','','select TotalMetadataCached from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (333,'IIS TotalURIsCached','The number of URI information blocks that have been added to the kernel URI cache since the WWW service started. ',19,1,0,0,300,0,'','','','select TotalURIsCached from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (334,'IIS URICacheFlushes','The number of kernel URI cache flushes that have occurred since the WWW service started. ',19,1,0,0,300,0,'','','','select URICacheFlushes from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (335,'IIS URICacheHits','The number of successful lookups in the kernel URI cache that have occurred since the WWW service started. ',19,1,0,0,300,0,'','','','select URICacheHits from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (336,'IIS URICacheHitsPercent','The ratio of Kernel: URI Cache Hits to total cache requests since the WWW service started. ',19,1,0,0,300,0,'','','','select URICacheHitsPercent from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (337,'IIS URICacheMisses','The number of unsuccessful lookups in the kernel URI cache that have occurred since the WWW service started. ',19,1,0,0,300,0,'','','','select URICacheMisses from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (338,'IIS AnonymousUsersPersec','Rate at which users are making anonymous connections using the Web service. (the value given is the total users)',19,1,0,0,300,0,'','','','select AnonymousUsersPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (339,'IIS BytesReceivedPersec','Total bytes received by the Web service.',19,1,0,0,300,0,'','','','select BytesReceivedPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (340,'IIS BytesSentPersec','Total bytes sent by the Web service.',19,1,0,0,300,0,'','','','select BytesSentPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (341,'IIS BytesTotalPersec','This is the total rate of bytes transferred by the Web service',19,1,0,0,300,0,'','','','select BytesTotalPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (342,'IIS CGIRequestsPersec','Rate of CGI requests that are simultaneously being processed by the Web service.',19,1,0,0,300,0,'','','','select CGIRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (343,'IIS ConnectionAttemptsPersec','Rate at which connections using the Web service are being attempted.',19,1,0,0,300,0,'','','','select ConnectionAttemptsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (344,'IIS CopyRequestsPersec','Rate at which HTTP requests using the COPY method are made. COPY requests are used for copying files and directories.',19,1,0,0,300,0,'','','','select CopyRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (345,'IIS CurrentAnonymousUsers','Number of users who currently have an anonymous connection using the Web service.\r\n',19,1,0,0,300,0,'','','','select CurrentAnonymousUsers from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (346,'IIS CurrentBlockedAsyncIORequests','Current requests temporarily blocked due to bandwidth throttling settings.',19,1,0,0,300,0,'','','','select CurrentBlockedAsyncIORequests from Win32_PerfRawData_W3SVC_WebService',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (347,'IIS CurrentCGIRequests','Current number of CGI requests that are simultaneously being processed by the Web service.',19,1,0,0,300,0,'','','Currentblockedbandwidthbytes','select CurrentCGIRequests from Win32_PerfRawData_W3SVC_WebService',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (348,'IIS CurrentConnections','Current number of connections established with the Web service.',19,1,0,0,300,0,'','','','select CurrentConnections from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (349,'IIS CurrentISAPIExtensionRequests','select CurrentISAPIExtensionRequests from Win32_PerfRawData_W3SVC_WebService',19,1,0,0,300,0,'','','','select CurrentISAPIExtensionRequests from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (350,'IIS CurrentNonAnonymousUsers','Number of users who currently have a non-anonymous connection using the Web service.',19,1,0,0,300,0,'','','','select CurrentNonAnonymousUsers from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (351,'IIS DeleteRequestsPersec','Total HTTP requests using the DELETE method are made. DELETE requests are generally used for file removal.',19,1,0,0,300,0,'','','','select DeleteRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (352,'IIS FilesPersec','Total files transferred; that is, sent and received by the Web service.',19,1,0,0,300,0,'','','','select FilesPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (353,'IIS FilesReceivedPersec','Total received files by the Web service.',19,1,0,0,300,0,'','','','select FilesReceivedPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (354,'IIS FilesSentPersec','Rate at which files are sent by the Web service.\r\n',19,1,0,0,300,0,'','','','select FilesSentPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (355,'IIS GetRequestsPersec ','Rate at which HTTP requests using the GET method are made. GET requests are generally used for basic file retrievals or image maps, tho',19,1,0,0,300,0,'','','','select GetRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (356,'IIS HeadRequestsPersec','Rate at which HTTP requests using the HEAD method are made. HEAD requests generally indicate that clients are querying the state of document',19,1,0,0,300,0,'','','','select HeadRequestsPersec from Win32_PerfRawData_W3SVC_WebService',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (357,'IIS ISAPIExtensionRequestsPersec','Rate of ISAPI extension requests that are simultaneously being processed by the Web service.',19,1,0,0,300,0,'','','','select ISAPIExtensionRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (358,'IIS LockedErrorsPersec','Rate of errors due to requests that cannot be satisfied by the server because the requested document was locked. These are generally reporte',19,1,0,0,300,0,'','','','select LockedErrorsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (359,'IIS LockRequestsPersec','Rate at which HTTP requests using the LOCK method are made. LOCK requests are used to lock a file for one user so that only t',19,1,0,0,300,0,'','','','select LockRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (360,'IIS LogonAttemptsPersec','Rate at which logons using the Web service are being attempted.',19,1,0,0,300,0,'','','','select LogonAttemptsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (361,'IIS MaximumAnonymousUsers','Maximum number of users who established concurrent anonymous connections using the Web service (counted after service start up).',19,1,0,0,300,0,'','','','select MaximumAnonymousUsers from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (362,'IIS MaximumCGIRequests','Maximum number of CGI requests simultaneously processed by the Web service.',19,1,0,0,300,0,'','','','select MaximumCGIRequests from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (363,'IIS MaximumConnections','Maximum number of simultaneous connections established with the Web service.',19,1,0,0,300,0,'','','','select MaximumConnections from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (364,'IIS MaximumISAPIExtensionRequests','Maximum number of ISAPI extension requests simultaneously processed by the Web service.\r\n',19,1,0,0,300,0,'','','','select MaximumISAPIExtensionRequests from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (365,'IIS MaximumNonAnonymousUsers','Maximum number of users who established concurrent non-anonymous connections using the Web service (counted after service start up).',19,1,0,0,300,0,'','','','select MaximumNonAnonymousUsers from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (366,'IIS MeasuredAsyncIOBandwidthUsage','Measured bandwidth of asynchronous I/O averaged over a minute.',19,1,0,0,300,0,'','','','select MeasuredAsyncIOBandwidthUsage from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (367,'IIS MkcolRequestsPersec','Rate at which HTTP requests using the MKCOL method are made. MKCOL requests are used to create directories on the server.',19,1,0,0,300,0,'','','','select MkcolRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (368,'IIS MoveRequestsPersec','Rate HTTP requests using the MOVE method are made. MOVE requests are used for moving files and directories.',19,1,0,0,300,0,'','','','select MoveRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (369,'IIS NonAnonymousUsersPersec','Rate at which users are making non-anonymous connections using the Web service.',19,1,0,0,300,0,'','','','select NonAnonymousUsersPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (370,'IIS NotFoundErrorsPersec','Rate of errors due to requests that could not be satisfied by the server because the requested document could not be found. These error',19,1,0,0,300,0,'','','','select NotFoundErrorsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (371,'IIS OptionsRequestsPersec','Rate at which HTTP requests using the OPTIONS method are made.',19,1,0,0,300,0,'','','','select OptionsRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (372,'IIS OtherRequestMethosPersec','Rate at which HTTP requests are made that do not use the OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, MOVE, COPY, MKCOL, PROPFIND, PRO',19,1,0,0,300,0,'','','','select OtherRequestMethosPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (373,'IIS PostRequestsPersec','Rate at which HTTP requests using the POST method are made. POST requests are generally used for forms or gateway requests.',19,1,0,0,300,0,'','','','select PostRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (374,'IIS PropfindRequestsPersec','Rate at which HTTP requests using the PROPFIND method are made. PROPFIND requests retrieve property values on files and directories.',19,1,0,0,300,0,'','','','select PropfindRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (375,'IIS ProppatchRequestsPersec','Rate at which HTTP requests using the PROPPATCH method are made. PROPPATCH requests set property values on files and directories.',19,1,0,0,300,0,'','','','select ProppatchRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (376,'IIS PutRequestsPersec','Rate at which HTTP requests using the PUT method are made.',19,1,0,0,300,0,'','','','select PutRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (377,'IIS SearchRequestsPersec','Rate at which HTTP requests using the MS-SEARCH method are made. MS-SEARCH requests query the server to find resources that match a set ',19,1,0,0,300,0,'','','','select SearchRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (378,'IIS ServiceUptime','Time that the Web service is available to users. ',19,1,0,0,300,0,'','','','select ServiceUptime from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (379,'IIS TotalAllowedAsyncIORequests','Total requests that are allowed by bandwidth throttling settings (counted after service start up).',19,1,0,0,300,0,'','','','select TotalAllowedAsyncIORequests from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (380,'IIS TotalAnonymousUsers','Total number of users who established an anonymous connection with the Web service (counted after service start up).',19,1,0,0,300,0,'','','','select TotalAnonymousUsers from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (382,'IIS TotalBlockedAsyncIORequests','Total requests that are temporarily blocked due to bandwidth throttling settings (counted after service startup).',19,1,0,0,300,0,'','','','select TotalBlockedAsyncIORequests from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (384,'IIS UnlockRequestsPersec','Rate at which HTTP requests using the UNLOCK method are made. UNLOCK requests are used to remove locks from files.',19,1,0,0,300,0,'','','','select UnlockRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (385,'Exchange AvgRecipientsPermsgReceived','Average number of recipients per inbound message received.',20,1,0,0,300,0,'','','','select AvgRecipientsPermsgReceived from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (386,'Exchange AvgRecipientsPermsgSent','Average number of recipients per outbound messages sent.',20,1,0,0,300,0,'','','','select AvgRecipientsPermsgSent from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (387,'Exchange AvgRetriesPermsgDelivered','Average number of retries per local delivery.',20,1,0,0,300,0,'','','','select AvgRetriesPermsgDelivered from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (388,'Exchange AvgRetriesPermsgSent','Average number of retries per outbound message sent.',20,1,0,0,300,0,'','','','select AvgRetriesPermsgSent from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (389,'Exchange BadmailedMessagesBadPickupFile','Number of malformed pickup messages sent to the SMTP bad mail directory.',20,1,0,0,300,0,'','','','select BadmailedMessagesBadPickupFile from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (390,'Exchange BadmailedMessagesGeneralFailure','Number of messages sent to badmail for reasons not associated with a specific counter.',20,1,0,0,300,0,'','','','select BadmailedMessagesGeneralFailure from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (391,'Exchange BadmailedMessagesHopCountExceeded','Number of messages sent to badmail because they had exceeded the maximum hop count.',20,1,0,0,300,0,'','','','select BadmailedMessagesHopCountExceeded from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (392,'Exchange BadmailedMessagesNDRofDSN','Number of delivery status notifications sent to badmail because they could not be delivered.',20,1,0,0,300,0,'','','','select BadmailedMessagesNDRofDSN from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (393,'Exchange BadmailedMessagesNoRecipients','Number of messages sent to badmail because they had no recipients.',20,1,0,0,300,0,'','','','select BadmailedMessagesNoRecipients from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (394,'Exchange BadmailedMessagesTriggeredviaEvent','Number of messages sent to badmail at the request of a server event sink.',20,1,0,0,300,0,'','','','select BadmailedMessagesTriggeredviaEvent from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (395,'Exchange BytesReceivedPersec','Rate at which bytes are received in messages.',20,1,0,0,300,0,'','','','select BytesReceivedPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (396,'Exchange BytesReceivedTotal','Total number of bytes received in messages.',20,1,0,0,300,0,'','','','select BytesReceivedTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (397,'Exchange BytesSentPersec','Rate at which bytes are sent in messages.',20,1,0,0,300,0,'','','','select BytesSentPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (398,'Exchange BytesSentTotal','Total number of bytes sent in messages.',20,1,0,0,300,0,'','','','select BytesSentTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (399,'Exchange BytesTotal','Rate at which bytes are sent and received.',20,1,0,0,300,0,'','','','select BytesTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (400,'Exchange BytesTotalPersec','Rate at which bytes are sent and received.',20,1,0,0,300,0,'','','','select BytesTotalPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (401,'Exchange CatAddresslookupcompletions','Number of address lookup completions processed.',20,1,0,0,300,0,'','','','select CatAddresslookupcompletions from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (402,'Exchange CatAddresslookupcompletionsPersec','Number of address lookup completions processed per second.',20,1,0,0,300,0,'','','','select CatAddresslookupcompletionsPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (403,'Exchange CatAddresslookups','Number of Directory Services (DS) lookups for individual addresses.',20,1,0,0,300,0,'','','','select CatAddresslookups from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (404,'Exchange CatAddressLookupsNotFound','Number of address lookups that did not find any DS object.',20,1,0,0,300,0,'','','','select CatAddresslookupsnotfound from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (405,'Exchange CatAddresslookupsPersec','Number of address lookups dispatched to the DS per second.',20,1,0,0,300,0,'','','','select CatAddresslookupsPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (406,'Exchange CatCategorizationscompleted','Total number of messages submitted to the categorizer that have finished categorization.',20,1,0,0,300,0,'','','','select CatCategorizationscompleted from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (407,'Exchange CatCategorizationscompletedPersec','Rate of categorizations completed.',20,1,0,0,300,0,'','','','select CatCategorizationscompletedPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (408,'Exchange CatCategorizationscompletedsuccessfully','Number of categorizations that completed without any errors.\r\n',20,1,0,0,300,0,'','','','select CatCategorizationscompletedsuccessfully from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (409,'Exchange CatCategorizationsfailedDSconnectionfailure','Number of categorizations that failed.',20,1,0,0,300,0,'','','','select CatCategorizationsfailedDSconnectionfailure from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (410,'Exchange CatCategorizationsfailedDSlogonfailure','Number of categorizations that failed due to a DS logon failure',20,1,0,0,300,0,'','','','select CatCategorizationsfailedDSlogonfailure from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (411,'Exchange CatCategorizationsfailednonretryableerror','Number of categorizations that failed with a hard error (cannot be retried).',20,1,0,0,300,0,'','','','select CatCategorizationsfailednonretryableerror from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (412,'Exchange CatCategorizationsfailedOutOfMemory','Number of categorizations that failed due to lack of available memory.',20,1,0,0,300,0,'','','','select CatCategorizationsfailedOutOfMemory from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (413,'Exchange CatCategorizationsfailedretryableerror ','Number of categorizations that failed with an error that could be retried.',20,1,0,0,300,0,'','','','SELECT CatCategorizationsfailedretryableerror from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (414,'Exchange CatCategorizationsfailedsinkretryableerror','Number of categorizations that failed with a generic error that could be retried.',20,1,0,0,300,0,'','','','select CatCategorizationsfailedsinkretryableerror from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (415,'Exchange CatCategorizationsinprogress','Number of categorizations in progress.',20,1,0,0,300,0,'','','','select CatCategorizationsinprogress from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (416,'Exchange CategorizerQueueLength','Number of messages in the categorizer queue.',20,1,0,0,300,0,'','','','select CategorizerQueueLength from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (417,'LDAP CatLDAPbindfailures','Total number of LDAP bind failures.',21,1,0,0,300,0,'','','','select CatLDAPbindfailures from Win32_PerfFormattedData_SMTPSVC_SMTPServer',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (418,'LDAP CatLDAPbinds','Total number of successful LDAP bind operations performed',21,1,0,0,300,0,'','','','select CatLDAPbinds from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (419,'LDAP CatLDAPconnectionfailures','Total number of failed LDAP connections.\r\n',21,1,0,0,300,0,'','','','select CatLDAPconnectionfailures from Win32_PerfFormattedData_SMTPSVC_SMTPServer',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (420,'LDAP CatLDAPconnections','Total number of LDAP connections opened.',21,1,0,0,300,0,'','','','select CatLDAPconnections from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (421,'LDAP CatLDAPconnectionscurrentlyopen','Number of LDAP connections currently open.',21,1,0,0,300,0,'','','','select CatLDAPconnectionscurrentlyopen from Win32_PerfFormattedData_SMTPSVC_SMTPServer',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (422,'LDAP CatLDAPGeneralCompletionFailures','Number of LDAP completions with a generic failure.',21,1,0,0,300,0,'','','','select CatLDAPgeneralcompletionfailures from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (423,'LDAP CatLDAPpagedsearchcompletionfailures','Number of LDAP completions with a generic failure.',21,1,0,0,300,0,'','','','select CatLDAPpagedsearchcompletionfailures from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (424,'LDAP CatLDAPpagedsearches','LDAP paged searches successfully dispatched.',21,1,0,0,300,0,'','','','select CatLDAPpagedsearches from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (425,'LDAP CatLDAPpagedsearchescompleted ','LDAP paged searches successfully dispatched.',21,1,0,0,300,0,'','','','select CatLDAPpagedsearchescompleted from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (426,'LDAP CatLDAPpagedsearchfailures','Number of failures to dispatch an asynchronous LDAP page search.',21,1,0,0,300,0,'','','','select CatLDAPpagedsearchfailures from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (427,'LDAP CatLDAPsearchcompletionfailures','Number of LDAP searches that completed with a failure.',21,1,0,0,300,0,'','','','select CatLDAPsearchcompletionfailures from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (428,'LDAP CatLDAPsearches','LDAP searches successfully dispatched.',21,1,0,0,300,0,'','','','select CatLDAPsearches from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (429,'LDAP CatLDAPsearchesabandoned','Number of LDAP searches abandoned.',21,1,0,0,300,0,'','','','select CatLDAPsearchesabandoned from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (430,'LDAP CatLDAPsearchescompleted','Number of LDAP search completions processed.\r\n',21,1,0,0,300,0,'','','','select CatLDAPsearchescompleted from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (431,'LDAP CatLDAPsearchescompletedPersec','LDAP search completions processed per second.',21,1,0,0,300,0,'','','','select CatLDAPsearchescompletedPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (432,'LDAP CatLDAP archespendingcompletion','Number of LDAP searches pending async completion.',21,1,0,0,300,0,'','','','select CatLDAPsearchespendingcompletion from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (433,'LDAP CatLDAPsearchesPersec','LDAP searches successfully dispatched per second.',21,1,0,0,300,0,'','','','select CatLDAPsearchesPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (434,'LDAP CatLDAPsearchfailures','Number of failures to dispatch an async LDAP search.',21,1,0,0,300,0,'','','','select CatLDAPsearchfailures from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (435,'Exchange Catmailmsgduplicatecollisions','Number of times a duplicate recipient address was detected by mailmsg or categorizer.',20,1,0,0,300,0,'','','','select Catmailmsgduplicatecollisions from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (436,'Exchange CatMessagesaborted','Number of messages marked to be canceled by the categorizer.',20,1,0,0,300,0,'','','','select CatMessagesaborted from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (437,'Exchange CatMessagesbifurcated','Number of new messages created by the categorizer (bifurcation).',20,1,0,0,300,0,'','','','select CatMessagesbifurcated from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (438,'Exchange CatMessagesCategorized','Number of messages categorizer has submitted to queuing.',20,1,0,0,300,0,'','','','select CatMessagesCategorized from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (439,'Exchange CatMessagessubmitted','Rate at which messages are being submitted to the categorizer.',20,1,0,0,300,0,'','','','select CatMessagessubmitted from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (440,'Exchange CatMessagessubmittedPersec','Rate at which messages are being submitted to the categorizer.',20,1,0,0,300,0,'','','','select CatMessagessubmittedPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (441,'Exchange CatRecipientsaftercategorization','Number of mailmsg recipients submitted from categorizer to queuing.',20,1,0,0,300,0,'','','','select CatRecipientsaftercategorization from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (442,'Exchange CatRecipientsbeforecategorization','Number of mailmsg recipients submitted to categorizer.',20,1,0,0,300,0,'','','','select CatRecipientsbeforecategorization from Win32_PerfFormattedData_SMTPSVC_SMTPServer',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (443,'Exchange CatRecipientsincategorization','Number of recipients that the categorizer is currently processing.',20,1,0,0,300,0,'','','','select CatRecipientsincategorization from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (444,'Exchange CatRecipientsNDRdambiguousaddress','Number of recipients with addresses that match multiple DS objects.',20,1,0,0,300,0,'','','','select CatRecipientsNDRdambiguousaddress from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (445,'Exchange CatRecipientsNDRdbycategorizer','Number of recipients set to receive a non-delivery report from the categorizer.',20,1,0,0,300,0,'','','','select CatRecipientsNDRdbycategorizer from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (446,'Exchange CatRecipientsNDRdforwardingloop','Number of recipients that received a non-delivery report from the categorizer due to a forwarding loop detection.',20,1,0,0,300,0,'','','','select CatRecipientsNDRdforwardingloop from Win32_PerfFormattedData_SMTPSVC_SMTPServer',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (447,'Exchange CatRecipientsNDRdillegaladdress','Number of recipients with illegal addresses detected by the categorizer.',20,1,0,0,300,0,'','','','select CatRecipientsNDRdillegaladdress from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (448,'Exchange CatRecipientsNDRdsinkreciperrors','Number of recipients that received a non-delivery report from the categorizer due to a generic recipient failure.',20,1,0,0,300,0,'','','','select CatRecipientsNDRdsinkreciperrors from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (449,'Exchange CatRecipientsNDRdunresolved','Number of senders not found in the DS.',20,1,0,0,300,0,'','','','select CatRecipientsNDRdunresolved from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (450,'Exchange CatSendersunresolved','Number of senders not found in the DS.',20,1,0,0,300,0,'','','','select CatSendersunresolved from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (451,'Exchange CatSenderswithambiguousaddresses','Number of senders with addresses that match multiple DS objects.',20,1,0,0,300,0,'','','','select CatSenderswithambiguousaddresses from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (452,'Exchange ConnectionErrorsPersec','Number of connection errors per second.',20,1,0,0,300,0,'','','','select ConnectionErrorsPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (453,'Exchange CurrentMessagesinLocalDelivery','Number of messages that are currently being processed by a server event sink for local delivery.',20,1,0,0,300,0,'','','','select CurrentMessagesinLocalDelivery from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (454,'Exchange DirectoryDropsPersec','Number of messages placed in a drop directory per second.',20,1,0,0,300,0,'','','','select DirectoryDropsPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (455,'Exchange DirectoryDropsTotal','Total number of messages placed in a drop directory.',20,1,0,0,300,0,'','','','select DirectoryDropsTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (456,'Exchange DNSQueriesPersec','Rate of DNS lookups.',20,1,0,0,300,0,'','','','select DNSQueriesPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (457,'Exchange DNSQueriesTotal','Total number of DNS lookups.',20,1,0,0,300,0,'','','','select DNSQueriesTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (458,'Exchange ETRNMessagesPersec','Number of Extended Simple Mail Transport Protocol (ETRN) messages per second.',20,1,0,0,300,0,'','','','select ETRNMessagesPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (459,'Exchange ETRNMessagesTotal','Total number of ETRN messages received by the server.',20,1,0,0,300,0,'','','','select ETRNMessagesTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (460,'Exchange InboundConnectionsCurrent','Total current inbound connections',20,1,0,0,300,0,'','','','select InboundConnectionsCurrent from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (461,'Exchange InboundConnectionsTotal','Total number of inbound connections received.',20,1,0,0,300,0,'','','','select InboundConnectionsTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (462,'Exchange LocalQueueLength','Number of messages in the local queue.',20,1,0,0,300,0,'','','','select LocalQueueLength from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (463,'Exchange LocalRetryQueueLength','Number of messages in the local retry queue.',20,1,0,0,300,0,'','','','select LocalRetryQueueLength from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (464,'Exchange MessageBytesReceivedPersec','Rate that bytes are received in messages.',20,1,0,0,300,0,'','','','select MessageBytesReceivedPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (465,'Exchange MessageBytesReceivedTotal','Total number of bytes received in messages.',20,1,0,0,300,0,'','','','select MessageBytesReceivedTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (466,'Exchange MessageBytesSentPersec','Rate that bytes are sent in messages.',20,1,0,0,300,0,'','','','select MessageBytesSentPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (467,'Exchange MessageBytesSentTotal','Total number of bytes sent in messages.',20,1,0,0,300,0,'','','','select MessageBytesSentTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (468,'Exchange MessageBytesTotal','Total number of bytes sent and received in messages.',20,1,0,0,300,0,'','','','select MessageBytesTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (469,'Exchange MessageBytesTotalPersec','Rate at which bytes are sent and received in messages.',20,1,0,0,300,0,'','','','select MessageBytesTotalPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (470,'Exchange MessageDeliveryRetries','Total number of local deliveries that were retried.',20,1,0,0,300,0,'','','','select MessageDeliveryRetries from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (471,'Exchange MessagesCurrentlyUndeliverable','Number of messages that have been reported as currently undeliverable by routing.',20,1,0,0,300,0,'','','','select MessagesCurrentlyUndeliverable from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (472,'Exchange MessagesDeliveredPersec','Rate at which messages are delivered to local mailboxes.\r\n',20,1,0,0,300,0,'','','','select MessagesDeliveredPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (473,'Exchange MessagesDeliveredTotal','Total number of messages delivered to local mailboxes.',20,1,0,0,300,0,'','','','select MessagesDeliveredTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (474,'Exchange MessageSendRetries','Total number of outbound message send operations that were retried.',20,1,0,0,300,0,'','','','select MessageSendRetries from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (475,'Exchange MessagesPendingRouting','Number of messages that have been categorized but not routed.',20,1,0,0,300,0,'','','','select MessagesPendingRouting from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (476,'Exchange MessagesReceivedPersec','Rate that inbound messages are being received.\r\n',20,1,0,0,300,0,'','','','select MessagesReceivedPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (477,'Exchange MessagesReceivedTotal','Total number of inbound messages accepted.',20,1,0,0,300,0,'','','','select MessagesReceivedTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (478,'Exchange MessagesRefusedforAddressObjects','Total number of messages refused due to lack of address objects.',20,1,0,0,300,0,'','','','select MessagesRefusedforAddressObjects from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (479,'Exchange MessagesRefusedforMailObjects','Total number of messages refused due to lack of mail objects.',20,1,0,0,300,0,'','','','select MessagesRefusedforMailObjects from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (480,'Exchange MessagesRefusedforSize','Total number of messages rejected because they were too big.',20,1,0,0,300,0,'','','','select MessagesRefusedforSize from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (481,'Exchange MessagesSentPersec','Rate at which outbound messages are being sent.',20,1,0,0,300,0,'','','','select MessagesSentPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (482,'Exchange MessagesSentTotal','Total number of outbound messages sent.',20,1,0,0,300,0,'','','','select MessagesSentTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (483,'Exchange NDRsGenerated','Number of non-delivery reports that have been generated.',20,1,0,0,300,0,'','','','select NDRsGenerated from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (484,'Exchange NumberofMailFilesOpen','Number of handles to open mail files.',20,1,0,0,300,0,'','','','select NumberofMailFilesOpen from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (485,'Exchange NumberofQueueFilesOpen','Number of handles to open queue files.',20,1,0,0,300,0,'','','','select NumberofQueueFilesOpen from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (486,'Exchange OutboundConnectionsCurrent','Number of connections currently outbound.',20,1,0,0,300,0,'','','','select OutboundConnectionsCurrent from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (487,'Exchange OutboundConnectionsRefused','Number of outbound connection attempts refused by remote sites.',20,1,0,0,300,0,'','','','select OutboundConnectionsRefused from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (488,'Exchange OutboundConnectionsTotal','Total number of outbound connections attempted.',20,1,0,0,300,0,'','','','select OutboundConnectionsTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (489,'Exchange PercentRecipientsLocal','Percentage of recipients that will be delivered locally.',20,1,0,0,300,0,'','','','select PercentRecipientsLocal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (490,'Exchange PercentRecipientsRemote','Percentage of recipients that will be delivered remotely.',20,1,0,0,300,0,'','','','select PercentRecipientsRemote from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (491,'Exchange PickupDirectoryMessagesRetrievedPersec','Rate at which messages are being retrieved from the mail pick-up directory.',20,1,0,0,300,0,'','','','select PickupDirectoryMessagesRetrievedPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (492,'Exchange PickupDirectoryMessagesRetrievedTotal ','Total number of messages retrieved from the mail pick-up directory.',20,1,0,0,300,0,'','','','select PickupDirectoryMessagesRetrievedTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (493,'Exchange RemoteQueueLength','Number of messages in the remote queue.',20,1,0,0,300,0,'','','','select RemoteQueueLength from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (494,'Exchange RemoteRetryQueueLength','Number of messages in the retry queue for remote delivery.',20,1,0,0,300,0,'','','','select RemoteRetryQueueLength from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (495,'Exchange RoutingTableLookupsPersec','Number of routing table lookups per second.',20,1,0,0,300,0,'','','','select RoutingTableLookupsPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (496,'Exchange RoutingTableLookups','Total number of routing table lookups.',20,1,0,0,300,0,'','','','select RoutingTableLookupsTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (497,'Exchange TotalConnectionErrors','Total number of connection errors.',20,1,0,0,300,0,'','','','select TotalConnectionErrors from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (498,'Exchange TotalDSNFailures','Total number of failed DSN generation attempts.',20,1,0,0,300,0,'','','','select TotalDSNFailures from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (499,'Exchange Totalmessagessubmitted','Total messages submitted to queuing for delivery.',20,1,0,0,300,0,'','','','select Totalmessagessubmitted from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (501,'MSDTC AbortedTransactions','Number of canceled transactions.',22,1,0,0,300,0,'','','','select AbortedTransactions from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (502,'MSDTC AbortedTransactionsPersec','Transactions canceled per second.',22,1,0,0,300,0,'','','','select AbortedTransactionsPersec from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (503,'MSDTC ActiveTransactions','Number of currently active transactions.',22,1,0,0,300,0,'','','','select ActiveTransactions from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (504,'MSDTC ActiveTransactionsMaximum','Maximum number of transactions ever concurrently active.',22,1,0,0,300,0,'','','','select ActiveTransactionsMaximum from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (505,'MSDTC CommittedTransactions','Number of committed transactions.\r\n',22,1,0,0,300,0,'','','','select CommittedTransactions from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (506,'MSDTC CommittedTransactionsPersec','Transactions committed per second.',22,1,0,0,300,0,'','','','select CommittedTransactionsPersec from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (507,'MSDTC ForceAbortedTransactions','Number of transactions canceled by the system administrator.',22,1,0,0,300,0,'','','','select ForceAbortedTransactions from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (508,'MSDTC ForceCommittedTransactions','Number of transactions committed by the system administrator.',22,1,0,0,300,0,'','','','select ForceCommittedTransactions from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (509,'MSDTC InDoubtTransactions','Number of transactions whose outcomes are in doubt.',22,1,0,0,300,0,'','','','select InDoubtTransactions from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (510,'MSDTC ResponseTimeAverage','Average time delta between transaction beginning and commitment.',22,1,0,0,300,0,'','','','select ResponseTimeAverage from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (511,'MSDTC ResponseTimeMaximum','Maximum time delta between transaction beginning and commitment.',22,1,0,0,300,0,'','','','select ResponseTimeMaximum from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (512,'MSDTC ResponseTimeMinimum','Minimum time delta between transaction beginning and commitment.',22,1,0,0,300,0,'','','','select ResponseTimeMinimum from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (513,'MSDTC TransactionsPersec','Transactions performed per second.',22,1,0,0,300,0,'','','','select TransactionsPersec from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (514,'c2900InfoPeakBuffersUsed','ftp://ftp.cisco.com/pub/mibs/oid/CISCO-C2900-MIB.oid',23,15,0,0,300,0,'','','public','1.3.6.1.4.1.9.9.87.1.1.2.0',2,2,0,'','','0',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (515,'c2900InfoTotalBufferDepth','ftp://ftp.cisco.com/pub/mibs/oid/CISCO-C2900-MIB.oid',23,15,0,0,300,0,'','','public','1.3.6.1.4.1.9.9.87.1.1.3.0',2,2,0,'','','0',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (516,'c2900BandwidthUsageCurrent ','ftp://ftp.cisco.com/pub/mibs/oid/CISCO-C2900-MIB.oid',23,15,0,0,300,0,'','','public','1.3.6.1.4.1.9.9.87.1.5.1.0',2,2,0,'','','0',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (517,'Latest Message ','Get the last message sent in Syslog',2,17,0,0,300,0,'','','public','1.3.6.1.4.1.9.9.41.1.2.3.1.5.12',1,2,0,'','','0',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (518,'Latest Message date','',2,15,0,0,300,0,'','','public','1.3.6.1.4.1.9.9.41.1.2.3.1.6.12',2,2,0,'','','0',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (519,'CPU avgBusy1min ','',2,15,0,0,300,0,'','','public','1.3.6.1.4.1.9.2.1.57.0',2,2,0,'','','0',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (520,'CPU avgBusy5min ','',2,15,0,0,300,0,'','','public','1.3.6.1.4.1.9.2.1.58.0',2,2,0,'','','0',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (521,'Software Image running ','',2,17,0,0,1800,0,'','','public','1.3.6.1.4.1.9.2.1.73.0',2,2,0,'','','0',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (522,'nvRAMUsed','',2,15,0,0,300,0,'','','public','1.3.6.1.4.1.9.3.6.8.0',2,2,0,'','','0',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (523,'Printers BytesPrintedPersec','Number of bytes per second printed on a print queue.',24,1,0,0,300,1,'','','','select BytesPrintedPersec from Win32_PerfRawData_Spooler_PrintQueue where NAME = '_total'',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (524,'Printers JobErrors','Total number of job errors in a print queue after the last restart.',24,1,0,0,300,1,'','','','select JobErrors from Win32_PerfRawData_Spooler_PrintQueue where NAME = '_total' ',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (525,'Printers Jobs','Current number of jobs in a print queue.',24,1,0,0,300,1,'','','','select Jobs from Win32_PerfRawData_Spooler_PrintQueue where NAME = '_total' ',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (526,'Printers JobsSpooling','Current number of spooling jobs in a print queue.',24,1,0,0,300,1,'','','','select JobsSpooling from Win32_PerfRawData_Spooler_PrintQueue where NAME = '_total'',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (527,'Printers MaxJobsSpooling','Maximum number of spooling jobs in a print queue after the last restart.\r\n',24,1,0,0,300,1,'','','','select MaxJobsSpooling from Win32_PerfRawData_Spooler_PrintQueue where NAME = '_total'',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (528,'Printers NotReadyErrors','Total number of printer-not-ready errors in a print queue after the last restart.',24,1,0,0,300,1,'','','','select NotReadyErrors from Win32_PerfRawData_Spooler_PrintQueue where NAME = '_total'',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (529,'Printers OutofPaperErrors','Total number of out-of-paper errors in a print queue after the last restart.',24,1,0,0,300,1,'','','','select OutofPaperErrors from Win32_PerfRawData_Spooler_PrintQueue where NAME = '_total'',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (530,'Printers TotalJobsPrinted','Total number of jobs printed on a print queue after the last restart.',24,1,0,0,300,1,'','','','select TotalJobsPrinted from Win32_PerfRawData_Spooler_PrintQueue where NAME = '_total'',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (531,'Printers TotalPagesPrinted','Total number of pages printed through GDI on a print queue after the last restart.',24,1,0,0,300,1,'','','','select TotalPagesPrinted from Win32_PerfRawData_Spooler_PrintQueue where NAME = '_total'',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (532,'Printers Availability','Availability and status of the device\r\n\r\nValue Meaning\r\n\r\n10x1 Other\r\n\r\n20x2 Unknown\r\n\r\n30x3 Running or Full Power\r\n\r\n40x4 Warning\r\n\r\n50x5 In Test\r\n\r\n60x6 Not Applicable\r',24,3,0,0,300,0,'','','','select Availability from Win32_Printer',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (533,'Serv_IISAdmin','IIS Administration Server service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'IISAdmin'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (534,'Serv_MSSQL_server','Displays if MS SQL SERVER is running',27,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "MSSQLSERVER"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (535,'SQLServer_DataFilesSizeKB','Sql database size in kb ',27,1,0,0,0,0,'','','','select state from Win32_Service where name = "MSSQLSERVER"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (536,'SQLServer_SQLErrors ','Errors / sec in the database ',27,1,0,0,0,0,'','','','select Errors/sec from Win32_PerfRawData_MSSQLSERVER_SQLServerSQLErrors ',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (537,'SQLServer_TotalServerMemoryKB','Specifies the amount of memory not used currently by the server. ',27,1,0,0,0,0,'','','','select TotalServerMemoryKB from Win32_PerfRawData_MSSQLSERVER_SQLServerMemoryManager ',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (538,'SQLServer_ConnectionMemoryKB','Specifies the total amount of dynamic memory the server is using for maintaining connections.',27,1,0,0,0,0,'','','','select ConnectionMemoryKB from Win32_PerfRawData_MSSQLSERVER_SQLServerMemoryManager ',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (539,'SQLServer_MaxWorkspaceMemoryKB','Indicates the maximum amount of memory available for executing processes such as hash operations, sort, bulk copy, and index creation.',27,1,0,0,0,0,'','','','select MaximumWorkspaceMemoryKB from Win32_PerfRawData_MSSQLSERVER_SQLServerMemoryManager ',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (540,'SQLServer_UserConnections','Count the number of users currently connected to SQL Server.',27,1,0,0,0,0,'','','','select UserConnections from Win32_PerfRawData_MSSQLSERVER_SQLServerGeneralStatistics',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (541,'SQLServer_ Processesblocked','Number of processes currently blocked.',27,1,0,0,0,0,'','','','select Processesblocked from Win32_PerfRawData_MSSQLSERVER_SQLServerGeneralStatistics',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (542,'SQLServer_ActiveTempTables','Number of tables or table variables temporary used.',27,1,0,0,0,0,'','','','select ActiveTempTables from Win32_PerfRawData_MSSQLSERVER_SQLServerGeneralStatistics ',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (543,'SQLServer_TempTablesForDestruction','Number of tables and variables temporary waiting tables to destroy the thread cleaning system.',27,1,0,0,0,0,'','','','select TempTablesForDestruction from Win32_PerfRawData_MSSQLSERVER_SQLServerGeneralStatistics ',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (544,'SQLServer_BytesReceivedPersec','Number of bytes received per second. ',27,1,0,0,0,0,'','','','select BytesReceivedPersec from Win32_PerfFormattedData_MSSQLSERVER_SQLServerDatabaseMirroring',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (545,'SQLServer_BytesSentPersec','Number of bytes sent per second. ',27,1,0,0,0,0,'','','','select BytesSentPersec from Win32_PerfFormattedData_MSSQLSERVER_SQLServerDatabaseMirroring ',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (546,'SQLServer_LogSendQueueKB','Total number of kilobytes of log that have not yet been sent to the mirror server. ',27,1,0,0,0,0,'','','','select LogSendQueueKB from Win32_PerfFormattedData_MSSQLSERVER_SQLServerDatabaseMirroring',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (547,'SQLServer_FreeSpaceintempdbKB','The amount of space (in kilobytes) available in tempdb.',27,1,0,0,0,0,'','','','select FreeSpaceintempdbKB from Win32_PerfRawData_MSSQLSERVER_SQLServerTransactions ',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (548,'SQLServer_Transactions','Number of currently active transactions of all types.',27,1,0,0,0,0,'','','','select Transactions from Win32_PerfRawData_MSSQLSERVER_SQLServerTransactions ',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (549,'Perf_OracleHandleCount','Returns handle count per second for Oracle process.',28,4,0,0,0,0,'','','','select HandleCount from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (550,'Serv_Oracle_1TNSListener','Show if oracle listener is running ',28,2,0,0,0,1,'','','','SELECT state FROM Win32_Service WHERE Name = "Oracle_1TNSListener"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (551,'Serv_Oracle <SID> VSS Writer Service','Show if Serv_Oracle VSS Writer Service is running ',28,2,0,0,0,1,'','','','SELECT state FROM Win32_Service WHERE Name = "Oracle ORACLETA VSS Writer Service"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (552,'Serv_OracleDBConsoleORACLE_SID','Show if OracleDBConsoleORACLE_SID is running ',28,2,0,0,0,1,'','','','SELECT state FROM Win32_Service WHERE Name = "OracleDBConsoleORACLE_SID"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (553,'Serv_Oracle OraDb11g_home1 Clr Agent','Show if Oracle OraDb11g_home1 Clr Agent is up ',28,2,0,0,0,1,'','','','SELECT state FROM Win32_Service WHERE Name = "Oracle OraDb11g_home1 Clr Agent"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (554,'Serv_OracleJobScheduler<SID>','Show if OracleJobScheduler service is up ',28,2,0,0,0,1,'','','','SELECT state FROM Win32_Service WHERE Name = "OracleJobScheduler<SID>"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (555,'Serv_OracleMTSRecoveryService','Show if OracleMTSRecoveryService is running ',28,2,0,0,0,1,'','','','SELECT state FROM Win32_Service WHERE Name = "OracleMTSRecoveryService"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (556,'ORACLE_HOME_Paths','Displays the path of the ORACLE_HOME environment variable ',28,3,0,0,0,0,'','','','SELECT VariableValue FROM Win32_Environment WHERE Name= "ORACLE_HOME"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (557,'Check port 1433/TCP','',27,10,0,0,0,1433,'','','public','',3,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (558,'Check port 1158/TCP','Comprueba el estado del puerto HTTP de la Consola de Enterprise Manager (Oracle)1158',28,9,0,0,0,1158,'','','public','',3,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (559,'Check port 3938/TCP','Comprueba el estado del puerto Puerto del Agente de Enterprise Manager (oracle) ',28,9,0,0,0,3938,'','','public','',7,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (560,'Check port 5620/TCP','Comprueba el estado del puerto HTTP para Ultra Search (oracle) ',28,9,0,0,0,5620,'','','public','',3,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (561,'Check port 5560/TCP','Comprueba el estado del puerto HTTP para iSQL*Plus (Oracle) ',28,9,0,0,0,5560,'','','public','',3,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (562,'N360_status ','Muestra si el antivirus Norton 360 esta corriendo o no ',30,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "N360" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (563,'NortonInternetSecurity_status ','Muestra si el antivirus Norton Internet Security esta corriendo o no ',30,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "NIS" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (564,'NortonAntivirus_status ','Muestra si el antivirus Norton esta corriendo o no ',30,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "NAV" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (565,'NortonIdentifySafe_status ','Muestra si el Norton Identity Safe esta corriendo ',30,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "NCO" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (566,'WindowsFirewall_status ','Show if Firewall Windows is running ',29,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "MpsSvc" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (567,'WindowsDefender_status','Show if WindowsDefender is running',29,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "WinDefend" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (568,'PandaGlobalProtection_status ','Show if PandaGlobalProtection is running',31,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "Panda Software Controller" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (569,'PandaFunctionService_status ','Show if PandaFunctionService is running',31,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "PAVFNSVR" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (570,'Panda_Process_Protection_Service_ status ','Show if Panda ProcessProtection Service is running',31,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "PavPrSrv" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (571,'Panda_Anti-Malware_Service_status','Show if Panda Anti-Malware Service is running',31,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "PAVSRV" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (572,'McAfee_Network_Agent_status ','Show if McAfee_Network_Agent is running',32,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "McNASvc" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (573,'McAfee_Protection_Manager_status ','Show if McAfee_Protection_Manager is running',32,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "mcmscsvc" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (574,'McAfee_Scanner_status ','Show if McAfee_Scanner is running',32,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "McODS" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (575,'McAfee_Proxy_Service_status ','Show if McAfee_Proxy_Service is running',32,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "McProxy" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (576,'McAfee_Real-time_Scanner_status ','Show if McAfee_Real-time_Scanner is running',32,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "McShield" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (577,'McAfee_SystemGuards_status ','Show if McAfee_SystemGuards is running',32,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "McSysmon" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (578,'McAfee_Personal_Firewall_Service_status ','Show if McAfee_Personal_Firewall_Service is running',32,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "MpfService" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (579,'McAfee_Anti-Spam_Service_status ','Show if McAfee_Anti-Spam_Service is running',32,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "MSK80Service" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (580,'Bitdefender_Virus_Shield_status','Show if Bitdefender Virus Shield is running',33,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "VSSERV" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (581,'BitDefender_Parental_service_status','Show if BitDefender Parental Control service is running',33,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "BdDesktopParental" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (582,'Bitdefender-Desktop_Update_Service_status','Show if Bitdefender Desktop Update Service is running',33,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "UPDATESRV" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (583,'Perf_DNSCachingMemory','Total caching memory used by DNS server.',35,1,0,0,0,0,'','','','select CachingMemory from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (584,'Perf_DNSDatabaseNodeMemory','Total database node memory used by DNS server.',35,1,0,0,0,0,'','','','select DatabaseNodeMemory from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (585,'Perf_DNSDynamicUpdateNoOperation','No-operation/Empty dynamic update requests per second received by the DNS server.',35,4,0,0,0,0,'','','','select DynamicUpdateNoOperation from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (586,'Perf_DNSDynamicUpdateQueued','Dynamic updates queued per second by the DNS server.',35,4,0,0,0,0,'','','','select DynamicUpdateQueued from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (587,'Perf_DNSDynamicUpdateReceived','Dynamic update requests received per second by the DNS server.',35,4,0,0,0,0,'','','','select DynamicUpdateReceived from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (588,'Perf_DNSDynamicUpdateRejected','Dynamic updates rejected per second by the DNS server.',35,4,0,0,0,0,'','','','select DynamicUpdateRejected from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (589,'Perf_DNSDynamicUpdateTimeOuts','Dynamic update timeouts per second of the DNS server.',35,4,0,0,0,0,'','','','select DynamicUpdateTimeOuts from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (590,'Perf_DNSDynamicUpdateWrittentoDatabase','Dynamic updates written to the database per second by the DNS server.',35,4,0,0,0,0,'','','','select DynamicUpdateWrittentoDatabase from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (591,'Perf_DNSNbstatMemory','Total Nbstat memory used by DNS server.',35,1,0,0,0,0,'','','','select NbstatMemory from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (592,'Perf_DNSNotifyReceived','Notifies received per second by the secondary DNS server.',35,4,0,0,0,0,'','','','select NotifyReceived from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (593,'Perf_DNSNotifySent','Notifies sent per second by the master DNS server.',35,4,0,0,0,0,'','','','select NotifySent from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (594,'Perf_DNSRecordFlowMemory','Total record flow memory used by DNS server.',35,1,0,0,0,0,'','','','select NbstatMemory from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (595,'Perf_DNSRecursiveQueries','Recursive queries per second received by DNS server.',35,4,0,0,0,0,'','','','select RecursiveQueries from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (596,'Perf_DNSRecursiveQueryFailure','Recursive query failures per second on the DNS server.',35,4,0,0,0,0,'','','','select RecursiveQueryFailure from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (597,'Perf_DNSRecursiveSendTimeOuts','Recursive queries sending timeouts per second on the DNS server.',35,4,0,0,0,0,'','','','select RecursiveSendTimeOuts from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (598,'Perf_DNSSecureUpdateFailure','Secure updates failed per second of the DNS server.',35,4,0,0,0,0,'','','','select SecureUpdateFailure from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (599,'Perf_DNSSecureUpdateReceived','Secure update requests per second received by the DNS server.',35,4,0,0,0,0,'','','','select SecureUpdateReceived from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (600,'Perf_DNSTCPMessageMemory','Total TCP message memory used by DNS server.',35,1,0,0,0,0,'','','','select TCPMessageMemory from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (601,'Perf_DNSTCPResponseSent','TCP reponses per second sent by DNS server.',35,4,0,0,0,0,'','','','select TCPResponseSent from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (602,'Perf_DNSTotalQueryReceived','Queries per second received by DNS server.',35,4,0,0,0,0,'','','','select TotalQueryReceived from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (603,'Perf_DNSTotalResponseSent','Reponses per second sent by DNS server.',35,4,0,0,0,0,'','','','select TotalResponseSent from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (604,'Perf_DNSUDPMessageMemory','Total UDP message memory used by DNS server.',35,1,0,0,0,0,'','','','select UDPMessageMemory from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (605,'Perf_DNSTCPQueryReceived','TCP queries per second received by DNS server.',35,4,0,0,0,0,'','','','select TCPQueryReceived from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (606,'Perf_DNSUDPQueryReceived','UDP queries per second received by DNS server.',35,4,0,0,0,0,'','','','select UDPQueryReceived from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (607,'Perf_DNSUDPResponseSent','UDP reponses per second sent by DNS server.',35,4,0,0,0,0,'','','','select UDPResponseSent from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (608,'Perf_DNSUnmatchedResponsesReceived','Response packets per second received by the DNS server that do not match any outstanding remote query.',35,4,0,0,0,0,'','','','select UnmatchedResponsesReceived from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (609,'Perf_DNSWINSLookupReceived','WINS lookup requests per second received by the server.',35,4,0,0,0,0,'','','','select WINSLookupReceived from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (610,'Perf_DNSWINSResponseSent','WINS lookup responses per second sent by the server.',35,4,0,0,0,0,'','','','select WINSResponseSent from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (611,'Perf_DNSWINSReverseLookupReceived','WINS reverse lookup requests per second received by the server.',35,4,0,0,0,0,'','','','select WINSReverseLookupReceived from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (612,'Perf_DNSWINSReverseResponseSent','WINS Reverse lookup responses per second sent by the server.',35,4,0,0,0,0,'','','','select WINSReverseResponseSent from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (613,'Perf_NTDSABANRPersec','The rate at which Address Book clients perform Ambiguous Name Resolutions operations.',36,1,0,0,0,0,'','','','select ABANRPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (614,'Perf_NTDSABBrowsesPersec','AB Browses/sec is the rate at which Address Book clients perform browse operations.',36,1,0,0,0,0,'','','','select ABBrowsesPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (615,'Perf_NTDSABClientSessions','Number of connected Address Book client sessions.',36,1,0,0,0,0,'','','','select ABClientSessions from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (616,'Perf_NTDSABMatchesPersec','The rate at which Address Book clients perform find operations.',36,1,0,0,0,0,'','','','select ABMatchesPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (617,'Perf_NTDSABPropertyReadsPersec','The rate at which Address Book clients perform property read operations.',36,1,0,0,0,0,'','','','select ABPropertyReadsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (618,'Perf_NTDSABProxyLookupsPersec','The rate at which proxy clients perform search operations.',36,1,0,0,0,0,'','','','select ABProxyLookupsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (619,'Perf_NTDSATQRequestLatency','Average length of time (in milliseconds) to process a request, not including time spent on the queue.',36,1,0,0,0,0,'','','','select ATQRequestLatency from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (620,'Perf_NTDSATQThreadsLDAP','The number of threads that ATQ has currently allocated to servicing LDAP requests.',36,1,0,0,0,0,'','','','select ATQThreadsLDAP from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (621,'Perf_NTDSATQThreadsOther','The number of threads that the ATQ has currently allocated to DS services other than LDAP.',36,1,0,0,0,0,'','','','select ATQThreadsOther from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (622,'Perf_NTDSATQThreadsTotal','The total number of ATQ threads that are either waiting to service an incoming request, or are already servicing a request.',36,1,0,0,0,0,'','','','select ATQThreadsTotal from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (623,'Perf_NTDSBasesearchesPersec','The number of base searches/sec',36,1,0,0,0,0,'','','','select BasesearchesPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (624,'Perf_NTDSDatabaseaddsPersec','The number of database adds/sec',36,1,0,0,0,0,'','','','select DatabaseaddsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (625,'Perf_NTDSDatabasedeletesPersec','The number of database deletes/sec',36,1,0,0,0,0,'','','','select DatabasedeletesPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (626,'Perf_NTDSDatabaserecyclesPersec','The number of database recycles/sec',36,1,0,0,0,0,'','','','select DatabaserecyclesPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (627,'Perf_NTDSDigestBindsPersec','The number of digest binds/sec',36,1,0,0,0,0,'','','','select DigestBindsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (628,'Perf_NTDSDRAInboundBytesCompressedBetweenSitesAfterCompressionPersec','Compressed size in bytes of inbound compressed replication data (size after compression, from DSAs in other sites).',36,1,0,0,0,0,'','','','select DRAInboundBytesCompressedBetweenSitesAfterCompressionPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (629,'Perf_NTDSDRAInboundBytesCompressedBetweenSitesAfterCompressionSinceBoot','Compressed size in bytes of inbound compressed replication data (size after compression, from DSAs in other sites).',36,1,0,0,0,0,'','','','select DRAInboundBytesCompressedBetweenSitesAfterCompressionSinceBoot from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (630,'Perf_NTDSDRAInboundBytesCompressedBetweenSitesBeforeCompressionSinceBoot','Original size in bytes of inbound compressed replication data (size before compression, from DSAs in other sites).',36,1,0,0,0,0,'','','','select DRAInboundBytesCompressedBetweenSitesBeforeCompressionSinceBoot from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (631,'Perf_NTDSDRAInboundBytesCompressedBetweenSitesBeforeCompressionPersec','Original size in bytes of inbound compressed replication data (size before compression, from DSAs in other sites).',36,1,0,0,0,0,'','','','select DRAInboundBytesCompressedBetweenSitesBeforeCompressionPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (632,'Perf_NTDSDRAInboundBytesNotCompressedWithinSitePersec','Number of bytes replicated in that were not compressed at the source (i.e., from DSAs in the same site).',36,1,0,0,0,0,'','','','select DRAInboundBytesNotCompressedWithinSitePersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (633,'Perf_NTDSDRAInboundBytesNotCompressedWithinSiteSinceBoot','Number of bytes replicated in that were not compressed at the source (i.e., from DSAs in the same site).',36,1,0,0,0,0,'','','','select DRAInboundBytesNotCompressedWithinSiteSinceBoot from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (634,'Perf_NTDSDRAInboundBytesTotalPersec','Total number of bytes replicated in. Sum of the number of uncompressed bytes (never compressed) and the number of compressed bytes (a',36,1,0,0,0,0,'','','','select DRAInboundBytesTotalPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (635,'Perf_NTDSDRAInboundBytesTotalSinceBoot','Total number of bytes replicated in. Sum of the number of uncompressed bytes (never compressed) and the number of compressed bytes (a',36,1,0,0,0,0,'','','','select DRAInboundBytesTotalSinceBoot from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (636,'Perf_NTDSDRAInboundFullSyncObjectsRemaining','Number of objects remaining until the full sync completes (when set).',36,1,0,0,0,0,'','','','select DRAInboundFullSyncObjectsRemaining from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (637,'Perf_NTDSDRAInboundLinkValueUpdatesRemaininginPacket','The number of link value updates received in the current directory replication update packet that have not yet been applied to the local',36,1,0,0,0,0,'','','','select DRAInboundLinkValueUpdatesRemaininginPacket from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (638,'Perf_NTDSDRAInboundObjectsAppliedPersec','The rate at which replication updates received from replication partners are applied by the local directory service. This count excludes changes ',36,1,0,0,0,0,'','','','select DRAInboundObjectsAppliedPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (639,'Perf_NTDSDRAInboundObjectsFilteredPersec','Number of objects received from inbound replication partners that contained no updates that needed to be applied.',36,1,0,0,0,0,'','','','select DRAInboundObjectsFilteredPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (640,'Perf_NTDSDRAInboundObjectsPersec','No of objects received from neighbors through inbound replication.',36,1,0,0,0,0,'','','','select DRAInboundObjectsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (641,'Perf_NTDSDRAInboundObjectUpdatesRemaininginPacket','The number of object updates received in the current directory replication update packet that have not yet been applied to the local server.',36,1,0,0,0,0,'','','','select DRAInboundObjectUpdatesRemaininginPacket from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (642,'Perf_NTDSDRAInboundPropertiesTotalPersec','Total number of object properties received from inbound replication partners.',36,1,0,0,0,0,'','','','select DRAInboundPropertiesTotalPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (643,'Perf_NTDSDRAInboundTotalUpdatesRemaininginPacket','The number of total (link values + object) updates received in the current directory replication update packet that have not yet been',36,1,0,0,0,0,'','','','select DRAInboundTotalUpdatesRemaininginPacket from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (644,'Perf_NTDSDRAInboundValuesDNsonlyPersec','Number of object property values received from inbound replication partners that are Distinguished Names; i.e., that reference other objects. DN-values,&#x',36,1,0,0,0,0,'','','','select DRAInboundValuesDNsonlyPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (645,'Perf_NTDSDRAInboundValuesTotalPersec','Total number of object property values received from inbound replication partners. Each inbound object has one or more properties, and each prope',36,1,0,0,0,0,'','','','select DRAInboundValuesTotalPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (646,'Perf_NTDSDRAOutboundBytesCompressedBetweenSitesAfterCompressionPersec','Compressed size in bytes of outbound compressed replication data (size after compression, from DSAs in other sites).',36,1,0,0,0,0,'','','','select DRAOutboundBytesCompressedBetweenSitesAfterCompressionPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (647,'Perf_NTDSDRAOutboundBytesCompressedBetweenSitesAfterCompressionSinceBoot','Compressed size in bytes of outbound compressed replication data (size after compression, from DSAs in other sites).',36,1,0,0,0,0,'','','','select DRAOutboundBytesCompressedBetweenSitesAfterCompressionSinceBoot from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (648,'Perf_NTDSDRAOutboundBytesCompressedBetweenSitesBeforeCompressionPersec','Original size in bytes of outbound compressed replication data (size before compression, from DSAs in other sites).',36,1,0,0,0,0,'','','','select DRAOutboundBytesCompressedBetweenSitesBeforeCompressionPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (649,'Perf_NTDSDRAOutboundBytesCompressedBetweenSitesBeforeCompressionSinceBoot','Original size in bytes of outbound compressed replication data (size before compression, from DSAs in other sites).',36,1,0,0,0,0,'','','','select DRAOutboundBytesCompressedBetweenSitesBeforeCompressionSinceBoot from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (650,'Perf_NTDSDRAOutboundBytesNotCompressedWithinSitePersec','Number of bytes replicated out that were not compressed (i.e., from DSAs in the same site).',36,1,0,0,0,0,'','','','select DRAOutboundBytesNotCompressedWithinSitePersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (651,'Perf_NTDSDRAOutboundBytesNotCompressedWithinSiteSinceBoot','Number of bytes replicated out that were not compressed (i.e., from DSAs in the same site).',36,1,0,0,0,0,'','','','select DRAOutboundBytesNotCompressedWithinSiteSinceBoot from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (652,'Perf_NTDSDRAOutboundBytesTotalPersec','Total number of bytes replicated out. Sum of the number of uncompressed bytes (never compressed) and the number of compressed bytes (',36,1,0,0,0,0,'','','','select DRAOutboundBytesTotalPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (653,'Perf_NTDSDRAOutboundBytesTotalSinceBoot','Total number of bytes replicated out. Sum of the number of uncompressed bytes (never compressed) and the number of compressed bytes (',36,1,0,0,0,0,'','','','select DRAOutboundBytesTotalSinceBoot from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (654,'Perf_NTDSDRAOutboundObjectsFilteredPersec','Number of objects looked at by outbound replication that were determined to have no updates that the outbound partner did not already have.',36,1,0,0,0,0,'','','','select DRAOutboundObjectsFilteredPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (655,'Perf_NTDSDRAOutboundObjectsPersec','No of objects replicated out.',36,1,0,0,0,0,'','','','select DRAOutboundObjectsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (656,'Perf_NTDSDRAOutboundPropertiesPersec','No of properties replicated out.',36,1,0,0,0,0,'','','','select DRAOutboundPropertiesPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (657,'Perf_NTDSDRAOutboundValuesDNsonlyPersec','Number of object property values containing Distinguished Names sent to outbound replication partners. DN-values, such as group or distribution list m',36,1,0,0,0,0,'','','','select DRAOutboundValuesDNsonlyPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (658,'Perf_NTDSDRAOutboundValuesTotalPersec','Number of object property values sent to outbound replication partners.',36,1,0,0,0,0,'','','','select DRAOutboundValuesTotalPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (659,'Perf_NTDSDRAPendingReplicationOperations','The total number of replication operations on the directory that are queued for this server but not yet performed.',36,1,0,0,0,0,'','','','select DRAPendingReplicationOperations from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (660,'Perf_NTDSDRAPendingReplicationSynchronizations','DRA Pending Replication Synchronizations is the number of directory synchronizations that are queued for this server but not yet processed.',36,1,0,0,0,0,'','','','select DRAPendingReplicationSynchronizations from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (661,'Perf_NTDSDRASyncFailuresonSchemaMismatch','No of sync requests made to the neighbors that failed because their schema are out of sync.',36,1,0,0,0,0,'','','','select DRASyncFailuresonSchemaMismatch from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (662,'Perf_NTDSDRASyncRequestsMade','No of sync requests made to the neighbors.',36,1,0,0,0,0,'','','','select DRASyncRequestsMade from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (663,'Perf_NTDSDRASyncRequestsSuccessful','No of sync requests made to the neighbors that successfully returned.',36,1,0,0,0,0,'','','','select DRASyncRequestsSuccessful from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (664,'Perf_NTDSDRAThreadsGettingNCChanges','The number of threads on the server which are currently attempting to acquire changes from another server.',36,1,0,0,0,0,'','','','select DRAThreadsGettingNCChanges from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (665,'Perf_NTDSDRAThreadsGettingNCChangesHoldingSemaphore','The number of threads on the server which are currently attempting to acquire changes from another server and hold a semaphore required to&#',36,1,0,0,0,0,'','','','select DRAThreadsGettingNCChangesHoldingSemaphore from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (666,'Perf_NTDSDSClientBindsPersec','Number of ntdsapi.dll binds per second serviced by this DC.',36,1,0,0,0,0,'','','','select DSClientBindsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (667,'Perf_NTDSDSClientNameTranslationsPersec','Number of ntdsapi.dll name translations per second serviced by this DC.',36,1,0,0,0,0,'','','','select DSClientNameTranslationsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (668,'Perf_NTDSDSDirectoryReadsPersec','Number of directory reads per second.',36,1,0,0,0,0,'','','','select DSDirectoryReadsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (669,'Perf_NTDSDSDirectorySearchesPersec','Number of directory searches per second.',36,1,0,0,0,0,'','','','select DSDirectorySearchesPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (670,'Perf_NTDSDSDirectoryWritesPersec','Number of directory writes per second.',36,1,0,0,0,0,'','','','select DSDirectoryWritesPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (671,'Perf_NTDSDSMonitorListSize','The number of requests to be notified when objects are updated that are currently registered with this DSA.',36,1,0,0,0,0,'','','','select DSMonitorListSize from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (672,'Perf_NTDSDSNameCachehitrate','The percentage of directory object name component look ups that are satisfied out of the DSA's name cache.',36,1,0,0,0,0,'','','','select DSNameCachehitrate from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (673,'Perf_NTDSDSNotifyQueueSize','The number of pending update notifications that have been queued, but not yet transmitted to clients.',36,1,0,0,0,0,'','','','select DSNotifyQueueSize from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (674,'Perf_NTDSDSSearchsuboperationsPersec','Number of search suboperations per second. One search operation is made up of many sub operations. A sub operation roughly corresponds to an',36,1,0,0,0,0,'','','','select DSSearchsuboperationsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (675,'Perf_NTDSDSSecurityDescriptorsuboperationsPersec','Number of Security Descriptor Propagation suboperations per second. One Security Descriptor Propagation operation is made up of many sub operations. A',36,1,0,0,0,0,'','','','select DSSecurityDescriptorsuboperationsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (676,'Perf_NTDSDSServerBindsPersec','Number of DC-to-DC binds per second serviced by this DC.',36,1,0,0,0,0,'','','','select DSServerBindsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (677,'Perf_NTDSDSServerNameTranslationsPersec','Number of DC-to-DC name translations per second serviced by this DC.',36,1,0,0,0,0,'','','','select DSServerNameTranslationsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (678,'Perf_NTDSDSThreadsinUse','DS Threads in Use is the current number of threads in use by the directory service (different than the number of threads in the',36,1,0,0,0,0,'','','','select DSThreadsinUse from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (679,'Perf_NTDSExternalBindsPersec','The number of external binds/sec',36,1,0,0,0,0,'','','','select ExternalBindsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (680,'Perf_NTDSFastBindsPersec','The number of fast binds/sec',36,1,0,0,0,0,'','','','select FastBindsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (681,'Perf_NTDSLDAPActiveThreads','LDAP Active Threads is the current number of threads in use by the LDAP subsystem of the local directory service.',36,1,0,0,0,0,'','','','select LDAPActiveThreads from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (682,'Perf_NTDSLDAPBindTime','Time (in milliseconds) taken for last successful LDAP bind.',36,1,0,0,0,0,'','','','select LDAPBindTime from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (683,'Perf_NTDSLDAPClientSessions','Number of connected LDAP client sessions.',36,1,0,0,0,0,'','','','select LDAPClientSessions from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (684,'Perf_NTDSLDAPClosedConnectionsPersec','The number of LDAP connections that have been closed in the last second.',36,1,0,0,0,0,'','','','select LDAPClosedConnectionsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (685,'Perf_NTDSLDAPNewConnectionsPersec','The number of new LDAP connections that have arrived in the last second.',36,1,0,0,0,0,'','','','select LDAPNewConnectionsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (686,'Perf_NTDSLDAPNewSSLConnectionsPersec','The number of new SSL or TLS connections that arrived in the last second.',36,1,0,0,0,0,'','','','select LDAPNewSSLConnectionsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (687,'Perf_NTDSLDAPSearchesPersec','LDAP Searches/sec is the rate at which LDAP clients perform search operations.',36,1,0,0,0,0,'','','','select LDAPSearchesPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (688,'Perf_NTDSLDAPSuccessfulBindsPersec','Number of LDAP Binds per second.',36,1,0,0,0,0,'','','','select LDAPSuccessfulBindsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (689,'Perf_NTDSLDAPUDPoperationsPersec','The number of UDP operations the LDAP server is processing per second.',36,1,0,0,0,0,'','','','select LDAPUDPoperationsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (690,'Perf_NTDSLDAPWritesPersec','LDAP Writes/sec is the rate at which LDAP clients perform write operations.',36,1,0,0,0,0,'','','','select LDAPWritesPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (691,'Perf_NTDSLinkValuesCleanedPersec','The rate at which link values that need to be cleaned are cleaned.',36,1,0,0,0,0,'','','','select LinkValuesCleanedPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (692,'Perf_NTDSNegotiatedBindsPersec','The number of negotiated binds/sec',36,1,0,0,0,0,'','','','select NegotiatedBindsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (693,'Perf_NTDSNTLMBindsPersec','The number of NTLM binds/sec',36,1,0,0,0,0,'','','','select NTLMBindsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (694,'Perf_NTDSOnelevelsearchesPersec','The number of onelevel searches/sec',36,1,0,0,0,0,'','','','select OnelevelsearchesPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (695,'Perf_NTDSPhantomsCleanedPersec','The rate at which stale phantoms are cleaned.',36,1,0,0,0,0,'','','','select PhantomsCleanedPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (696,'Perf_NTDSPhantomsVisitedPersec','The rate at which phantoms are visited to determine if they are stale and need to be cleaned.',36,1,0,0,0,0,'','','','select PhantomsVisitedPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (697,'Perf_NTDSSimpleBindsPersec','The number of simple binds/sec',36,1,0,0,0,0,'','','','select SimpleBindsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (698,'Perf_NTDSSubtreesearchesPersec','The number of subtree searches/sec',36,1,0,0,0,0,'','','','select SubtreesearchesPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (699,'Perf_NTDSTombstonesGarbageCollectedPersec','The rate at which expired tombstoned objects are garbage collected.',36,1,0,0,0,0,'','','','select TombstonesGarbageCollectedPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (700,'Perf_NTDSTombstonesVisitedPersec','The rate at which tombstoned objects are visited to be considered for garbage collected.',36,1,0,0,0,0,'','','','select TombstonesVisitedPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (701,'BullGuard_BsBackup_service','The BullGuard Backup service enables you to backup files that are in use ',37,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "BsBackup"',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (703,'BullGuard_BsBhvScan_service','BullGuard behavioural detection service ',37,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "BsBhvScan"',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (704,'BullGuard_BsFileScan_service','The BullGuard File Scan service performs on-access scan for detecting malware in real time ',37,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "BsFileScan"',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (705,'BullGuard_firewall_service','BullGuard firewall service ',37,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "BsFire"',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (706,'BullGuard_BsMailProxy_service','The BullGuard Behavioural Detection Service is an anti-virus component of BullGuard Internet Security ',37,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "BsMailProxy"',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (707,'BullGuard_main_service','BullGuard main service ',37,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "BsMain"',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (708,'BullGuard_BsScanner_service','The BullGuard Scan Service is the central anti-virus component of BullGuard Internet Security ',37,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "BsScanner"',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (709,'BullGuard_update_service','BullGuard update service ',37,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "BsUpdate"',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (710,'Serv_OracleService<SID>','Returns OracleService<SID> status',28,2,0,0,0,1,'','','','SELECT state FROM Win32_Service WHERE Name = "OracleService<SID>"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (711,'Perf_OracleOtherOperationCount','Returns other operation count per second for Oracle process.',28,4,0,0,0,0,'','','','select OtherOperationCount from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (712,'Perf_OracleOtherTransferCount','Returns other transfer count per second for Oracle process.',28,4,0,0,0,0,'','','','select OtherTransferCount from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (713,'Perf_OraclePageFaults','Returns page faults count per second for Oracle process.',28,4,0,0,0,0,'','','','select PageFaults from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (714,'Perf_OraclePageFileUsage','Returns page file usage count per second for Oracle process.',28,4,0,0,0,0,'','','','select PageFileUsage from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (715,'Perf_OraclePrivatePageCount','Returns private page access count per second for Oracle process.',28,4,0,0,0,0,'','','','select PrivatePageCount from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (716,'Perf_OracleQuotaNonPagedPoolUsage','Returns the current quota for non paged pool usage in Oracle process.',28,1,0,0,0,0,'','','','select QuotaNonPagedPoolUsage from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (717,'Perf_OracleQuotaPagedPoolUsage','Returns the current quota for paged pool usage in Oracle process.',28,1,0,0,0,0,'','','','select QuotaPagedPoolUsage from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (718,'Perf_OracleReadOperationCount','Returns read operation count per second for Oracle process.',28,4,0,0,0,0,'','','','select ReadOperationCount from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (719,'Perf_OracleReadTransferCount','Returns read transfer count per second for Oracle process.',28,4,0,0,0,0,'','','','select ReadTransferCount from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (720,'Perf_OracleThreadCount','Returns current thread count for Oracle process.',28,1,0,0,0,0,'','','','select ThreadCount from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (721,'Perf_OracleWriteOperationCount','Returns write operation count per second for Oracle process.',28,4,0,0,0,0,'','','','select WriteOperationCount from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (722,'Perf_OracleWriteTransferCount','Returns write transfer count per second for Oracle process.',28,4,0,0,0,0,'','','','select WriteTransferCount from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (723,'Serv_MSExchangeAB','Microsoft Exchange MSExchangeAB service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeAB'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (724,'Serv_MSExchangeADTopology','Microsoft Exchange MSExchangeADTopology service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeADTopology'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (725,'Serv_MSExchangeAntispamUpdate','Microsoft Exchange MSExchangeAntispamUpdate service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeAntispamUpdate'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (726,'Serv_MSExchangeEdgeSync','Microsoft Exchange MSExchangeEdgeSync service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeEdgeSync'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (727,'Serv_MSExchangeFBA','Microsoft Exchange MSExchangeFBA service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeFBA'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (728,'Serv_MSExchangeFDS','Microsoft Exchange MSExchangeFDS service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeFDS'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (729,'Serv_MSExchangeImap4','Microsoft Exchange MSExchangeImap4 service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeImap4'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (730,'Serv_MSExchangeIS','Microsoft Exchange MSExchangeIS service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeIS'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (731,'Serv_MSExchangeMailboxAssistants','Microsoft Exchange MSExchangeMailboxAssistants service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeMailboxAssistants'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (732,'Serv_MSExchangeMailboxReplication','Microsoft Exchange MSExchangeMailboxReplication service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeMailboxReplication'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (733,'Serv_MSExchangeMailSubmission','Microsoft Exchange MSExchangeMailSubmission service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeMailSubmission'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (734,'Serv_MSExchangePop3','Microsoft Exchange MSExchangePop3 service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangePop3'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (735,'Serv_MSExchangeProtectedServiceHost','Microsoft Exchange MSExchangeProtectedServiceHost service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeProtectedServiceHost'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (736,'Serv_MSExchangeRepl','Microsoft Exchange MSExchangeRepl service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeRepl'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (737,'Serv_MSExchangeRPC','Microsoft Exchange MSExchangeRPC service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeRPC'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (738,'Serv_MSExchangeSA','Microsoft Exchange MSExchangeSA service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeSA'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (739,'Serv_MSExchangeSearch','Microsoft Exchange MSExchangeSearch service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeSearch'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (740,'Serv_MSExchangeSearchB','Microsoft Exchange msftesql-Exchange service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'msftesql-Exchange'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (741,'Serv_MSExchangeServiceHost','Microsoft Exchange MSExchangeServiceHost service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeServiceHost'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (742,'Serv_MSExchangeThrottling','Microsoft Exchange MSExchangeThrottling service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeThrottling'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (743,'Serv_MSExchangeTransport','Microsoft Exchange MSExchangeTransport service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeTransport'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (744,'Serv_MSExchangeTransportLogSearch','Microsoft Exchange MSExchangeTransportLogSearch service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeTransportLogSearch'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (745,'Serv_W3SVC','Microsoft IIS W3SVC service status.',38,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'W3SVC'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (746,'Serv_SMTPSVC','Microsoft IIS SMTPSVC service status.',38,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'SMTPSVC'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (747,'Serv_NNTPSVC','Microsoft IIS NNTPSVC service status.',38,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'NNTPSVC'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (749,'Serv_MSFTPSVC','Microsoft IIS MSFTPSVC service status.',38,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSFTPSVC'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (750,'Serv_WinRM','Microsoft Windows WinRM service status.',16,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'WinRM'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (751,'Check port 59535/TCP','Checks 59535/TCP Port status.',39,9,0,0,0,59535,'','','public','',3,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (752,'Check port 59536/TCP','Checks 59536/TCP Port status.',39,9,0,0,0,59536,'','','public','',3,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (753,'Check RPC Server','Checks RPC Port status.',39,9,0,0,0,135,'','','public','',3,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (754,'Check POP3 Server','Checks POP3 Port status.',39,9,0,0,0,110,'','','public','',3,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (755,'Check IMAP4 Server','Checks IMAP4 Port status.',39,9,0,0,0,143,'','','public','',3,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (756,'Check SMTP Server','Checks SMTP Port status.',39,9,0,0,0,25,'','','public','',3,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (757,'AVGIDSAgent_status','Show if AVGIDSAgent is running ',40,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "AVGIDSAgent" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (758,'AVG_watchdog_status','Show if AVG watchdog is running ',40,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "avgwd" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (759,'AVG_firewall_status','Show if AVG firewall is running ',40,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "avgfws" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (760,'KIS_service_status','Show if KIS antivirus is running ',41,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "ksvsvc"',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (761,'Serv_NTDS','Checks if NTDS service is running',18,2,0,0,0,1,'','','Running','select state from Win32_Service where name="NTDS"',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (762,'Serv_DNS','Checks if DNS service is running',34,2,0,0,0,1,'','','Running','select state from Win32_Service where name="DNS"',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (763,'KIS_KLBLMain_status','Show if KIS antivirus is running ',41,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "KLBLMain"',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (764,'MongoDB Port Check','Remote check of standard TCP port of MongoDB Server.',15,9,0,0,0,27017,'','','public','',7,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (765,'PostgreSQL Remote Port check','Check remote port on PostgreSQL Server.',15,9,0,0,0,5432,'','','public','',7,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, max_retries, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff) VALUES (766,'DBSelects','Number of selects on database',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Com_select\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, max_retries, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff) VALUES (767,'DBUpdates','Number of updates on database',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Com_update\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, max_retries, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff) VALUES (768,'InnoDB_Rows_Read','Rows read on InnoDB engine',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Innodb_rows_read\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, max_retries, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff) VALUES (769,'DB_Connections','Current connections on database',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Connections\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, max_retries, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff) VALUES (770,'Qcache_not_cached','Cache hit missing (queries not cached)',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Qcache_not_cached\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, max_retries, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff) VALUES (771,'Table_locks_waited','Table locks waited',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Table_locks_waited\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, max_retries, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff) VALUES (772,'Slow_launch_threads','Slow launch threads',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Slow_launch_threads\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, max_retries, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff) VALUES (773,'Qcache_hits','Queries cached successfully',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Qcache_hits\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, max_retries, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff) VALUES (774,'Innodb_data_pending_reads','InnoDB engine pending reads',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Innodb_data_pending_reads\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, max_retries, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff) VALUES (775,'Aborted_connects','Aborted connection attempts',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Aborted_connects\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, max_retries, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff) VALUES (776,'Bytes_received','Bytes received by database (global)',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Bytes_received\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, max_retries, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff) VALUES (777,'Bytes_sent','Bytes_sent by database (global)',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Bytes_sent\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, max_retries, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff) VALUES (778,'MySQL_Updates','Updates per second',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Com_update\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, max_retries, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff) VALUES (779,'MySQL_Deletes','Deletes per second',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Com_delete\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (780,'MySQL Port','Check MySql Port',42,9,0,0,300,3306,'','','public','',2,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (781,'Check Oracle Listener Port','Check Oracle Listener Port',28,9,0,0,300,1521,'','','public','',2,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (782,'Check_MSSQLServer_Port','Check port MSSQL Server',27,9,0,0,300,1433,'','','public','',2,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (783,'Check Informix Port','',19,9,0,0,300,1526,'','','public','',2,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, wizard_level, critical_instructions, warning_instructions, unknown_instructions, tags, disabled_types_event, module_macros) VALUES (784,'Check port DB2','',49,9,0,0,300,50000,'','','public','',2,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO tnetwork_component (id_nc, name, description, id_group, type, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, id_modulo, id_plugin, plugin_user, plugin_pass, plugin_parameter, max_timeout, max_retries, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff) VALUES (785,'Packet Loss','Measure packet loss in the network, using a flood ping (50 ping in 8 secons) and counting back missing packets. It should be zero on most cases. ',10,1,0,0,300,0,'','','','',2,4,9,'','','',0,0,1,10.00,0.00,'',30.00,0.00,'',0,'','','',0,0,0.00000,'%','nowizard','{\"1\":{\macro\":\"_field1_\",\desc\":\Test time\",\help\":\"\",\value\":\"8\",\hide\":\"\"},\"2\":{\macro\":\"_field2_\",\desc\":\Target IP\",\help\":\"\",\value\":\"\",\hide\":\"\"}}','You should check manually the packet loss of the network with a flood ping on targeted host (ping -c 100 -f xxxx). Aditionally, and due the major packet loss, probably you can see a simple ping failing here. Check your network equipment.','You should check manually the packet loss of the network with a flood ping on targeted host (ping -c 100 -f xxxx)','',0,0,0,'','{\going_unknown\":0}','',0,0,0,0); - --- Update curr val of sequence -update_currval('tnetwork_component', 'id_nc'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER tnetwork_component_inc ENABLE'; - -COMMIT; -END;; - --- --- Dumping data for table tnetwork_component_group --- -BEGIN -LOCK TABLE tnetwork_component_group IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER tnetwork_component_group_inc DISABLE'; - -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (1,'General group',0); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (2,'Cisco MIBs',10); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (5,'UNIX Systems',12); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (10,'Network Management',0); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (11,'Microsoft Windows',12); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (12,'Operating Systems',0); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (13,'UCD Mibs (Linux, UCD-SNMP)',12); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (14,'WMI',12); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (15,'Databases',0); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (16,'Windows System',14); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (17,'Windows Hardware Layer',14); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (18,'Windows AD',14); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (19,'Windows IIS',14); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (20,'Windows Exchange',14); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (21,'Windows LDAP',14); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (22,'Windows MSDTC',14); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (23,'Catalyst 2900',2); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (24,'Windows Printers',14); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (25,'Citrix',0); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (26,'Exchange Services',20); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (27,'MS SQL Server',15); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (28,'Oracle',15); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (29,'Antivirus',0); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (30,'Norton',29); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (31,'Panda',29); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (32,'McAfee',29); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (33,'Bitdefender',29); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (34,'Windows DNS',14); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (35,'DNS Counters',34); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (36,'AD Counters',18); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (37,'BullGuard',29); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (38,'IIS services',19); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (39,'Exchange TCP Ports',20); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (40,'AVG',29); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (41,'Kaspersky',29); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (42,'MySQL',15); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (43,'Linux',5); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (44,'HP-UX',5); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (45,'Solaris',5); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (46,'AIX',5); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (47,'BSD',5); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (48,'MacOS',0); -INSERT INTO tnetwork_component_group (id_sg, name, parent) VALUES (49,'DB2',15); - --- Update curr val of sequence -update_currval('tnetwork_component_group', 'id_sg'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER tnetwork_component_group_inc ENABLE'; - -COMMIT; -END;; - --- --- Dumping data for table Network profile --- -BEGIN -LOCK TABLE tnetwork_profile IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER tnetwork_profile_inc DISABLE'; - -INSERT INTO tnetwork_profile (id_np, name, description) VALUES (2,'Basic Monitoring','Only ICMP check'); -INSERT INTO tnetwork_profile (id_np, name, description) VALUES (3,'Basic DMZ Server monitoring','This group of network checks, checks for default services located on DMZ servers...'); -INSERT INTO tnetwork_profile (id_np, name, description) VALUES (7,'Linux Server with SNMP','Group of "basic" modules for SNMP monitoring of Linux remote devices. This includes basic conectivity checks and a full range of System'); - --- Update curr val of sequence -update_currval('tnetwork_profile', 'id_np'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER tnetwork_profile_inc ENABLE'; - -COMMIT; -END;; - --- --- Dumping data for table tnetwork_profile_component --- -BEGIN -LOCK TABLE tnetwork_profile_component IN EXCLUSIVE MODE; - -INSERT INTO tnetwork_profile_component (id_nc, id_np) VALUES (34,2); -INSERT INTO tnetwork_profile_component (id_nc, id_np) VALUES (34,3); -INSERT INTO tnetwork_profile_component (id_nc, id_np) VALUES (37,3); -INSERT INTO tnetwork_profile_component (id_nc, id_np) VALUES (39,3); -INSERT INTO tnetwork_profile_component (id_nc, id_np) VALUES (38,3); -INSERT INTO tnetwork_profile_component (id_nc, id_np) VALUES (4,7); -INSERT INTO tnetwork_profile_component (id_nc, id_np) VALUES (34,7); -INSERT INTO tnetwork_profile_component (id_nc, id_np) VALUES (30,7); -INSERT INTO tnetwork_profile_component (id_nc, id_np) VALUES (27,7); -INSERT INTO tnetwork_profile_component (id_nc, id_np) VALUES (24,7); -INSERT INTO tnetwork_profile_component (id_nc, id_np) VALUES (49,7); -INSERT INTO tnetwork_profile_component (id_nc, id_np) VALUES (51,7); -INSERT INTO tnetwork_profile_component (id_nc, id_np) VALUES (36,2); -INSERT INTO tnetwork_profile_component (id_nc, id_np) VALUES (36,3); - -COMMIT; -END;; - --- GIS -BEGIN -LOCK TABLE tgis_map IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER tgis_map_inc DISABLE'; - -INSERT INTO tgis_map VALUES (1,'Sample',-3.708187,40.42056,0,16,'',-3.708187,40.42056,0,0,1); - --- Update curr val of sequence -update_currval('tgis_map', 'id_tgis_map'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER tgis_map_inc ENABLE'; - -COMMIT; -END;; - -BEGIN -LOCK TABLE tgis_map_connection IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER tgis_map_connection_inc DISABLE'; - -INSERT INTO tgis_map_connection VALUES (1,'OpenStreetMap (MapQuest Open)','OSM','{"type":"OSM","url":"http://otile1.mqcdn.com/tiles/1.0.0/map/${z}/${x}/${y}.png"}',19,16,-3.708187,40.42056,0,-3.708187,40.42056,0,0); -INSERT INTO tgis_map_connection VALUES (2,'OpenStreetMap (Standard)','OSM','{"type":"OSM","url":"http://tile.openstreetmap.org/${z}/${x}/${y}.png"}',19,16,-3.708187,40.42056,0,-3.708187,40.42056,0,0); - --- Update curr val of sequence -update_currval('tgis_map_connection', 'id_tmap_connection'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER tgis_map_connection_inc ENABLE'; - -COMMIT; -END;; - --- This table is commented because table name length is more 30 chars. TODO: Change it's name - -BEGIN -LOCK TABLE tgis_map_has_tgis_map_con IN EXCLUSIVE MODE; - -INSERT INTO tgis_map_has_tgis_map_con VALUES (1,1,'1970-01-01 00:00:00',1); - -COMMIT; -END;; - - -BEGIN -LOCK TABLE tgis_map_layer IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER tgis_map_layer_inc DISABLE'; - -INSERT INTO tgis_map_layer VALUES (1,'Group All',1,0,1,0); - --- Update curr val of sequence -update_currval('tgis_map_layer', 'id_tmap_layer'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER tgis_map_layer_inc ENABLE'; - -COMMIT; -END;; - - -BEGIN -LOCK TABLE talert_actions IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER talert_actions_inc DISABLE'; - -INSERT INTO talert_actions (id, name, id_alert_command, field1, field2, field3, field4, field5, field6, field7, field8, field9, field10, id_group, action_threshold, field1_recovery, field2_recovery, field3_recovery, field4_recovery, field5_recovery, field6_recovery, field7_recovery, field8_recovery, field9_recovery, field10_recovery) VALUES (1,'Mail to Admin',1,'yourmail@domain.es','[PANDORA] Alert from agent _agent_ on module _module_','','','','','','','','',0,0,'','','','','','','','','',''); -INSERT INTO talert_actions (id, name, id_alert_command, field1, field2, field3, field4, field5, field6, field7, field8, field9, field10, id_group, action_threshold, field1_recovery, field2_recovery, field3_recovery, field4_recovery, field5_recovery, field6_recovery, field7_recovery, field8_recovery, field9_recovery, field10_recovery) VALUES (2,'Restart agent',12,'REFRESH AGENT *','','','','','','','','','',0,0,'','','','','','','','','',''); -INSERT INTO talert_actions (id, name, id_alert_command, field1, field2, field3, field4, field5, field6, field7, field8, field9, field10, id_group, action_threshold, field1_recovery, field2_recovery, field3_recovery, field4_recovery, field5_recovery, field6_recovery, field7_recovery, field8_recovery, field9_recovery, field10_recovery) VALUES (3,'Pandora FMS Event',3,'_agent_ _module_ generated an event alert (_data_)','alert_fired','pandora','','4','','','','','',0,0,'RECOVERED: _agent_ _module_ generated event alert (_data_)','alert_ceased','pandora','','4','','','','',''); -INSERT INTO talert_actions (id, name, id_alert_command, field1, field2, field3, field4, field5, field6, field7, field8, field9, field10, id_group, action_threshold, field1_recovery, field2_recovery, field3_recovery, field4_recovery, field5_recovery, field6_recovery, field7_recovery, field8_recovery, field9_recovery, field10_recovery) VALUES (4,'Create a ticket in Integria IMS',11,'http://localhost/integria/include/api.php','1234','admin','integria','_agent_: _alert_name_','1','3','copy@dom.com','admin','_alert_description_',0,0,'','','','','','','','','',''); - --- Update curr val of sequence -update_currval('talert_actions', 'id'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER talert_actions_inc ENABLE'; - -COMMIT; -END;; - -BEGIN -LOCK TABLE talert_templates IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER talert_templates_inc DISABLE'; - -INSERT INTO talert_templates (id, name, description, id_alert_action, field1, field2, field3, type, value, matches_value, max_value, min_value, time_threshold, max_alerts, min_alerts, time_from, time_to, monday, tuesday, wednesday, thursday, friday, saturday, sunday, recovery_notify, field2_recovery, field3_recovery, priority, id_group, special_day, wizard_level) VALUES (1,'Critical condition','This is a generic alert template to fire on condition CRITICAL',1,'','','Hello, this is an automated email coming from Pandora FMS\r\n\r\nThis alert has been fired because a CRITICAL condition in one of your monitored items:\r\n\r\nAgent : _agent_\r\nModule: _module_\r\nModule description: _moduledescription_\r\nTimestamp _timestamp_\r\nCurrent value: _data_\r\n\r\nThanks for your time.\r\n\r\nBest regards\r\nPandora FMS\r\n','critical','',1,0.00,0.00,86400,1,0,to_date('12:00:00','hh24:mi:ss'),to_date('12:00:00','hh24:mi:ss'),1,1,1,1,1,1,1,1,'[PANDORA] Alert RECOVERED for CRITICAL status on _agent_ / _module_','Hello, this is an automated email coming from Pandora FMS\r\n\r\nThis alert has been RECOVERED from a CRITICAL condition in one of your monitored items:\r\n\r\nAgent : _agent_\r\nModule: _module_\r\nModule description: _moduledescription_\r\nTimestamp _timestamp_\r\nCurrent value: _data_\r\n\r\nThanks for your time.\r\n\r\nBest regards\r\nPandora FMS\r\n',4,0,0,'basic'); -INSERT INTO talert_templates (id, name, description, id_alert_action, field1, field2, field3, type, value, matches_value, max_value, min_value, time_threshold, max_alerts, min_alerts, time_from, time_to, monday, tuesday, wednesday, thursday, friday, saturday, sunday, recovery_notify, field2_recovery, field3_recovery, priority, id_group, special_day, wizard_level) VALUES (2,'Manual alert','This is a template used to fire manual alerts, condition defined here never will be executed. Use this template to assign to your actions/commands used to do remote management (Agent restart, execute commands on server, etc).',NULL,'','','','max_min','',1,0.00,1.00,86400,1,0,to_date('12:00:00','hh24:mi:ss'),to_date('12:00:00','hh24:mi:ss'),1,1,1,1,1,1,1,0,'','',1,0,0,'basic'); -INSERT INTO talert_templates (id, name, description, id_alert_action, field1, field2, field3, type, value, matches_value, max_value, min_value, time_threshold, max_alerts, min_alerts, time_from, time_to, monday, tuesday, wednesday, thursday, friday, saturday, sunday, recovery_notify, field2_recovery, field3_recovery, priority, id_group, special_day, wizard_level) VALUES (3,'Warning condition','This is a generic alert template to fire on WARNING condition.',1,'','','Hello, this is an automated email coming from Pandora FMS This alert has been fired because a WARNING condition in one of your monitored items: Agent : _agent_ Module: _module_ Module description: _moduledescription_ Timestamp _timestamp_ Current value: _data_ Thanks for your time. Best regards Pandora FMS ','warning','',1,0.00,0.00,86400,1,0,to_date('12:00:00','hh24:mi:ss'),to_date('12:00:00','hh24:mi:ss'),1,1,1,1,1,1,1,1,'[PANDORA] Alert RECOVERED for WARNING status on _agent_ / _module_','Hello, this is an automated email coming from Pandora FMS This alert has been RECOVERED from a WARNING condition in one of your monitored items: Agent : _agent_ Module: _module_ Module description: _moduledescription_ Timestamp _timestamp_ Current value: _data_ Thanks for your time. Best regards Pandora FMS ',3,0,0,'basic'); - --- Update curr val of sequence -update_currval('talert_templates', 'id'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER talert_templates_inc ENABLE'; - -COMMIT; -END;; - --- treport_custom_sql Data --- procedure to insert more than 4000 chars into a string -CREATE OR REPLACE PROCEDURE treport_custom_sql_insert (IDX IN NUMBER, NAME IN VARCHAR2, SQL_TXT IN VARCHAR2, FLAG IN NUMBER := 0 ) AS g_nclob CLOB; BEGIN IF FLAG = 0 THEN INSERT INTO treport_custom_sql (id, name, sql) VALUES (IDX, NAME, empty_clob()) RETURNING sql INTO g_nclob; DBMS_LOB.write(g_nclob, length (SQL_TXT), 1, SQL_TXT); ELSE SELECT sql INTO g_nclob FROM treport_custom_sql WHERE id = IDX FOR UPDATE; DBMS_LOB.writeappend(g_nclob, length(SQL_TXT), SQL_TXT); END IF; END treport_custom_sql_insert;; - -BEGIN -LOCK TABLE treport_custom_sql IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER treport_custom_sql_inc DISABLE'; - -INSERT INTO treport_custom_sql (id, name, sql) VALUES (1, 'Monitoring Report Agent', 'select direccion, nombre, comentarios, (select nombre from tgrupo where tgrupo.id_grupo = tagente.id_grupo) as group from tagente;'); -INSERT INTO treport_custom_sql (id, name, sql) VALUES (2, 'Monitoring Report Modules', 'select (select tagente.nombre from tagente where tagente.id_agente = tagente_modulo.id_agente) as agent_name, nombre , (select tmodule_group.name from tmodule_group where tmodule_group.id_mg = tagente_modulo.id_module_group) as module_group, module_interval from tagente_modulo where delete_pending = 0 order by agent_name;'); -INSERT INTO treport_custom_sql (id, name, sql) VALUES (3, 'Monitoring Report Alerts', 'select t1.nombre as agent_name, t2.nombre as module_name, (select talert_templates.name from talert_templates where talert_templates.id = t3.id_alert_template) as template, (select group_concat(t02.name) from talert_template_module_actions as t01 inner join talert_actions as t02 on t01.id_alert_action = t02.id where t01.id_alert_template_module = t3.id group by t01.id_alert_template_module) as actions from tagente as t1 inner join tagente_modulo as t2 on t1.id_agente = t2.id_agente inner join talert_template_modules as t3 on t2.id_agente_modulo = t3.id_agent_module order by agent_name, module_name;'); - -treport_custom_sql_insert(4, 'Group view', 'select t1.nombre, (select count(t3.id_agente) from tagente t3 where t1.id_grupo =',0); - -treport_custom_sql_insert(4, 'Group view',' t3.id_grupo) agents, (SELECT COUNT(t4.id_agente) FROM tagente ',1); - -treport_custom_sql_insert(4, 'Group view','t4 WHERE t4.id_grupo = t1.id_grupo AND t4.disabled = 0 AND t4.ultimo_contacto ',1); - -treport_custom_sql_insert(4, 'Group view','< NOW() - (intervalo /',1); - -treport_custom_sql_insert(4, 'Group view',' (1/2))) agent_unknown, (SELECT COUNT(tagente_estado.id_agente_estado) FROM tagente_estado,',1); - -treport_custom_sql_insert(4,'Group view',' tagente, tagente_modulo WHERE tagente.id_grupo = t1.id_grupo AND tagente.disabled = 0 ',1); - -treport_custom_sql_insert(4, 'Group view','AND tagente.id_agente = tagente_estado.id_agente AND tagente_estado.id_agente_modulo = tagente_modulo.id_agente_modulo AND ',1); - -treport_custom_sql_insert(4, 'Group view','tagente_modulo.disabled = 0 AND utimestamp > 0 AND tagente_modulo.id_tipo_modulo NOT IN(21,22,23,24,100) ',1); - -treport_custom_sql_insert(4, 'Group view','AND (UNIX_TIMESTAMP(NOW()) -',1); - -treport_custom_sql_insert(4, 'Group view',' tagente_estado.utimestamp) >= (tagente_estado.current_interval /',1); - -treport_custom_sql_insert(4,'Group view',' (1/2))) monitor_unknow, (SELECT COUNT(tagente_estado.id_agente_estado) FROM tagente_estado, tagente,',1); - -treport_custom_sql_insert(4, 'Group view',' tagente_modulo WHERE tagente.id_grupo = t1.id_grupo AND tagente.disabled = 0 AND tagente.id_agente = ',1); - -treport_custom_sql_insert(4, 'Group view','tagente_estado.id_agente AND tagente_estado.id_agente_modulo = tagente_modulo.id_agente_modulo AND tagente_modulo.disabled = 0 ',1); - -treport_custom_sql_insert(4, 'Group view','AND tagente_modulo.id_tipo_modulo NOT IN (21,22,23,24) AND utimestamp = 0) monitor_no_init, (SELECT ',1); - -treport_custom_sql_insert(4, 'Group view','COUNT(tagente_estado.id_agente_estado) FROM tagente_estado, tagente, tagente_modulo WHERE tagente.id_grupo = t1.id_grupo ',1); - -treport_custom_sql_insert(4, 'Group view','AND tagente.disabled = 0 AND tagente_estado.id_agente = tagente.id_agente AND tagente_estado.id_agente_modulo = tagente_modulo.',1); - -treport_custom_sql_insert(4, 'Group view','id_agente_modulo AND tagente_modulo.disabled = 0 AND estado = 0 AND ((UNIX_TIMESTAMP(NOW()) -',1); - -treport_custom_sql_insert(4, 'Group view',' tagente_estado.utimestamp) < (tagente_estado.current_interval /',1); - -treport_custom_sql_insert(4,'Group view',' (1/2)) OR (tagente_modulo.id_tipo_modulo IN(21,22,23,24,100))) AND (utimestamp > 0 OR ',1); - -treport_custom_sql_insert(4, 'Group view','(tagente_modulo.id_tipo_modulo IN(21,22,23,24)))) monitor_ok, (SELECT COUNT(tagente_estado.id_agente_estado) ',1); - -treport_custom_sql_insert(4, 'Group view','FROM tagente_estado, tagente, tagente_modulo WHERE tagente.id_grupo = t1.id_grupo AND tagente.disabled = 0 AND ',1); - -treport_custom_sql_insert(4, 'Group view','tagente_estado.id_agente = tagente.id_agente AND tagente_estado.id_agente_modulo = tagente_modulo.id_agente_modulo AND tagente_modulo.disabled&',1); - -treport_custom_sql_insert(4, 'Group view','#x20;= 0 AND estado = 1 AND ((UNIX_TIMESTAMP(NOW()) -',1); - -treport_custom_sql_insert(4, 'Group view',' tagente_estado.utimestamp) < (tagente_estado.current_interval /',1); - -treport_custom_sql_insert(4, 'Group view',' (1/2)) OR (tagente_modulo.id_tipo_modulo IN(21,22,23,24,100))) AND utimestamp > 0) ',1); - -treport_custom_sql_insert(4, 'Group view','monitor_critical, (SELECT COUNT(talert_template_modules.id) FROM talert_template_modules, tagente_modulo, tagente_estado, tagente ',1); - -treport_custom_sql_insert(4, 'Group view','WHERE tagente.id_grupo = t1.id_grupo AND tagente_modulo.id_agente = tagente.id_agente AND tagente_estado.id_agente_modulo = ',1); - -treport_custom_sql_insert(4, 'Group view','tagente_modulo.id_agente_modulo AND tagente_modulo.disabled = 0 AND tagente.disabled = 0 AND talert_template_modules.id_agent_module ',1); - -treport_custom_sql_insert(4, 'Group view','= tagente_modulo.id_agente_modulo AND times_fired > 0) monitor_alert_fired from tgrupo t1 where 0 ',1); - -treport_custom_sql_insert(4, 'Group view','< (select count(t2.id_agente) from tagente t2 where t1.id_grupo = t2.id_grupo)',1); - --- Update curr val of sequence -update_currval('treport_custom_sql', 'id'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER treport_custom_sql_inc ENABLE'; - -COMMIT; -END;; - -BEGIN -LOCK TABLE trecon_script IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER trecon_script_inc DISABLE'; - -INSERT INTO trecon_script VALUES (2,'IPMI Recon','Specific Pandora FMS Intel DCM Discovery (c) Artica ST 2011 <info@artica.es> Usage: ./ipmi-recon.pl <task_id> <group_id> <create_incident_flag> <custom_field1> <custom_field2> <custom_field3> <custom_field4> * custom_field1 = Network i.e.: 192.168.100.0/24 * custom_field2 = Username * custom_field3 = Password * custom_field4 = Additional parameters i.e.: -D LAN_2_0','/usr/share/pandora_server/util/recon_scripts/ipmi-recon.pl','{"1":{"macro":"_field1_","desc":"Network","help":"i.e.: 192.168.100.0/24","value":"","hide":""},"2":{"macro":"_field2_","desc":"Username","help":"","value":"","hide":""},"3":{"macro":"_field3_","desc":"Password","help":"","value":"","hide":"1"},"4":{"macro":"_field4_","desc":"Additional parameters","help":"Optional additional parameters such as -D LAN_2_0 to use IPMI ver 2.0 instead of 1.5. These options will also be passed to the IPMI plugin when the current values are read.","value":"","hide":""}}'); -INSERT INTO trecon_script VALUES (4,'SNMP L2 Recon','Pandora FMS SNMP Recon Plugin for level 2 network topology discovery. (c) Artica ST 2014 <info@artica.es> Usage: ./snmp-recon.pl <task_id> <group_id> <create_incident> <custom_field1> <custom_field2> [custom_field3] [custom_field4] * custom_field1 = comma separated list of networks (i.e.: 192.168.1.0/24,192.168.2.0/24) * custom_field2 = comma separated list of snmp communities to try. * custom_field3 = a router in the network. Optional but recommended. * custom_field4 = set to -a to add all network interfaces (by default only interfaces that are up are added). Additional information: When the script is called from a recon task the task_id, group_id and create_incident parameters are automatically filled by the Pandora FMS Server.','/usr/share/pandora_server/util/recon_scripts/snmp-recon.pl','{"1":{"macro":"_field1_","desc":"Network","help":"Comma separated list of networks (i.e.: 192.168.1.0/24,192.168.2.0/24)","value":"","hide":""},"2":{"macro":"_field2_","desc":"Community","help":"Comma separated list of snmp communities to try.","value":"","hide":""},"3":{"macro":"_field3_","desc":"Router","help":"A router in the network. Optional but recommended.","value":"","hide":""},"4":{"macro":"_field4_","desc":"Optional parameter","help":"Set to -a to add all network interfaces (by default only interfaces that are up are added).","value":"","hide":""}}'); -INSERT INTO trecon_script VALUES (5,'WMI Recon Script','This script is used to automatically gather host information via WMI. Available parameters: * Network = network to scan (e.g. 192.168.100.0/24). * WMI auth = comma separated list of WMI authentication tokens in the format username%password (e.g. Administrador%pass). See the documentation for more information.','/usr/share/pandora_server/util/recon_scripts/wmi-recon.pl','{"1":{"macro":"_field1_","desc":"Network","help":"","value":"","hide":""},"2":{"macro":"_field2_","desc":"WMI auth","help":"","value":"","hide":""}}'); - --- Update curr val of sequence -update_currval('trecon_script', 'id_recon_script'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER trecon_script_inc ENABLE'; - -COMMIT; -END;; - -BEGIN -LOCK TABLE tplugin IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER tplugin_inc DISABLE'; - -INSERT INTO tplugin (id, name, description, max_timeout, execute, plugin_type, macros, parameters) VALUES (1,'IPMI Plugin','Plugin to get IPMI monitors from a IPMI Device.',0,'/usr/share/pandora_server/util/plugin/ipmi-plugin.pl',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":"","hide":""},"2":{"macro":"_field2_","desc":"Username","help":"","value":"","hide":""},"3":{"macro":"_field3_","desc":"Password","help":"","value":"","hide":"true"},"4":{"macro":"_field4_","desc":"Sensor","help":"","value":"","hide":""},"5":{"macro":"_field5_","desc":"Additional Options","help":"","value":"","hide":""}}','-h _field1_ -u _field2_ -p _field3_ -s _field4_ -- _field5_'); -INSERT INTO tplugin (id, name, description, max_timeout, execute, plugin_type, macros, parameters) VALUES (2,'DNS Plugin','This plugin is used to check if a specific domain return a specific IP address, and to check how time (milisecs) takes the DNS to answer. Use IP address parameter to specify the IP of your domain. Use these custom parameters for the other parameters: -d domain to check (for example pandorafms.com) -s DNS Server to check (for example 8.8.8.8) Optional parameters: -t Do a DNS time response check instead DNS resolve test ',15,'/usr/share/pandora_server/util/plugin/dns_plugin.sh',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":""},"2":{"macro":"_field2_","desc":"Domain to check","help":"For example pandorafms.com","value":""},"3":{"macro":"_field3_","desc":"DNS Server to check","help":"For example 8.8.8.8","value":""},"4":{"macro":"_field4_","desc":"Optional parameters","help":"","value":""}}','-i _field1_ -d _field2_ -s _field3_ _field4_'); -INSERT INTO tplugin (id, name, description, max_timeout, execute, plugin_type, macros, parameters) VALUES (3,'UDP port check','Check a remote UDP port (by using NMAP). Use IP address and Port options.',5,'/usr/share/pandora_server/util/plugin/udp_nmap_plugin.sh',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":""},"2":{"macro":"_field2_","desc":"Port","help":"","value":""}}','-t _field1_-p _field2_'); -INSERT INTO tplugin (id, name, description, max_timeout, execute, plugin_type, macros, parameters) VALUES (4,'SMTP Check','This plugin is used to send a mail to a SMTP server and check if works. Parameters in the plugin: IP Address - SMTP Server IP address User - AUTH login Pass - AUTH password Port - SMTP port (optional) Optional parameters: -d Destination email -f Email of the sender -a Authentication system. Could be LOGIN, PLAIN, CRAM-MD5 or DIGEST-MD',10,'/usr/share/pandora_server/util/plugin/SMTP_check.pl',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":""},"2":{"macro":"_field2_","desc":"Port","help":"","value":""},"3":{"macro":"_field3_","desc":"Username","help":"","value":""},"4":{"macro":"_field4_","desc":"Password","help":"","value":""},"5":{"macro":"_field5_","desc":"Optional parameters","help":"","value":""}}','-h _field1_ -o _field2_ -u _field3_ -p _field4_ _field5_'); -INSERT INTO tplugin (id, name, description, max_timeout, execute, plugin_type, macros, parameters) VALUES (6,'MySQL Plugin','Samples: ./mysql_plugin.sh -u root -p none -s localhost -q Com_select ./mysql_plugin.sh -u root -p none -s localhost -q Com_update ./mysql_plugin.sh -u root -p none -s localhost -q Connections ./mysql_plugin.sh -u root -p anypass -s 192.168.50.24 -q Innodb_rows_read ',15,'/usr/share/pandora_server/util/plugin/mysql_plugin.sh',0,'{"1":{"macro":"_field1_","desc":"IP address","help":"IP address","value":""},"2":{"macro":"_field2_","desc":"Username","help":"Username to access to database","value":""},"3":{"macro":"_field3_","desc":"Password","help":"Password to access to database","value":""},"4":{"macro":"_field4_","desc":"Query string","help":"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'","value":""}}', '-s _field1_ -u _field2_ -p _field3_ -q _field4_'); -INSERT INTO tplugin (id, name, description, max_timeout, execute, plugin_type, macros, parameters) VALUES (8,'SNMP remote','Plugin that gets remotely, using SNMP, values such as the percentage of disk or memory used, the status of a process or the CPU load',0,'perl /usr/share/pandora_server/util/plugin/snmp_remote.pl',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":"_address_"},"2":{"macro":"_field2_","desc":"Community","help":"","value":"public"},"3":{"macro":"_field3_","desc":"Plug-in Parameters","help":"Memory use (%) -m memuse Disk use (%) -m diskuse -d [disk name] Status of a process (0/1) -m process -p [process_name] Average of CPUs Load (%) -m cpuload","value":""}}', '-H _field1_ -c _field2_ _field3_'); -INSERT INTO tplugin (id, name, description, max_timeout, max_retries, execute, net_dst_opt, net_port_opt, user_opt, pass_opt, plugin_type, macros, parameters) VALUES (9,'Packet Loss','Checks for dropped packages after X seconds of testing. It returns % of dropped packets. It uses ping flood mode to launch 50 consecutive pings to a remote destination. On local, stable networks, value should be 0. ',30,0,'/usr/share/pandora_server/util/plugin/packet_loss.sh','','','','',0,'{\"1\":{\"macro\":\"_field1_\",\"desc\":\"Test time\",\"help\":\"\",\"value\":\"8\",\"hide\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Target IP\",\"help\":\"\",\"value\":\"\",\"hide\":\"\"}}','_field1_ _field2_'); - --- Update curr val of sequence -update_currval('tplugin', 'id'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER tplugin_inc ENABLE'; - -COMMIT; -END;; - -BEGIN -LOCK TABLE tagent_custom_fields IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER tagent_custom_fields_inc DISABLE'; - -INSERT INTO tagent_custom_fields VALUES (1,'Serial Number',0); -INSERT INTO tagent_custom_fields VALUES (2,'Department',0); -INSERT INTO tagent_custom_fields VALUES (3,'Additional ID',0); -INSERT INTO tagent_custom_fields VALUES (4,'eHorusID',0); - --- Update curr val of sequence -update_currval('tagent_custom_fields', 'id_field'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER tagent_custom_fields_inc ENABLE'; - -COMMIT; -END;; - - -BEGIN -LOCK TABLE ttag IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER ttag_inc DISABLE'; - -INSERT INTO ttag (id_tag, name, description, url, email) VALUES (1,'network','Network equipment','http://artica.es',''); -INSERT INTO ttag (id_tag, name, description, url, email) VALUES (2,'critical','Critical modules','',''); -INSERT INTO ttag (id_tag, name, description, url, email) VALUES (3,'dmz','DMZ Network Zone','',''); -INSERT INTO ttag (id_tag, name, description, url, email) VALUES (4,'performance','Performance anda capacity modules','',''); -INSERT INTO ttag (id_tag, name, description, url, email) VALUES (5,'configuration','','',''); - --- Update curr val of sequence -update_currval('ttag', 'id_tag'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER ttag_inc ENABLE'; - -COMMIT; -END;; - - -BEGIN -LOCK TABLE tevent_response IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER tevent_response_inc DISABLE'; - -INSERT INTO tevent_response VALUES (1,'Ping to host','Ping to the agent host','ping -c 5 _agent_address_','command',0,620,500,0,''); -INSERT INTO tevent_response VALUES (2,'SSH to host','Connect via SSH to the agent','http://192.168.70.164:8022/anyterm.html?param=_User_@_agent_address_','url',0,800,450,0,'User'); -INSERT INTO tevent_response VALUES (3,'Create incident from event','Create a incident from the event with the standard incidents system of Pandora FMS','index.php?sec=workspace&sec2=operation/incidents/incident_detail&insert_form&from_event=_event_id_','url',0,0,0,1,''); -INSERT INTO tevent_response VALUES (4,'Create Integria IMS incident from event','Create a incident from the event with integria incidents system of Pandora FMS. Is necessary to enable and configure the Integria incidents in Pandora FMS setup.','index.php?sec=workspace&sec2=operation/integria_incidents/incident&tab=editor&from_event=_event_id_','url',0,0,0,1,''); -INSERT INTO tevent_response VALUES (5,'Restart agent','Restart the agent with using UDP protocol. To use this response is necessary to have installed Pandora FMS server and console in the same machine.','/usr/share/pandora_server/util/udp_client.pl _agent_address_ 41122 "REFRESH AGENT"','command',0,620,500,0,''); -INSERT INTO tevent_response VALUES (6,'Ping to module agent host','Ping to the module agent host','ping -c 5 _module_address_','command',0,620,500,0,''); - --- Update curr val of sequence -update_currval('tevent_response', 'id'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER tevent_response_inc ENABLE'; - -COMMIT; -END;; - -BEGIN -LOCK TABLE tupdate_settings IN EXCLUSIVE MODE; - -INSERT INTO tupdate_settings VALUES ('current_update', '412'); -INSERT INTO tupdate_settings VALUES ('customer_key', 'PANDORA-FREE'); -INSERT INTO tupdate_settings VALUES ('updating_binary_path', 'Path where the updated binary files will be stored'); -INSERT INTO tupdate_settings VALUES ('updating_code_path', 'Path where the updated code is stored'); -INSERT INTO tupdate_settings VALUES ('dbname', ''); -INSERT INTO tupdate_settings VALUES ('dbhost', ''); -INSERT INTO tupdate_settings VALUES ('dbpass', ''); -INSERT INTO tupdate_settings VALUES ('dbuser', ''); -INSERT INTO tupdate_settings VALUES ('dbport', ''); -INSERT INTO tupdate_settings VALUES ('proxy', ''); -INSERT INTO tupdate_settings VALUES ('proxy_port', ''); -INSERT INTO tupdate_settings VALUES ('proxy_user', ''); -INSERT INTO tupdate_settings VALUES ('proxy_pass', ''); - -COMMIT; -END;; - -BEGIN -LOCK TABLE tmodule IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER tmodule_inc DISABLE'; - -INSERT INTO tmodule VALUES (7, 'Web module'); - --- Update curr val of sequence -update_currval('tmodule', 'id_module'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER tmodule_inc ENABLE'; - -COMMIT; -END;; - -BEGIN -LOCK TABLE ttipo_modulo IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER ttipo_modulo_inc DISABLE'; - -INSERT INTO ttipo_modulo VALUES (30,'web_data',9,'Remote HTTP module to check latency','mod_web_data.png'); -INSERT INTO ttipo_modulo VALUES (31,'web_proc',9,'Remote HTTP module to check server response','mod_web_proc.png'); -INSERT INTO ttipo_modulo VALUES (32,'web_content_data',9,'Remote HTTP module to retrieve numeric data','mod_web_data.png'); -INSERT INTO ttipo_modulo VALUES (33,'web_content_string',9,'Remote HTTP module to retrieve string data','mod_web_data.png'); - --- Update curr val of sequence -update_currval('ttipo_modulo', 'id_tipo'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER ttipo_modulo_inc ENABLE'; - -COMMIT; -END;; - --- Some inserts to this table are divided cause oracle cannot perform an insert of a string with a length above the 4000 characters -BEGIN -LOCK TABLE tmodule_inventory IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER tmodule_inventory_inc DISABLE'; - -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (1,1,'CPU','CPU','/usr/bin/perl','Model;Company;Speed','IyEvdXNyL2Jpbi9wZXJsDQojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KIyBwYW5kb3JhX2NwdS5wbA0KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCiMgQ29weXJpZ2h0IChjKSAyMDA4IFJhbW9uIE5vdm9hLCBybm92b2FAYXJ0aWNhLmVzDQojICAgICAgICAgICAoYykgMjAwOCBBcnRpY2EgU29sdWNpb25lcyBUZWNub2xvZ2ljYXMgUy5MDQojDQojIFRoaXMgcHJvZ3JhbSBpcyBmcmVlIHNvZnR3YXJlOyB5b3UgY2FuIHJlZGlzdHJpYnV0ZSBpdCBhbmQvb3INCiMgbW9kaWZ5IGl0IHVuZGVyIHRoZSB0ZXJtcyBvZiB0aGUgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UNCiMgYXMgcHVibGlzaGVkIGJ5IHRoZSBGcmVlIFNvZnR3YXJlIEZvdW5kYXRpb247IHZlcnNpb24gMi4NCiMNCiMgVGhpcyBwcm9ncmFtIGlzIGRpc3RyaWJ1dGVkIGluIHRoZSBob3BlIHRoYXQgaXQgd2lsbCBiZSB1c2VmdWwsDQojIGJ1dCBXSVRIT1VUIEFOWSBXQVJSQU5UWTsgd2l0aG91dCBldmVuIHRoZSBpbXBsaWVkIHdhcnJhbnR5IG9mDQojIE1FUkNIQU5UQUJJTElUWSBvciBGSVRORVNTIEZPUiBBIFBBUlRJQ1VMQVIgUFVSUE9TRS4gIFNlZSB0aGUNCiMgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UgZm9yIG1vcmUgZGV0YWlscy4NCiMgWW91IHNob3VsZCBoYXZlIHJlY2VpdmVkIGEgY29weSBvZiB0aGUgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UNCiMgYWxvbmcgd2l0aCB0aGlzIHByb2dyYW07IGlmIG5vdCwgd3JpdGUgdG8gdGhlIEZyZWUgU29mdHdhcmUNCiMgRm91bmRhdGlvbiwgSW5jLiwgNTEgRnJhbmtsaW4gU3RyZWV0LCBGaWZ0aCBGbG9vciwgQm9zdG9uLCBNQSAgMDIxMTAtMTMwMSwgVVNBLg0KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCg0KdXNlIHN0cmljdDsNCnVzZSB3YXJuaW5nczsNCg0KIyBDaGVjayBmb3Igc3NoDQpteSAkc3NoX2NsaWVudCA9ICJzc2giOw0KaWYgKHN5c3RlbSgiJHNzaF9jbGllbnQgLXYgPiAvZGV2L251bGwgMj4mMSIpID4+IDggIT0gMjU1KSB7DQoJcHJpbnQgIltlcnJvcl0gJHNzaF9jbGllbnQgbm90IGZvdW5kLlxuIjsNCglleGl0IDE7DQp9DQoNCmlmICgkI0FSR1YgPCAxKSB7DQoJcHJpbnQgIlVzYWdlOiAkMCA8dGFyZ2V0IGlwPiA8dXNlcm5hbWU+XG4iOw0KCWV4aXQgMTsNCn0NCg0KbXkgJHRhcmdldF9pcCA9ICRBUkdWWzBdOw0KbXkgJHVzZXJuYW1lID0gJEFSR1ZbMV07DQoNCiMgUmV0cmlldmUgQ1BVIGRhdGENCm15ICgkbW9kZWwsICR2ZW5kb3IsICRzcGVlZCk7DQpteSBAY3B1X2luZm8gPSBgJHNzaF9jbGllbnQgJHVzZXJuYW1lXEAkdGFyZ2V0X2lwICJjYXQgL3Byb2MvY3B1aW5mbyJgOw0KZm9yZWFjaCBteSAkbGluZSAoQGNwdV9pbmZvKSB7DQoJaWYgKCRsaW5lID1+IC9tb2RlbCBuYW1lXHMrOlxzKyguKikvKSB7DQoJCSRtb2RlbCA9ICQxOw0KCX0gZWxzaWYgKCRsaW5lID1+IC92ZW5kb3JfaWRccys6XHMrKC4qKS8pIHsNCgkJJHZlbmRvciA9ICQxOw0KCX0gZWxzaWYgKCRsaW5lID1+IC9jcHUgTUh6XHMrOlxzKyguKikvKSB7DQoJCSRzcGVlZCA9ICQxOw0KCX0NCn0NCiANCnJldHVybiAxIGlmICgkbW9kZWwgZXEgJycgfHwgJHZlbmRvciBlcSAnJyB8fCAkc3BlZWQgZXEgJycpOw0KcHJpbnQgIiRtb2RlbDskdmVuZG9yOyIgLiBzcHJpbnRmICgiJS4wZiIsICRzcGVlZCkgLiAiIE1IelxuIjsNCg0KZXhpdCAwOw0K',0); - -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (2,9,'CPU','CPU','/usr/bin/perl','Name;Speed;Description','IyEvdXNyL2Jpbi9wZXJsDQojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KIyBwYW5kb3JhX2NwdS5wbA0KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCiMgQ29weXJpZ2h0IChjKSAyMDA4IFJhbW9uIE5vdm9hLCBybm92b2FAYXJ0aWNhLmVzDQojICAgICAgICAgICAoYykgMjAwOCBBcnRpY2EgU29sdWNpb25lcyBUZWNub2xvZ2ljYXMgUy5MDQojDQojIFRoaXMgcHJvZ3JhbSBpcyBmcmVlIHNvZnR3YXJlOyB5b3UgY2FuIHJlZGlzdHJpYnV0ZSBpdCBhbmQvb3INCiMgbW9kaWZ5IGl0IHVuZGVyIHRoZSB0ZXJtcyBvZiB0aGUgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UNCiMgYXMgcHVibGlzaGVkIGJ5IHRoZSBGcmVlIFNvZnR3YXJlIEZvdW5kYXRpb247IHZlcnNpb24gMi4NCiMNCiMgVGhpcyBwcm9ncmFtIGlzIGRpc3RyaWJ1dGVkIGluIHRoZSBob3BlIHRoYXQgaXQgd2lsbCBiZSB1c2VmdWwsDQojIGJ1dCBXSVRIT1VUIEFOWSBXQVJSQU5UWTsgd2l0aG91dCBldmVuIHRoZSBpbXBsaWVkIHdhcnJhbnR5IG9mDQojIE1FUkNIQU5UQUJJTElUWSBvciBGSVRORVNTIEZPUiBBIFBBUlRJQ1VMQVIgUFVSUE9TRS4gIFNlZSB0aGUNCiMgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UgZm9yIG1vcmUgZGV0YWlscy4NCiMgWW91IHNob3VsZCBoYXZlIHJlY2VpdmVkIGEgY29weSBvZiB0aGUgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UNCiMgYWxvbmcgd2l0aCB0aGlzIHByb2dyYW07IGlmIG5vdCwgd3JpdGUgdG8gdGhlIEZyZWUgU29mdHdhcmUNCiMgRm91bmRhdGlvbiwgSW5jLiwgNTEgRnJhbmtsaW4gU3RyZWV0LCBGaWZ0aCBGbG9vciwgQm9zdG9uLCBNQSAgMDIxMTAtMTMwMSwgVVNBLg0KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCg0KdXNlIHN0cmljdDsNCnVzZSB3YXJuaW5nczsNCg0KdXNlIEZpbGU6OkJhc2VuYW1lOw0KdXNlIEhUTUw6OkVudGl0aWVzICgpOw0KDQojIENoZWNrIGZvciB3bWljDQpteSAkd21pX2NsaWVudCA9ICJ3bWljIjsNCmlmIChzeXN0ZW0oIiR3bWlfY2xpZW50ID4gL2Rldi9udWxsIDI+JjEiKSAhPSAyNTYpIHsNCglwcmludCAiW2Vycm9yXSAkd21pX2NsaWVudCBub3QgZm91bmQuXG4iOw0KCWV4aXQgMTsNCn0NCg0KaWYgKCQjQVJHViAhPSAyKSB7DQoJcHJpbnQgIlVzYWdlOiAkMCA8dGFyZ2V0IGlwPiA8dXNlcm5hbWU+IDxwYXNzd29yZD5cbiI7DQoJZXhpdCAxOw0KfQ0KDQpteSAkdGFyZ2V0X2lwID0gJEFSR1ZbMF07DQpteSAkdXNlcm5hbWUgPSAkQVJHVlsxXTsNCm15ICRwYXNzd29yZCA9ICRBUkdWWzJdOw0KDQojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KIyBTVUIgcnVuX3F1ZXJ5ICgkd3FsX3F1ZXJ5KQ0KIyBSdW5zIHRoZSBnaXZlbiBXUUwgcXVlcnkgYW5kIHJldHVybnMgdGhlIHJlc3VsdCBhcyBhbiBhcnJheSBvZiBoYXNoZXMuDQojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0Kc3ViIHJ1bl9xdWVyeSB7DQoJbXkgJHdxbF9xdWVyeSA9ICRfWzBdOw0KCW15IEByZXN1bHQgPSB7fTsNCg0KCSR3cWxfcXVlcnkgPX4gJ3MvIi9cJy9nJzsNCg0KCSMgUnVuIHRoZSBEQ09NL1dNSSBjbGllbnQNCglteSAkb3V0cHV0ID0gYCR3bWlfY2xpZW50IC1VICckdXNlcm5hbWUnJSckcGFzc3dvcmQnIC8vJHRhcmdldF9pcCBcIiR3cWxfcXVlcnlcIiAyPi9kZXYvbnVsbGA7DQoNCglteSBAbGluZXMgPSBzcGxpdCgvXG4vLCAkb3V0cHV0KTsNCgkjIEhlYWRlciwgZGVzY3JpcHRpb24sIHJlc3VsdHMNCglpZiAoJCNsaW5lcyA8IDIpIHsNCgkJZXhpdCAxOw0KCX0NCg0KCSMgRHJvcCB0aGUgaGVhZGVyDQoJc2hpZnQgKEBsaW5lcyk7DQoJDQoJIyBHZXQgY29sdW1uIG5hbWVzDQoJbXkgQGNvbHVtbl9uYW1lcyA9IHNwbGl0KC9cfC8sIHNoaWZ0IChAbGluZXMpKTsNCg0KCSMgR2V0IHJvdyBkYXRhDQoJbXkgJGlkeCA9IDA7DQoJZm9yIChteSAkaSA9IDA7ICRpIDw9ICQjbGluZXM7ICRpKyspIHsNCg0KCQkjIENoZWNrIGZvciBlcnJvcnMNCgkJaWYgKCRsaW5lc1skaV0gPX4gbS9eRVJST1IvKSB7DQoJCQlleGl0IDE7DQoJCX0NCg0KCQkjIEJsYWNrIGxpc3QNCgkJaWYgKCRsaW5lc1skaV0gPX4gbS9GaWxlIDEvKSB7DQoJCQluZXh0Ow0KCQl9DQoNCgkJbXkgQGNvbHVtbiA9IHNwbGl0KC9cfC8sICRsaW5lc1skaV0pOw0KCQlmb3IgKG15ICRqID0gMDsgJGogPD0gJCNjb2x1bW5fbmFtZXM7ICRqKyspIHsNCgkJCWlmICghIGRlZmluZWQoJGNvbHVtblskal0pKSB7DQoJCQkJJHJlc3VsdFskaWR4XS0+eyRjb2x1bW5fbmFtZXNbJGpdfSA9ICIiOw0KCQkJfQ0KC',0); -UPDATE tmodule_inventory SET code = code || 'QkJZWxzZSB7DQoJCQkJJHJlc3VsdFskaWR4XS0+eyRjb2x1bW5fbmFtZXNbJGpdfSA9ICRjb2x1bW5bJGpdOw0KCQkJfQ0KCQl9DQoJCQ0KCQkkaWR4Kys7DQoJfQ0KCQ0KCXJldHVybiBAcmVzdWx0Ow0KfQ0KDQojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KIyBTVUIgcHJpbnRfbW9kdWxlZGF0YSAoJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEsIA0KIyAkbW9kdWxlX2Rlc2NyaXB0aW9uLCBAZGF0YSkNCiMgUHJpbnRzIGEgbW9kdWxlZGF0YSBYTUwgdGFnLiAkbW9kdWxlX2l0ZW0sICRtb2R1bGVfZGF0YSBhbmQNCiMgJG1vZHVsZV9kZXNjcmlwdGlvbiBhcmUgdXNlZCB0byBpbmRleCB0aGUgaXRlbSwgZGF0YSBhbmQgZGVzY3JpcHRpb24NCiMgWE1MIHRhZ3MgcmVzcGVjdGl2ZWx5Lg0KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCnN1YiBwcmludF9tb2R1bGVkYXRhIHsNCglteSAkbW9kdWxlX2l0ZW0gPSAkX1swXTsNCglteSAkbW9kdWxlX2RhdGEgPSAkX1sxXTsNCglteSAkbW9kdWxlX2Rlc2NyaXB0aW9uID0gJF9bMl07DQoJbXkgQGRhdGEgPSBAeyRfWzNdfTsNCglteSAkcmVzdWx0Ow0KDQoJZm9yZWFjaCBteSAkZWxlbWVudCAoQGRhdGEpIHsNCgkJDQoJCSRyZXN1bHQgPSAnJzsNCg0KCQkjIEl0ZW0NCgkJaWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2l0ZW19KSkgew0KCQkJJHJlc3VsdCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfaXRlbX0gLiAiOyI7DQoJCX0NCg0KCQkjIERhdGENCgkJaWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2RhdGF9KSkgew0KCQkJJHJlc3VsdCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfZGF0YX0gLiAiIE1oejsiOw0KCQl9DQoNCgkJIyBEZXNjcmlwdGlvbg0KCQlpZiAoZGVmaW5lZCgkZWxlbWVudC0+eyRtb2R1bGVfZGVzY3JpcHRpb259KSkgew0KCQkJJHJlc3VsdCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfZGVzY3JpcHRpb259IC4gIjsiOw0KCQl9DQoNCgkJcHJpbnQgJHJlc3VsdCAuICJcbiI7CQ0KCX0NCn0NCg0KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCiMgTWFpbg0KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCg0KbXkgQHJlc3VsdCA9IHJ1bl9xdWVyeSgiU0VMRUNUIE5hbWUsIE1heENsb2NrU3BlZWQsIERlc2NyaXB0aW9uIEZST00gV2luMzJfUHJvY2Vzc29yIik7DQpwcmludF9tb2R1bGVkYXRhICgiTmFtZSIsICJNYXhDbG9ja1NwZWVkIiwgIkRlc2NyaXB0aW9uIiwgXEByZXN1bHQpOw0KZXhpdCAwOw0K' WHERE id_module_inventory = 2; - -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (3,1,'RAM','Memory modules','','Model;Size','',0); - -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (4,9,'RAM','Memory modules','/usr/bin/perl','Tag;Capacity;Name','IyEvdXNyL2Jpbi9wZXJsCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgcGFuZG9yYV9yYW0ucGwKIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMKIyBDb3B5cmlnaHQgKGMpIDIwMDggUmFtb24gTm92b2EsIHJub3ZvYUBhcnRp Y2EuZXMKIyAgICAgICAgICAgKGMpIDIwMDggQXJ0aWNhIFNvbHVjaW9uZXMgVGVjbm9sb2dpY2Fz IFMuTAojCiMgVGhpcyBwcm9ncmFtIGlzIGZyZWUgc29mdHdhcmU7IHlvdSBjYW4gcmVkaXN0cmli dXRlIGl0IGFuZC9vcgojIG1vZGlmeSBpdCB1bmRlciB0aGUgdGVybXMgb2YgdGhlIEdOVSBHZW5l cmFsIFB1YmxpYyBMaWNlbnNlCiMgYXMgcHVibGlzaGVkIGJ5IHRoZSBGcmVlIFNvZnR3YXJlIEZv dW5kYXRpb247IHZlcnNpb24gMi4KIwojIFRoaXMgcHJvZ3JhbSBpcyBkaXN0cmlidXRlZCBpbiB0 aGUgaG9wZSB0aGF0IGl0IHdpbGwgYmUgdXNlZnVsLAojIGJ1dCBXSVRIT1VUIEFOWSBXQVJSQU5U WTsgd2l0aG91dCBldmVuIHRoZSBpbXBsaWVkIHdhcnJhbnR5IG9mCiMgTUVSQ0hBTlRBQklMSVRZ IG9yIEZJVE5FU1MgRk9SIEEgUEFSVElDVUxBUiBQVVJQT1NFLiAgU2VlIHRoZQojIEdOVSBHZW5l cmFsIFB1YmxpYyBMaWNlbnNlIGZvciBtb3JlIGRldGFpbHMuCiMgWW91IHNob3VsZCBoYXZlIHJl Y2VpdmVkIGEgY29weSBvZiB0aGUgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UKIyBhbG9uZyB3 aXRoIHRoaXMgcHJvZ3JhbTsgaWYgbm90LCB3cml0ZSB0byB0aGUgRnJlZSBTb2Z0d2FyZQojIEZv dW5kYXRpb24sIEluYy4sIDUxIEZyYW5rbGluIFN0cmVldCwgRmlmdGggRmxvb3IsIEJvc3Rvbiwg TUEgIDAyMTEwLTEzMDEsIFVTQS4KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKCnVzZSBzdHJpY3Q7CnVzZSB3 YXJuaW5nczsKCnVzZSBGaWxlOjpCYXNlbmFtZTsKdXNlIEhUTUw6OkVudGl0aWVzICgpOwoKIyBD aGVjayBmb3Igd21pYwpteSAkd21pX2NsaWVudCA9ICJ3bWljIjsKaWYgKHN5c3RlbSgiJHdtaV9j bGllbnQgPiAvZGV2L251bGwgMj4mMSIpICE9IDI1NikgewoJcHJpbnQgIltlcnJvcl0gJHdtaV9j bGllbnQgbm90IGZvdW5kLlxuIjsKCWV4aXQgMTsKfQoKaWYgKCQjQVJHViAhPSAyKSB7Cglwcmlu dCAiVXNhZ2U6ICQwIDx0YXJnZXQgaXA+IDx1c2VybmFtZT4gPHBhc3N3b3JkPlxuIjsKCWV4aXQg MTsKfQoKbXkgJHRhcmdldF9pcCA9ICRBUkdWWzBdOwpteSAkdXNlcm5hbWUgPSAkQVJHVlsxXTsK bXkgJHBhc3N3b3JkID0gJEFSR1ZbMl07CgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwojIFNVQiBydW5fcXVl cnkgKCR3cWxfcXVlcnkpCiMgUnVucyB0aGUgZ2l2ZW4gV1FMIHF1ZXJ5IGFuZCByZXR1cm5zIHRo ZSByZXN1bHQgYXMgYW4gYXJyYXkgb2YgaGFzaGVzLgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwpzdWIgcnVu X3F1ZXJ5IHsKCW15ICR3cWxfcXVlcnkgPSAkX1swXTsKCW15IEByZXN1bHQgPSB7fTsKCgkkd3Fs X3F1ZXJ5ID1+ICdzLyIvXCcvZyc7CgoJIyBSdW4gdGhlIERDT00vV01JIGNsaWVudAoJbXkgJG91 dHB1dCA9IGAkd21pX2NsaWVudCAtVSAnJHVzZXJuYW1lJyUnJHBhc3N3b3JkJyAvLyR0YXJnZXRf aXAgXCIkd3FsX3F1ZXJ5XCIgMj4vZGV2L251bGxgOwoKCW15IEBsaW5lcyA9IHNwbGl0KC9cbi8s ICRvdXRwdXQpOwoJIyBIZWFkZXIsIGRlc2NyaXB0aW9uLCByZXN1bHRzCglpZiAoJCNsaW5lcyA8 IDIpIHsKCQlleGl0IDE7Cgl9CgoJIyBEcm9wIHRoZSBoZWFkZXIKCXNoaWZ0IChAbGluZXMpOwoJ CgkjIEdldCBjb2x1bW4gbmFtZXMKCW15IEBjb2x1bW5fbmFtZXMgPSBzcGxpdCgvXHwvLCBzaGlm dCAoQGxpbmVzKSk7CgoJIyBHZXQgcm93IGRhdGEKCW15ICRpZHggPSAwOwoJZm9yIChteSAkaSA9 IDA7ICRpIDw9ICQjbGluZXM7ICRpKyspIHsKCgkJIyBDaGVjayBmb3IgZXJyb3JzCgkJaWYgKCRs aW5lc1skaV0gPX4gbS9eRVJST1IvKSB7CgkJCWV4aXQgMTsKCQl9CgoJCSMgQmxhY2sgbGlzdAoJ CWlmICgkbGluZXNbJGldID1+IG0vRmlsZSAxLykgewoJCQluZXh0OwoJCX0KCgkJbXkgQGNvbHVt biA9IHNwbGl0KC9cfC8sICRsaW5lc1skaV0pOwoJCWZvciAobXkgJGogPSAwOyAkaiA8PSAkI2Nv bHVtbl9uYW1lczsgJGorKykgewoJCQlpZiAoISBkZWZpbmVkKCRjb2x1bW5bJGpdKSkgewoJCQkJ JHJlc3VsdFskaWR4XS0+eyRjb2x1bW5fbmFtZXNbJGpdfSA9ICIiOwoJCQl9CgkJCWVsc2UgewoJ CQkJJHJlc3VsdFskaWR4XS0+eyRjb2x1bW5fbmFtZXNbJGpdfSA9',0); -UPDATE tmodule_inventory SET code = code || 'ICRjb2x1bW5bJGpdOwoJCQl9 CgkJfQoJCQoJCSRpZHgrKzsKCX0KCQoJcmV0dXJuIEByZXN1bHQ7Cn0KCiMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjCiMgU1VCIHByaW50X21vZHVsZWRhdGEgKCRtb2R1bGVfaXRlbSwgJG1vZHVsZV9kYXRhLCAK IyAkbW9kdWxlX2Rlc2NyaXB0aW9uLCBAZGF0YSkKIyBQcmludHMgYSBtb2R1bGVkYXRhIFhNTCB0 YWcuICRtb2R1bGVfaXRlbSwgJG1vZHVsZV9kYXRhIGFuZAojICRtb2R1bGVfZGVzY3JpcHRpb24g YXJlIHVzZWQgdG8gaW5kZXggdGhlIGl0ZW0sIGRhdGEgYW5kIGRlc2NyaXB0aW9uCiMgWE1MIHRh Z3MgcmVzcGVjdGl2ZWx5LgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwpzdWIgcHJpbnRfbW9kdWxlZGF0YSB7 CglteSAkbW9kdWxlX2l0ZW0gPSAkX1swXTsKCW15ICRtb2R1bGVfZGF0YSA9ICRfWzFdOwoJbXkg JG1vZHVsZV9kZXNjcmlwdGlvbiA9ICRfWzJdOwoJbXkgQGRhdGEgPSBAeyRfWzNdfTsKCW15ICRy ZXN1bHQ7CgoJZm9yZWFjaCBteSAkZWxlbWVudCAoQGRhdGEpIHsKCQkKCQkkcmVzdWx0ID0gJyc7 CgoJCSMgSXRlbQoJCWlmIChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9pdGVtfSkpIHsKCQkJ JHJlc3VsdCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfaXRlbX0gLiAnOyc7CgkJfQoKCQkjIERhdGEK CQlpZiAoZGVmaW5lZCgkZWxlbWVudC0+eyRtb2R1bGVfZGF0YX0pKSB7CgkJCSRyZXN1bHQgLj0g JyAnIC4gc3ByaW50ZigiJS4xZiIsICRlbGVtZW50LT57JG1vZHVsZV9kYXRhfSAvIDEwNDg1NzYp IC4gIiBNQnl0ZXM7IjsKCQl9CgoJCSMgRGVzY3JpcHRpb24KCQlpZiAoZGVmaW5lZCgkZWxlbWVu dC0+eyRtb2R1bGVfZGVzY3JpcHRpb259KSkgewoJCQkkcmVzdWx0IC49ICRlbGVtZW50LT57JG1v ZHVsZV9kZXNjcmlwdGlvbn07CgkJfQoKCQlwcmludCAkcmVzdWx0IC4gIlxuIjsJCgl9Cn0KCiMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjCiMgTWFpbgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwoKbXkgQHJlc3VsdCA9IHJ1 bl9xdWVyeSgiU0VMRUNUIFRhZywgQ2FwYWNpdHksIE5hbWUgRlJPTSBXaW4zMl9QaHlzaWNhbE1l bW9yeSIpOwpwcmludF9tb2R1bGVkYXRhICgiVGFnIiwgIkNhcGFjaXR5IiwgIk5hbWUiLCBcQHJl c3VsdCk7CmV4aXQgMDsK' WHERE id_module_inventory = 4; - -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (5,1,'Video','Video cards','','Controller;Model;Company','',0); - -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (6,9,'Video','Video cards','/usr/bin/perl','Caption;AdapterRAM;VideoProcessor','IyEvdXNyL2Jpbi9wZXJsCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgcGFuZG9yYV92aWRlby5wbAojIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIwojIENvcHlyaWdodCAoYykgMjAwOCBSYW1vbiBOb3ZvYSwgcm5vdm9hQGFy dGljYS5lcwojICAgICAgICAgICAoYykgMjAwOCBBcnRpY2EgU29sdWNpb25lcyBUZWNub2xvZ2lj YXMgUy5MCiMKIyBUaGlzIHByb2dyYW0gaXMgZnJlZSBzb2Z0d2FyZTsgeW91IGNhbiByZWRpc3Ry aWJ1dGUgaXQgYW5kL29yCiMgbW9kaWZ5IGl0IHVuZGVyIHRoZSB0ZXJtcyBvZiB0aGUgR05VIEdl bmVyYWwgUHVibGljIExpY2Vuc2UKIyBhcyBwdWJsaXNoZWQgYnkgdGhlIEZyZWUgU29mdHdhcmUg Rm91bmRhdGlvbjsgdmVyc2lvbiAyLgojCiMgVGhpcyBwcm9ncmFtIGlzIGRpc3RyaWJ1dGVkIGlu IHRoZSBob3BlIHRoYXQgaXQgd2lsbCBiZSB1c2VmdWwsCiMgYnV0IFdJVEhPVVQgQU5ZIFdBUlJB TlRZOyB3aXRob3V0IGV2ZW4gdGhlIGltcGxpZWQgd2FycmFudHkgb2YKIyBNRVJDSEFOVEFCSUxJ VFkgb3IgRklUTkVTUyBGT1IgQSBQQVJUSUNVTEFSIFBVUlBPU0UuICBTZWUgdGhlCiMgR05VIEdl bmVyYWwgUHVibGljIExpY2Vuc2UgZm9yIG1vcmUgZGV0YWlscy4KIyBZb3Ugc2hvdWxkIGhhdmUg cmVjZWl2ZWQgYSBjb3B5IG9mIHRoZSBHTlUgR2VuZXJhbCBQdWJsaWMgTGljZW5zZQojIGFsb25n IHdpdGggdGhpcyBwcm9ncmFtOyBpZiBub3QsIHdyaXRlIHRvIHRoZSBGcmVlIFNvZnR3YXJlCiMg Rm91bmRhdGlvbiwgSW5jLiwgNTEgRnJhbmtsaW4gU3RyZWV0LCBGaWZ0aCBGbG9vciwgQm9zdG9u LCBNQSAgMDIxMTAtMTMwMSwgVVNBLgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwoKdXNlIHN0cmljdDsKdXNl IHdhcm5pbmdzOwoKdXNlIEZpbGU6OkJhc2VuYW1lOwp1c2UgSFRNTDo6RW50aXRpZXMgKCk7Cgoj IENoZWNrIGZvciB3bWljCm15ICR3bWlfY2xpZW50ID0gIndtaWMiOwppZiAoc3lzdGVtKCIkd21p X2NsaWVudCA+IC9kZXYvbnVsbCAyPiYxIikgIT0gMjU2KSB7CglwcmludCAiW2Vycm9yXSAkd21p X2NsaWVudCBub3QgZm91bmQuXG4iOwoJZXhpdCAxOwp9CgppZiAoJCNBUkdWICE9IDIpIHsKCXBy aW50ICJVc2FnZTogJDAgPHRhcmdldCBpcD4gPHVzZXJuYW1lPiA8cGFzc3dvcmQ+XG4iOwoJZXhp dCAxOwp9CgpteSAkdGFyZ2V0X2lwID0gJEFSR1ZbMF07Cm15ICR1c2VybmFtZSA9ICRBUkdWWzFd OwpteSAkcGFzc3dvcmQgPSAkQVJHVlsyXTsKCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgU1VCIHJ1bl9x dWVyeSAoJHdxbF9xdWVyeSkKIyBSdW5zIHRoZSBnaXZlbiBXUUwgcXVlcnkgYW5kIHJldHVybnMg dGhlIHJlc3VsdCBhcyBhbiBhcnJheSBvZiBoYXNoZXMuCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1YiBy dW5fcXVlcnkgewoJbXkgJHdxbF9xdWVyeSA9ICRfWzBdOwoJbXkgQHJlc3VsdCA9IHt9OwoKCSR3 cWxfcXVlcnkgPX4gJ3MvIi9cJy9nJzsKCgkjIFJ1biB0aGUgRENPTS9XTUkgY2xpZW50CglteSAk b3V0cHV0ID0gYCR3bWlfY2xpZW50IC1VICckdXNlcm5hbWUnJSckcGFzc3dvcmQnIC8vJHRhcmdl dF9pcCBcIiR3cWxfcXVlcnlcIiAyPi9kZXYvbnVsbGA7CgoJbXkgQGxpbmVzID0gc3BsaXQoL1xu LywgJG91dHB1dCk7CgkjIEhlYWRlciwgZGVzY3JpcHRpb24sIHJlc3VsdHMKCWlmICgkI2xpbmVz IDwgMikgewoJCWV4aXQgMTsKCX0KCgkjIERyb3AgdGhlIGhlYWRlcgoJc2hpZnQgKEBsaW5lcyk7 CgkKCSMgR2V0IGNvbHVtbiBuYW1lcwoJbXkgQGNvbHVtbl9uYW1lcyA9IHNwbGl0KC9cfC8sIHNo aWZ0IChAbGluZXMpKTsKCgkjIEdldCByb3cgZGF0YQoJbXkgJGlkeCA9IDA7Cglmb3IgKG15ICRp ID0gMDsgJGkgPD0gJCNsaW5lczsgJGkrKykgewoKCQkjIENoZWNrIGZvciBlcnJvcnMKCQlpZiAo JGxpbmVzWyRpXSA9fiBtL15FUlJPUi8pIHsKCQkJZXhpdCAxOwoJCX0KCgkJIyBCbGFjayBsaXN0 CgkJaWYgKCRsaW5lc1skaV0gPX4gbS9GaWxlIDEvKSB7CgkJCW5leHQ7CgkJfQoKCQlteSBAY29s dW1uID0gc3BsaXQoL1x8LywgJGxpbmVzWyRpXSk7CgkJZm9yIChteSAkaiA9IDA7ICRqIDw9ICQj Y29sdW1uX25hbWVzOyAkaisrKSB7CgkJCWlmICghIGRlZmluZWQoJGNvbHVtblskal0pKSB7CgkJ CQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gIiI7CgkJCX0KCQkJZWxzZSB7 CgkJCQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl',0); -UPDATE tmodule_inventory SET code = code || '9uYW1lc1skal19ID0gJGNvbHVtblskal07CgkJ CX0KCQl9CgkJCgkJJGlkeCsrOwoJfQoJCglyZXR1cm4gQHJlc3VsdDsKfQoKIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMKIyBTVUIgcHJpbnRfbW9kdWxlZGF0YSAoJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEs IAojICRtb2R1bGVfZGVzY3JpcHRpb24sIEBkYXRhKQojIFByaW50cyBhIG1vZHVsZWRhdGEgWE1M IHRhZy4gJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEgYW5kCiMgJG1vZHVsZV9kZXNjcmlwdGlv biBhcmUgdXNlZCB0byBpbmRleCB0aGUgaXRlbSwgZGF0YSBhbmQgZGVzY3JpcHRpb24KIyBYTUwg dGFncyByZXNwZWN0aXZlbHkuCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1YiBwcmludF9tb2R1bGVkYXRh IHsKCW15ICRtb2R1bGVfaXRlbSA9ICRfWzBdOwoJbXkgJG1vZHVsZV9kYXRhID0gJF9bMV07Cglt eSAkbW9kdWxlX2Rlc2NyaXB0aW9uID0gJF9bMl07CglteSBAZGF0YSA9IEB7JF9bM119OwoJbXkg JHJlc3VsdDsKCglmb3JlYWNoIG15ICRlbGVtZW50IChAZGF0YSkgewoJCQoJCSRyZXN1bHQgPSAn JzsKCgkJIyBJdGVtCgkJaWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2l0ZW19KSkgewoJ CQkkcmVzdWx0IC49ICRlbGVtZW50LT57JG1vZHVsZV9pdGVtfSAuICc7JzsKCQl9CgoJCSMgRGF0 YQoJCWlmIChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9kYXRhfSkpIHsKCQkJJHJlc3VsdCAu PSAnICcgLiBzcHJpbnRmKCIlLjFmIiwgJGVsZW1lbnQtPnskbW9kdWxlX2RhdGF9IC8gMTA0ODU3 NikgLiAiIE1CeXRlczsiOwoJCX0KCgkJIyBEZXNjcmlwdGlvbgoJCWlmIChkZWZpbmVkKCRlbGVt ZW50LT57JG1vZHVsZV9kZXNjcmlwdGlvbn0pKSB7CgkJCSRyZXN1bHQgLj0gJyAnIC4gJGVsZW1l bnQtPnskbW9kdWxlX2Rlc2NyaXB0aW9ufTsKCQl9CgoJCXByaW50ICRyZXN1bHQgLiAiXG4iOwkK CX0KfQoKIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKIyBNYWluCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCgpteSBAcmVz dWx0ID0gcnVuX3F1ZXJ5KCJTRUxFQ1QgQ2FwdGlvbiwgQWRhcHRlclJBTSwgVmlkZW9Qcm9jZXNz b3IgRlJPTSBXaW4zMl9WaWRlb0NvbnRyb2xsZXIiKTsKcHJpbnRfbW9kdWxlZGF0YSAoIkNhcHRp b24iLCAiQWRhcHRlclJBTSIsICJWaWRlb1Byb2Nlc3NvciIsIFxAcmVzdWx0KTsKZXhpdCAwOwo=' WHERE id_module_inventory = 6; - -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (7,1,'NIC','Network Interface Cards','','Device;Model;Company;MACAddress','',0); - -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (8,9,'NIC','Network Interface Cards','/usr/bin/perl','Caption;MACAddress;IPAddress','IyEvdXNyL2Jpbi9wZXJsCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgcGFuZG9yYV9uaWMucGwKIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMKIyBDb3B5cmlnaHQgKGMpIDIwMDggUmFtb24gTm92b2EsIHJub3ZvYUBhcnRp Y2EuZXMKIyAgICAgICAgICAgKGMpIDIwMDggQXJ0aWNhIFNvbHVjaW9uZXMgVGVjbm9sb2dpY2Fz IFMuTAojCiMgVGhpcyBwcm9ncmFtIGlzIGZyZWUgc29mdHdhcmU7IHlvdSBjYW4gcmVkaXN0cmli dXRlIGl0IGFuZC9vcgojIG1vZGlmeSBpdCB1bmRlciB0aGUgdGVybXMgb2YgdGhlIEdOVSBHZW5l cmFsIFB1YmxpYyBMaWNlbnNlCiMgYXMgcHVibGlzaGVkIGJ5IHRoZSBGcmVlIFNvZnR3YXJlIEZv dW5kYXRpb247IHZlcnNpb24gMi4KIwojIFRoaXMgcHJvZ3JhbSBpcyBkaXN0cmlidXRlZCBpbiB0 aGUgaG9wZSB0aGF0IGl0IHdpbGwgYmUgdXNlZnVsLAojIGJ1dCBXSVRIT1VUIEFOWSBXQVJSQU5U WTsgd2l0aG91dCBldmVuIHRoZSBpbXBsaWVkIHdhcnJhbnR5IG9mCiMgTUVSQ0hBTlRBQklMSVRZ IG9yIEZJVE5FU1MgRk9SIEEgUEFSVElDVUxBUiBQVVJQT1NFLiAgU2VlIHRoZQojIEdOVSBHZW5l cmFsIFB1YmxpYyBMaWNlbnNlIGZvciBtb3JlIGRldGFpbHMuCiMgWW91IHNob3VsZCBoYXZlIHJl Y2VpdmVkIGEgY29weSBvZiB0aGUgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UKIyBhbG9uZyB3 aXRoIHRoaXMgcHJvZ3JhbTsgaWYgbm90LCB3cml0ZSB0byB0aGUgRnJlZSBTb2Z0d2FyZQojIEZv dW5kYXRpb24sIEluYy4sIDUxIEZyYW5rbGluIFN0cmVldCwgRmlmdGggRmxvb3IsIEJvc3Rvbiwg TUEgIDAyMTEwLTEzMDEsIFVTQS4KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKCnVzZSBzdHJpY3Q7CnVzZSB3 YXJuaW5nczsKCnVzZSBGaWxlOjpCYXNlbmFtZTsKdXNlIEhUTUw6OkVudGl0aWVzICgpOwoKIyBD aGVjayBmb3Igd21pYwpteSAkd21pX2NsaWVudCA9ICJ3bWljIjsKaWYgKHN5c3RlbSgiJHdtaV9j bGllbnQgPiAvZGV2L251bGwgMj4mMSIpICE9IDI1NikgewoJcHJpbnQgIltlcnJvcl0gJHdtaV9j bGllbnQgbm90IGZvdW5kLlxuIjsKCWV4aXQgMTsKfQoKaWYgKCQjQVJHViAhPSAyKSB7Cglwcmlu dCAiVXNhZ2U6ICQwIDx0YXJnZXQgaXA+IDx1c2VybmFtZT4gPHBhc3N3b3JkPlxuIjsKCWV4aXQg MTsKfQoKbXkgJHRhcmdldF9pcCA9ICRBUkdWWzBdOwpteSAkdXNlcm5hbWUgPSAkQVJHVlsxXTsK bXkgJHBhc3N3b3JkID0gJEFSR1ZbMl07CgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwojIFNVQiBydW5fcXVl cnkgKCR3cWxfcXVlcnkpCiMgUnVucyB0aGUgZ2l2ZW4gV1FMIHF1ZXJ5IGFuZCByZXR1cm5zIHRo ZSByZXN1bHQgYXMgYW4gYXJyYXkgb2YgaGFzaGVzLgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwpzdWIgcnVu X3F1ZXJ5IHsKCW15ICR3cWxfcXVlcnkgPSAkX1swXTsKCW15IEByZXN1bHQgPSB7fTsKCgkkd3Fs X3F1ZXJ5ID1+ICdzLyIvXCcvZyc7CgoJIyBSdW4gdGhlIERDT00vV01JIGNsaWVudAoJbXkgJG91 dHB1dCA9IGAkd21pX2NsaWVudCAtVSAnJHVzZXJuYW1lJyUnJHBhc3N3b3JkJyAvLyR0YXJnZXRf aXAgXCIkd3FsX3F1ZXJ5XCIgMj4vZGV2L251bGxgOwoKCW15IEBsaW5lcyA9IHNwbGl0KC9cbi8s ICRvdXRwdXQpOwoJIyBIZWFkZXIsIGRlc2NyaXB0aW9uLCByZXN1bHRzCglpZiAoJCNsaW5lcyA8 IDIpIHsKCQlleGl0IDE7Cgl9CgoJIyBEcm9wIHRoZSBoZWFkZXIKCXNoaWZ0IChAbGluZXMpOwoJ CgkjIEdldCBjb2x1bW4gbmFtZXMKCW15IEBjb2x1bW5fbmFtZXMgPSBzcGxpdCgvXHwvLCBzaGlm dCAoQGxpbmVzKSk7CgoJIyBHZXQgcm93IGRhdGEKCW15ICRpZHggPSAwOwoJZm9yIChteSAkaSA9 IDA7ICRpIDw9ICQjbGluZXM7ICRpKyspIHsKCgkJIyBDaGVjayBmb3IgZXJyb3JzCgkJaWYgKCRs aW5lc1skaV0gPX4gbS9eRVJST1IvKSB7CgkJCWV4aXQgMTsKCQl9CgoJCSMgQmxhY2sgbGlzdAoJ CWlmICgkbGluZXNbJGldID1+IG0vRmlsZSAxLykgewoJCQluZXh0OwoJCX0KCgkJbXkgQGNvbHVt biA9IHNwbGl0KC9cfC8sICRsaW5lc1skaV0pOwoJCWZvciAobXkgJGogPSAwOyAkaiA8PSAkI2Nv bHVtbl9uYW1lczsgJGorKykgewoJCQlpZiAoISBkZWZpbmVkKCRjb2x1bW5bJGpdKSkgewoJCQkJ JHJlc3VsdFskaWR4XS0+eyRjb2x1bW5fbmFtZXNbJGpdfSA9ICIiOwoJCQl9CgkJCWVsc2UgewoJ CQkJJHJlc3VsdFskaWR4XS0+eyRjb2x1b',0); -UPDATE tmodule_inventory SET code = code || 'W5fbmFtZXNbJGpdfSA9ICRjb2x1bW5bJGpdOwoJCQl9 CgkJfQoJCQoJCSRpZHgrKzsKCX0KCQoJcmV0dXJuIEByZXN1bHQ7Cn0KCiMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjCiMgU1VCIHByaW50X21vZHVsZWRhdGEgKCRtb2R1bGVfaXRlbSwgJG1vZHVsZV9kYXRhLCAK IyAkbW9kdWxlX2Rlc2NyaXB0aW9uLCBAZGF0YSkKIyBQcmludHMgYSBtb2R1bGVkYXRhIFhNTCB0 YWcuICRtb2R1bGVfaXRlbSwgJG1vZHVsZV9kYXRhIGFuZAojICRtb2R1bGVfZGVzY3JpcHRpb24g YXJlIHVzZWQgdG8gaW5kZXggdGhlIGl0ZW0sIGRhdGEgYW5kIGRlc2NyaXB0aW9uCiMgWE1MIHRh Z3MgcmVzcGVjdGl2ZWx5LgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwpzdWIgcHJpbnRfbW9kdWxlZGF0YSB7 CglteSAkbW9kdWxlX2l0ZW0gPSAkX1swXTsKCW15ICRtb2R1bGVfZGF0YSA9ICRfWzFdOwoJbXkg JG1vZHVsZV9kZXNjcmlwdGlvbiA9ICRfWzJdOwoJbXkgQGRhdGEgPSBAeyRfWzNdfTsKCW15ICRy ZXN1bHQ7CgoJZm9yZWFjaCBteSAkZWxlbWVudCAoQGRhdGEpIHsKCQkKCQkkcmVzdWx0ID0gJyc7 CgoJCSMgSXRlbQoJCWlmIChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9pdGVtfSkpIHsKCQkJ JHJlc3VsdCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfaXRlbX0gLiAnOyc7CgkJfQoKCQkjIERhdGEK CQlpZiAoZGVmaW5lZCgkZWxlbWVudC0+eyRtb2R1bGVfZGF0YX0pKSB7CgkJCSRyZXN1bHQgLj0g JGVsZW1lbnQtPnskbW9kdWxlX2RhdGF9IC4gJzsnOwoJCX0KCgkJIyBEZXNjcmlwdGlvbgoJCWlm IChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9kZXNjcmlwdGlvbn0pKSB7CgkJCSRyZXN1bHQg Lj0gJGVsZW1lbnQtPnskbW9kdWxlX2Rlc2NyaXB0aW9ufTsKCQl9CgoJCXByaW50ICRyZXN1bHQg LiAiXG4iOwkKCX0KfQoKIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKIyBNYWluCiMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj CgpteSBAcmVzdWx0ID0gcnVuX3F1ZXJ5KCJTRUxFQ1QgQ2FwdGlvbiwgTUFDQWRkcmVzcywgSVBB ZGRyZXNzIEZST00gV2luMzJfTmV0d29ya0FkYXB0ZXJDb25maWd1cmF0aW9uIik7CnByaW50X21v ZHVsZWRhdGEgKCJDYXB0aW9uIiwgIk1BQ0FkZHJlc3MiLCAiSVBBZGRyZXNzIiwgXEByZXN1bHQp OwpleGl0IDA7Cg==' WHERE id_module_inventory = 8; - -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (9,1,'HD','Hard drives','','Type;Model;Size','',0); - -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (10,9,'HD','Hard drives','/usr/bin/perl','Model;Size;SystemName','IyEvdXNyL2Jpbi9wZXJsCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgcGFuZG9yYV9oZC5wbAojIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIwojIENvcHlyaWdodCAoYykgMjAwOCBSYW1vbiBOb3ZvYSwgcm5vdm9hQGFydGlj YS5lcwojICAgICAgICAgICAoYykgMjAwOCBBcnRpY2EgU29sdWNpb25lcyBUZWNub2xvZ2ljYXMg Uy5MCiMKIyBUaGlzIHByb2dyYW0gaXMgZnJlZSBzb2Z0d2FyZTsgeW91IGNhbiByZWRpc3RyaWJ1 dGUgaXQgYW5kL29yCiMgbW9kaWZ5IGl0IHVuZGVyIHRoZSB0ZXJtcyBvZiB0aGUgR05VIEdlbmVy YWwgUHVibGljIExpY2Vuc2UKIyBhcyBwdWJsaXNoZWQgYnkgdGhlIEZyZWUgU29mdHdhcmUgRm91 bmRhdGlvbjsgdmVyc2lvbiAyLgojCiMgVGhpcyBwcm9ncmFtIGlzIGRpc3RyaWJ1dGVkIGluIHRo ZSBob3BlIHRoYXQgaXQgd2lsbCBiZSB1c2VmdWwsCiMgYnV0IFdJVEhPVVQgQU5ZIFdBUlJBTlRZ OyB3aXRob3V0IGV2ZW4gdGhlIGltcGxpZWQgd2FycmFudHkgb2YKIyBNRVJDSEFOVEFCSUxJVFkg b3IgRklUTkVTUyBGT1IgQSBQQVJUSUNVTEFSIFBVUlBPU0UuICBTZWUgdGhlCiMgR05VIEdlbmVy YWwgUHVibGljIExpY2Vuc2UgZm9yIG1vcmUgZGV0YWlscy4KIyBZb3Ugc2hvdWxkIGhhdmUgcmVj ZWl2ZWQgYSBjb3B5IG9mIHRoZSBHTlUgR2VuZXJhbCBQdWJsaWMgTGljZW5zZQojIGFsb25nIHdp dGggdGhpcyBwcm9ncmFtOyBpZiBub3QsIHdyaXRlIHRvIHRoZSBGcmVlIFNvZnR3YXJlCiMgRm91 bmRhdGlvbiwgSW5jLiwgNTEgRnJhbmtsaW4gU3RyZWV0LCBGaWZ0aCBGbG9vciwgQm9zdG9uLCBN QSAgMDIxMTAtMTMwMSwgVVNBLgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwoKdXNlIHN0cmljdDsKdXNlIHdh cm5pbmdzOwoKdXNlIEZpbGU6OkJhc2VuYW1lOwp1c2UgSFRNTDo6RW50aXRpZXMgKCk7CgojIENo ZWNrIGZvciB3bWljCm15ICR3bWlfY2xpZW50ID0gIndtaWMiOwppZiAoc3lzdGVtKCIkd21pX2Ns aWVudCA+IC9kZXYvbnVsbCAyPiYxIikgIT0gMjU2KSB7CglwcmludCAiW2Vycm9yXSAkd21pX2Ns aWVudCBub3QgZm91bmQuXG4iOwoJZXhpdCAxOwp9CgppZiAoJCNBUkdWICE9IDIpIHsKCXByaW50 ICJVc2FnZTogJDAgPHRhcmdldCBpcD4gPHVzZXJuYW1lPiA8cGFzc3dvcmQ+XG4iOwoJZXhpdCAx Owp9CgpteSAkdGFyZ2V0X2lwID0gJEFSR1ZbMF07Cm15ICR1c2VybmFtZSA9ICRBUkdWWzFdOwpt eSAkcGFzc3dvcmQgPSAkQVJHVlsyXTsKCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgU1VCIHJ1bl9xdWVy eSAoJHdxbF9xdWVyeSkKIyBSdW5zIHRoZSBnaXZlbiBXUUwgcXVlcnkgYW5kIHJldHVybnMgdGhl IHJlc3VsdCBhcyBhbiBhcnJheSBvZiBoYXNoZXMuCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1YiBydW5f cXVlcnkgewoJbXkgJHdxbF9xdWVyeSA9ICRfWzBdOwoJbXkgQHJlc3VsdCA9IHt9OwoKCSR3cWxf cXVlcnkgPX4gJ3MvIi9cJy9nJzsKCgkjIFJ1biB0aGUgRENPTS9XTUkgY2xpZW50CglteSAkb3V0 cHV0ID0gYCR3bWlfY2xpZW50IC1VICckdXNlcm5hbWUnJSckcGFzc3dvcmQnIC8vJHRhcmdldF9p cCBcIiR3cWxfcXVlcnlcIiAyPi9kZXYvbnVsbGA7CgoJbXkgQGxpbmVzID0gc3BsaXQoL1xuLywg JG91dHB1dCk7CgkjIEhlYWRlciwgZGVzY3JpcHRpb24sIHJlc3VsdHMKCWlmICgkI2xpbmVzIDwg MikgewoJCWV4aXQgMTsKCX0KCgkjIERyb3AgdGhlIGhlYWRlcgoJc2hpZnQgKEBsaW5lcyk7CgkK CSMgR2V0IGNvbHVtbiBuYW1lcwoJbXkgQGNvbHVtbl9uYW1lcyA9IHNwbGl0KC9cfC8sIHNoaWZ0 IChAbGluZXMpKTsKCgkjIEdldCByb3cgZGF0YQoJbXkgJGlkeCA9IDA7Cglmb3IgKG15ICRpID0g MDsgJGkgPD0gJCNsaW5lczsgJGkrKykgewoKCQkjIENoZWNrIGZvciBlcnJvcnMKCQlpZiAoJGxp bmVzWyRpXSA9fiBtL15FUlJPUi8pIHsKCQkJZXhpdCAxOwoJCX0KCgkJIyBCbGFjayBsaXN0CgkJ aWYgKCRsaW5lc1skaV0gPX4gbS9GaWxlIDEvKSB7CgkJCW5leHQ7CgkJfQoKCQlteSBAY29sdW1u ID0gc3BsaXQoL1x8LywgJGxpbmVzWyRpXSk7CgkJZm9yIChteSAkaiA9IDA7ICRqIDw9ICQjY29s dW1uX25hbWVzOyAkaisrKSB7CgkJCWlmICghIGRlZmluZWQoJGNvbHVtblskal0pKSB7CgkJCQkk cmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gIiI7CgkJCX0KCQkJZWxzZSB7CgkJ CQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0g',0); -UPDATE tmodule_inventory SET code = code || 'JGNvbHVtblskal07CgkJCX0K CQl9CgkJCgkJJGlkeCsrOwoJfQoJCglyZXR1cm4gQHJlc3VsdDsKfQoKIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMKIyBTVUIgcHJpbnRfbW9kdWxlZGF0YSAoJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEsIAoj ICRtb2R1bGVfZGVzY3JpcHRpb24sIEBkYXRhKQojIFByaW50cyBhIG1vZHVsZWRhdGEgWE1MIHRh Zy4gJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEgYW5kCiMgJG1vZHVsZV9kZXNjcmlwdGlvbiBh cmUgdXNlZCB0byBpbmRleCB0aGUgaXRlbSwgZGF0YSBhbmQgZGVzY3JpcHRpb24KIyBYTUwgdGFn cyByZXNwZWN0aXZlbHkuCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1YiBwcmludF9tb2R1bGVkYXRhIHsK CW15ICRtb2R1bGVfaXRlbSA9ICRfWzBdOwoJbXkgJG1vZHVsZV9kYXRhID0gJF9bMV07CglteSAk bW9kdWxlX2Rlc2NyaXB0aW9uID0gJF9bMl07CglteSBAZGF0YSA9IEB7JF9bM119OwoJbXkgJHJl c3VsdDsKCglmb3JlYWNoIG15ICRlbGVtZW50IChAZGF0YSkgewoJCQoJCSRyZXN1bHQgPSAnJzsK CgkJIyBJdGVtCgkJaWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2l0ZW19KSkgewoJCQkk cmVzdWx0IC49ICRlbGVtZW50LT57JG1vZHVsZV9pdGVtfSAuICc7JzsKCQl9CgoJCSMgRGF0YQoJ CWlmIChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9kYXRhfSkpIHsKCQkJJHJlc3VsdCAuPSAn ICcgLiBzcHJpbnRmKCIlLjFmIiwgJGVsZW1lbnQtPnskbW9kdWxlX2RhdGF9IC8gMTA3Mzc0MTgy NCkgLiAiIEdCeXRlczsiOwoJCX0KCgkJIyBEZXNjcmlwdGlvbgoJCWlmIChkZWZpbmVkKCRlbGVt ZW50LT57JG1vZHVsZV9kZXNjcmlwdGlvbn0pKSB7CgkJCSRyZXN1bHQgLj0gJyAoJyAuICRlbGVt ZW50LT57JG1vZHVsZV9kZXNjcmlwdGlvbn0gLiAiKSI7CgkJfQoKCQlwcmludCAkcmVzdWx0IC4g IlxuIjsJCgl9Cn0KCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgTWFpbgojIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwoK bXkgQHJlc3VsdCA9IHJ1bl9xdWVyeSgiU0VMRUNUIE1vZGVsLCBTaXplLCBTeXN0ZW1OYW1lIEZS T00gV2luMzJfRGlza0RyaXZlIik7CnByaW50X21vZHVsZWRhdGEgKCJNb2RlbCIsICJTaXplIiwg IlN5c3RlbU5hbWUiLCBcQHJlc3VsdCk7CQpleGl0IDA7Cg==' WHERE id_module_inventory = 10; - -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (11,1,'CDROM','CD-ROM drives','','Type;Model;Features','',0); - -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (12,9,'CDROM','CD-ROM drives','/usr/bin/perl','Name;Description;Drive','IyEvdXNyL2Jpbi9wZXJsCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgcGFuZG9yYV9jZHJvbS5wbAojIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIwojIENvcHlyaWdodCAoYykgMjAwOCBSYW1vbiBOb3ZvYSwgcm5vdm9hQGFy dGljYS5lcwojICAgICAgICAgICAoYykgMjAwOCBBcnRpY2EgU29sdWNpb25lcyBUZWNub2xvZ2lj YXMgUy5MCiMKIyBUaGlzIHByb2dyYW0gaXMgZnJlZSBzb2Z0d2FyZTsgeW91IGNhbiByZWRpc3Ry aWJ1dGUgaXQgYW5kL29yCiMgbW9kaWZ5IGl0IHVuZGVyIHRoZSB0ZXJtcyBvZiB0aGUgR05VIEdl bmVyYWwgUHVibGljIExpY2Vuc2UKIyBhcyBwdWJsaXNoZWQgYnkgdGhlIEZyZWUgU29mdHdhcmUg Rm91bmRhdGlvbjsgdmVyc2lvbiAyLgojCiMgVGhpcyBwcm9ncmFtIGlzIGRpc3RyaWJ1dGVkIGlu IHRoZSBob3BlIHRoYXQgaXQgd2lsbCBiZSB1c2VmdWwsCiMgYnV0IFdJVEhPVVQgQU5ZIFdBUlJB TlRZOyB3aXRob3V0IGV2ZW4gdGhlIGltcGxpZWQgd2FycmFudHkgb2YKIyBNRVJDSEFOVEFCSUxJ VFkgb3IgRklUTkVTUyBGT1IgQSBQQVJUSUNVTEFSIFBVUlBPU0UuICBTZWUgdGhlCiMgR05VIEdl bmVyYWwgUHVibGljIExpY2Vuc2UgZm9yIG1vcmUgZGV0YWlscy4KIyBZb3Ugc2hvdWxkIGhhdmUg cmVjZWl2ZWQgYSBjb3B5IG9mIHRoZSBHTlUgR2VuZXJhbCBQdWJsaWMgTGljZW5zZQojIGFsb25n IHdpdGggdGhpcyBwcm9ncmFtOyBpZiBub3QsIHdyaXRlIHRvIHRoZSBGcmVlIFNvZnR3YXJlCiMg Rm91bmRhdGlvbiwgSW5jLiwgNTEgRnJhbmtsaW4gU3RyZWV0LCBGaWZ0aCBGbG9vciwgQm9zdG9u LCBNQSAgMDIxMTAtMTMwMSwgVVNBLgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwoKdXNlIHN0cmljdDsKdXNl IHdhcm5pbmdzOwoKdXNlIEZpbGU6OkJhc2VuYW1lOwp1c2UgSFRNTDo6RW50aXRpZXMgKCk7Cgoj IENoZWNrIGZvciB3bWljCm15ICR3bWlfY2xpZW50ID0gIndtaWMiOwppZiAoc3lzdGVtKCIkd21p X2NsaWVudCA+IC9kZXYvbnVsbCAyPiYxIikgIT0gMjU2KSB7CglwcmludCAiW2Vycm9yXSAkd21p X2NsaWVudCBub3QgZm91bmQuXG4iOwoJZXhpdCAxOwp9CgppZiAoJCNBUkdWICE9IDIpIHsKCXBy aW50ICJVc2FnZTogJDAgPHRhcmdldCBpcD4gPHVzZXJuYW1lPiA8cGFzc3dvcmQ+XG4iOwoJZXhp dCAxOwp9CgpteSAkdGFyZ2V0X2lwID0gJEFSR1ZbMF07Cm15ICR1c2VybmFtZSA9ICRBUkdWWzFd OwpteSAkcGFzc3dvcmQgPSAkQVJHVlsyXTsKCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgU1VCIHJ1bl9x dWVyeSAoJHdxbF9xdWVyeSkKIyBSdW5zIHRoZSBnaXZlbiBXUUwgcXVlcnkgYW5kIHJldHVybnMg dGhlIHJlc3VsdCBhcyBhbiBhcnJheSBvZiBoYXNoZXMuCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1YiBy dW5fcXVlcnkgewoJbXkgJHdxbF9xdWVyeSA9ICRfWzBdOwoJbXkgQHJlc3VsdCA9IHt9OwoKCSR3 cWxfcXVlcnkgPX4gJ3MvIi9cJy9nJzsKCgkjIFJ1biB0aGUgRENPTS9XTUkgY2xpZW50CglteSAk b3V0cHV0ID0gYCR3bWlfY2xpZW50IC1VICckdXNlcm5hbWUnJSckcGFzc3dvcmQnIC8vJHRhcmdl dF9pcCBcIiR3cWxfcXVlcnlcIiAyPi9kZXYvbnVsbGA7CgoJbXkgQGxpbmVzID0gc3BsaXQoL1xu LywgJG91dHB1dCk7CgkjIEhlYWRlciwgZGVzY3JpcHRpb24sIHJlc3VsdHMKCWlmICgkI2xpbmVz IDwgMikgewoJCWV4aXQgMTsKCX0KCgkjIERyb3AgdGhlIGhlYWRlcgoJc2hpZnQgKEBsaW5lcyk7 CgkKCSMgR2V0IGNvbHVtbiBuYW1lcwoJbXkgQGNvbHVtbl9uYW1lcyA9IHNwbGl0KC9cfC8sIHNo aWZ0IChAbGluZXMpKTsKCgkjIEdldCByb3cgZGF0YQoJbXkgJGlkeCA9IDA7Cglmb3IgKG15ICRp ID0gMDsgJGkgPD0gJCNsaW5lczsgJGkrKykgewoKCQkjIENoZWNrIGZvciBlcnJvcnMKCQlpZiAo JGxpbmVzWyRpXSA9fiBtL15FUlJPUi8pIHsKCQkJZXhpdCAxOwoJCX0KCgkJIyBCbGFjayBsaXN0 CgkJaWYgKCRsaW5lc1skaV0gPX4gbS9GaWxlIDEvKSB7CgkJCW5leHQ7CgkJfQoKCQlteSBAY29s dW1uID0gc3BsaXQoL1x8LywgJGxpbmVzWyRpXSk7CgkJZm9yIChteSAkaiA9IDA7ICRqIDw9ICQj Y29sdW1uX25hbWVzOyAkaisrKSB7CgkJCWlmICghIGRlZmluZWQoJGNvbHVtblskal0pKSB7CgkJ CQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gIiI7CgkJCX0KCQkJZWxzZSB7 CgkJCQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1',0); -UPDATE tmodule_inventory SET code = code || 'skal19ID0gJGNvbHVtblskal07CgkJ CX0KCQl9CgkJCgkJJGlkeCsrOwoJfQoJCglyZXR1cm4gQHJlc3VsdDsKfQoKIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMKIyBTVUIgcHJpbnRfbW9kdWxlZGF0YSAoJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEs IAojICRtb2R1bGVfZGVzY3JpcHRpb24sIEBkYXRhKQojIFByaW50cyBhIG1vZHVsZWRhdGEgWE1M IHRhZy4gJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEgYW5kCiMgJG1vZHVsZV9kZXNjcmlwdGlv biBhcmUgdXNlZCB0byBpbmRleCB0aGUgaXRlbSwgZGF0YSBhbmQgZGVzY3JpcHRpb24KIyBYTUwg dGFncyByZXNwZWN0aXZlbHkuCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1YiBwcmludF9tb2R1bGVkYXRh IHsKCW15ICRtb2R1bGVfaXRlbSA9ICRfWzBdOwoJbXkgJG1vZHVsZV9kYXRhID0gJF9bMV07Cglt eSAkbW9kdWxlX2Rlc2NyaXB0aW9uID0gJF9bMl07CglteSBAZGF0YSA9IEB7JF9bM119OwoJbXkg JHJlc3VsdDsKCglmb3JlYWNoIG15ICRlbGVtZW50IChAZGF0YSkgewoJCQoJCSRyZXN1bHQgPSAn JzsKCgkJIyBJdGVtCgkJaWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2l0ZW19KSkgewoJ CQkkcmVzdWx0IC49ICRlbGVtZW50LT57JG1vZHVsZV9pdGVtfSAuICc7JzsKCQl9CgoJCSMgRGF0 YQoJCWlmIChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9kYXRhfSkpIHsKCQkJJHJlc3VsdCAu PSAkZWxlbWVudC0+eyRtb2R1bGVfZGF0YX0gLiAnOyc7CgkJfQoKCQkjIERlc2NyaXB0aW9uCgkJ aWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2Rlc2NyaXB0aW9ufSkpIHsKCQkJJHJlc3Vs dCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfZGVzY3JpcHRpb259OwoJCX0KCgkJcHJpbnQgJHJlc3Vs dCAuICJcbiI7CQoJfQp9CgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwojIE1haW4KIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMKCm15IEByZXN1bHQgPSBydW5fcXVlcnkoIlNFTEVDVCBOYW1lLCBEZXNjcmlwdGlvbiwgRHJp dmUgRlJPTSBXaW4zMl9DRFJPTURyaXZlIik7CnByaW50X21vZHVsZWRhdGEgKCJOYW1lIiwgIkRl c2NyaXB0aW9uIiwgIkRyaXZlIiwgXEByZXN1bHQpOwpleGl0IDA7Cg==' WHERE id_module_inventory = 12; - -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (13,1,'Software','Installed software packages','','Name;Version;Description','',0); - -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (14,9,'Software','Installed software packages','/usr/bin/perl','Name;Version;InstallDate;Size','IyEvdXNyL2Jpbi9wZXJsCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgcGFuZG9yYV9zb2Z0d2FyZS5wbAoj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIwojIENvcHlyaWdodCAoYykgMjAwOCBSYW1vbiBOb3ZvYSwgcm5vdm9h QGFydGljYS5lcwojICAgICAgICAgICAoYykgMjAwOCBBcnRpY2EgU29sdWNpb25lcyBUZWNub2xv Z2ljYXMgUy5MCiMKIyBUaGlzIHByb2dyYW0gaXMgZnJlZSBzb2Z0d2FyZTsgeW91IGNhbiByZWRp c3RyaWJ1dGUgaXQgYW5kL29yCiMgbW9kaWZ5IGl0IHVuZGVyIHRoZSB0ZXJtcyBvZiB0aGUgR05V IEdlbmVyYWwgUHVibGljIExpY2Vuc2UKIyBhcyBwdWJsaXNoZWQgYnkgdGhlIEZyZWUgU29mdHdh cmUgRm91bmRhdGlvbjsgdmVyc2lvbiAyLgojCiMgVGhpcyBwcm9ncmFtIGlzIGRpc3RyaWJ1dGVk IGluIHRoZSBob3BlIHRoYXQgaXQgd2lsbCBiZSB1c2VmdWwsCiMgYnV0IFdJVEhPVVQgQU5ZIFdB UlJBTlRZOyB3aXRob3V0IGV2ZW4gdGhlIGltcGxpZWQgd2FycmFudHkgb2YKIyBNRVJDSEFOVEFC SUxJVFkgb3IgRklUTkVTUyBGT1IgQSBQQVJUSUNVTEFSIFBVUlBPU0UuICBTZWUgdGhlCiMgR05V IEdlbmVyYWwgUHVibGljIExpY2Vuc2UgZm9yIG1vcmUgZGV0YWlscy4KIyBZb3Ugc2hvdWxkIGhh dmUgcmVjZWl2ZWQgYSBjb3B5IG9mIHRoZSBHTlUgR2VuZXJhbCBQdWJsaWMgTGljZW5zZQojIGFs b25nIHdpdGggdGhpcyBwcm9ncmFtOyBpZiBub3QsIHdyaXRlIHRvIHRoZSBGcmVlIFNvZnR3YXJl CiMgRm91bmRhdGlvbiwgSW5jLiwgNTEgRnJhbmtsaW4gU3RyZWV0LCBGaWZ0aCBGbG9vciwgQm9z dG9uLCBNQSAgMDIxMTAtMTMwMSwgVVNBLgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwoKdXNlIHN0cmljdDsK dXNlIHdhcm5pbmdzOwoKdXNlIEZpbGU6OkJhc2VuYW1lOwp1c2UgSFRNTDo6RW50aXRpZXMgKCk7 CgojIENoZWNrIGZvciB3bWljCm15ICR3bWlfY2xpZW50ID0gIndtaWMiOwppZiAoc3lzdGVtKCIk d21pX2NsaWVudCA+IC9kZXYvbnVsbCAyPiYxIikgIT0gMjU2KSB7CglwcmludCAiW2Vycm9yXSAk d21pX2NsaWVudCBub3QgZm91bmQuXG4iOwoJZXhpdCAxOwp9CgppZiAoJCNBUkdWICE9IDIpIHsK CXByaW50ICJVc2FnZTogJDAgPHRhcmdldCBpcD4gPHVzZXJuYW1lPiA8cGFzc3dvcmQ+XG4iOwoJ ZXhpdCAxOwp9CgpteSAkdGFyZ2V0X2lwID0gJEFSR1ZbMF07Cm15ICR1c2VybmFtZSA9ICRBUkdW WzFdOwpteSAkcGFzc3dvcmQgPSAkQVJHVlsyXTsKCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgU1VCIHJ1 bl9xdWVyeSAoJHdxbF9xdWVyeSkKIyBSdW5zIHRoZSBnaXZlbiBXUUwgcXVlcnkgYW5kIHJldHVy bnMgdGhlIHJlc3VsdCBhcyBhbiBhcnJheSBvZiBoYXNoZXMuCiMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1 YiBydW5fcXVlcnkgewoJbXkgJHdxbF9xdWVyeSA9ICRfWzBdOwoJbXkgQHJlc3VsdCA9IHt9OwoK CSR3cWxfcXVlcnkgPX4gJ3MvIi9cJy9nJzsKCgkjIFJ1biB0aGUgRENPTS9XTUkgY2xpZW50Cglt eSAkb3V0cHV0ID0gYCR3bWlfY2xpZW50IC1VICckdXNlcm5hbWUnJSckcGFzc3dvcmQnIC8vJHRh cmdldF9pcCBcIiR3cWxfcXVlcnlcIiAyPi9kZXYvbnVsbGA7CgoJbXkgQGxpbmVzID0gc3BsaXQo L1xuLywgJG91dHB1dCk7CgkjIEhlYWRlciwgZGVzY3JpcHRpb24sIHJlc3VsdHMKCWlmICgkI2xp bmVzIDwgMikgewoJCWV4aXQgMTsKCX0KCgkjIERyb3AgdGhlIGhlYWRlcgoJc2hpZnQgKEBsaW5l cyk7CgkKCSMgR2V0IGNvbHVtbiBuYW1lcwoJbXkgQGNvbHVtbl9uYW1lcyA9IHNwbGl0KC9cfC8s IHNoaWZ0IChAbGluZXMpKTsKCgkjIEdldCByb3cgZGF0YQoJbXkgJGlkeCA9IDA7Cglmb3IgKG15 ICRpID0gMDsgJGkgPD0gJCNsaW5lczsgJGkrKykgewoKCQkjIENoZWNrIGZvciBlcnJvcnMKCQlp ZiAoJGxpbmVzWyRpXSA9fiBtL15FUlJPUi8pIHsKCQkJZXhpdCAxOwoJCX0KCgkJIyBCbGFjayBs aXN0CgkJaWYgKCRsaW5lc1skaV0gPX4gbS9GaWxlIDEvKSB7CgkJCW5leHQ7CgkJfQoKCQlteSBA Y29sdW1uID0gc3BsaXQoL1x8LywgJGxpbmVzWyRpXSk7CgkJZm9yIChteSAkaiA9IDA7ICRqIDw9 ICQjY29sdW1uX25hbWVzOyAkaisrKSB7CgkJCWlmICghIGRlZmluZWQoJGNvbHVtblskal0pKSB7 CgkJCQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gIiI7CgkJCX0KCQkJZWxz ZSB7CgkJCQkkcmVzdWx0Wy',0); -UPDATE tmodule_inventory SET code = code || 'RpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gJGNvbHVtblskal07 CgkJCX0KCQl9CgkJCgkJJGlkeCsrOwoJfQoJCglyZXR1cm4gQHJlc3VsdDsKfQoKIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMKIyBTVUIgcHJpbnRfbW9kdWxlZGF0YSAoJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2Rh dGEsIAojICRtb2R1bGVfZGVzY3JpcHRpb24sIEBkYXRhKQojIFByaW50cyBhIG1vZHVsZWRhdGEg WE1MIHRhZy4gJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEgYW5kCiMgJG1vZHVsZV9kZXNjcmlw dGlvbiBhcmUgdXNlZCB0byBpbmRleCB0aGUgaXRlbSwgZGF0YSBhbmQgZGVzY3JpcHRpb24KIyBY TUwgdGFncyByZXNwZWN0aXZlbHkuCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1YiBwcmludF9tb2R1bGVk YXRhIHsKCW15ICRtb2R1bGVfaXRlbSA9ICRfWzBdOwoJbXkgJG1vZHVsZV9kYXRhID0gJF9bMV07 CglteSAkbW9kdWxlX2Rlc2NyaXB0aW9uID0gJF9bMl07CglteSBAZGF0YSA9IEB7JF9bM119OwoJ bXkgJHJlc3VsdDsKCglmb3JlYWNoIG15ICRlbGVtZW50IChAZGF0YSkgewoJCQoJCSRyZXN1bHQg PSAnJzsKCgkJIyBJdGVtCgkJaWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2l0ZW19KSkg ewoJCQkkcmVzdWx0IC49ICRlbGVtZW50LT57JG1vZHVsZV9pdGVtfSAuICc7JzsKCQl9CgoJCSMg RGF0YQoJCWlmIChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9kYXRhfSkpIHsKCQkJJHJlc3Vs dCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfZGF0YX07CgkJfQoKCQlwcmludCAkcmVzdWx0IC4gIlxu IjsJCgl9Cn0KCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgTWFpbgojIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwoKbXkg QHJlc3VsdCA9IHJ1bl9xdWVyeSgiU0VMRUNUIE5hbWUsIFZlcnNpb24gRlJPTSBXaW4zMl9Qcm9k dWN0Iik7CnByaW50X21vZHVsZWRhdGEgKCJOYW1lIiwgIlZlcnNpb24iLCAiIiwgXEByZXN1bHQp OwpleGl0IDA7Cg==' WHERE id_module_inventory = 14; - -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (15,9,'Patches','Installed patches','/usr/bin/perl','HotFixID;Description;FixComments;ServicePackInEffect','IyEvdXNyL2Jpbi9wZXJsDQojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KIyBwYW5kb3JhX3BhdGNoLnBsDQojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KIyBDb3B5cmlnaHQgKGMpIDIwMDggUmFtb24gTm92b2EsIHJub3ZvYUBhcnRpY2EuZXMNCiMgICAgICAgICAgIChjKSAyMDA4IEFydGljYSBTb2x1Y2lvbmVzIFRlY25vbG9naWNhcyBTLkwNCiMNCiMgVGhpcyBwcm9ncmFtIGlzIGZyZWUgc29mdHdhcmU7IHlvdSBjYW4gcmVkaXN0cmlidXRlIGl0IGFuZC9vcg0KIyBtb2RpZnkgaXQgdW5kZXIgdGhlIHRlcm1zIG9mIHRoZSBHTlUgR2VuZXJhbCBQdWJsaWMgTGljZW5zZQ0KIyBhcyBwdWJsaXNoZWQgYnkgdGhlIEZyZWUgU29mdHdhcmUgRm91bmRhdGlvbjsgdmVyc2lvbiAyLg0KIw0KIyBUaGlzIHByb2dyYW0gaXMgZGlzdHJpYnV0ZWQgaW4gdGhlIGhvcGUgdGhhdCBpdCB3aWxsIGJlIHVzZWZ1bCwNCiMgYnV0IFdJVEhPVVQgQU5ZIFdBUlJBTlRZOyB3aXRob3V0IGV2ZW4gdGhlIGltcGxpZWQgd2FycmFudHkgb2YNCiMgTUVSQ0hBTlRBQklMSVRZIG9yIEZJVE5FU1MgRk9SIEEgUEFSVElDVUxBUiBQVVJQT1NFLiAgU2VlIHRoZQ0KIyBHTlUgR2VuZXJhbCBQdWJsaWMgTGljZW5zZSBmb3IgbW9yZSBkZXRhaWxzLg0KIyBZb3Ugc2hvdWxkIGhhdmUgcmVjZWl2ZWQgYSBjb3B5IG9mIHRoZSBHTlUgR2VuZXJhbCBQdWJsaWMgTGljZW5zZQ0KIyBhbG9uZyB3aXRoIHRoaXMgcHJvZ3JhbTsgaWYgbm90LCB3cml0ZSB0byB0aGUgRnJlZSBTb2Z0d2FyZQ0KIyBGb3VuZGF0aW9uLCBJbmMuLCA1MSBGcmFua2xpbiBTdHJlZXQsIEZpZnRoIEZsb29yLCBCb3N0b24sIE1BICAwMjExMC0xMzAxLCBVU0EuDQojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KDQp1c2Ugc3RyaWN0Ow0KdXNlIHdhcm5pbmdzOw0KDQp1c2UgRmlsZTo6QmFzZW5hbWU7DQp1c2UgSFRNTDo6RW50aXRpZXMgKCk7DQoNCiMgQ2hlY2sgZm9yIHdtaWMNCm15ICR3bWlfY2xpZW50ID0gIndtaWMiOw0KaWYgKHN5c3RlbSgiJHdtaV9jbGllbnQgPiAvZGV2L251bGwgMj4mMSIpICE9IDI1Nikgew0KCXByaW50ICJbZXJyb3JdICR3bWlfY2xpZW50IG5vdCBmb3VuZC5cbiI7DQoJZXhpdCAxOw0KfQ0KDQppZiAoJCNBUkdWICE9IDIpIHsNCglwcmludCAiVXNhZ2U6ICQwIDx0YXJnZXQgaXA+IDx1c2VybmFtZT4gPHBhc3N3b3JkPlxuIjsNCglleGl0IDE7DQp9DQoNCm15ICR0YXJnZXRfaXAgPSAkQVJHVlswXTsNCm15ICR1c2VybmFtZSA9ICRBUkdWWzFdOw0KbXkgJHBhc3N3b3JkID0gJEFSR1ZbMl07DQoNCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjDQojIFNVQiBydW5fcXVlcnkgKCR3cWxfcXVlcnkpDQojIFJ1bnMgdGhlIGdpdmVuIFdRTCBxdWVyeSBhbmQgcmV0dXJucyB0aGUgcmVzdWx0IGFzIGFuIGFycmF5IG9mIGhhc2hlcy4NCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjDQpzdWIgcnVuX3F1ZXJ5IHsNCglteSAkd3FsX3F1ZXJ5ID0gJF9bMF07DQoJbXkgQHJlc3VsdCA9IHt9Ow0KDQoJJHdxbF9xdWVyeSA9fiAncy8iL1wnL2cnOw0KDQoJIyBSdW4gdGhlIERDT00vV01JIGNsaWVudA0KCW15ICRvdXRwdXQgPSBgJHdtaV9jbGllbnQgLVUgJyR1c2VybmFtZSclJyRwYXNzd29yZCcgLy8kdGFyZ2V0X2lwIFwiJHdxbF9xdWVyeVwiIDI+L2Rldi9udWxsYDsNCg0KCW15IEBsaW5lcyA9IHNwbGl0KC9cbi8sICRvdXRwdXQpOw0KCSMgSGVhZGVyLCBkZXNjcmlwdGlvbiwgcmVzdWx0cw0KCWlmICgkI2xpbmVzIDwgMikgew0KCQlleGl0IDE7DQoJfQ0KDQoJIyBEcm9wIHRoZSBoZWFkZXINCglzaGlmdCAoQGxpbmVzKTsNCgkNCgkjIEdldCBjb2x1bW4gbmFtZXMNCglteSBAY29sdW1uX25hbWVzID0gc3BsaXQoL1x8Lywgc2hpZnQgKEBsaW5lcykpOw0KDQoJIyBHZXQgcm93IGRhdGENCglteSAkaWR4ID0gMDsNCglmb3IgKG15ICRpID0gMDsgJGkgPD0gJCNsaW5lczsgJGkrKykgew0KDQoJCSMgQ2hlY2sgZm9yIGVycm9ycw0KCQlpZiAoJGxpbmVzWyRpXSA9fiBtL15FUlJPUi8pIHsNCgkJCWV4aXQgMTsNCgkJfQ0KDQoJCSMgQmxhY2sgbGlzdA0KCQlpZiAoJGxpbmVzWyRpXSA9fiBtL0ZpbGUgMS8pIHsNCgkJCW5leHQ7DQoJCX0NCg0KCQlteSBAY29sdW1uID0gc3BsaXQoL1x8LywgJGxpbmVzWyRpXSk7DQoJCWZvciAobXkgJGogPSAwOyAkaiA8PSAkI2NvbHVtbl9uYW1lczsgJGorKykgew0KCQkJaWYgKCEgZGVmaW5lZCgkY29sdW1uWyRqXSkpIHsNCgkJCQkkcmVzdWx0WyRpZ',0); -UPDATE tmodule_inventory SET code = code || 'HhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gIiI7DQoJCQl9DQoJCQllbHNlIHsNCgkJCQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gJGNvbHVtblskal07DQoJCQl9DQoJCX0NCgkJDQoJCSRpZHgrKzsNCgl9DQoJDQoJcmV0dXJuIEByZXN1bHQ7DQp9DQoNCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjDQojIFNVQiBwcmludF9tb2R1bGVkYXRhICgkbW9kdWxlX2l0ZW0sICRtb2R1bGVfZGF0YSwgDQojICRtb2R1bGVfZGVzY3JpcHRpb24sIEBkYXRhKQ0KIyBQcmludHMgYSBtb2R1bGVkYXRhIFhNTCB0YWcuICRtb2R1bGVfaXRlbSwgJG1vZHVsZV9kYXRhLCANCiMgJG1vZHVsZV9kZXNjcmlwdGlvbiBhbmQgJG1vZHVsZV9zZXJ2aWNlcGFjayBhcmUgdXNlZCB0byBpbmRleCB0aGUgaXRlbSwgZGF0YSwgZGVzY3JpcHRpb24gYW5kIHNlcnZpY2VwYWNrDQojIFhNTCB0YWdzIHJlc3BlY3RpdmVseS4NCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjDQpzdWIgcHJpbnRfbW9kdWxlZGF0YSB7DQoJbXkgJG1vZHVsZV9pdGVtID0gJF9bMF07DQoJbXkgJG1vZHVsZV9kYXRhID0gJF9bMV07DQoJbXkgJG1vZHVsZV9kZXNjcmlwdGlvbiA9ICRfWzJdOw0KCW15ICRtb2R1bGVfc2VydmljZXBhY2sgPSAkX1szXTsNCglteSBAZGF0YSA9IEB7JF9bNF19Ow0KCW15ICRyZXN1bHQ7DQoNCglmb3JlYWNoIG15ICRlbGVtZW50IChAZGF0YSkgew0KCQkNCgkJJHJlc3VsdCA9ICcnOw0KDQoJCSMgSXRlbQ0KCQlpZiAoZGVmaW5lZCgkZWxlbWVudC0+eyRtb2R1bGVfaXRlbX0pKSB7DQoJCQkkcmVzdWx0IC49ICRlbGVtZW50LT57JG1vZHVsZV9pdGVtfSAuICc7JzsNCgkJfQ0KDQoJCSMgRGF0YQ0KCQlpZiAoZGVmaW5lZCgkZWxlbWVudC0+eyRtb2R1bGVfZGF0YX0pKSB7DQoJCQkkcmVzdWx0IC49ICRlbGVtZW50LT57JG1vZHVsZV9kYXRhfSAuICc7JzsNCgkJfQ0KDQoJCSMgRGVzY3JpcHRpb24NCgkJaWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2Rlc2NyaXB0aW9ufSkpIHsNCgkJCSRyZXN1bHQgLj0gJGVsZW1lbnQtPnskbW9kdWxlX2Rlc2NyaXB0aW9ufSAuICc7JzsNCgkJfQ0KDQoJCSMgU2VydmljZSBwYWNrDQoJCWlmIChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9zZXJ2aWNlcGFja30pKSB7DQoJCQkkcmVzdWx0IC49ICRlbGVtZW50LT57JG1vZHVsZV9zZXJ2aWNlcGFja307DQoJCX0NCg0KCQlwcmludCAkcmVzdWx0IC4gIlxuIjsJDQoJfQ0KfQ0KDQojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KIyBNYWluDQojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KDQpteSBAcmVzdWx0ID0gcnVuX3F1ZXJ5KCJTRUxFQ1QgSG90Rml4SUQsIERlc2NyaXB0aW9uLCBGaXhDb21tZW50cywgU2VydmljZVBhY2tJbkVmZmVjdCBGUk9NIFdpbjMyX1F1aWNrRml4RW5naW5lZXJpbmciKTsNCnByaW50X21vZHVsZWRhdGEgKCJIb3RGaXhJRCIsICJEZXNjcmlwdGlvbiIsICJGaXhDb21tZW50cyIsICJTZXJ2aWNlUGFja0luRWZmZWN0IiwgXEByZXN1bHQpOw0KZXhpdCAwOw0K' WHERE id_module_inventory = 15; - -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (16,1,'Init services','Services programmed to lauch in Unix','','Service','',0); - -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (17,9,'Init services','Windows services','/usr/bin/perl','Name;PathName;State','IyEvdXNyL2Jpbi9wZXJsCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgcGFuZG9yYV9zZXJ2aWNlcy5wbAoj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIwojIENvcHlyaWdodCAoYykgMjAwOCBSYW1vbiBOb3ZvYSwgcm5vdm9h QGFydGljYS5lcwojICAgICAgICAgICAoYykgMjAwOCBBcnRpY2EgU29sdWNpb25lcyBUZWNub2xv Z2ljYXMgUy5MCiMKIyBUaGlzIHByb2dyYW0gaXMgZnJlZSBzb2Z0d2FyZTsgeW91IGNhbiByZWRp c3RyaWJ1dGUgaXQgYW5kL29yCiMgbW9kaWZ5IGl0IHVuZGVyIHRoZSB0ZXJtcyBvZiB0aGUgR05V IEdlbmVyYWwgUHVibGljIExpY2Vuc2UKIyBhcyBwdWJsaXNoZWQgYnkgdGhlIEZyZWUgU29mdHdh cmUgRm91bmRhdGlvbjsgdmVyc2lvbiAyLgojCiMgVGhpcyBwcm9ncmFtIGlzIGRpc3RyaWJ1dGVk IGluIHRoZSBob3BlIHRoYXQgaXQgd2lsbCBiZSB1c2VmdWwsCiMgYnV0IFdJVEhPVVQgQU5ZIFdB UlJBTlRZOyB3aXRob3V0IGV2ZW4gdGhlIGltcGxpZWQgd2FycmFudHkgb2YKIyBNRVJDSEFOVEFC SUxJVFkgb3IgRklUTkVTUyBGT1IgQSBQQVJUSUNVTEFSIFBVUlBPU0UuICBTZWUgdGhlCiMgR05V IEdlbmVyYWwgUHVibGljIExpY2Vuc2UgZm9yIG1vcmUgZGV0YWlscy4KIyBZb3Ugc2hvdWxkIGhh dmUgcmVjZWl2ZWQgYSBjb3B5IG9mIHRoZSBHTlUgR2VuZXJhbCBQdWJsaWMgTGljZW5zZQojIGFs b25nIHdpdGggdGhpcyBwcm9ncmFtOyBpZiBub3QsIHdyaXRlIHRvIHRoZSBGcmVlIFNvZnR3YXJl CiMgRm91bmRhdGlvbiwgSW5jLiwgNTEgRnJhbmtsaW4gU3RyZWV0LCBGaWZ0aCBGbG9vciwgQm9z dG9uLCBNQSAgMDIxMTAtMTMwMSwgVVNBLgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwoKdXNlIHN0cmljdDsK dXNlIHdhcm5pbmdzOwoKdXNlIEZpbGU6OkJhc2VuYW1lOwp1c2UgSFRNTDo6RW50aXRpZXMgKCk7 CgojIENoZWNrIGZvciB3bWljCm15ICR3bWlfY2xpZW50ID0gIndtaWMiOwppZiAoc3lzdGVtKCIk d21pX2NsaWVudCA+IC9kZXYvbnVsbCAyPiYxIikgIT0gMjU2KSB7CglwcmludCAiW2Vycm9yXSAk d21pX2NsaWVudCBub3QgZm91bmQuXG4iOwoJZXhpdCAxOwp9CgppZiAoJCNBUkdWICE9IDIpIHsK CXByaW50ICJVc2FnZTogJDAgPHRhcmdldCBpcD4gPHVzZXJuYW1lPiA8cGFzc3dvcmQ+XG4iOwoJ ZXhpdCAxOwp9CgpteSAkdGFyZ2V0X2lwID0gJEFSR1ZbMF07Cm15ICR1c2VybmFtZSA9ICRBUkdW WzFdOwpteSAkcGFzc3dvcmQgPSAkQVJHVlsyXTsKCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgU1VCIHJ1 bl9xdWVyeSAoJHdxbF9xdWVyeSkKIyBSdW5zIHRoZSBnaXZlbiBXUUwgcXVlcnkgYW5kIHJldHVy bnMgdGhlIHJlc3VsdCBhcyBhbiBhcnJheSBvZiBoYXNoZXMuCiMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1 YiBydW5fcXVlcnkgewoJbXkgJHdxbF9xdWVyeSA9ICRfWzBdOwoJbXkgQHJlc3VsdCA9IHt9OwoK CSR3cWxfcXVlcnkgPX4gJ3MvIi9cJy9nJzsKCgkjIFJ1biB0aGUgRENPTS9XTUkgY2xpZW50Cglt eSAkb3V0cHV0ID0gYCR3bWlfY2xpZW50IC1VICckdXNlcm5hbWUnJSckcGFzc3dvcmQnIC8vJHRh cmdldF9pcCBcIiR3cWxfcXVlcnlcIiAyPi9kZXYvbnVsbGA7CgoJbXkgQGxpbmVzID0gc3BsaXQo L1xuLywgJG91dHB1dCk7CgkjIEhlYWRlciwgZGVzY3JpcHRpb24sIHJlc3VsdHMKCWlmICgkI2xp bmVzIDwgMikgewoJCWV4aXQgMTsKCX0KCgkjIERyb3AgdGhlIGhlYWRlcgoJc2hpZnQgKEBsaW5l cyk7CgkKCSMgR2V0IGNvbHVtbiBuYW1lcwoJbXkgQGNvbHVtbl9uYW1lcyA9IHNwbGl0KC9cfC8s IHNoaWZ0IChAbGluZXMpKTsKCgkjIEdldCByb3cgZGF0YQoJbXkgJGlkeCA9IDA7Cglmb3IgKG15 ICRpID0gMDsgJGkgPD0gJCNsaW5lczsgJGkrKykgewoKCQkjIENoZWNrIGZvciBlcnJvcnMKCQlp ZiAoJGxpbmVzWyRpXSA9fiBtL15FUlJPUi8pIHsKCQkJZXhpdCAxOwoJCX0KCgkJIyBCbGFjayBs aXN0CgkJaWYgKCRsaW5lc1skaV0gPX4gbS9GaWxlIDEvKSB7CgkJCW5leHQ7CgkJfQoKCQlteSBA Y29sdW1uID0gc3BsaXQoL1x8LywgJGxpbmVzWyRpXSk7CgkJZm9yIChteSAkaiA9IDA7ICRqIDw9 ICQjY29sdW1uX25hbWVzOyAkaisrKSB7CgkJCWlmICghIGRlZmluZWQoJGNvbHVtblskal0pKSB7 CgkJCQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gIiI7CgkJCX0KCQkJZWxz ZSB7CgkJCQkkcmVzdWx0WyRpZHhdLT57JGNvbH',0); -UPDATE tmodule_inventory SET code = code || 'Vtbl9uYW1lc1skal19ID0gJGNvbHVtblskal07 CgkJCX0KCQl9CgkJCgkJJGlkeCsrOwoJfQoJCglyZXR1cm4gQHJlc3VsdDsKfQoKIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMKIyBTVUIgcHJpbnRfbW9kdWxlZGF0YSAoJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2Rh dGEsIAojICRtb2R1bGVfZGVzY3JpcHRpb24sIEBkYXRhKQojIFByaW50cyBhIG1vZHVsZWRhdGEg WE1MIHRhZy4gJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEgYW5kCiMgJG1vZHVsZV9kZXNjcmlw dGlvbiBhcmUgdXNlZCB0byBpbmRleCB0aGUgaXRlbSwgZGF0YSBhbmQgZGVzY3JpcHRpb24KIyBY TUwgdGFncyByZXNwZWN0aXZlbHkuCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1YiBwcmludF9tb2R1bGVk YXRhIHsKCW15ICRtb2R1bGVfaXRlbSA9ICRfWzBdOwoJbXkgJG1vZHVsZV9kYXRhID0gJF9bMV07 CglteSAkbW9kdWxlX2Rlc2NyaXB0aW9uID0gJF9bMl07CglteSBAZGF0YSA9IEB7JF9bM119OwoJ bXkgJHJlc3VsdDsKCglmb3JlYWNoIG15ICRlbGVtZW50IChAZGF0YSkgewoJCQoJCSRyZXN1bHQg PSAnJzsKCgkJIyBJdGVtCgkJaWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2l0ZW19KSkg ewoJCQkkcmVzdWx0IC49ICRlbGVtZW50LT57JG1vZHVsZV9pdGVtfSAuICc7JzsKCQl9CgoJCSMg RGF0YQoJCWlmIChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9kYXRhfSkpIHsKCQkJJHJlc3Vs dCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfZGF0YX0gLiAnOyc7CgkJfQoKCQkjIERlc2NyaXB0aW9u CgkJaWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2Rlc2NyaXB0aW9ufSkpIHsKCQkJJHJl c3VsdCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfZGVzY3JpcHRpb259OwoJCX0KCgkJcHJpbnQgJHJl c3VsdCAuICJcbiI7CQoJfQp9CgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwojIE1haW4KIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMKCm15IEByZXN1bHQgPSBydW5fcXVlcnkoIlNFTEVDVCBOYW1lLCBQYXRoTmFtZSwgU3Rh dGUgRlJPTSBXaW4zMl9TZXJ2aWNlIik7CnByaW50X21vZHVsZWRhdGEgKCJOYW1lIiwgIlBhdGhO YW1lIiwgIlN0YXRlIiwgXEByZXN1bHQpOwpleGl0IDA7Cg==' WHERE id_module_inventory = 17; - -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (18,1,'File system','UNIX filesystem mounted on system','','Device;Free size;Total size;Mount point','',0); -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (19,9,'File system','Disk drives','','Device;Total size;Free size;Mount point','',0); -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (20,1,'Process','Process running on system','','Process output from ps','',0); - -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (21,9,'Process','Process running on system','/usr/bin/perl','Name;PathName;State','IyEvdXNyL2Jpbi9wZXJsCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgcGFuZG9yYV9wcm9jZXNzZXMucGwK IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMKIyBDb3B5cmlnaHQgKGMpIDIwMDggUmFtb24gTm92b2EsIHJub3Zv YUBhcnRpY2EuZXMKIyAgICAgICAgICAgKGMpIDIwMDggQXJ0aWNhIFNvbHVjaW9uZXMgVGVjbm9s b2dpY2FzIFMuTAojCiMgVGhpcyBwcm9ncmFtIGlzIGZyZWUgc29mdHdhcmU7IHlvdSBjYW4gcmVk aXN0cmlidXRlIGl0IGFuZC9vcgojIG1vZGlmeSBpdCB1bmRlciB0aGUgdGVybXMgb2YgdGhlIEdO VSBHZW5lcmFsIFB1YmxpYyBMaWNlbnNlCiMgYXMgcHVibGlzaGVkIGJ5IHRoZSBGcmVlIFNvZnR3 YXJlIEZvdW5kYXRpb247IHZlcnNpb24gMi4KIwojIFRoaXMgcHJvZ3JhbSBpcyBkaXN0cmlidXRl ZCBpbiB0aGUgaG9wZSB0aGF0IGl0IHdpbGwgYmUgdXNlZnVsLAojIGJ1dCBXSVRIT1VUIEFOWSBX QVJSQU5UWTsgd2l0aG91dCBldmVuIHRoZSBpbXBsaWVkIHdhcnJhbnR5IG9mCiMgTUVSQ0hBTlRB QklMSVRZIG9yIEZJVE5FU1MgRk9SIEEgUEFSVElDVUxBUiBQVVJQT1NFLiAgU2VlIHRoZQojIEdO VSBHZW5lcmFsIFB1YmxpYyBMaWNlbnNlIGZvciBtb3JlIGRldGFpbHMuCiMgWW91IHNob3VsZCBo YXZlIHJlY2VpdmVkIGEgY29weSBvZiB0aGUgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UKIyBh bG9uZyB3aXRoIHRoaXMgcHJvZ3JhbTsgaWYgbm90LCB3cml0ZSB0byB0aGUgRnJlZSBTb2Z0d2Fy ZQojIEZvdW5kYXRpb24sIEluYy4sIDUxIEZyYW5rbGluIFN0cmVldCwgRmlmdGggRmxvb3IsIEJv c3RvbiwgTUEgIDAyMTEwLTEzMDEsIFVTQS4KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKCnVzZSBzdHJpY3Q7 CnVzZSB3YXJuaW5nczsKCnVzZSBGaWxlOjpCYXNlbmFtZTsKdXNlIEhUTUw6OkVudGl0aWVzICgp OwoKIyBDaGVjayBmb3Igd21pYwpteSAkd21pX2NsaWVudCA9ICJ3bWljIjsKaWYgKHN5c3RlbSgi JHdtaV9jbGllbnQgPiAvZGV2L251bGwgMj4mMSIpICE9IDI1NikgewoJcHJpbnQgIltlcnJvcl0g JHdtaV9jbGllbnQgbm90IGZvdW5kLlxuIjsKCWV4aXQgMTsKfQoKaWYgKCQjQVJHViAhPSAyKSB7 CglwcmludCAiVXNhZ2U6ICQwIDx0YXJnZXQgaXA+IDx1c2VybmFtZT4gPHBhc3N3b3JkPlxuIjsK CWV4aXQgMTsKfQoKbXkgJHRhcmdldF9pcCA9ICRBUkdWWzBdOwpteSAkdXNlcm5hbWUgPSAkQVJH VlsxXTsKbXkgJHBhc3N3b3JkID0gJEFSR1ZbMl07CgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwojIFNVQiBy dW5fcXVlcnkgKCR3cWxfcXVlcnkpCiMgUnVucyB0aGUgZ2l2ZW4gV1FMIHF1ZXJ5IGFuZCByZXR1 cm5zIHRoZSByZXN1bHQgYXMgYW4gYXJyYXkgb2YgaGFzaGVzLgojIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwpz dWIgcnVuX3F1ZXJ5IHsKCW15ICR3cWxfcXVlcnkgPSAkX1swXTsKCW15IEByZXN1bHQgPSB7fTsK Cgkkd3FsX3F1ZXJ5ID1+ICdzLyIvXCcvZyc7CgoJIyBSdW4gdGhlIERDT00vV01JIGNsaWVudAoJ bXkgJG91dHB1dCA9IGAkd21pX2NsaWVudCAtVSAnJHVzZXJuYW1lJyUnJHBhc3N3b3JkJyAvLyR0 YXJnZXRfaXAgXCIkd3FsX3F1ZXJ5XCIgMj4vZGV2L251bGxgOwoKCW15IEBsaW5lcyA9IHNwbGl0 KC9cbi8sICRvdXRwdXQpOwoJIyBIZWFkZXIsIGRlc2NyaXB0aW9uLCByZXN1bHRzCglpZiAoJCNs aW5lcyA8IDIpIHsKCQlleGl0IDE7Cgl9CgoJIyBEcm9wIHRoZSBoZWFkZXIKCXNoaWZ0IChAbGlu ZXMpOwoJCgkjIEdldCBjb2x1bW4gbmFtZXMKCW15IEBjb2x1bW5fbmFtZXMgPSBzcGxpdCgvXHwv LCBzaGlmdCAoQGxpbmVzKSk7CgoJIyBHZXQgcm93IGRhdGEKCW15ICRpZHggPSAwOwoJZm9yICht eSAkaSA9IDA7ICRpIDw9ICQjbGluZXM7ICRpKyspIHsKCgkJIyBDaGVjayBmb3IgZXJyb3JzCgkJ aWYgKCRsaW5lc1skaV0gPX4gbS9eRVJST1IvKSB7CgkJCWV4aXQgMTsKCQl9CgoJCSMgQmxhY2sg bGlzdAoJCWlmICgkbGluZXNbJGldID1+IG0vRmlsZSAxLykgewoJCQluZXh0OwoJCX0KCgkJbXkg QGNvbHVtbiA9IHNwbGl0KC9cfC8sICRsaW5lc1skaV0pOwoJCWZvciAobXkgJGogPSAwOyAkaiA8 PSAkI2NvbHVtbl9uYW1lczsgJGorKykgewoJCQlpZiAoISBkZWZpbmVkKCRjb2x1bW5bJGpdKSkg ewoJCQkJJHJlc3VsdFskaWR4XS0+eyRjb2x1bW5fbmFtZXNbJGpdfSA9ICIiOwoJCQl9CgkJCWVs c2UgewoJCQkJJHJlc3VsdFskaWR4XS0+eyRj',0); -UPDATE tmodule_inventory SET code = code || 'b2x1bW5fbmFtZXNbJGpdfSA9ICRjb2x1bW5bJGpd OwoJCQl9CgkJfQoJCQoJCSRpZHgrKzsKCX0KCQoJcmV0dXJuIEByZXN1bHQ7Cn0KCiMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjCiMgU1VCIHByaW50X21vZHVsZWRhdGEgKCRtb2R1bGVfaXRlbSwgJG1vZHVsZV9k YXRhLCAKIyAkbW9kdWxlX2Rlc2NyaXB0aW9uLCBAZGF0YSkKIyBQcmludHMgYSBtb2R1bGVkYXRh IFhNTCB0YWcuICRtb2R1bGVfaXRlbSwgJG1vZHVsZV9kYXRhIGFuZAojICRtb2R1bGVfZGVzY3Jp cHRpb24gYXJlIHVzZWQgdG8gaW5kZXggdGhlIGl0ZW0sIGRhdGEgYW5kIGRlc2NyaXB0aW9uCiMg WE1MIHRhZ3MgcmVzcGVjdGl2ZWx5LgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwpzdWIgcHJpbnRfbW9kdWxl ZGF0YSB7CglteSAkbW9kdWxlX2l0ZW0gPSAkX1swXTsKCW15ICRtb2R1bGVfZGF0YSA9ICRfWzFd OwoJbXkgJG1vZHVsZV9kZXNjcmlwdGlvbiA9ICRfWzJdOwoJbXkgQGRhdGEgPSBAeyRfWzNdfTsK CW15ICRyZXN1bHQ7CgoJZm9yZWFjaCBteSAkZWxlbWVudCAoQGRhdGEpIHsKCQkKCQkkcmVzdWx0 ID0gJyc7CgoJCSMgSXRlbQoJCWlmIChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9pdGVtfSkp IHsKCQkJJHJlc3VsdCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfaXRlbX0gLiAnOyc7CgkJfQoKCQkj IERhdGEKCQlpZiAoZGVmaW5lZCgkZWxlbWVudC0+eyRtb2R1bGVfZGF0YX0pKSB7CgkJCSRyZXN1 bHQgLj0gJGVsZW1lbnQtPnskbW9kdWxlX2RhdGF9IC4gJzsnOwoJCX0KCgkJIyBEZXNjcmlwdGlv bgoJCWlmIChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9kZXNjcmlwdGlvbn0pKSB7CgkJCSRy ZXN1bHQgLj0gJGVsZW1lbnQtPnskbW9kdWxlX2Rlc2NyaXB0aW9ufTsKCQl9CgoJCXByaW50ICRy ZXN1bHQgLiAiXG4iOwkKCX0KfQoKIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKIyBNYWluCiMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjCgpteSBAcmVzdWx0ID0gcnVuX3F1ZXJ5KCJTRUxFQ1QgTmFtZSwgUGF0aE5hbWUsIFN0 YXRlIEZST00gV2luMzJfU2VydmljZSIpOwpwcmludF9tb2R1bGVkYXRhICgiTmFtZSIsICJQYXRo TmFtZSIsICJTdGF0ZSIsIFxAcmVzdWx0KTsJCmV4aXQgMDsK' WHERE id_module_inventory = 21; - -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (22,1,'Users','User list','','Username','',0); - -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (23,9,'Users','User list','/usr/bin/perl','Name;FullName;Status','IyEvdXNyL2Jpbi9wZXJsCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgcGFuZG9yYV91c2Vycy5wbAojIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIwojIENvcHlyaWdodCAoYykgMjAwOCBSYW1vbiBOb3ZvYSwgcm5vdm9hQGFy dGljYS5lcwojICAgICAgICAgICAoYykgMjAwOCBBcnRpY2EgU29sdWNpb25lcyBUZWNub2xvZ2lj YXMgUy5MCiMKIyBUaGlzIHByb2dyYW0gaXMgZnJlZSBzb2Z0d2FyZTsgeW91IGNhbiByZWRpc3Ry aWJ1dGUgaXQgYW5kL29yCiMgbW9kaWZ5IGl0IHVuZGVyIHRoZSB0ZXJtcyBvZiB0aGUgR05VIEdl bmVyYWwgUHVibGljIExpY2Vuc2UKIyBhcyBwdWJsaXNoZWQgYnkgdGhlIEZyZWUgU29mdHdhcmUg Rm91bmRhdGlvbjsgdmVyc2lvbiAyLgojCiMgVGhpcyBwcm9ncmFtIGlzIGRpc3RyaWJ1dGVkIGlu IHRoZSBob3BlIHRoYXQgaXQgd2lsbCBiZSB1c2VmdWwsCiMgYnV0IFdJVEhPVVQgQU5ZIFdBUlJB TlRZOyB3aXRob3V0IGV2ZW4gdGhlIGltcGxpZWQgd2FycmFudHkgb2YKIyBNRVJDSEFOVEFCSUxJ VFkgb3IgRklUTkVTUyBGT1IgQSBQQVJUSUNVTEFSIFBVUlBPU0UuICBTZWUgdGhlCiMgR05VIEdl bmVyYWwgUHVibGljIExpY2Vuc2UgZm9yIG1vcmUgZGV0YWlscy4KIyBZb3Ugc2hvdWxkIGhhdmUg cmVjZWl2ZWQgYSBjb3B5IG9mIHRoZSBHTlUgR2VuZXJhbCBQdWJsaWMgTGljZW5zZQojIGFsb25n IHdpdGggdGhpcyBwcm9ncmFtOyBpZiBub3QsIHdyaXRlIHRvIHRoZSBGcmVlIFNvZnR3YXJlCiMg Rm91bmRhdGlvbiwgSW5jLiwgNTEgRnJhbmtsaW4gU3RyZWV0LCBGaWZ0aCBGbG9vciwgQm9zdG9u LCBNQSAgMDIxMTAtMTMwMSwgVVNBLgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwoKdXNlIHN0cmljdDsKdXNl IHdhcm5pbmdzOwoKdXNlIEZpbGU6OkJhc2VuYW1lOwp1c2UgSFRNTDo6RW50aXRpZXMgKCk7Cgoj IENoZWNrIGZvciB3bWljCm15ICR3bWlfY2xpZW50ID0gIndtaWMiOwppZiAoc3lzdGVtKCIkd21p X2NsaWVudCA+IC9kZXYvbnVsbCAyPiYxIikgIT0gMjU2KSB7CglwcmludCAiW2Vycm9yXSAkd21p X2NsaWVudCBub3QgZm91bmQuXG4iOwoJZXhpdCAxOwp9CgppZiAoJCNBUkdWICE9IDIpIHsKCXBy aW50ICJVc2FnZTogJDAgPHRhcmdldCBpcD4gPHVzZXJuYW1lPiA8cGFzc3dvcmQ+XG4iOwoJZXhp dCAxOwp9CgpteSAkdGFyZ2V0X2lwID0gJEFSR1ZbMF07Cm15ICR1c2VybmFtZSA9ICRBUkdWWzFd OwpteSAkcGFzc3dvcmQgPSAkQVJHVlsyXTsKCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgU1VCIHJ1bl9x dWVyeSAoJHdxbF9xdWVyeSkKIyBSdW5zIHRoZSBnaXZlbiBXUUwgcXVlcnkgYW5kIHJldHVybnMg dGhlIHJlc3VsdCBhcyBhbiBhcnJheSBvZiBoYXNoZXMuCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1YiBy dW5fcXVlcnkgewoJbXkgJHdxbF9xdWVyeSA9ICRfWzBdOwoJbXkgQHJlc3VsdCA9IHt9OwoKCSR3 cWxfcXVlcnkgPX4gJ3MvIi9cJy9nJzsKCgkjIFJ1biB0aGUgRENPTS9XTUkgY2xpZW50CglteSAk b3V0cHV0ID0gYCR3bWlfY2xpZW50IC1VICckdXNlcm5hbWUnJSckcGFzc3dvcmQnIC8vJHRhcmdl dF9pcCBcIiR3cWxfcXVlcnlcIiAyPi9kZXYvbnVsbGA7CgoJbXkgQGxpbmVzID0gc3BsaXQoL1xu LywgJG91dHB1dCk7CgkjIEhlYWRlciwgZGVzY3JpcHRpb24sIHJlc3VsdHMKCWlmICgkI2xpbmVz IDwgMikgewoJCWV4aXQgMTsKCX0KCgkjIERyb3AgdGhlIGhlYWRlcgoJc2hpZnQgKEBsaW5lcyk7 CgkKCSMgR2V0IGNvbHVtbiBuYW1lcwoJbXkgQGNvbHVtbl9uYW1lcyA9IHNwbGl0KC9cfC8sIHNo aWZ0IChAbGluZXMpKTsKCgkjIEdldCByb3cgZGF0YQoJbXkgJGlkeCA9IDA7Cglmb3IgKG15ICRp ID0gMDsgJGkgPD0gJCNsaW5lczsgJGkrKykgewoKCQkjIENoZWNrIGZvciBlcnJvcnMKCQlpZiAo JGxpbmVzWyRpXSA9fiBtL15FUlJPUi8pIHsKCQkJZXhpdCAxOwoJCX0KCgkJIyBCbGFjayBsaXN0 CgkJaWYgKCRsaW5lc1skaV0gPX4gbS9GaWxlIDEvKSB7CgkJCW5leHQ7CgkJfQoKCQlteSBAY29s dW1uID0gc3BsaXQoL1x8LywgJGxpbmVzWyRpXSk7CgkJZm9yIChteSAkaiA9IDA7ICRqIDw9ICQj Y29sdW1uX25hbWVzOyAkaisrKSB7CgkJCWlmICghIGRlZmluZWQoJGNvbHVtblskal0pKSB7CgkJ CQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gIiI7CgkJCX0KCQkJZWxzZSB7 CgkJCQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19I',0); -UPDATE tmodule_inventory SET code = code || 'D0gJGNvbHVtblskal07CgkJ CX0KCQl9CgkJCgkJJGlkeCsrOwoJfQoJCglyZXR1cm4gQHJlc3VsdDsKfQoKIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMKIyBTVUIgcHJpbnRfbW9kdWxlZGF0YSAoJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEs IAojICRtb2R1bGVfZGVzY3JpcHRpb24sIEBkYXRhKQojIFByaW50cyBhIG1vZHVsZWRhdGEgWE1M IHRhZy4gJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEgYW5kCiMgJG1vZHVsZV9kZXNjcmlwdGlv biBhcmUgdXNlZCB0byBpbmRleCB0aGUgaXRlbSwgZGF0YSBhbmQgZGVzY3JpcHRpb24KIyBYTUwg dGFncyByZXNwZWN0aXZlbHkuCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1YiBwcmludF9tb2R1bGVkYXRh IHsKCW15ICRtb2R1bGVfaXRlbSA9ICRfWzBdOwoJbXkgJG1vZHVsZV9kYXRhID0gJF9bMV07Cglt eSAkbW9kdWxlX2Rlc2NyaXB0aW9uID0gJF9bMl07CglteSBAZGF0YSA9IEB7JF9bM119OwoJbXkg JHJlc3VsdDsKCglmb3JlYWNoIG15ICRlbGVtZW50IChAZGF0YSkgewoJCQoJCSRyZXN1bHQgPSAn JzsKCgkJIyBJdGVtCgkJaWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2l0ZW19KSkgewoJ CQkkcmVzdWx0IC49ICRlbGVtZW50LT57JG1vZHVsZV9pdGVtfSAuICc7JzsKCQl9CgoJCSMgRGF0 YQoJCWlmIChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9kYXRhfSkpIHsKCQkJJHJlc3VsdCAu PSAkZWxlbWVudC0+eyRtb2R1bGVfZGF0YX0gLiAnOyc7CgkJfQoKCQkjIERlc2NyaXB0aW9uCgkJ aWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2Rlc2NyaXB0aW9ufSkpIHsKCQkJJHJlc3Vs dCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfZGVzY3JpcHRpb259OwoJCX0KCgkJcHJpbnQgJHJlc3Vs dCAuICJcbiI7CQoJfQp9CgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwojIE1haW4KIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMKCm15IEByZXN1bHQgPSBydW5fcXVlcnkoIlNFTEVDVCBOYW1lLCBGdWxsTmFtZSwgU3RhdHVz IEZST00gV2luMzJfVXNlckFjY291bnQiKTsKcHJpbnRfbW9kdWxlZGF0YSAoIk5hbWUiLCAiRnVs bE5hbWUiLCAiU3RhdHVzIiwgXEByZXN1bHQpOwpleGl0IDA7Cg==' WHERE id_module_inventory = 23; - -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (24,9,'Services','Services installed','','Name;Command;Status','',0); -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (25,15,'Software','Installed software applications','','Name;Version;Description','',0); -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (26,7,'Cisco Interface Remote Inventory','Remote inventory module to get all cards in a Cisco','/usr/bin/perl','Name;Card Name;ID/Serial','IyEvdXNyL2Jpbi9wZXJsDQojSW52ZW50YXJpbyBkZSBUYXJqZXRhcw0KI1Nsb3Q7UGFydE51bWJlcjtTZXJpYWxOdW1iZXINCg0KIyEvdXNyL2Jpbi9wZXJsIC13DQoNCm15ICR0YXJnZXRfaXAgPSAkQVJHVlswXTsNCm15ICRjb21tdW5pdHkgPSAkQVJHVlsxXTsNCg0KI34gRXhlY3V0ZSBjb21tYW5kDQokY29tbWFuZCA9IGBzbm1wd2FsayAtdjJjIC1jICRjb21tdW5pdHkgJHRhcmdldF9pcCBtaWItMi40Ny4xLjEuMS4xLjJgOw0KDQojfiBTcGxpdCB0aGUgb3V0cHV0IGluIGxpbmVzDQpAdGVtcCA9IHNwbGl0ICgiXG4iLCAkY29tbWFuZCk7DQpteSBAdmFsdWVzOw0KDQojfiBFYWNoIGxpbmUNCmZvcmVhY2ggKEB0ZW1wKSB7DQoJI34gc3dhcCBkb3RzIGJ5IHNwYWNlcw0KCSRfID1+IHMvXC4vIC9nOw0KCSN+IHNwbGl0IHRoZSBsaW5lIGJ5IHNwYWNlcw0KCUBsaW5lID0gc3BsaXQgKC8gLywgJF8pOw0KCSN+IHNhdmUgdGhlIDd0aCB2YWx1ZQ0KCXB1c2ggKEB2YWx1ZXMsICRsaW5lWzddKTsNCn0NCg0KZm9yZWFjaCAoQHZhbHVlcykgew0KCSN+IHByaW50ICIkXyI7DQoJJFBJRCA9ICcnOw0KCSRQSUQgLj0gYHNubXBnZXQgLXYyYyAtYyAkY29tbXVuaXR5IC1PdnEgJHRhcmdldF9pcCBtaWItMi40Ny4xLjEuMS4xLjEzLiRfYDsNCgkkUElEIC49IGBzbm1wZ2V0IC12MmMgLWMgJGNvbW11bml0eSAtT3ZxICR0YXJnZXRfaXAgbWliLTIuNDcuMS4xLjEuMS4xMS4kX2A7DQoJJFBJRCA9fiBzL1wifFxufFw8fFw+fFwmfFxbfFxdLy9nOw0KDQoJaWYgKCRQSUQgbmUgIiIgKSB7DQoJCSRyZXN1bHQgPSAnJzsNCgkJIyRyZXN1bHQgLj0gYHNubXBnZXQgLXYyYyAtYyAkY29tbXVuaXR5IC1PdnEgJHRhcmdldF9pcCBzeXNOYW1lLjBgIC4gJzsnOw0KCQkkcmVzdWx0IC49IGBzbm1wZ2V0IC12MmMgLWMgJGNvbW11bml0eSAtT3ZxICR0YXJnZXRfaXAgbWliLTIuNDcuMS4xLjEuMS43LiRfYCAuICc7JzsNCgkJIyRyZXN1bHQgLj0gYHNubXBnZXQgLXYyYyAtYyAkY29tbXVuaXR5IC1PdnEgJHRhcmdldF9pcCBtaWItMi40Ny4xLjEuMS4xLjIuJF9gIC4gJzsnOw0KCQkkcmVzdWx0IC49IGBzbm1wZ2V0IC12MmMgLWMgJGNvbW11bml0eSAtT3ZxICR0YXJnZXRfaXAgbWliLTIuNDcuMS4xLjEuMS4xMy4kX2AgLiAnOyc7DQoJCSRyZXN1bHQgLj0gYHNubXBnZXQgLXYyYyAtYyAkY29tbXVuaXR5IC1PdnEgJHRhcmdldF9pcCBtaWItMi40Ny4xLjEuMS4xLjExLiRfYDsNCgkJDQoJCSRyZXN1bHQgPX4gcy9cInxcbnxcPHxcPnxcJnxcW3xcXS8vZzsNCgkJcHJpbnQgJHJlc3VsdCAuICJcbiI7DQoJfQ0KfQ0KZXhpdCAwOw0K',0); -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (27,7,'Cisco Inventory','Get remote device information about the cisco device','/usr/bin/perl','IP;Hardware;SerialNumber;IOS','IyEvdXNyL2Jpbi9wZXJsDQoNCiNJbmZvcm1hY2lvbiBkZWwgRXF1aXBvDQojSVA7SGFyZHdhcmU7U2VyaWFsTnVtYmVyO0lPUw0KDQpteSAkdGFyZ2V0X2lwID0gJEFSR1ZbMF07DQpteSAkY29tbXVuaXR5ID0gJEFSR1ZbMV07DQoNCiRyZXN1bHQgPSAnJzsNCiMkcmVzdWx0IC49IGBzbm1wZ2V0IC12MmMgLWMgJGNvbW11bml0eSAtT3ZxICR0YXJnZXRfaXAgc3lzTmFtZS4wYCAuICc7JzsNCiRyZXN1bHQgLj0gJHRhcmdldF9pcCAuICc7JzsNCiRlcnJvciA9ICcnOw0KJGVycm9yIC49IGBzbm1wZ2V0IC12MmMgLWMgJGNvbW11bml0eSAtT3ZxICR0YXJnZXRfaXAgbWliLTIuNDcuMS4xLjEuMS4yLjEgfCBncmVwIGV4aXN0c2A7DQokc2VyaWFsID0gJyc7DQokc2VyaWFsIC49IGBzbm1wZ2V0IC12MmMgLWMgJGNvbW11bml0eSAtT3ZxICR0YXJnZXRfaXAgbWliLTIuNDcuMS4xLjEuMS4xMS4xYDsNCiRzZXJpYWwgPX4gcy9cInxcbnxcPHxcPnxcJnxcW3xcXS8vZzsNCg0KaWYgKCRlcnJvciBlcSAiIiAmJiAkc2VyaWFsIG5lICIiKXsNCiAgICAkcmVzdWx0IC49IGBzbm1wZ2V0IC12MmMgLWMgJGNvbW11bml0eSAtT3ZxICR0YXJnZXRfaXAgbWliLTIuNDcuMS4xLjEuMS4yLjFgIC4gJzsnOw0KICAgICRyZXN1bHQgLj0gYHNubXBnZXQgLXYyYyAtYyAkY29tbXVuaXR5IC1PdnEgJHRhcmdldF9pcCBtaWItMi40Ny4xLjEuMS4xLjExLjFgIC4gJzsnOw0KDQp9IGVsc2Ugew0KICAgICRWU1MgPSAnJzsNCiAgICAkVlNTIC49IGBzbm1wZ2V0IC12MmMgLWMgJGNvbW11bml0eSAtT3ZxICR0YXJnZXRfaXAgbWliLTIuNDcuMS4xLjEuMS4yLjEgfCBncmVwIFZpcnR1YWxgOw0KICAgIGlmICgkVlNTIGVxICIiKSB7DQogICAgICAgICRyZXN1bHQgLj0gYHNubXBnZXQgLXYyYyAtYyAkY29tbXVuaXR5IC1PdnEgJHRhcmdldF9pcCBtaWItMi40Ny4xLjEuMS4xLjIuMTAwMWAgLiAnOyc7DQogICAgICAgICRyZXN1bHQgLj0gYHNubXBnZXQgLXYyYyAtYyAkY29tbXVuaXR5IC1PdnEgJHRhcmdldF9pcCBtaWItMi40Ny4xLjEuMS4xLjExLjEwMDFgIC4gJzsnOw0KICAgIH0gZWxzZSB7DQogICAgICAgICRyZXN1bHQgLj0gYHNubXBnZXQgLXYyYyAtYyAkY29tbXVuaXR5IC1PdnEgJHRhcmdldF9pcCBtaWItMi40Ny4xLjEuMS4xLjIuMWAgLiAnOyc7DQogICAgICAgICRyZXN1bHQgLj0gYHNubXBnZXQgLXYyYyAtYyAkY29tbXVuaXR5IC1PdnEgJHRhcmdldF9pcCBtaWItMi40Ny4xLjEuMS4xLjExLjJgIC4gJzsnOw0KICAgIH0NCn0NCg0KJHJlc3VsdCAuPSBgc25tcGdldCAtdjJjIC1jICRjb21tdW5pdHkgLU92cSAkdGFyZ2V0X2lwIHN5c0Rlc2NyLjAgfCBncmVwIElPU2A7DQokcmVzdWx0ID1+IHMvXCJ8XG58XDx8XD58XCZ8XFt8XF0vL2c7DQpwcmludCAkcmVzdWx0IC4gIlxuIjsNCmV4aXQgMDsNCg==',0); -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (28,1,'IP','IP address','','Interface;Address','',0); -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (29,1,'Routes','Routes table','','Destination;Gateway;Mask;Flags;Metric;Use;Interface','',0); -INSERT INTO tmodule_inventory (id_module_inventory, id_os, name, description, interpreter, data_format, code, block_mode) VALUES (30,7,'Cisco Configuration','This script will collect a remote CISCO configuration','/usr/bin/perl','Configuration dump','IyEvdXNyL2Jpbi9wZXJsIAojCiMgKGMpIEFydGljYSAyMDE0CiMgVGhpcyBpcyBhbiBFbnRlcnByaXNlIGludmVudG9yeSBzY3JpcHQgZm9yIFBhbmRvcmEgRk1TIDUKIyBUaGlzIHNjcmlwdCB3aWxsIGNvbGxlY3QgYSByZW1vdGUgQ0lTQ08gY29uZmlndXJhdGlvbgojIFJFTUVNQkVSIFRPIEFDVElWQVRFIElUIEFTIEJMT0NLIE1PREUgISEhCgp1c2Ugd2FybmluZ3M7CnVzZSBzdHJpY3Q7CnVzZSBOZXQ6OlRlbG5ldDsKCm15ICR0YXJnZXQgPSAiIjsKbXkgJGxvZ2luX3Bhc3MgPSAiIjsKbXkgJGVuYWJsZV9wYXNzID0gIiI7Cm15ICRvdXRwdXRfZmlsZSA9ICIvdG1wL2Npc2NvIi4kJDsKbXkgJFRJTUVPVVQ9NTsKCiMgTG9hZCBjb25maWcgZmlsZSBmcm9tIGNvbW1hbmQgbGluZQppZiAoJCNBUkdWIDwgMiAgKXsKICAgICAgICBwcmludCAiSSBuZWVkIHNldmVyYWwgcGFyYW1ldGVycyBpbiB0aGlzIGZvcm1hdDogXG5cbiI7CglwcmludCAiICAgICAgZ2V0X2NvbmZpZy5wbCA8aXBfYWRkcmVzcz4gPGxvZ2luX3Bhc3M+IDxlbmFibGVfcGFzcz4gXG5cbiI7CiAgICAgICAgZXhpdDsKfQoKJHRhcmdldCA9ICRBUkdWWzBdOwokbG9naW5fcGFzcyA9ICRBUkdWWzFdOwokZW5hYmxlX3Bhc3MgPSAkQVJHVlsyXTsKCm15ICR0ZWxuZXQgPSBuZXcgTmV0OjpUZWxuZXQgKCBUaW1lb3V0PT4kVElNRU9VVCwgRXJybW9kZT0+J3JldHVybicpOyAKJHRlbG5ldC0+b3BlbigkdGFyZ2V0KTsgCiR0ZWxuZXQtPndhaXRmb3IoJy9QYXNzd29yZDovaScpOyAKJHRlbG5ldC0+cHJpbnQoJGxvZ2luX3Bhc3MpOyAKCiR0ZWxuZXQtPndhaXRmb3IoJy9cPiQvaScpOyAKJHRlbG5ldC0+cHJpbnQoJ2VuJyk7CiR0ZWxuZXQtPndhaXRmb3IoJy9QYXNzd29yZDovaScpOwokdGVsbmV0LT5wcmludCgkZW5hYmxlX3Bhc3MpOwokdGVsbmV0LT53YWl0Zm9yKCcvXCMvJyk7CiR0ZWxuZXQtPmNtZF9yZW1vdmVfbW9kZSgxKTsKCiR0ZWxuZXQtPnByaW50KCdzaG93IHJ1bm5pbmctY29uZmlnJyk7CgpteSAkZmggPSAkdGVsbmV0LT5pbnB1dF9sb2coJG91dHB1dF9maWxlKTsKbXkgJG91dHB1dCA9IDE7Cgp3aGlsZSAoZGVmaW5lZCgkb3V0cHV0KSl7Cgkkb3V0cHV0ID0gJHRlbG5ldC0+d2FpdGZvcignL01vcmUvaScpOyAKCSR0ZWxuZXQtPnByaW50KCIiKTsgCn0KCm15ICRidWZmZXIgPSAiIjsKCm9wZW4gT1VURiwgJG91dHB1dF9maWxlOwp3aGlsZSAoPE9VVEY+KSB7CgkkXyA9fiBzL1x4MDgvL2c7CgkkXyA9fiBzL1wtXC1Nb3JlXC1cLVtcdFxzXSovL2c7CgkkXyA9fiBzL1w7Ly9nOwoJJGJ1ZmZlciA9ICRidWZmZXIgLiAkXzsKfQpjbG9zZSAoT1VURik7Cgp1bmxpbmsgKCRvdXRwdXRfZmlsZSk7CnByaW50ICRidWZmZXI7Cg==',1); - - --- Update curr val of sequence -update_currval('tmodule_inventory', 'id_module_inventory'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER tmodule_inventory_inc ENABLE'; - -COMMIT; -END;; - --- PLSQL for update curr val of sequence --- BEGIN --- DECLARE key_max NUMBER := 0; --- key_currval NUMBER := 0; --- BEGIN --- SELECT MAX(ID_SG) INTO key_max FROM tnetwork_component_group; --- EXECUTE IMMEDIATE 'ALTER SEQUENCE TNETWORK_COMPONENT_GROUP_S INCREMENT BY ' || key_max; --- SELECT TNETWORK_COMPONENT_GROUP_S.NEXTVAL INTO key_currval FROM dual; --- EXECUTE IMMEDIATE 'ALTER SEQUENCE TNETWORK_COMPONENT_GROUP_S INCREMENT BY 1'; --- END; --- END;; - --- --- Dumping data for table `tlocal_component` --- -BEGIN -LOCK TABLE tlocal_component IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER tlocal_component_inc DISABLE'; - -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (1,'Event 1000','module_begin\r\nmodule_name Event_1000-Citrix\r\nmodule_description\r\nmodule_type async_string\r\nmodule_logevent\r\nmodule_source application\r\nmodule_eventtype\r\nmodule_eventcode 1000\r\nmodule_application\r\nmodule_end ','',9,'',25,23,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (2,'Event 1004','module_begin\r\nmodule_name Event_1004-Citrix\r\nmodule_description\r\nmodule_type async_string\r\nmodule_logevent\r\nmodule_source application\r\nmodule_eventtype\r\nmodule_eventcode 1004\r\nmodule_application\r\nmodule_end ','',9,'',25,23,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (3,'Event 1202','module_begin\r\nmodule_name Event_1202-Citrix\r\nmodule_description\r\nmodule_type async_string\r\nmodule_logevent\r\nmodule_source application\r\nmodule_eventtype\r\nmodule_eventcode 1202\r\nmodule_application\r\nmodule_end\r\nn ','',9,'',25,23,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (4,'Event 3621','module_begin\r\nmodule_name Event_3621\nr\nmodule_description Citrix cannot connect SQL server\r\nmodule_type async_string\r\nmodule_logevent\r\nmodule_source application\r\nmodule_eventtype Error\r\nmodule_eventcode 3621\r\nmodule_application\r\nmodule_end ','Citrix cannot connect SQL server',9,'',25,23,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (5,'Event 9014','module_begin\r\nmodule_name Event_9014\nr\nmodule_description Invalid licence\r\nmodule_type async_string\r\nmodule_logevent\r\nmodule_source system\r\nmodule_eventtype Error\r\nmodule_eventcode 9014\r\nmodule_application MetaFrame\r\nmodule_end ','Invalid licence',9,'',25,23,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (6,'Event 5774','module_begin\r\nmodule_name Event_5774\nr\nmodule_description Server goes to grace period (Not enough licences)\r\ndurante 96hr).\r\nmodule_type async_string\r\nmodule_logevent\r\nmodule_source system\r\nmodule_eventtype Error\r\n\nmodule_eventcode 5774\r\nmodule_application MetaFrame\r\nmodule_end ','Server goes to grace period (Not enough licences)',9,'',25,23,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (7,'Event 1388','module_begin\r\nmodule_name Event_1388\nr\nmodule_description Citrix internal monitoring\r\nmodule_type async_string\r\nmodule_logevent\r\nmodule_source application\r\nmodule_eventtype\r\nmodule_eventcode 1388\r\nmodule_application HCAService\r\nmodule_end ','Citrix internal monitoring',9,'',25,23,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (8,'Event 3961','module_begin\r\nmodule_name Event_3961\nr\nmodule_description The Data Collector is out of memory, and the Dynamic Store data might be out of sync. Please elect a new Data Collector and make sure you have enough memory on the new Data Collector\r\nmodule_type async_string\r\nmodule_logevent\r\nmodule_source System\r\nmodule_eventtype\r\nmodule_eventcode 3961\r\nmodule_application\r\nmodule_end ','The Data Collector is out of memory, and the Dynamic Store data might be out of sync. Please elect a new Data Collector and make sure you have enough memory on the new Data Collector',9,'',25,23,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (9,'Serv_HCA','module_begin\r\nmodule_name Serv_HCA\r\nmodule_description\r\nmodule_type generic_proc\r\nmodule_service HCAService\r\nmodule_end ','',9,'',25,2,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (10,'Serv_CTXcpusvnc','module_begin\r\nmodule_name Serv_CTXcpusvnc\r\nmodule_description\r\nmodule_type generic_proc\r\nmodule_service CTXCpuusync\r\n\nmodule_end ','',9,'',25,2,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (11,'Serv_IMA','module_begin\r\nmodule_name Serv_IMA\r\n\nmodule_description\r\nmodule_type generic_proc\r\nmodule_service IMAService\r\nmodule_end ','',9,'',25,2,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (13,'Serv_CTXSMA','module_begin\r\nmodule_name Serv_CTXSMA\r\nmodule_description\r\nmodule_type generic_proc\r\nmodule_service Citrix SMA Service\r\nmodule_end','',9,'',25,2,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (14,'Citrix_Sessions','module_begin\r\nmodule_name Citrix_Sessions\r\nmodule_description Opened active sessions on server\r\nmodule_type generic_data\r\nmodule_exec query session | grep Active | wc -l\r\nmodule_end ','Opened active sessions on server',9,'',25,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (15,'Users_Connected','module_begin\r\nmodule_name Users_Connected\r\nmodule_description Users connected to this server\r\nmodule_type generic_data\r\nmodule_exec quser | grep Active | wc -l\r\nmodule_interval 2\r\nmodule_end\r\n ','Users connected to this server',9,'',25,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (16,'Busy XML Threads','module_begin\r\nmodule_name Busy XML Threads\r\nmodule_description Total threads in the manager who manage the sessions. If there are more than XX, service fails. NOTE: Run this module only in managers\r\nmodule_type generic_data\r\nmodule_exec Typeperf '\\MAQUINA\Citrix Metaframe Presentation Server\Number of busy XML threads' -sc 1\r\nmodule_end\r\n','Total threads in the manager who manage the sessions. If there are more than XX, service fails. NOTE: Run this module only in managers',9,'',25,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (17,'CPU Load','module_begin module_name CPU Load module_type generic_data module_wmiquery SELECT LoadPercentage FROM Win32_Processor module_wmicolumn LoadPercentage module_description CPU Load (%) module_min_warning 80 module_max_warning 90 module_min_critical 91 module_max_critical 100 module_end','CPU Load (using WMI)',9,'',11,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (18,'FreeMemory','# Free Memory module_begin module_name FreeMemory module_type generic_data module_freepercentmemory module_description Free memory (%). module_min_warning 21 module_max_warning 30 module_min_critical 0 module_max_critical 20 module_end','Free memory (%).',9,'',11,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (19,'Microsoft Antivirus','module_begin module_name Microsoft Antivirus module_type generic_proc module_service MsMpSvc module_description Check if microsoft antivirus/malware service is running module_end','Check if microsoft antivirus/malware service is running',9,'',11,2,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (21,'Microsoft Firewall','module_begin module_name Microsoft Firewall module_type generic_proc module_service MpsSvc module_description Microsoft windows firewall status. module_end','Microsoft windows firewall status.',9,'',11,2,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (22,'Kaspersky Antivirus','module_begin module_name Kaspersky Antivirus module_type generic_proc module_service AVP module_description Kaspersky Antivirus module_end','Checks Karspersky Antivirus service status',9,'',11,2,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (23,'CPU Free','module_begin module_name CPU Free module_type generic_data module_exec echo $(( 100-vmstat 1 2 | tail -1 | awk '{ print $15 }')) module_max 100 module_min 0 module_description Percentage CPU Free module_end','Percentage of free CPU',1,'',43,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (24,'Load Average','module_begin module_name Load Average module_type generic_data module_exec uptime | awk -F "," '{print $3}' | awk '{print $3}' | tr ­d "\n" module_description Average load last minute module_end ','Load average for last minute',1,'',43,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (25,'Memory Free','module_begin module_name Memory Free module_type generic_data module_freepercentmemory module_description Percentage Mem Free module_end ','Percentage of free memory',1,'',43,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (26,'Disk Free','module_begin module_name Disk Free module_type generic_data module_freepercentdisk / module_description Percentage Free Disk module_end ','Percentage of free disk',1,'',43,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (27,'SSH Status','module_begin module_name SSH Status module_type generic_proc module_exec ps -Af | grep sshd | grep -v "grep" | wc -l module_description Check ssh service module_end','Monitors SSH server status',1,'',43,2,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (28,'Free i-nodes','module_begin module_name Free i-nodes module_type generic_data module_exec df -i | grep -E "/$" | tail -1 | awk '{print 100-(($3/$2)*100)}' module_max 100 module_min 0 module_description Percentage Free i-nodes module_end ','Percentage of free i-nodes',1,'',43,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (29,'FreeDiskC','module_begin module_name FreeDiskC module_type generic_data module_freepercentdisk C: module_description Free space on drive C: (%) module_min_warning 31 module_max_warning 40 module_min_critical 0 module_max_critical 30 module_end ','Free space on disk C: (%)',9,'',11,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (30,'Windows_Update_LastRun','module_begin module_name Windows_Update_LastRun module_type generic_data_string module_exec getreg LM "SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" SetupWizardLaunchTime module_description Last date and time user launch microsoft Windows update module_end','Last date and time user launch microsoft Windows update',9,'',11,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (31,'cpu_user','module_begin module_name cpu_user module_type generic_data module_interval 1 module_exec vmstat -n0 1 2 | tail -1 | awk '{ print $15 }' module_max 100 module_min 0 module_description User CPU Usage (%) module_end','User CPU Usage (%)',4,'',47,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (32,'cpu_system','module_begin module_name cpu_system module_type generic_data module_interval 1 module_exec vmstat -n0 1 2 | tail -1 | awk '{ print $16 }' module_max 100 module_min 0 module_description System CPU Usage (%) module_end','System CPU Usage (%)',4,'',47,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (33,'Load Average','module_begin module_name Load Average module_type generic_data module_exec uptime | cut -d "," -f 4 | cut -d ":" -f 2 | sed "s/ //g" module_description Average process in CPU (Last minute) module_end ','Average process in CPU (Last minute)',4,'',47,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (34,'disk_root_free','module_begin module_name disk_root_free module_type generic_data module_exec df -kh / | tail -1 | awk '{ print 100-$5 }' module_max 100 module_min 0 module_description Free disk Percentage of root partition module_end','Free disk Percentage of root partition',4,'',47,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (35,'memfree','module_begin module_name memfree module_type generic_data module_exec vmstat -H 1 2 | tail -1 | awk '{print $5}' module_description Unused RAM memory module_end ','Free memory on system',4,'',47,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (36,'sshDaemon','module_begin module_name sshDaemon module_type generic_proc module_exec ps -Af | grep sshd | grep -v "grep" | wc -l | sed "s/ //g" module_end ','Check if SSH daemon is running',4,'',47,2,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (37,'cpu_user','module_begin module_name cpu_user module_type generic_data module_interval 1 module_exec sar 1 2 | tail -1 | awk '{ print $2 }' module_max 100 module_min 0 module_description User CPU Usage (%) module_min_warning 70 module_max_warning 90 module_min_critical 91 module_max_critical 100 module_end','User CPU Usage (%)',8,'',48,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (38,'Load Average','module_begin module_name Load Average module_type generic_data module_exec uptime | sed 's/.*load averages: //'|awk '{print $1}' module_description Average process in CPU (Last minute) module_end ','Average process in CPU (Last minute)',8,'',48,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (39,'Cache mem free','module_begin module_name Cache mem free module_type generic_data module_exec vm_stat | grep 'Pages free'| awk '{print $3/256}' module_description Free cache memory in MB module_min_warning 500 module_max_warning 600 module_min_critical 100 module_max_critical 499 module_end ','Free cache memory in MB',8,'',48,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (40,'Free disk Percentage of root partition','module_begin module_name disk_root_free module_type generic_data module_exec df -kh / | tail -1 | awk '{ print 100-$5 }' module_max 100 module_min 0 module_description Free disk Percentage of root partition module_min_warning 70 module_max_warning 90 module_min_critical 91 module_max_critical 100 module_end','Free disk Percentage of root partition',8,'',48,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (41,'disk_usage_/','module_begin module_name disk_usage_/ module_type generic_data module_exec df -P | grep -e "/$" | awk '{print $5}' | tr -d % module_description Disk usage on / (%) module_end','Disk usage on / (%)',5,'',44,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (42,'Swap_Free','module_begin module_name Swap_Free module_type generic_data module_exec /usr/sbin/swapinfo -t | grep memory | tr -d "%" | awk '{ print 100-$5 }' module_description Unused swap memory module_end ','Unused swap memory',5,'',44,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (43,'RAM_Free','module_begin module_name RAM_Free module_type generic_data module_exec /usr/sbin/swapinfo -t | grep memory | awk '{print $4}' module_description Unused RAM memory module_end ','Unused RAM memory',5,'',44,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (44,'CPU_User','module_begin module_name CPU_User module_type generic_data module_exec vmstat 1 2 | tail -1 | awk '{ print $16 }' module_description % of USER CPU module_end','% of USER CPU',5,'',44,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (45,'CPU_System','module_begin module_name CPU_System module_type generic_data module_exec vmstat 1 2 | tail -1 | awk '{ print $17 }' module_description % of system CPU module_end ','% of system CPU',5,'',44,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (46,'disk_root_free','module_begin module_name disk_root_free module_type generic_data module_exec df -k / | tail -1 | tr -d "%" | awk '{ print 100-$5 }' module_max 100 module_min 0 module_description Free disk Percentage of root partition module_end','Free disk Percentage of root partition',2,'',45,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (47,'Swap_Free','module_begin module_name Swap_Free module_type generic_data module_exec vmstat 1 2 | tail -1 | awk '{ print $4 }' module_description Unused swap memory module_end','Unused swap memory',2,'',45,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (48,'RAM_Free','module_begin module_name RAM_Free module_type generic_data module_exec vmstat 1 2 | tail -1 | awk '{ print $5 }' module_description Unused RAM memory module_end','Unused RAM memory',2,'',45,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (49,'CPU_System','module_begin module_name CPU_System module_type generic_data module_exec vmstat 1 2 | tail -1 | awk '{ print $21 }' module_description % of system CPU module_end','% of system CPU',2,'',45,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (50,'Disk_Seek_Operations','module_begin module_name Disk_Seek_Operations module_type generic_data module_exec vmstat 1 2 | tail -1 | awk '{ print $14 }' module_description Disk Seek operations module_end','Disk Seek operations',2,'',45,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (51,'Pandora_Agent_RAM','module_begin module_name Pandora_Agent_RAM module_type generic_data module_exec ps -Afly | grep perl | grep -v grep | awk '{ print $9 }' module_description Return size in KB of memory used by process Pandora module_end ','Return size in KB of memory used by process Pandora',2,'',45,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (52,'InetdDaemon','module_begin module_name InetdDaemon module_type generic_proc module_exec ps -Af | grep inetd | grep -v "grep" | wc -l | awk '{ print $1 }' module_end','Check inetd daemon running',2,'',45,2,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (53,'Pandora_Agent_RAM','module_begin module_name Pandora_Agent_RAM module_type generic_data module_exec ps axu | grep perl | grep -v grep | awk '{ print $4 }' | tr "," "." module_end ','Return RAM used by pandora fms agent.',3,'',46,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (54,'InetdDaemon','module_begin module_name InetdDaemon module_type generic_proc module_exec ps -Af | grep inetd | grep -v "grep" | wc -l | awk '{ print $1 }' module_end ','Check inetddaemon running in system',3,'',46,2,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (55,'disk_root_free','module_begin module_name disk_root_free module_type generic_data module_exec df -k / | tail -1 | awk '{ print 100-$4 }' module_max 100 module_min 0 module_description Free disk Percentage of root partition module_end','Free disk Percentage of root partition',3,'',46,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (56,'OpenedFiles ','module_begin module_name OpenedFiles module_type generic_data module_exec lsof | wc -l module_description Total files opened in system module_end ','Total files opened in system ',1,'',43,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (57,'Zombie processes','module_begin module_name Zombie processes module_type generic_data module_exec ps ­eos | grep Z | wc ­l | tr ­d “\n” module_description Number of zombie processes module_end ','Number of zombie processes ',1,'',43,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tlocal_component (id, name, data, description, id_os, os_version, id_network_component_group, type, max, min, module_interval, id_module_group, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, post_process, unit, wizard_level, macros, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, tags, disabled_types_event, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (58,'Disk_IO_Wait','module_begin module_name Disk_IO_Wait module_type generic_data module_exec top -n 3 -c | grep "Cpu" | awk '{ print $6 }' | grep -o "[0-9]*" | tail -1 module_description Simple approach to IO/Wait monitoring. module_end ','Simple approach to IO/Wait monitoring. ',1,'',43,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); - --- Update curr val of sequence -update_currval('tlocal_component', 'id'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER tlocal_component_inc ENABLE'; - -COMMIT; -END;; - - --- --- Dumping data for table `tskin` --- -BEGIN -LOCK TABLE tskin IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER tskin_inc DISABLE'; - -INSERT INTO tskin VALUES (1, 'skin default', 'skin_default', 'Default skin for Pandora FMS web console', 1); -INSERT INTO tskin VALUES (2,'Legacy', 'legacy', 'Skin of the visual style of Pandora FMS 4.x and previous versions', 1); - --- Update curr val of sequence -update_currval('tskin', 'id'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER tskin_inc ENABLE'; - -COMMIT; -END;; - ---- ---- Dumping data for table `tcollection` ---- -BEGIN -LOCK TABLE tcollection IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER tcollection_inc DISABLE'; - -INSERT INTO tcollection VALUES (1,'Apache Enterprise Plugin','apache_plugin',0,'Apache Enterprise Plugin to monitor Apache web server using a Perl script.',0); - --- Update curr val of sequence -update_currval('tcollection', 'id'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER tcollection_inc ENABLE'; - -COMMIT; -END;; - ---- Example policies -BEGIN -LOCK TABLE tpolicies IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER tpolicies_inc DISABLE'; - -INSERT INTO tpolicies VALUES (1,'Basic Web Checks','Basic checks to monitoring webs',13,0); -INSERT INTO tpolicies VALUES (2,'Basic Windows Local Monitoring','Basic checks to monitoring Windows Systems',2,0); -INSERT INTO tpolicies VALUES (3,'Basic Centos/RedHat Local Monitoring','Basic local checks to monitoring Centos/RedHat systems',2,0); -INSERT INTO tpolicies VALUES (4,'Basic SuSe Local Monitoring','Basic local checks to monitoring SuSe systems',2,0); -INSERT INTO tpolicies VALUES (5,'Basic Debian/Ubuntu Local Monitoring','Basic local checks to monitoring Debian/Ubuntu systems',2,0); -INSERT INTO tpolicies VALUES (6,'Basic AIX Local Monitoring','Basic local checks to monitoring AIX systems',2,0); -INSERT INTO tpolicies VALUES (7,'Basic HP-UX Local Monitoring','Basic local checks to monitoring HP/UX systems',2,0); -INSERT INTO tpolicies VALUES (8,'Basic Solaris Local Monitoring','Basic local checks to monitoring Solaris systems',2,0); -INSERT INTO tpolicies VALUES (9,'Basic Remote Checks','Basic Remote Checks (ping, latency, ports..)',2,0); - --- Update curr val of sequence -update_currval('tpolicies', 'id'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER tpolicies_inc ENABLE'; - -COMMIT; -END;; - -BEGIN -LOCK TABLE tpolicy_modules IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER tpolicy_modules_inc DISABLE'; - - -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (1, 1,'',9,'','Check 80 port','',0,0,300,80,'','','public','',1,1,2,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'',NULL,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (2, 1,'',9,'','Check 443 port','',0,0,300,80,'','','public','',1,1,2,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'',NULL,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (3, 1,'',30,'','Check Web Latency','',0,0,0,0,'','','public','',1,1,7,0,0,'Pandora FMS 3.0 / Webcheck','1','task_begin get http://www.google.com check_string iGoogle task_end',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'',NULL,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (4, 1,'',31,'','Check Web Content','',0,0,0,0,'','','public','',1,1,7,0,0,'Pandora FMS 3.0 / Webcheck','1','task_begin get http://www.google.com check_string iGoogle task_end',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'',NULL,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (5, 2,'module_begin module_name WMI Service module_type generic_proc module_service winmgmt module_description WMI Service enabled module_end ',2,'','WMI Service','',0,0,1,0,'','','','',3,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (6, 2,'module_begin module_name Account deleted module_type async_string module_logevent module_source Security module_eventcode 4726 module_description Account deleted module_end ',23,'','Account deleted','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (7, 8,'module_begin module_name CPU % module_type generic_data module_exec vmstat 1 1 | tail -1| awk '{print (100-$NF)}' module_description CPU usage % module_unit % module_end',1,'','CPU %','%',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (8, 8,'module_begin module_name CPU User module_type generic_data module_exec vmstat 1 1 | tail -1| awk '{print $(NF-2)}' module_description CPU user usage % module_unit % module_end ',1,'','CPU User','%',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (9, 8,'module_begin module_name Load Average module_type generic_data module_exec uptime | awk '{print $(NF-2)}' | tr -d ',' module_description Load average module_end',1,'','Load Average','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (10, 8,'module_begin module_name Memory Free % module_type generic_data module_freepercentmemory module_description Percentage Mem Free module_end ',1,'','Memory Free %','%',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,8.00,15.00,'0',0.00,7.00,'0',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (11, 8,'module_begin module_name Total processes module_type generic_data module_exec ps -A | wc -l | awk '{print $1}' module_description Total processes module_end ',1,'','Total processes','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (12, 8,'module_begin module_name Uptime module_type generic_data_string module_exec uptime |sed s/us\.*$//g | sed s/,\.*$//g module_description Host Up time module_end ',1,'','Uptime','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (13, 8,'module_begin module_name Swap Free % module_type generic_data module_exec swap -l |tail -1 | awk '{print $NF / $(NF-1) * 100}' module_unit % module_description Swap memory available in % module_end ',1,'','Swap Free %','%',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (14, 8,'module_begin module_name Service sshd status module_type generic_proc module_exec netstat -anu | grep LISTEN | grep sshd | wc -l | awk '{print $1}' module_end',2,'','Service sshd status','',0,0,1,0,'','','','',3,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (15, 9,'',6,'','Host Alive','',0,0,300,0,'','','','',2,1,2,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (16, 9,'',9,'','Check HTTP Server','',0,0,300,80,'','','','',3,1,2,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (17, 9,'',9,'','Check SSH Server','',0,0,300,22,'','','','',2,1,2,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (18, 9,'',7,'','Host Latency','',0,0,300,0,'','','','',2,1,2,0,0,'','','',0,0.000000000000000,0,0,0,'',1,80.00,149.00,'',150.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (19, 2,'module_begin module_name Free percent disk C: module_type generic_data module_freepercentdisk C: module_end ',1,'','Free percent disk C:','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (20, 2,'module_begin module_name Memory Free % module_type generic_data module_freepercentmemory module_description Percentage Mem Free module_end ',1,'','Memory Free %','%',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,8.00,15.00,'0',0.00,7.00,'0',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (21, 2,'module_begin module_name CPU % module_type generic_data module_cpuusage all module_unit % module_end ',1,'','CPU %','%',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,80.00,90.00,'',91.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (22, 2,'module_begin module_name Processor User Time % module_type generic_data module_perfcounter \Processor Information(_Total)\% User Time module_cooked 1 module_description Processor_User_Time (%) module_end ',1,'','Processor User Time %','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.001000000000000,0,0,0,'',1,75.00,84.00,'',85.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (23, 2,'module_begin module_name Total processes module_type generic_data module_exec tasklist | wc -l | gawk "{print $1}" module_end ',1,'','Total processes','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (24, 2,'module_begin module_name Load Average module_type generic_data module_perfcounter \System(_Total)\Processor Queue Length module_end ',1,'','Load Average','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (25, 2,'module_begin module_name Uptime module_type generic_data_string module_exec net statistics server | grep since | gawk "{print \"Up since \"$3\" \"$4\" \"$5}" module_end ',1,'','Uptime','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (26, 7,'module_begin module_name Memory Free % module_type generic_data module_exec echo "" > /tmp/hpvm_toptest; top -d 1 -f /tmp/hpvm_toptest 2>/dev/null 1>/dev/null; cat /tmp/hpvm_toptest | grep -i Memory | head -1 | awk '{print $8/($2+$5) * 100}' module_end ',1,'','Memory Free %','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (27, 7,'module_begin module_name CPU % module_type generic_data module_cpuusage all module_unit % module_end ',1,'','CPU %','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (28, 7,'module_begin module_name CPU User module_type generic_data module_exec vmstat 1 2 | tail -1 | awk '{ print $(16) }' module_description % of User CPU module_unit % module_end ',1,'','CPU User','%',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (29, 7,'module_begin module_name Total processes module_type generic_data module_exec echo $(((ps -e | wc -l)-1)) | tr -d “\n” module_description Total processes module_end ',1,'','Total processes','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (30, 7,'module_begin module_name Zombie processes module_type generic_data module_exec ps -­elf | awk '$2~/'Z'/{print $2}' | wc -l | tr -d "\n" module_description Zombie processes module_end ',1,'','Zombie processes','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (31, 7,'module_begin module_name Service sshd status module_type generic_proc module_exec ps -ef | grep -v grep | grep "/opt/ssh/sbin/sshd" | wc -l module_description SSH running module_end ',2,'','Service sshd status','',0,0,1,0,'','','','',3,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (32, 6,'module_begin module_name CPU % module_type generic_data module_exec sar 1 | tail -1 | awk '{print 100 - $5}' module_description CPU usage in % module_unit % module_end',1,'','CPU %','%',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (33, 6,'module_begin module_name Memory Free % module_type generic_data module_exec svmon -G|grep memory | awk '{print (1- $3/$2 )*100}' module_description Percentage Mem Free module_end ',1,'','Memory Free %','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (34, 6,'module_begin module_name CPU User module_type generic_data module_exec sar 1 | tail -1 | awk '{print $2}' module_description CPU usage in % module_unit % module_end',1,'','CPU User','%',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (35, 6,'module_begin module_name Load Average module_type generic_data module_exec uptime | awk '{print $(NF-2)*1}' module_description Average process in CPU (Last minute) module_end',1,'','Load Average','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (36, 6,'module_begin module_name Uptime module_type generic_data_string module_exec uptime |sed "s/us\.*$//g" | sed "s/,\.*$//g" module_description Host Up time module_end ',1,'','Uptime','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (37, 6,'module_begin module_name Pagination use module_type generic_data module_exec lsps -s | tail -1 | awk '{print $2+0}' module_end',1,'','Pagination use','',0,0,1,0,'','','','',1,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (38, 6,'module_begin module_name Service sshd status module_type generic_proc module_exec lssrc -a | grep ssh | grep active module_end',2,'','Service sshd status','',0,0,1,0,'','','','',3,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (39, 4,'module_begin module_name Blocks in module_type generic_data module_exec vmstat 1 1 | tail -1 | awk '{print $9}' module_description Blocks in. i.e blocks received from device module_end',1,'','Blocks in','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (40, 4,'module_begin module_name Blocks out module_type generic_data module_exec vmstat 1 1 | tail -1 | awk '{print $(10)}' module_description Blocks out. i.e blocks sent from device module_end',1,'','Blocks out','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (41, 4,'module_begin module_name CPU % module_type generic_data module_cpuusage all module_unit % module_end',1,'','CPU %','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (42, 4,'module_begin module_name Memory Free % module_type generic_data module_exec free | grep -i mem | awk '{print ($4+$NF)/$2 * 100}' module_description Percentage Mem Free module_end',1,'','Memory Free %','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (43, 4,'module_begin module_name I/O Lock module_type generic_data module_exec vmstat 1 1 | tail -1 | awk '{print $(16)}' module_description I/O Wait Disk module_end',1,'','I/O Lock','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (44, 4,'module_begin module_name Total processes module_type generic_data module_exec ps ax | tail -n +2 | wc -l module_description Total processes module_end',1,'','Total processes','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (45, 4,'module_begin module_name Load Average module_type generic_data module_exec uptime | awk '{print $(NF-2)*1}' module_description Average process in CPU (Last minute) module_end',1,'','Load Average','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (46, 4,'module_begin module_name Service sshd status module_type generic_proc module_exec rcsshd status | grep running | wc -l module_end',2,'','Service sshd status','',0,0,1,0,'','','','',3,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (47, 7,'module_begin module_name Load Average module_type generic_data module_exec uptime | awk '{print $(NF-2)}' | tr -d ',' module_description System load average module_end ',1,'','Load Average','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (48, 7,'module_begin module_name Uptime module_type generic_data_string module_exec uptime |sed s/us\.*$//g | sed s/,\.*$//g module_description Host Up time module_end ',3,'','Uptime','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (49, 4,'module_begin module_name Uptime module_type generic_data_string module_exec uptime |sed s/us\.*$//g | sed s/,\.*$//g module_description Host Up time module_end',3,'','Uptime','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (50, 5,'module_begin module_name Blocks in module_type generic_data module_exec vmstat 1 1 | tail -1 | awk '{print $9}' module_description Blocks in. i.e blocks received from device module_end ',1,'','Blocks in','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (51, 5,'module_begin module_name Blocks out module_type generic_data module_exec vmstat 1 1 | tail -1 | awk '{print $(10)}' module_description Blocks out. i.e blocks sent from device module_end',1,'','Blocks out','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (52, 5,'module_begin module_name CPU % module_type generic_data module_cpuusage all module_unit % module_end',1,'','CPU %','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (53, 5,'module_begin module_name Memory Free % module_type generic_data module_exec free | grep -i mem | awk '{print ($4+$NF)/$2 * 100}' module_description Percentage Mem Free module_unit % module_end',1,'','Memory Free %','%',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (54, 5,'module_begin module_name I/O Lock module_type generic_data module_exec vmstat 1 1 | tail -1 | awk '{print $(16)}' module_description I/O Wait Disk module_end',1,'','I/O Lock','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (55, 5,'module_begin module_name Total processes module_type generic_data module_exec ps ax | tail -n +2 | wc -l module_description Total processes module_end',1,'','Total processes','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (56, 5,'module_begin module_name Uptime module_type generic_data_string module_exec uptime |sed s/us\.*$//g | sed s/,\.*$//g module_description Host Up time module_end',3,'','Uptime','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (57, 5,'module_begin module_name Load Average module_type generic_data module_exec uptime | awk '{print $(NF-2)*1}' module_description Average process in CPU (Last minute) module_end',1,'','Load Average','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (58, 5,'module_begin module_name Service sshd status module_type generic_proc module_exec netstat -lptn | grep sshd | wc -l module_end ',2,'','Service sshd status','',0,0,1,0,'','','','',3,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (59, 3,'module_begin module_name Blocks in module_type generic_data module_exec vmstat 1 1 | tail -1 | awk '{print $9}' module_description Blocks in. i.e blocks received from device module_end',1,'','Blocks in','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (60, 3,'module_begin module_name Blocks out module_type generic_data module_exec vmstat 1 1 | tail -1 | awk '{print $(10)}' module_description Blocks out. i.e blocks sent from device module_end',1,'','Blocks out','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (61, 3,'module_begin module_name CPU % module_type generic_data module_cpuusage all module_unit % module_end',1,'','CPU %','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (62, 3,'module_begin module_name Memory Free % module_type generic_data module_exec free | grep -i mem | awk '{print ($4+$NF)/$2 * 100}' module_description Percentage Mem Free module_unit % module_end',1,'','Memory Free %','%',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (63, 3,'module_begin module_name I/O Lock module_type generic_data module_exec vmstat 1 1 | tail -1 | awk '{print $(16)}' module_description I/O Wait Disk module_end',1,'','I/O Lock','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (64, 3,'module_begin module_name Total processes module_type generic_data module_exec ps ax | tail -n +2 | wc -l module_description Total processes module_end',1,'','Total processes','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (65, 3,'module_begin module_name Uptime module_type generic_data_string module_exec uptime |sed s/us\.*$//g | sed s/,\.*$//g module_description Host Up time module_end',3,'','Uptime','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (66, 3,'module_begin module_name Load Average module_type generic_data module_exec uptime | awk '{print $(NF-2)*1}' module_description Average process in CPU (Last minute) module_end',1,'','Load Average','',0,0,1,0,'','','','',4,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO tpolicy_modules (id, id_policy, configuration_data, id_tipo_modulo, description, name, unit, max, min, module_interval, tcp_port, tcp_send, tcp_rcv, snmp_community, snmp_oid, id_module_group, flag, id_module, disabled, id_export, plugin_user, plugin_pass, plugin_parameter, id_plugin, post_process, prediction_module, max_timeout, max_retries, custom_id, history_data, min_warning, max_warning, str_warning, min_critical, max_critical, str_critical, min_ff_event, custom_string_1, custom_string_2, custom_string_3, custom_integer_1, custom_integer_2, pending_delete, critical_instructions, warning_instructions, unknown_instructions, critical_inverse, warning_inverse, id_category, module_ff_interval, quiet, cron_interval, macros, disabled_types_event, module_macros, min_ff_event_normal, min_ff_event_warning, min_ff_event_critical, each_ff, ff_timeout, dynamic_interval, dynamic_max, dynamic_min, prediction_sample_window, prediction_samples, prediction_threshold) VALUES (67, 3,'module_begin module_name Service sshd status module_type generic_proc module_exec netstat -lptn | grep sshd | wc -l module_end',2,'','Service sshd status','',0,0,1,0,'','','','',3,1,1,0,0,'','','',0,0.000000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0,'','','',0,0,0,0,0,'* * * * *','','{\"going_unknown\":0}','W10=',0,0,0,0,0,0,0,0,0,0,0); - --- Update curr val of sequence -update_currval('tpolicy_modules', 'id'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER tpolicy_modules_inc ENABLE'; - -COMMIT; -END;; - -BEGIN -LOCK TABLE tpolicy_alerts IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER tpolicy_alerts_inc DISABLE'; - -INSERT INTO tpolicy_alerts VALUES (1,1,2,1,'',0,0,0); -INSERT INTO tpolicy_alerts VALUES (2,1,1,1,'',0,0,0); -INSERT INTO tpolicy_alerts VALUES (3,1,4,1,'',0,0,0); - --- Update curr val of sequence -update_currval('tpolicy_alerts', 'id'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER tpolicy_alerts_inc ENABLE'; - -COMMIT; -END;; - --- --- Dumping data for table `tprofile_view` --- -BEGIN -LOCK TABLE tpolicy_alerts IN EXCLUSIVE MODE; - -EXECUTE IMMEDIATE 'ALTER TRIGGER tprofile_view_inc DISABLE'; - -INSERT INTO tprofile_view (id, id_profile, sec, sec2, sec3) VALUES (1, 5, '*', '*', '*'); - --- Update curr val of sequence -update_currval('tprofile_view', 'id'); - -EXECUTE IMMEDIATE 'ALTER TRIGGER tprofile_view_inc ENABLE'; - -COMMIT; -END;; \ No newline at end of file diff --git a/pandora_console/pandoradb.data.postgreSQL.sql b/pandora_console/pandoradb.data.postgreSQL.sql deleted file mode 100644 index 1663103460..0000000000 --- a/pandora_console/pandoradb.data.postgreSQL.sql +++ /dev/null @@ -1,1168 +0,0 @@ --- Pandora FMS - the Flexible Monitoring System --- ============================================ --- Copyright (c) 2011 Artica Soluciones Tecnologicas, http://www.artica.es --- Please see http://www.pandorafms.org for full contribution list - --- This program is free software; you can redistribute it and/or --- modify it under the terms of the GNU General Public License --- as published by the Free Software Foundation for version 2. --- This program is distributed in the hope that it will be useful, --- but WITHOUT ANY WARRANTY; without even the implied warranty of --- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --- GNU General Public License for more details. --- You should have received a copy of the GNU General Public License --- along with this program; if not, write to the Free Software --- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - --- Database Data for Pandora FMS 4.0dev - --- PLEASE NO NOT USE MULTILINE COMMENTS --- Because Pandora Installer don't understand them --- and fails creating database !!! - - --- Dumping data for table "talert_commands" --- - -INSERT INTO "talert_commands" ("id", "name", "command", "description", "internal", "fields_descriptions", "fields_values") VALUES (1,'eMail','Internal type','This alert send an email using internal Pandora FMS Server SMTP capabilities (defined in each server, using: _field1_ as destination email address, and _field2_ as subject for message. _field3_ as text of message.',1,'[\"Destination address\",\"Subject\",\"Text\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]','[\"\",\"\",\"_html_editor_\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]'); -INSERT INTO "talert_commands" ("id", "name", "command", "description", "internal", "fields_descriptions", "fields_values") VALUES (2,'Internal Audit','Internal type','This alert save alert in Pandora internal audit system. Fields are static and only _field1_ is used.',1,'[\"Description\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]','[\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]'); -INSERT INTO "talert_commands" ("id", "name", "command", "description", "internal", "fields_descriptions", "fields_values") VALUES (3,'Pandora FMS Event','Internal type','This alert create an special event into Pandora FMS event manager.',1,'[\"Event text\",\"Event type\",\"Source\",\"Agent name or _agent_\",\"Event criticity\",\"ID extra\",\"Tags separated by commas\",\"Comments\",\"\",\"\"]','[\"\",\"alert_ceased,Alert ceased;alert_fired,Alert fired;alert_manual_validation,Alert manual validation;alert_recovered,Alert recovered;configuration_change,Configuration change ;error,Error;critical,Monitor Critical;normal,Monitor Normal;going_unknown,Monitor\",\"\",\"\",\"4,Critical;1,Informational;0,Maintenance;6,Major;5,Minor;2,Normal;3,Warning\",\"\",\"\",\"\",\"\",\"\"]'); -INSERT INTO "talert_commands" ("id", "name", "command", "description", "internal", "fields_descriptions", "fields_values") VALUES (4,'Pandora FMS Alertlog','echo _timestamp_ pandora _agent_ _data_ _field1_ _field2_ >> /var/log/pandora/pandora_alert.log','This is a default alert to write alerts in a standard ASCII plaintext log file in /var/log/pandora/pandora_alert.log ',0,'[\"Log Info 1\",\"Log Info 2\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]','[\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]'); -INSERT INTO "talert_commands" ("id", "name", "command", "description", "internal", "fields_descriptions", "fields_values") VALUES (5,'SNMP Trap','/usr/bin/snmptrap -v 1 -c _field1_ _field2_ _field3_ _field4_','Send a SNMPTRAP to 192.168.0.4. Please review config and adapt to your needs, this is only a sample, not functional itself.',0,'[\"Community\",\"Destination address\",\"OID\",\"Source address\",\"\",\"\",\"\",\"\",\"\",\"\"]','[\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]'); -INSERT INTO "talert_commands" ("id", "name", "command", "description", "internal", "fields_descriptions", "fields_values") VALUES (6,'Syslog','logger -p daemon.alert Pandora Alert _agent_ _data_ _field1_ _field2_','Uses field1 and field2 to generate Syslog alert in facility daemon with "alert" level.',0,'[\"Log Info 1\",\"Log Info 2\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]','[\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]'); -INSERT INTO "talert_commands" ("id", "name", "command", "description", "internal", "fields_descriptions", "fields_values") VALUES (7,'Sound Alert','/usr/bin/play /usr/share/sounds/alarm.wav','',0,NULL,NULL); -INSERT INTO "talert_commands" ("id", "name", "command", "description", "internal", "fields_descriptions", "fields_values") VALUES (8,'Jabber Alert','echo _field3_ | sendxmpp -r _field1_ --chatroom _field2_','Send jabber alert to chat room in a predefined server (configure first .sendxmpprc file). Uses field3 as text message, field1 as useralias for source message, and field2 for chatroom name',0,'[\"User alias\",\"Chatroom name\",\"Message\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]','[\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]'); -INSERT INTO "talert_commands" ("id", "name", "command", "description", "internal", "fields_descriptions", "fields_values") VALUES (9,'SMS','sendsms _field1_ _field2_','Send SMS using the Pandora FMS standard SMS device, using smstools. Uses field2 as text message, field1 as destination phone (include international prefix!)',0,'[\"Destination number\",\"Message\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]','[\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]'); -INSERT INTO "talert_commands" ("id", "name", "command", "description", "internal", "fields_descriptions", "fields_values") VALUES (10,'Validate Event','Internal type','This alert validate the events matched with a module given the agent name (_field1_) and module name (_field2_)',1,'[\"Agent name\",\"Module name\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]','[\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]'); -INSERT INTO "talert_commands" ("id", "name", "command", "description", "internal", "fields_descriptions", "fields_values") VALUES (11,'Integria IMS Ticket','Internal type','This alert create a ticket into your Integria IMS.',1,'[\"Integria IMS API path\",\"Integria IMS API pass\",\"Integria IMS user\",\"Integria IMS user pass\",\"Ticket title\",\"Ticket group ID\",\"Ticket priority\",\"Email copy\",\"Ticket owner\",\"Ticket description\"]','[\"\",\"\",\"\",\"\",\"\",\"\",\"10,Maintenance;0,Informative;1,Low;2,Medium;3,Serious;4,Very Serious\",\"\",\"\",\"\"]'); -SELECT setval('talert_commands_id_seq', (SELECT (SELECT MAX(id) FROM talert_commands))); - --- --- Dumping data for table "tconfig" --- -BEGIN WORK; -LOCK TABLE "tconfig"; -INSERT INTO "tconfig" ("token", "value") VALUES -('language','en_GB'), -('block_size','20'), -('days_purge','60'), -('days_delete_unknown','0'), -('days_autodisable_deletion','30'), -('days_compact','15'), -('graph_res','5'), -('step_compact','1'), -('db_scheme_version','4.0-dev'), -('db_scheme_build','PD110122'), -('show_unknown','0'), -('show_lastalerts','1'), -('style','pandora'), -('graph_color1', '#38B800'), -('graph_color2', '#FFFF00'), -('graph_color3', '#FF6600'), -('graph_color4', '#FF66CC'), -('graph_color5', '#CC0000'), -('graph_color6', '#0033FF'), -('graph_color7', '#99FF99'), -('graph_color8', '#330066'), -('graph_color9', '#66FFFF'), -('graph_color10', '#6666FF'), -('sla_period', '604800'), -('trap2agent', '0'), -('date_format', 'F j, Y, g:i a'), -('event_view_hr', 8), -('loginhash_pwd', ''), -('trap2agent', 0), -('prominent_time', 'comparation'), -('timesource', 'system'), -('realtimestats', '1'), -('stats_interval', '60'), -('activate_gis', '0'), -('activate_netflow', '0'), -('timezone', 'Europe/Berlin'), -('string_purge', 7), -('audit_purge', 15), -('trap_purge', 7), -('event_purge', 15), -('gis_purge', 15), -('big_operation_step_datos_purge', '100'), -('small_operation_step_datos_purge', '1000'), -('sound_alert', 'include/sounds/air_shock_alarm.wav'), -('sound_critical', 'include/sounds/Star_Trek_emergency_simulation.wav'), -('sound_warning', 'include/sounds/negativebeep.wav'), -('integria_enabled', '0'), -('integria_api_password', ''), -('integria_inventory', '0'), -('integria_url', ''), -('netflow_interval', '3600'), -('netflow_daemon', '/usr/bin/nfcapd'), -('netflow_nfdump', '/usr/bin/nfdump'), -('netflow_max_resolution', '50'), -('event_fields', 'evento,id_agente,estado,timestamp'), -('list_ACL_IPs_for_API', '127.0.0.1'), -('enable_pass_policy', 0), -('pass_size', 4), -('pass_needs_numbers', 0), -('pass_needs_simbols', 0), -('pass_expire', 0), -('first_login', 0), -('mins_fail_pass', 5), -('number_attempts', 5), -('enable_pass_policy_admin', 0), -('enable_pass_history', 0), -('compare_pass', 3), -('meta_style', 'meta_pandora'), -('enable_refr', '0'), -('meta_num_elements', 100), -('update_manager_installed', 1), -('num_files_attachment', 100), -('show_vc', 1), -('inventory_changes_blacklist', '1,2,20,21'), -('custom_report_front', 0), -('custom_report_front_font', 'FreeSans.ttf'), -('custom_report_front_logo', 'images/pandora_logo_white.jpg'), -('custom_report_front_header', ''), -('custom_report_front_footer', ''); -('identification_reminder', 1); -('identification_reminder_timestamp', 0); - -COMMIT WORK; - - --- --- Dumping data for table "tconfig_os" --- -BEGIN WORK; -LOCK TABLE "tconfig_os"; -INSERT INTO "tconfig_os" VALUES -(1,'Linux','Linux: All versions','so_linux.png'), -(2,'Solaris','Sun Solaris','so_solaris.png'), -(3,'AIX','IBM AIX','so_aix.png'), -(4,'BSD','OpenBSD, FreeBSD and Others','so_bsd.png'), -(5,'HP-UX','HP-UX Unix OS','so_hpux.png'), -(7,'Cisco','CISCO IOS','so_cisco.png'), -(8,'MacOS','MAC OS','so_mac.png'), -(9,'Windows','Microsoft Windows OS','so_win.png'), -(10,'Other','Other SO','so_other.png'), -(11,'Network','Pandora FMS Network Agent','network.png'), -(12,'Web Server','Web Server/Application','network.png'), -(13,'Octopods','Octopods Pandora FMS Hardware Agent','network.png'), -(14,'Embedded','Embedded device running a Pandora FMS agent','embedded.png'), -(15,'Android','Android agent','android.png'), -(16, 'VMware', 'VMware Architecture', 'so_vmware.png'), -(17, 'Router', 'Generic router', 'so_router.png'), -(18, 'Switch', 'Generic switch', 'so_switch.png'), -(19, 'Satellite', 'Satellite agent', 'satellite.png'), -(20, 'Mainframe', 'Mainframe agent', 'so_mainframe.png'); -COMMIT WORK; -SELECT setval('tconfig_os_id_os_seq', (SELECT (SELECT MAX(id_os) FROM tconfig_os))); - --- --- Dumping data for table "tgrupo" --- -BEGIN WORK; -LOCK TABLE "tgrupo"; -INSERT INTO "tgrupo" ("id_grupo", "nombre", "icon", "parent", "propagate", "disabled", "custom_id", "id_skin", "description") -VALUES -(2,'Servers','server_database',0,0,0,'',1,''), -(4,'Firewalls','firewall',0,0,0,'',1,''), -(8,'Databases','database_gear',0,0,0,'',1,''), -(9,'Network','transmit',0,0,0,'',1,''), -(10,'Unknown','world',0,0,0,'',1,''), -(11,'Workstations','computer',0,0,0,'',1,''), -(12,'Applications','applications',0,0,0,'',1,''), -(13,'Web','world',0,0,0,'',1,''); -COMMIT WORK; -SELECT setval('tgrupo_id_grupo_seq', (SELECT (SELECT MAX(id_grupo) FROM tgrupo))); - --- --- Dumping data for table "tlanguage" --- -BEGIN WORK; -LOCK TABLE "tlanguage"; -INSERT INTO "tlanguage" VALUES ('en_GB','English (UK)'); -INSERT INTO "tlanguage" VALUES ('es','Español'); -INSERT INTO "tlanguage" VALUES ('ar','العربية'); -INSERT INTO "tlanguage" VALUES ('cs','Česky'); -INSERT INTO "tlanguage" VALUES ('de','Deutch'); -INSERT INTO "tlanguage" VALUES ('el','Ελληνικά'); -INSERT INTO "tlanguage" VALUES ('fr','Français'); -INSERT INTO "tlanguage" VALUES ('it','Italiano'); -INSERT INTO "tlanguage" VALUES ('ja','日本語'); -INSERT INTO "tlanguage" VALUES ('nl','Nederlands'); -INSERT INTO "tlanguage" VALUES ('pl','Polski'); -INSERT INTO "tlanguage" VALUES ('pt_BR','Português-Brasil'); -INSERT INTO "tlanguage" VALUES ('pt','Português'); -INSERT INTO "tlanguage" VALUES ('ru','Русский'); -INSERT INTO "tlanguage" VALUES ('sk','Slovenčina'); -INSERT INTO "tlanguage" VALUES ('tr','Türkçe'); -INSERT INTO "tlanguage" VALUES ('zh_CN','简化字'); -INSERT INTO "tlanguage" VALUES ('ca','Catalan'); -COMMIT WORK; - --- --- Dumping data for table "tlink" --- -BEGIN WORK; -LOCK TABLE "tlink"; -INSERT INTO "tlink" VALUES -(1,'Documentation','http://wiki.pandorafms.com/'), -(2,'Enterprise Edition','http://pandorafms.com'), -(3,'Report a bug','https://github.com/pandorafms/pandorafms/issues'), -(4,'Suggest new feature','http://forums.pandorafms.com/index.php?board=22.0'), -(5,'Module library','http://library.pandorafms.com/'); -COMMIT WORK; -SELECT setval('tlink_id_link_seq', (SELECT (SELECT MAX(id_link) FROM tlink))); - --- --- Dumping data for table "tmodule_group" --- -BEGIN WORK; -LOCK TABLE "tmodule_group"; -INSERT INTO "tmodule_group" VALUES -(1,'General'), -(2,'Networking'), -(3,'Application'), -(4,'System'), -(5,'Miscellaneous'), -(6,'Performance'), -(7,'Database'), -(8,'Enviromental'), -(9,'Users'); -COMMIT WORK; -SELECT setval('tmodule_group_id_mg_seq', (SELECT (SELECT MAX(id_mg) FROM tmodule_group))); - --- --- Dumping data for table "torigen" --- -INSERT INTO "torigen" VALUES -('Operating System event'), -('Firewall records'), -('Database event'), -('Application data'), -('Logfiles'), -('Other data source'), -('Pandora FMS Event'), -('User report'), -('Unknown source'); - --- --- Dumping data for table "ttipo_modulo" --- --- Identifiers 30 and 31 are reserved for Enterprise data types -INSERT INTO "ttipo_modulo" VALUES -(1,'generic_data',0,'Generic data','mod_data.png'), -(2,'generic_proc',1,'Generic boolean','mod_proc.png'), -(3,'generic_data_string',2,'Generic string','mod_string.png'), -(4,'generic_data_inc',0,'Generic data incremental','mod_data_inc.png'), -(5,'generic_data_inc_abs',0,'Generic numeric incremental (absolute)','mod_data_inc_abs.png'), -(6,'remote_icmp_proc',4,'Remote ICMP network agent, boolean data','mod_icmp_proc.png'), -(7,'remote_icmp',3,'Remote ICMP network agent (latency)','mod_icmp_data.png'), -(8,'remote_tcp',3,'Remote TCP network agent, numeric data','mod_tcp_data.png'), -(9,'remote_tcp_proc',4,'Remote TCP network agent, boolean data','mod_tcp_proc.png'), -(10,'remote_tcp_string',5,'Remote TCP network agent, alphanumeric data','mod_tcp_string.png'), -(11,'remote_tcp_inc',3,'Remote TCP network agent, incremental data','mod_tcp_inc.png'), -(15,'remote_snmp',3,'Remote SNMP network agent, numeric data','mod_snmp_data.png'), -(16,'remote_snmp_inc',3,'Remote SNMP network agent, incremental data','mod_snmp_inc.png'), -(17,'remote_snmp_string',5,'Remote SNMP network agent, alphanumeric data','mod_snmp_string.png'), -(18,'remote_snmp_proc',4,'Remote SNMP network agent, boolean data','mod_snmp_proc.png'), -(21,'async_proc', 7, 'Asyncronous proc data', 'mod_async_proc.png'), -(22,'async_data', 6, 'Asyncronous numeric data', 'mod_async_data.png'), -(23,'async_string', 8, 'Asyncronous string data', 'mod_async_string.png'), -(24,'log4x',0,'Log4x','mod_log4x.png'), -(100,'keep_alive',-1,'KeepAlive','mod_keepalive.png'); -SELECT setval('ttipo_modulo_id_tipo_seq', (SELECT (SELECT MAX(id_tipo) FROM ttipo_modulo))); - --- Categoria field is used to segregate several types --- (plugin, agents, network) on their data --- types, could be used or could be avoided and use directly primary key (id_tipo) - --- --- Dumping data for table "tusuario" --- -INSERT INTO "tusuario" ("id_user", "fullname", "firstname", "lastname", "middlename", "password", "comments", "last_connect", "registered", "email", "phone", "is_admin", "flash_chart", "language", "block_size", "section", "data_section", "metaconsole_access") VALUES -('admin', 'Pandora', 'Pandora', 'Admin', '', '1da7ee7d45b96d0e1f45ee4ee23da560', 'Admin Pandora', 1232642121, 0, 'admin@example.com', '555-555-5555', 1, -1, 'default', 0, 'Default', '', 'advanced'); - --- --- Dumping data for table "tusuario_perfil" --- -INSERT INTO "tusuario_perfil" ("id_up", "id_usuario", "id_perfil", "id_grupo", "assigned_by", "id_policy", "tags") VALUES -(1,'admin',5,0,'admin',0,''); -SELECT setval('tusuario_perfil_id_up_seq', (SELECT (SELECT MAX(id_up) FROM tusuario_perfil))); - --- --- Dumping data for table "tperfil" --- -INSERT INTO "tperfil" VALUES (1,'Operator (Read)',0,1,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0),(2,'Operator (Write)',1,1,0,1,0,0,0,0,0,0,1,1,0,1,1,0,0,1,1,0,1,1,0),(3,'Chief Operator',1,1,1,1,0,0,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1),(4,'Group coordinator',1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1),(5,'Pandora Administrator',1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1); -SELECT setval('tperfil_id_perfil_seq', (SELECT (SELECT MAX(id_perfil) FROM tperfil))); - --- --- Dumping data for table "tnews" --- - -INSERT INTO "tnews" ("id_news", "author", "subject", "text", "timestamp") VALUES (1,'admin','Welcome to Pandora FMS 4.0!','This is the new Pandora FMS Console. A lot of new features have been added since last version. Please read the documentation about it, and feel free to test any option.\r\n\r\nThe Pandora FMS Team.',NOW()), -(2,'admin','New Pandora FMS Agent Features','Feel free to test our new features for both Windows and Linux agents: Proxy and Broker modes.',NOW()); -SELECT setval('tnews_id_news_seq', (SELECT (SELECT MAX(id_news) FROM tnews))); - -INSERT INTO tmodule VALUES (1,'Agent module'); -INSERT INTO tmodule VALUES (2,'Network module'); -INSERT INTO tmodule VALUES (4,'Plugin module'); -INSERT INTO tmodule VALUES (5,'Prediction module'); -INSERT INTO tmodule VALUES (6,'WMI module'); -SELECT setval('tmodule_id_module_seq', (SELECT (SELECT MAX(id_module) FROM tmodule))); - -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (1,'OS Total process','Total process in Operating System (UNIX MIB)',13,15,0,0,180,0,'','','public','HOST-RESOURCES-MIB::hrSystemProcesses.0 ',4,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (2,'OS CPU Load (1 min)','CPU Load in Operating System (UNIX MIB)',13,15,0,0,180,0,'','','public','UCD-SNMP-MIB::laLoad.1',4,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (3,'Sysname','Get name of system using SNMP standard MIB',1,17,0,0,900,0,'','','public','.1.3.6.1.2.1.1.1.0',1,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (4,'OS Users','Active users in Operating System (UNIX MIB)',13,15,0,0,180,0,'','','public','HOST-RESOURCES-MIB::hrSystemNumUsers.0',4,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (11,'Catalyst CPU Usage (5min)','Cisco Catayst Switches CPU Usage. Taken from ftp://ftp.cisco.com/pub/mibs/oid/OLD-CISCO-CPU-MIB.oid',2,15,0,0,180,0,'','','public','1.3.6.1.4.1.9.2.1.58',4,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (22,'HSRP Status','Get status of HSRP',2,18,0,0,180,0,'','','public','1.3.6.1.4.1.9.9.106.1.2.1.1.15.12.106',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (24,'NIC #1 status','Status of NIC#1',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.1',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (25,'NIC #2 status','Status of NIC #2',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.2',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (26,'NIC #3 status','Status of NIC #3',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.3',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (27,'NIC #1 outOctects','Output throughtput on Interface #1',10,16,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.16.1',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (28,'NIC #2 outOctects','Output troughtput on interface #2',10,16,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.16.2',1,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (29,'NIC #3 outOctects','Output troughtput on Interface #3',10,16,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.16.3',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (30,'NIC #1 inOctects','Input troughtput on Interface #1',10,16,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.10.1',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (31,'NIC #2 inOctects','Input throughtput for interface #2',10,16,0,0,180,0,'','NULL','public','.1.3.6.1.2.1.2.2.1.10.2',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (32,'NIC #3 inOctects','Input throught on interface #3',10,16,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.10.3',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (34,'Host Alive','Check if host is alive using ICMP ping check.',10,6,0,0,120,0,'','','','',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (36,'Host Latency','Get host network latency in miliseconds, using ICMP.',10,7,0,0,180,0,'','','','',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (37,'Check HTTP Server','Test APACHE2 HTTP service remotely (Protocol response, not only openport)',10,9,0,0,300,80,'GET / HTTP/1.0^M^M','HTTP/1.1 200 OK','','',3,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (38,'Check FTP Server','Check FTP protocol, not only check port.',10,9,0,0,300,21,'QUIT','220','','',3,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (39,'Check SSH Server','Checks port 22 is opened',10,9,0,0,300,22,'','','','',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (40,'Check Telnet server','Check telnet port',10,9,0,0,300,23,'','','','',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (41,'Check SMTP server','Check if SMTP port it's open',10,9,0,0,300,25,'','','','',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (42,'Check POP3 server','Check POP3 port.',10,9,0,0,300,110,'','','','',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (43,'NIC #7 outOctects','Get outcoming octects from NIC #7',10,16,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.16.7',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (44,'NIC #7 inOctects','Get incoming octects from NIC #7',10,16,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.10.7',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (45,'NIC #4 Status','Get status of NIC #4',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.4',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (46,'NIC #5 Status','Get status of NIC #5',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.5',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (47,'NIC #6 Status','Get status of NIC #6',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.6',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (48,'NIC #7 Status','Get status of NIC #7',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.7',2,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (49,'OS CPU Load (5 min)','CPU load on a 5 min average interval. UCD-SNMP Mib (Usually for all Linux and some UNIX)',13,15,0,0,180,0,'','','public','UCD-SNMP-MIB::laLoad.2',4,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (50,'System Description','Get system description (all mibs).',1,17,0,0,9000,0,'','','public','SNMPv2-MIB::sysDescr.0',4,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (51,'OS Raw Interrupts','Get system raw interrupts from SO',13,16,0,0,180,0,'','','public','UCD-SNMP-MIB::ssRawInterrupts.0',4,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (52,'OS IO Signals sent','IO Signals sent by Kernel',13,16,0,0,180,0,'','','public','UCD-SNMP-MIB::ssIOSent.0',4,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (53,'System Uptime','Sistem uptime in timeticks',1,15,0,0,180,0,'','','public','HOST-RESOURCES-MIB::hrSystemUptime.0',4,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (176,'Catalyst Free Mem','Taken from ftp://ftp.cisco.com/pub/mibs/oid/OLD-CISCO-MEMORY-MIB.oid',2,15,0,0,180,0,'','','public','1.3.6.1.4.1.9.2.1.8',4,2,0,NULL,NULL,NULL,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (200,'CPU load','CPU0 load average',16,1,100,0,300,1,'','','','SELECT LoadPercentage from Win32_Processor WHERE DeviceID = "CPU0"',1,6,0,'Administrator','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (201,'Free RAM','Available RAM memory in bytes',16,1,0,0,300,0,'','','','SELECT AvailableBytes from Win32_PerfRawData_PerfOS_Memory',1,6,0,'Administrator',NULL,NULL,10,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (202,'Windows version','Operating system version',16,3,0,0,300,1,'','','','SELECT Caption FROM Win32_OperatingSystem',1,6,0,'Administrator',NULL,NULL,10,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (203,'Free RAM','Available RAM memory in bytes',16,1,0,0,300,0,'','','','SELECT AvailableBytes from Win32_PerfRawData_PerfOS_Memory',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (204,'Hostname','The hostname of the machine.',16,3,0,0,300,0,'','','','SELECT DNSHostName FROM Win32_ComputerSystem',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (205,'Computer number of CPUs','Displays the number of CPUs present in the system',17,1,0,0,300,1,'','','','SELECT NumberOfProcessors FROM Win32_ComputerSystem',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (206,'Server Domain','Display the Domain the machine belongs to.',16,3,0,0,300,0,'','','','SELECT Domain FROM Win32_ComputerSystem',2,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (207,'Number of Processes','Displays the number of processes running in the system',16,1,0,0,300,0,'','','','SELECT NumberOfProcesses FROM Win32_OperatingSystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (208,'Serial Number','Serial Number of the machine',16,3,0,0,300,3,'','','','SELECT SerialNumber FROM Win32_OperatingSystem',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (209,'CPU Model','Displays the CPU model',17,3,0,0,300,1,'','','','SELECT Name FROM Win32_Processor',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (210,'Service Pack','Service Pack Version Installed',16,1,0,0,300,3,'','','','SELECT ServicePackMajorVersion FROM Win32_OperatingSystem',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (211,'Free Physical Memory','Displays the amount of free physical memory in the system',16,1,0,0,300,0,'','','','SELECT FreePhysicalMemory FROM Win32_OperatingSystem',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (212,'Free Virtual Memory','Displays the amount of free virtual memory in the system',16,1,0,0,300,0,'','','','SELECT FreeVirtualMemory FROM Win32_OperatingSystem',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (213,'License Activation','This module lets you know whether you have to activate your Windows license or not.\r\n\r\n0 = No\r\n1= Yes',16,2,0,0,300,0,'','','','SELECT ActivationRequired FROM Win32_WindowsProductActivation',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (214,'Total Swap Space Size','Total Swap Space Size',16,1,0,0,300,3,'','','','SELECT TotalSwapSpaceSize from win32_operatingsystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (215,'Total Virtual Memory Size','Total Virtual Memory Size',16,1,0,0,300,3,'','','','select TotalVirtualMemorySize from win32_operatingsystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (216,'Total Visible Memory Size','Total Visible Memory Size',16,1,0,0,300,3,'','','','SELECT TotalVisibleMemorySize from win32_operatingsystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (217,'Free Space In Paging Files','Gets the free space in paging files',16,1,0,0,300,0,'','','','Select FreeSpaceInPagingFiles from Win32_operatingsystem',4,6,0,'none','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (218,'Free Space In Paging Files','Gets the free space in paging files',16,1,0,0,300,0,'','','','Select FreeSpaceInPagingFiles from Win32_operatingsystem',4,6,0,'none','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (219,'Number of Users','Displays the number of users',16,1,0,0,300,0,'','','','SELECT NumberOfUsers FROM Win32_operatingsystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (220,'Last BootUp Time','Displays the Last BootUp Time',16,3,0,0,300,0,'','','','SELECT LastBootUpTime FROM Win32_operatingsystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (221,'BIOS Name','Displays the BIOS Name',17,3,0,0,300,1,'','','','SELECT BiosCharacteristics FROM Win32_BIOS',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (222,'BIOS Version','Displays the BIOS version',17,3,0,0,300,5,'','','','SELECT BIOSVersion FROM Win32_BIOS',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (223,'BIOS Manufacturer','Displays the BIOS Manufacturer',17,3,0,0,300,0,'','','','SELECT Manufacturer FROM Win32_BIOS',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (224,'BIOS Status','Displays the BIOS Status',17,3,0,0,300,3,'','','','SELECT Status FROM Win32_BIOS',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (225,'BIOS Serial Number','Displays the BIOS Serial Number',17,3,0,0,300,1,'','','','SELECT SerialNumber FROM Win32_BIOS',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (226,'Windows Temp Directory','Path of the Windows Temp Directory',16,3,0,0,300,1,'','','','SELECT TempDirectory FROM Win32_BootConfiguration',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (227,'Windows Admin Password Status','Status of the Windows Admin password: 1 is set.',16,2,0,0,300,0,'','','','SELECT AdminPasswordStatus FROM Win32_ComputerSystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (228,'Computer System Description','Displays the computer System description',17,3,0,0,300,0,'','','','SELECT Description FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (230,'Computer Automatic Reset Boot Option','Displays the computer Automatic reset boot option',17,3,0,0,300,0,'','','','SELECT AutomaticResetBootOption FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (231,'Computer Automatic Reset Capability','Displays the computer automatic reset capability',17,3,0,0,300,0,'','','','SELECT AutomaticResetCapability FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (232,'Computer Boot Option On Limit','Displays the computer Boot Option on Limit',17,1,0,0,300,0,'','','','SELECT BootOptionOnLimit FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (233,'Computer Boot Option On Watch Dog','Displays the Computer Boot Option On Watch Dog',17,1,0,0,300,0,'','','','SELECT BootOptionOnWatchDog FROM Win32_ComputerSystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (234,'Computer Boot ROM Supported','Displays if the computer Boot ROM is supported',17,3,0,0,300,0,'','','','SELECT BootROMSupported FROM Win32_ComputerSystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (235,'Computer Bootup State','Displays the computer Bootup State',17,3,0,0,300,0,'','','','SELECT BootupState FROM Win32_ComputerSystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (236,'Computer Chassis Bootup State','Displays the computer Chassis Bootup State',16,1,0,0,300,0,'','','','SELECT ChassisBootupState FROM Win32_ComputerSystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (237,'Computer Daylight In Effect','Displays whether the computer Daylight In Effect is enabler or not',16,3,0,0,300,0,'','','','SELECT DaylightInEffect FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (238,'Computer DNS Host Name','Displays the DNS Host Name',16,3,0,0,300,0,'','','','SELECT DNSHostName FROM Win32_ComputerSystem',2,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (239,'Computer Domain','Displays the computer Domain',16,3,0,0,300,0,'','','','SELECT Domain FROM Win32_ComputerSystem',2,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (240,'Computer Domain Role','Displays the computer Domain Role',16,1,0,0,300,0,'','','','SELECT DomainRole FROM Win32_ComputerSystem',2,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (241,'Computer Enable Daylight Savings Time','Displays whether the computer Daylight Savings Time is enabled',16,3,0,0,300,0,'','','','SELECT EnableDaylightSavingsTime FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (242,'Computer Front Panel Reset Status','Displays the computer Front Panel Reset Status',16,1,0,0,300,0,'','','','SELECT FrontPanelResetStatus FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (243,'Computer Infrared Support','Displays the computer Infrared Support',16,3,0,0,300,0,'','','','SELECT InfraredSupported FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (244,'Computer Initial Load Info','Displays the computer Initial Load Info',16,3,0,0,300,0,'','','','SELECT InitialLoadInfo FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (245,'Computer Install Date','Displays the computer install date',16,3,0,0,300,0,'','','','SELECT InstallDate FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (246,'Computer Keyboard Password Status','Displays the computer keyboard password status',16,1,0,0,300,0,'','','','SELECT KeyboardPasswordStatus FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (247,'Computer Last Load Info','Displays the computer last load info',16,3,0,0,300,0,'','','','SELECT LastLoadInfo FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (248,'Computer Manufacturer','Displays the computer manufacturer',16,3,0,0,300,0,'','','','SELECT Manufacturer FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (249,'Computer Model','Displays the computer model',17,3,0,0,300,0,'','','','SELECT Model FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (250,'Computer Name','Displays the computer name',16,3,0,0,300,0,'','','','SELECT Name FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (251,'Computer Network Server Mode Enabled','Displays the computer Network Server Mode Enabled',16,3,0,0,300,1,'','','','SELECT NetworkServerModeEnabled FROM Win32_ComputerSystem',2,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (252,'Computer Part of Domain','Displays the computer Part of Domain',16,3,0,0,300,1,'','','','SELECT PartOfDomain FROM Win32_ComputerSystem',2,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (253,'Computer Pause After Reset','Displays the computer Pause After Reset',17,1,0,0,300,1,'','','','SELECT PauseAfterReset FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (254,'Computer Power Management Capabilities','Displays the computer Power Management Capabilities',17,3,0,0,300,1,'','','','SELECT PowerManagementCapabilities FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (255,'Computer Power Management Support','Displays the computer Power Management Support',17,3,0,0,300,1,'','','','SELECT PowerManagementSupported FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (256,'Computer Power on Password Status','Displays the computer Power on Password Status',17,2,0,0,300,1,'','','','SELECT PowerOnPasswordStatus FROM Win32_ComputerSystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (257,'Computer Power State','Displays the computer Power State',17,2,0,0,300,1,'','','','SELECT PowerState FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (258,'Computer Power Supply State','Displays the computer Power Supply State',17,1,0,0,300,1,'','','','SELECT PowerSupplyState FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (259,'Computer Reset Capability','Displays the computer Reset Capability',16,1,0,0,300,1,'','','','SELECT ResetCapability FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (260,'Computer Reset Count','Displays the computer Reset Count',16,1,0,0,300,1,'','','','SELECT ResetCount FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (261,'Computer Reset Limit','Displays the computer Reset Limit',16,1,0,0,300,1,'','','','SELECT ResetLimit FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (262,'Computer Roles','Displays the computer Roles',16,3,0,0,300,1,'','','','SELECT Roles FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (263,'Computer Status','Displays the computer Status',16,3,0,0,300,1,'','','','SELECT Status FROM Win32_ComputerSystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (264,'Computer System Startup Delay','Displays the computer System Startup Delay',16,1,0,0,300,1,'','','','SELECT SystemStartupDelay FROM Win32_ComputerSystem',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (265,'Computer System Startup Options','Displays the computer System Startup Options',16,3,0,0,300,1,'','','','SELECT SystemStartupOptions FROM Win32_ComputerSystem',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (266,'Exchange VMLargestBlockSize key','The VMLargestBlockSize key represents the size (in bytes) of the largest available block of virtual memory',20,1,0,0,300,0,'','','','SELECT VMLargestBlockSize FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (267,'Exchange VMTotalLargeFreeBlockBytes','The VMTotalFreeBlocks key represents the size (in bytes) of the total largest free available block of virtual memory',20,1,0,0,300,0,'','','','SELECT VMTotalLargeFreeBlockBytes FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (268,'Exchange VMTotalFreeBlocks','The VMTotalFreeBlocks key represents the size (in bytes) of the Total Free Available blocks of virtual memory',20,1,0,0,300,0,'','','','SELECT VMTotalFreeBlocks FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (269,'Exchange TotalMessagesScannedforUCE','The total number of messages scanned by Intelligent Message Filter. If this number is 0 or very low, Intelligent Message Filter might not&#x',20,1,0,0,300,1,'','','','SELECT TotalMessagesScannedforUCE FROM Win32_PerfRawData_MSExchangeUCF_MSExchangeIntelligentMessageFilter Where Name='_Total'',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (270,'Exchange TotalUCEMessagesActedUpon','The total number of messages that Intelligent Message Filter has identified as UCE and acted on based on the action specified by an adm',20,1,0,0,300,1,'','','','SELECT TotalUCEMessagesActedUpon FROM Win32_PerfRawData_MSExchangeUCF_MSExchangeIntelligentMessageFilter Where Name='_Total'',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (271,'Exchange TotalMessagesAssignedanSCLRatingof1','The total number of messages scanned by Intelligent Message Filter that were assigned a spam confidence level (SCL) rating of x, where x',20,1,0,0,300,1,'','','','SELECT TotalMessagesAssignedanSCLRatingof1 FROM Win32_PerfRawData_MSExchangeUCF_MSExchangeIntelligentMessageFilter Where Name='_Total'',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (272,'Exchange TotalMessagesAssignedanSCLRatingof3','The total number of messages scanned by Intelligent Message Filter that were assigned a spam confidence level (SCL) rating of x, where x',20,1,0,0,300,1,'','','','SELECT TotalMessagesAssignedanSCLRatingof3 FROM Win32_PerfRawData_MSExchangeUCF_MSExchangeIntelligentMessageFilter Where Name='_Total'',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (273,'Exchange TotalMessagesAssignedanSCLRatingof5','The total number of messages scanned by Intelligent Message Filter that were assigned a spam confidence level (SCL) rating of x, where x',20,1,0,0,300,1,'','','','SELECT TotalMessagesAssignedanSCLRatingof5 FROM Win32_PerfRawData_MSExchangeUCF_MSExchangeIntelligentMessageFilter Where Name='_Total'',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (274,'Exchange TotalMessagesAssignedanSCLRatingof6','The total number of messages scanned by Intelligent Message Filter that were assigned a spam confidence level (SCL) rating of x, where x',20,1,0,0,300,1,'','','','SELECT TotalMessagesAssignedanSCLRatingof6 FROM Win32_PerfRawData_MSExchangeUCF_MSExchangeIntelligentMessageFilter Where Name='_Total'',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (275,'Exchange TotalMessagesAssignedanSCLRatingof7','The total number of messages scanned by Intelligent Message Filter that were assigned a spam confidence level (SCL) rating of x, where x',20,1,0,0,300,1,'','','','SELECT TotalMessagesAssignedanSCLRatingof7 FROM Win32_PerfRawData_MSExchangeUCF_MSExchangeIntelligentMessageFilter Where Name='_Total'',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (276,'Exchange TotalMessagesAssignedanSCLRatingof8','The total number of messages scanned by Intelligent Message Filter that were assigned a spam confidence level (SCL) rating of x, where x',20,1,0,0,300,1,'','','','SELECT TotalMessagesAssignedanSCLRatingof8 FROM Win32_PerfRawData_MSExchangeUCF_MSExchangeIntelligentMessageFilter Where Name='_Total'',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (277,'Exchange TotalMessagesAssignedanSCLRatingof9','The total number of messages scanned by Intelligent Message Filter that were assigned a spam confidence level (SCL) rating of x, where x',20,1,0,0,300,1,'','','','SELECT TotalMessagesAssignedanSCLRatingof9 FROM Win32_PerfRawData_MSExchangeUCF_MSExchangeIntelligentMessageFilter Where Name='_Total'',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (278,'Exchange ClientBackgroundRPCsFailed','Shows the client-reported rate of failed RPCs (since the store was started) due to the Server Too Busy ROC error.',20,1,0,0,300,0,'','','','SELECT ClientBackgroundRPCsFailed FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (279,'Exchange ClientBackgroundRPCssucceeded','The count of succeeded RPC calls.',20,1,0,0,300,0,'','','','SELECT ClientBackgroundRPCssucceeded FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (280,'Exchange ClientForegroundRPCssucceeded','The number of RPCs that Outlook successfully sent to the server.',20,1,0,0,300,0,'','','','SELECT ClientForegroundRPCssucceeded FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (281,'Exchange ClientRPCsattempted','The number of remote procedure calls (RPCs) that Outlook tried to send to the server.',20,1,0,0,300,0,'','','','SELECT ClientRPCsattempted FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (282,'Exchange ClientRPCsFailed','The number of RPCs that were tried and that failed',20,1,0,0,300,0,'','','','SELECT ClientRPCsFailed FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (283,'Exchange ClientRPCsFailedAccessDenied','Failed RPC connections with a Access Denied error.',20,1,0,0,300,0,'','','','SELECT ClientRPCsFailedAccessDenied FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (284,'Exchange ClientRPCsFailedAllothererrors','The rate of failed RPC requests (since the Exchange store was started) due to all other RPC errors.',20,1,0,0,300,0,'','','','SELECT ClientRPCsFailedAllothererrors FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (285,'Exchange ClientRPCsFailedCallCancelled','RPC connections that got cancelled.',20,1,0,0,300,0,'','','','SELECT ClientRPCsFailedCallCancelled FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (286,'Exchange ClientRPCsFailedCallFailed','RPC Failed connections with exit code: Failed Call',20,1,0,0,300,0,'','','','SELECT ClientRPCsFailedCallFailed FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (287,'Exchange ClientRPCsFailedServerTooBusy','The number of failed RPC requests (since the Exchange store was started) due to the "Server Too Busy" RPC error.',20,1,0,0,300,0,'','','','SELECT ClientRPCsFailedServerTooBusy FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (288,'Exchange ClientRPCsFailedServerUnavailable','The rate of failed RPC requests (since the Exchange store was started) due to the "Server Unavailable" RPC error. ',20,1,0,0,300,0,'','','','SELECT ClientRPCsFailedServerUnavailable FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (289,'Exchange ClientRPCssucceeded','The rate of successful RPC requests.',20,1,0,0,300,0,'','','','SELECT ClientRPCssucceeded FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (290,'Exchange RPCRequests','Rate of RPC requests.',20,1,0,0,300,0,'','','','SELECT RPCRequests FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (291,'Exchange RPCAveragedLatency','Average reported latency',20,1,0,0,300,0,'','','','SELECT RPCAveragedLatency FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (292,'Exchange RPCOperationsPersec','RPC operations per Second',20,1,0,0,300,0,'','','','SELECT RPCOperationsPersec FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (293,'Exchange RPCRequestsPeak','Peak of RPC requests',20,1,0,0,300,0,'','','','SELECT RPCRequestsPeak FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (294,'Exchange UserCount','The number of users connected to the information store',20,1,0,0,300,0,'','','','SELECT UserCount FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (295,'Exchange ActiveConnectionCount','Number of connections that have shown some activity in the last 10 minutes.',20,1,0,0,300,0,'','','','SELECT ActiveConnectionCount FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (296,'Exchange ActiveUserCount','This counter gives the number of unique users that have logged on to the server and been active in the last 10 minutes',20,1,0,0,300,0,'','','','SELECT ActiveUserCount FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (297,'Exchange MaximumConnections','Maximum Connections',20,1,0,0,300,0,'','','','SELECT MaximumConnections FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (298,'Exchange MaximumUsers','Maximum number of Users.',20,1,0,0,300,0,'','','','SELECT MaximumUsers FROM Win32_PerfRawData_MSExchangeIS_MSExchangeIS',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (299,'AD AppMgmt','Status of the AppMgmt service.',18,3,0,0,300,1,'','','','SELECT name,status,state from Win32_Service WHERE name='AppMgmt'',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (300,'AD Dnscache','Status of the Dnscache service used by the AD.',18,3,0,0,300,1,'','','','SELECT name,status,state from Win32_Service WHERE name='Dnscache'',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (301,'IIS CurrentFileCacheMemoryUsage','The number of bytes currently used for the user-mode file cache. ',19,1,0,0,300,0,'','','','select CurrentFileCacheMemoryUsage from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (302,'IIS ActiveFlushedEntries','The number of user-mode cache entries that have been flushed, though memory is still allocated for these entries. The allocated memory will ',19,1,0,0,300,0,'','','','select ActiveFlushedEntries from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (303,'IIS CurrentFilesCached','The number of files whose content is currently in the user-mode cache. ',19,1,0,0,300,0,'','','','select CurrentFilesCached from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (304,'IIS CurrentMetadataCached','The current number of metadata information blocks in the user-mode cache. ',19,1,0,0,300,0,'','','','select CurrentMetadataCached from Win32_PerfRawData_W3SVC_WebServiceCache',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (305,'IIS CurrentURIsCached','The number of URI information blocks that are currently stored in the user-mode cache. ',19,1,0,0,300,0,'','','','select CurrentURIsCached from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (306,'IIS DescriptionFileCacheFlushes','Description of the number of files that have been removed from the user-mode cache since the WWW service started. ',19,1,0,0,300,0,'','','','select DescriptionFileCacheFlushes from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (307,'IIS FileCacheHits','The number of successful lookups in the user-mode file cache that have occurred since the WWW service started. ',19,1,0,0,300,0,'','','','select FileCacheHits from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (308,'IIS FileCacheHitsPercent','The ratio of user-mode file cache hits to total cache requests that have been made since the WWW service started up',19,1,0,0,300,0,'','','','select FileCacheHitsPercent from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (309,'IIS FileCacheHitsPercent_Base','Base value for FileCacheHitsPercent used to calculate percentage.',19,1,0,0,300,0,'','','','select FileCacheHitsPercent_Base from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (310,'IIS FileCacheMisses','The number of unsuccessful lookups in the user-mode file cache that have been made since the WWW service started. ',19,1,0,0,300,0,'','','','select FileCacheMisses from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (311,'IIS Frequency_Object','Frequency, in ticks per second, of Timestamp_Object. This property is defined by the provider',19,1,0,0,300,0,'','','','select Frequency_Object from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (312,'IIS Frequency_PerfTime','Frequency, in ticks per second, of Timestamp_Perftime',19,1,0,0,300,0,'','','','select Frequency_PerfTime from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (313,'IIS KernelCurrentURIsCached','The number of URI information blocks currently cached by the kernel. ',19,1,0,0,300,0,'','','','select KernelCurrentURIsCached from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (314,'IIS KernelTotalFlushedURIs','The number of URI information blocks that have been removed from the kernel cache since the WWW service started. ',19,1,0,0,300,0,'','','','select KernelTotalFlushedURIs from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (315,'IIS KernelTotalURIsCached','The number of URI information blocks that have been added to the kernel URI cache since the WWW service started. ',19,1,0,0,300,0,'','','','select KernelTotalURIsCached from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (316,'IIS KernelURICacheFlushes','The number of kernel URI cache flushes that have occurred since the WWW service started. ',19,1,0,0,300,0,'','','','select KernelURICacheFlushes from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (317,'IIS KernelURICacheHits','The number of successful lookups in the kernel URI cache that have occurred since the WWW service started. ',19,1,0,0,300,0,'','','','select KernelURICacheHits from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (318,'IIS KernelURICacheHitsPercent','The ratio of Kernel: URI Cache Hits to total cache requests since the WWW service started',19,1,0,0,300,0,'','','','select KernelURICacheHitsPercent from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (319,'IIS KernelUriCacheHitsPersec','The average number of kernel URI cache hits that are being made per second. ',19,1,0,0,300,0,'','','','select KernelUriCacheHitsPersec from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (320,'Free disk','_VOLUME_ID is your volume ID, for example "c:"',16,1,0,0,600,1,'','','','SELECT FreeSpace FROM Win32_LogicalDisk WHERE DeviceID = _VOLUME_ID_',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (321,'Process Status','Return status of Process Status given it's name (case sensitive!) including extension. Use process manager to get process name. Returns 1 if',16,2,0,0,300,1,'','','Running','ELECT State FROM Win32_Service WHERE Name = "_Name of process_"',4,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (322,'IIS KernelURICacheMisses','The number of unsuccessful lookups in the kernel URI cache that have occurred since the WWW service started. ',19,1,0,0,300,0,'','','','select KernelURICacheMisses from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (323,'IIS MaximumFileCacheMemoryUsage','The maximum number of bytes that have been used for the user-mode file cache since the WWW service started. ',19,1,0,0,300,0,'','','','select MaximumFileCacheMemoryUsage from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (324,'IIS MetadataCacheFlushes','The number of user-mode metadata cache flushes that have occurred since the WWW service started.',19,1,0,0,300,0,'','','','select MetadataCacheFlushes from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (325,'IIS MetadataCacheHits','The number of successful lookups in the user-mode metadata cache that have occurred since the WWW service started. ',19,1,0,0,300,0,'','','','select MetadataCacheHits from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (326,'IIS MetadataCacheHitsPercent','The ratio of successful lookups to total metadata cache requests. ',19,1,0,0,300,0,'','','','select MetadataCacheHitsPercent from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (327,'IIS MetadataCacheMisses','The number of unsuccessful lookups in the user-mode metadata cache that have occurred since the WWW service started. ',19,1,0,0,300,0,'','','','select MetadataCacheMisses from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (328,'IIS TotalFilesCached','The number of files whose content has been added to the user-mode cache since the WWW service started. ',19,1,0,0,300,0,'','','','select TotalFilesCached from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (329,'IIS TotalFlushedFiles','The number of file handles that have been removed from the user-mode cache since the WWW service started. ',19,1,0,0,300,0,'','','','select TotalFlushedFiles from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (330,'IIS TotalFlushedMetadata','The number of metadata information blocks that have been removed from the user-mode cache since the WWW service started. ',19,1,0,0,300,0,'','','','select TotalFlushedMetadata from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (331,'IIS TotalFlushedURIs','The number of URI information blocks that have been removed from the user-mode cache since the WWW service started. ',19,1,0,0,300,0,'','','','select TotalFlushedURIs from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (332,'IIS TotalMetadataCached','The number of metadata information blocks that have been added to the user-mode cache since the WWW service started. ',19,1,0,0,300,0,'','','','select TotalMetadataCached from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (333,'IIS TotalURIsCached','The number of URI information blocks that have been added to the kernel URI cache since the WWW service started. ',19,1,0,0,300,0,'','','','select TotalURIsCached from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (334,'IIS URICacheFlushes','The number of kernel URI cache flushes that have occurred since the WWW service started. ',19,1,0,0,300,0,'','','','select URICacheFlushes from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (335,'IIS URICacheHits','The number of successful lookups in the kernel URI cache that have occurred since the WWW service started. ',19,1,0,0,300,0,'','','','select URICacheHits from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (336,'IIS URICacheHitsPercent','The ratio of Kernel: URI Cache Hits to total cache requests since the WWW service started. ',19,1,0,0,300,0,'','','','select URICacheHitsPercent from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (337,'IIS URICacheMisses','The number of unsuccessful lookups in the kernel URI cache that have occurred since the WWW service started. ',19,1,0,0,300,0,'','','','select URICacheMisses from Win32_PerfRawData_W3SVC_WebServiceCache',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (338,'IIS AnonymousUsersPersec','Rate at which users are making anonymous connections using the Web service. (the value given is the total users)',19,1,0,0,300,0,'','','','select AnonymousUsersPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (339,'IIS BytesReceivedPersec','Total bytes received by the Web service.',19,1,0,0,300,0,'','','','select BytesReceivedPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (340,'IIS BytesSentPersec','Total bytes sent by the Web service.',19,1,0,0,300,0,'','','','select BytesSentPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (341,'IIS BytesTotalPersec','This is the total rate of bytes transferred by the Web service',19,1,0,0,300,0,'','','','select BytesTotalPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (342,'IIS CGIRequestsPersec','Rate of CGI requests that are simultaneously being processed by the Web service.',19,1,0,0,300,0,'','','','select CGIRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (343,'IIS ConnectionAttemptsPersec','Rate at which connections using the Web service are being attempted.',19,1,0,0,300,0,'','','','select ConnectionAttemptsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (344,'IIS CopyRequestsPersec','Rate at which HTTP requests using the COPY method are made. COPY requests are used for copying files and directories.',19,1,0,0,300,0,'','','','select CopyRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (345,'IIS CurrentAnonymousUsers','Number of users who currently have an anonymous connection using the Web service.\r\n',19,1,0,0,300,0,'','','','select CurrentAnonymousUsers from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (346,'IIS CurrentBlockedAsyncIORequests','Current requests temporarily blocked due to bandwidth throttling settings.',19,1,0,0,300,0,'','','','select CurrentBlockedAsyncIORequests from Win32_PerfRawData_W3SVC_WebService',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (347,'IIS CurrentCGIRequests','Current number of CGI requests that are simultaneously being processed by the Web service.',19,1,0,0,300,0,'','','Currentblockedbandwidthbytes','select CurrentCGIRequests from Win32_PerfRawData_W3SVC_WebService',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (348,'IIS CurrentConnections','Current number of connections established with the Web service.',19,1,0,0,300,0,'','','','select CurrentConnections from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (349,'IIS CurrentISAPIExtensionRequests','select CurrentISAPIExtensionRequests from Win32_PerfRawData_W3SVC_WebService',19,1,0,0,300,0,'','','','select CurrentISAPIExtensionRequests from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (350,'IIS CurrentNonAnonymousUsers','Number of users who currently have a non-anonymous connection using the Web service.',19,1,0,0,300,0,'','','','select CurrentNonAnonymousUsers from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (351,'IIS DeleteRequestsPersec','Total HTTP requests using the DELETE method are made. DELETE requests are generally used for file removal.',19,1,0,0,300,0,'','','','select DeleteRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (352,'IIS FilesPersec','Total files transferred; that is, sent and received by the Web service.',19,1,0,0,300,0,'','','','select FilesPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (353,'IIS FilesReceivedPersec','Total received files by the Web service.',19,1,0,0,300,0,'','','','select FilesReceivedPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (354,'IIS FilesSentPersec','Rate at which files are sent by the Web service.\r\n',19,1,0,0,300,0,'','','','select FilesSentPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (355,'IIS GetRequestsPersec ','Rate at which HTTP requests using the GET method are made. GET requests are generally used for basic file retrievals or image maps, tho',19,1,0,0,300,0,'','','','select GetRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (356,'IIS HeadRequestsPersec','Rate at which HTTP requests using the HEAD method are made. HEAD requests generally indicate that clients are querying the state of document',19,1,0,0,300,0,'','','','select HeadRequestsPersec from Win32_PerfRawData_W3SVC_WebService',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (357,'IIS ISAPIExtensionRequestsPersec','Rate of ISAPI extension requests that are simultaneously being processed by the Web service.',19,1,0,0,300,0,'','','','select ISAPIExtensionRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (358,'IIS LockedErrorsPersec','Rate of errors due to requests that cannot be satisfied by the server because the requested document was locked. These are generally reporte',19,1,0,0,300,0,'','','','select LockedErrorsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (359,'IIS LockRequestsPersec','Rate at which HTTP requests using the LOCK method are made. LOCK requests are used to lock a file for one user so that only t',19,1,0,0,300,0,'','','','select LockRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (360,'IIS LogonAttemptsPersec','Rate at which logons using the Web service are being attempted.',19,1,0,0,300,0,'','','','select LogonAttemptsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (361,'IIS MaximumAnonymousUsers','Maximum number of users who established concurrent anonymous connections using the Web service (counted after service start up).',19,1,0,0,300,0,'','','','select MaximumAnonymousUsers from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (362,'IIS MaximumCGIRequests','Maximum number of CGI requests simultaneously processed by the Web service.',19,1,0,0,300,0,'','','','select MaximumCGIRequests from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (363,'IIS MaximumConnections','Maximum number of simultaneous connections established with the Web service.',19,1,0,0,300,0,'','','','select MaximumConnections from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (364,'IIS MaximumISAPIExtensionRequests','Maximum number of ISAPI extension requests simultaneously processed by the Web service.\r\n',19,1,0,0,300,0,'','','','select MaximumISAPIExtensionRequests from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (365,'IIS MaximumNonAnonymousUsers','Maximum number of users who established concurrent non-anonymous connections using the Web service (counted after service start up).',19,1,0,0,300,0,'','','','select MaximumNonAnonymousUsers from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (366,'IIS MeasuredAsyncIOBandwidthUsage','Measured bandwidth of asynchronous I/O averaged over a minute.',19,1,0,0,300,0,'','','','select MeasuredAsyncIOBandwidthUsage from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (367,'IIS MkcolRequestsPersec','Rate at which HTTP requests using the MKCOL method are made. MKCOL requests are used to create directories on the server.',19,1,0,0,300,0,'','','','select MkcolRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (368,'IIS MoveRequestsPersec','Rate HTTP requests using the MOVE method are made. MOVE requests are used for moving files and directories.',19,1,0,0,300,0,'','','','select MoveRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (369,'IIS NonAnonymousUsersPersec','Rate at which users are making non-anonymous connections using the Web service.',19,1,0,0,300,0,'','','','select NonAnonymousUsersPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (370,'IIS NotFoundErrorsPersec','Rate of errors due to requests that could not be satisfied by the server because the requested document could not be found. These error',19,1,0,0,300,0,'','','','select NotFoundErrorsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (371,'IIS OptionsRequestsPersec','Rate at which HTTP requests using the OPTIONS method are made.',19,1,0,0,300,0,'','','','select OptionsRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (372,'IIS OtherRequestMethosPersec','Rate at which HTTP requests are made that do not use the OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, MOVE, COPY, MKCOL, PROPFIND, PRO',19,1,0,0,300,0,'','','','select OtherRequestMethosPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (373,'IIS PostRequestsPersec','Rate at which HTTP requests using the POST method are made. POST requests are generally used for forms or gateway requests.',19,1,0,0,300,0,'','','','select PostRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (374,'IIS PropfindRequestsPersec','Rate at which HTTP requests using the PROPFIND method are made. PROPFIND requests retrieve property values on files and directories.',19,1,0,0,300,0,'','','','select PropfindRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (375,'IIS ProppatchRequestsPersec','Rate at which HTTP requests using the PROPPATCH method are made. PROPPATCH requests set property values on files and directories.',19,1,0,0,300,0,'','','','select ProppatchRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (376,'IIS PutRequestsPersec','Rate at which HTTP requests using the PUT method are made.',19,1,0,0,300,0,'','','','select PutRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (377,'IIS SearchRequestsPersec','Rate at which HTTP requests using the MS-SEARCH method are made. MS-SEARCH requests query the server to find resources that match a set ',19,1,0,0,300,0,'','','','select SearchRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (378,'IIS ServiceUptime','Time that the Web service is available to users. ',19,1,0,0,300,0,'','','','select ServiceUptime from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (379,'IIS TotalAllowedAsyncIORequests','Total requests that are allowed by bandwidth throttling settings (counted after service start up).',19,1,0,0,300,0,'','','','select TotalAllowedAsyncIORequests from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (380,'IIS TotalAnonymousUsers','Total number of users who established an anonymous connection with the Web service (counted after service start up).',19,1,0,0,300,0,'','','','select TotalAnonymousUsers from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (382,'IIS TotalBlockedAsyncIORequests','Total requests that are temporarily blocked due to bandwidth throttling settings (counted after service startup).',19,1,0,0,300,0,'','','','select TotalBlockedAsyncIORequests from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (384,'IIS UnlockRequestsPersec','Rate at which HTTP requests using the UNLOCK method are made. UNLOCK requests are used to remove locks from files.',19,1,0,0,300,0,'','','','select UnlockRequestsPersec from Win32_PerfRawData_W3SVC_WebService',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (385,'Exchange AvgRecipientsPermsgReceived','Average number of recipients per inbound message received.',20,1,0,0,300,0,'','','','select AvgRecipientsPermsgReceived from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (386,'Exchange AvgRecipientsPermsgSent','Average number of recipients per outbound messages sent.',20,1,0,0,300,0,'','','','select AvgRecipientsPermsgSent from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (387,'Exchange AvgRetriesPermsgDelivered','Average number of retries per local delivery.',20,1,0,0,300,0,'','','','select AvgRetriesPermsgDelivered from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (388,'Exchange AvgRetriesPermsgSent','Average number of retries per outbound message sent.',20,1,0,0,300,0,'','','','select AvgRetriesPermsgSent from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (389,'Exchange BadmailedMessagesBadPickupFile','Number of malformed pickup messages sent to the SMTP bad mail directory.',20,1,0,0,300,0,'','','','select BadmailedMessagesBadPickupFile from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (390,'Exchange BadmailedMessagesGeneralFailure','Number of messages sent to badmail for reasons not associated with a specific counter.',20,1,0,0,300,0,'','','','select BadmailedMessagesGeneralFailure from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (391,'Exchange BadmailedMessagesHopCountExceeded','Number of messages sent to badmail because they had exceeded the maximum hop count.',20,1,0,0,300,0,'','','','select BadmailedMessagesHopCountExceeded from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (392,'Exchange BadmailedMessagesNDRofDSN','Number of delivery status notifications sent to badmail because they could not be delivered.',20,1,0,0,300,0,'','','','select BadmailedMessagesNDRofDSN from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (393,'Exchange BadmailedMessagesNoRecipients','Number of messages sent to badmail because they had no recipients.',20,1,0,0,300,0,'','','','select BadmailedMessagesNoRecipients from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (394,'Exchange BadmailedMessagesTriggeredviaEvent','Number of messages sent to badmail at the request of a server event sink.',20,1,0,0,300,0,'','','','select BadmailedMessagesTriggeredviaEvent from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (395,'Exchange BytesReceivedPersec','Rate at which bytes are received in messages.',20,1,0,0,300,0,'','','','select BytesReceivedPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (396,'Exchange BytesReceivedTotal','Total number of bytes received in messages.',20,1,0,0,300,0,'','','','select BytesReceivedTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (397,'Exchange BytesSentPersec','Rate at which bytes are sent in messages.',20,1,0,0,300,0,'','','','select BytesSentPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (398,'Exchange BytesSentTotal','Total number of bytes sent in messages.',20,1,0,0,300,0,'','','','select BytesSentTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (399,'Exchange BytesTotal','Rate at which bytes are sent and received.',20,1,0,0,300,0,'','','','select BytesTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (400,'Exchange BytesTotalPersec','Rate at which bytes are sent and received.',20,1,0,0,300,0,'','','','select BytesTotalPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (401,'Exchange CatAddresslookupcompletions','Number of address lookup completions processed.',20,1,0,0,300,0,'','','','select CatAddresslookupcompletions from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (402,'Exchange CatAddresslookupcompletionsPersec','Number of address lookup completions processed per second.',20,1,0,0,300,0,'','','','select CatAddresslookupcompletionsPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (403,'Exchange CatAddresslookups','Number of Directory Services (DS) lookups for individual addresses.',20,1,0,0,300,0,'','','','select CatAddresslookups from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (404,'Exchange CatAddressLookupsNotFound','Number of address lookups that did not find any DS object.',20,1,0,0,300,0,'','','','select CatAddresslookupsnotfound from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (405,'Exchange CatAddresslookupsPersec','Number of address lookups dispatched to the DS per second.',20,1,0,0,300,0,'','','','select CatAddresslookupsPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (406,'Exchange CatCategorizationscompleted','Total number of messages submitted to the categorizer that have finished categorization.',20,1,0,0,300,0,'','','','select CatCategorizationscompleted from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (407,'Exchange CatCategorizationscompletedPersec','Rate of categorizations completed.',20,1,0,0,300,0,'','','','select CatCategorizationscompletedPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (408,'Exchange CatCategorizationscompletedsuccessfully','Number of categorizations that completed without any errors.\r\n',20,1,0,0,300,0,'','','','select CatCategorizationscompletedsuccessfully from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (409,'Exchange CatCategorizationsfailedDSconnectionfailure','Number of categorizations that failed.',20,1,0,0,300,0,'','','','select CatCategorizationsfailedDSconnectionfailure from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (410,'Exchange CatCategorizationsfailedDSlogonfailure','Number of categorizations that failed due to a DS logon failure',20,1,0,0,300,0,'','','','select CatCategorizationsfailedDSlogonfailure from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (411,'Exchange CatCategorizationsfailednonretryableerror','Number of categorizations that failed with a hard error (cannot be retried).',20,1,0,0,300,0,'','','','select CatCategorizationsfailednonretryableerror from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (412,'Exchange CatCategorizationsfailedOutOfMemory','Number of categorizations that failed due to lack of available memory.',20,1,0,0,300,0,'','','','select CatCategorizationsfailedOutOfMemory from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (413,'Exchange CatCategorizationsfailedretryableerror ','Number of categorizations that failed with an error that could be retried.',20,1,0,0,300,0,'','','','SELECT CatCategorizationsfailedretryableerror from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (414,'Exchange CatCategorizationsfailedsinkretryableerror','Number of categorizations that failed with a generic error that could be retried.',20,1,0,0,300,0,'','','','select CatCategorizationsfailedsinkretryableerror from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (415,'Exchange CatCategorizationsinprogress','Number of categorizations in progress.',20,1,0,0,300,0,'','','','select CatCategorizationsinprogress from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (416,'Exchange CategorizerQueueLength','Number of messages in the categorizer queue.',20,1,0,0,300,0,'','','','select CategorizerQueueLength from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (417,'LDAP CatLDAPbindfailures','Total number of LDAP bind failures.',21,1,0,0,300,0,'','','','select CatLDAPbindfailures from Win32_PerfFormattedData_SMTPSVC_SMTPServer',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (418,'LDAP CatLDAPbinds','Total number of successful LDAP bind operations performed',21,1,0,0,300,0,'','','','select CatLDAPbinds from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (419,'LDAP CatLDAPconnectionfailures','Total number of failed LDAP connections.\r\n',21,1,0,0,300,0,'','','','select CatLDAPconnectionfailures from Win32_PerfFormattedData_SMTPSVC_SMTPServer',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (420,'LDAP CatLDAPconnections','Total number of LDAP connections opened.',21,1,0,0,300,0,'','','','select CatLDAPconnections from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (421,'LDAP CatLDAPconnectionscurrentlyopen','Number of LDAP connections currently open.',21,1,0,0,300,0,'','','','select CatLDAPconnectionscurrentlyopen from Win32_PerfFormattedData_SMTPSVC_SMTPServer',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (422,'LDAP CatLDAPGeneralCompletionFailures','Number of LDAP completions with a generic failure.',21,1,0,0,300,0,'','','','select CatLDAPgeneralcompletionfailures from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (423,'LDAP CatLDAPpagedsearchcompletionfailures','Number of LDAP completions with a generic failure.',21,1,0,0,300,0,'','','','select CatLDAPpagedsearchcompletionfailures from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (424,'LDAP CatLDAPpagedsearches','LDAP paged searches successfully dispatched.',21,1,0,0,300,0,'','','','select CatLDAPpagedsearches from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (425,'LDAP CatLDAPpagedsearchescompleted ','LDAP paged searches successfully dispatched.',21,1,0,0,300,0,'','','','select CatLDAPpagedsearchescompleted from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (426,'LDAP CatLDAPpagedsearchfailures','Number of failures to dispatch an asynchronous LDAP page search.',21,1,0,0,300,0,'','','','select CatLDAPpagedsearchfailures from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (427,'LDAP CatLDAPsearchcompletionfailures','Number of LDAP searches that completed with a failure.',21,1,0,0,300,0,'','','','select CatLDAPsearchcompletionfailures from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (428,'LDAP CatLDAPsearches','LDAP searches successfully dispatched.',21,1,0,0,300,0,'','','','select CatLDAPsearches from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (429,'LDAP CatLDAPsearchesabandoned','Number of LDAP searches abandoned.',21,1,0,0,300,0,'','','','select CatLDAPsearchesabandoned from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (430,'LDAP CatLDAPsearchescompleted','Number of LDAP search completions processed.\r\n',21,1,0,0,300,0,'','','','select CatLDAPsearchescompleted from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (431,'LDAP CatLDAPsearchescompletedPersec','LDAP search completions processed per second.',21,1,0,0,300,0,'','','','select CatLDAPsearchescompletedPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (432,'LDAP CatLDAP archespendingcompletion','Number of LDAP searches pending async completion.',21,1,0,0,300,0,'','','','select CatLDAPsearchespendingcompletion from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (433,'LDAP CatLDAPsearchesPersec','LDAP searches successfully dispatched per second.',21,1,0,0,300,0,'','','','select CatLDAPsearchesPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (434,'LDAP CatLDAPsearchfailures','Number of failures to dispatch an async LDAP search.',21,1,0,0,300,0,'','','','select CatLDAPsearchfailures from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (435,'Exchange Catmailmsgduplicatecollisions','Number of times a duplicate recipient address was detected by mailmsg or categorizer.',20,1,0,0,300,0,'','','','select Catmailmsgduplicatecollisions from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (436,'Exchange CatMessagesaborted','Number of messages marked to be canceled by the categorizer.',20,1,0,0,300,0,'','','','select CatMessagesaborted from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (437,'Exchange CatMessagesbifurcated','Number of new messages created by the categorizer (bifurcation).',20,1,0,0,300,0,'','','','select CatMessagesbifurcated from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (438,'Exchange CatMessagesCategorized','Number of messages categorizer has submitted to queuing.',20,1,0,0,300,0,'','','','select CatMessagesCategorized from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (439,'Exchange CatMessagessubmitted','Rate at which messages are being submitted to the categorizer.',20,1,0,0,300,0,'','','','select CatMessagessubmitted from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (440,'Exchange CatMessagessubmittedPersec','Rate at which messages are being submitted to the categorizer.',20,1,0,0,300,0,'','','','select CatMessagessubmittedPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (441,'Exchange CatRecipientsaftercategorization','Number of mailmsg recipients submitted from categorizer to queuing.',20,1,0,0,300,0,'','','','select CatRecipientsaftercategorization from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (442,'Exchange CatRecipientsbeforecategorization','Number of mailmsg recipients submitted to categorizer.',20,1,0,0,300,0,'','','','select CatRecipientsbeforecategorization from Win32_PerfFormattedData_SMTPSVC_SMTPServer',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (443,'Exchange CatRecipientsincategorization','Number of recipients that the categorizer is currently processing.',20,1,0,0,300,0,'','','','select CatRecipientsincategorization from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (444,'Exchange CatRecipientsNDRdambiguousaddress','Number of recipients with addresses that match multiple DS objects.',20,1,0,0,300,0,'','','','select CatRecipientsNDRdambiguousaddress from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (445,'Exchange CatRecipientsNDRdbycategorizer','Number of recipients set to receive a non-delivery report from the categorizer.',20,1,0,0,300,0,'','','','select CatRecipientsNDRdbycategorizer from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (446,'Exchange CatRecipientsNDRdforwardingloop','Number of recipients that received a non-delivery report from the categorizer due to a forwarding loop detection.',20,1,0,0,300,0,'','','','select CatRecipientsNDRdforwardingloop from Win32_PerfFormattedData_SMTPSVC_SMTPServer',1,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (447,'Exchange CatRecipientsNDRdillegaladdress','Number of recipients with illegal addresses detected by the categorizer.',20,1,0,0,300,0,'','','','select CatRecipientsNDRdillegaladdress from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (448,'Exchange CatRecipientsNDRdsinkreciperrors','Number of recipients that received a non-delivery report from the categorizer due to a generic recipient failure.',20,1,0,0,300,0,'','','','select CatRecipientsNDRdsinkreciperrors from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (449,'Exchange CatRecipientsNDRdunresolved','Number of senders not found in the DS.',20,1,0,0,300,0,'','','','select CatRecipientsNDRdunresolved from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (450,'Exchange CatSendersunresolved','Number of senders not found in the DS.',20,1,0,0,300,0,'','','','select CatSendersunresolved from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (451,'Exchange CatSenderswithambiguousaddresses','Number of senders with addresses that match multiple DS objects.',20,1,0,0,300,0,'','','','select CatSenderswithambiguousaddresses from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (452,'Exchange ConnectionErrorsPersec','Number of connection errors per second.',20,1,0,0,300,0,'','','','select ConnectionErrorsPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (453,'Exchange CurrentMessagesinLocalDelivery','Number of messages that are currently being processed by a server event sink for local delivery.',20,1,0,0,300,0,'','','','select CurrentMessagesinLocalDelivery from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (454,'Exchange DirectoryDropsPersec','Number of messages placed in a drop directory per second.',20,1,0,0,300,0,'','','','select DirectoryDropsPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (455,'Exchange DirectoryDropsTotal','Total number of messages placed in a drop directory.',20,1,0,0,300,0,'','','','select DirectoryDropsTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (456,'Exchange DNSQueriesPersec','Rate of DNS lookups.',20,1,0,0,300,0,'','','','select DNSQueriesPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (457,'Exchange DNSQueriesTotal','Total number of DNS lookups.',20,1,0,0,300,0,'','','','select DNSQueriesTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (458,'Exchange ETRNMessagesPersec','Number of Extended Simple Mail Transport Protocol (ETRN) messages per second.',20,1,0,0,300,0,'','','','select ETRNMessagesPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (459,'Exchange ETRNMessagesTotal','Total number of ETRN messages received by the server.',20,1,0,0,300,0,'','','','select ETRNMessagesTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (460,'Exchange InboundConnectionsCurrent','Total current inbound connections',20,1,0,0,300,0,'','','','select InboundConnectionsCurrent from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (461,'Exchange InboundConnectionsTotal','Total number of inbound connections received.',20,1,0,0,300,0,'','','','select InboundConnectionsTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (462,'Exchange LocalQueueLength','Number of messages in the local queue.',20,1,0,0,300,0,'','','','select LocalQueueLength from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (463,'Exchange LocalRetryQueueLength','Number of messages in the local retry queue.',20,1,0,0,300,0,'','','','select LocalRetryQueueLength from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (464,'Exchange MessageBytesReceivedPersec','Rate that bytes are received in messages.',20,1,0,0,300,0,'','','','select MessageBytesReceivedPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (465,'Exchange MessageBytesReceivedTotal','Total number of bytes received in messages.',20,1,0,0,300,0,'','','','select MessageBytesReceivedTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (466,'Exchange MessageBytesSentPersec','Rate that bytes are sent in messages.',20,1,0,0,300,0,'','','','select MessageBytesSentPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (467,'Exchange MessageBytesSentTotal','Total number of bytes sent in messages.',20,1,0,0,300,0,'','','','select MessageBytesSentTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (468,'Exchange MessageBytesTotal','Total number of bytes sent and received in messages.',20,1,0,0,300,0,'','','','select MessageBytesTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (469,'Exchange MessageBytesTotalPersec','Rate at which bytes are sent and received in messages.',20,1,0,0,300,0,'','','','select MessageBytesTotalPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (470,'Exchange MessageDeliveryRetries','Total number of local deliveries that were retried.',20,1,0,0,300,0,'','','','select MessageDeliveryRetries from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (471,'Exchange MessagesCurrentlyUndeliverable','Number of messages that have been reported as currently undeliverable by routing.',20,1,0,0,300,0,'','','','select MessagesCurrentlyUndeliverable from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (472,'Exchange MessagesDeliveredPersec','Rate at which messages are delivered to local mailboxes.\r\n',20,1,0,0,300,0,'','','','select MessagesDeliveredPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (473,'Exchange MessagesDeliveredTotal','Total number of messages delivered to local mailboxes.',20,1,0,0,300,0,'','','','select MessagesDeliveredTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (474,'Exchange MessageSendRetries','Total number of outbound message send operations that were retried.',20,1,0,0,300,0,'','','','select MessageSendRetries from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (475,'Exchange MessagesPendingRouting','Number of messages that have been categorized but not routed.',20,1,0,0,300,0,'','','','select MessagesPendingRouting from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (476,'Exchange MessagesReceivedPersec','Rate that inbound messages are being received.\r\n',20,1,0,0,300,0,'','','','select MessagesReceivedPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (477,'Exchange MessagesReceivedTotal','Total number of inbound messages accepted.',20,1,0,0,300,0,'','','','select MessagesReceivedTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (478,'Exchange MessagesRefusedforAddressObjects','Total number of messages refused due to lack of address objects.',20,1,0,0,300,0,'','','','select MessagesRefusedforAddressObjects from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (479,'Exchange MessagesRefusedforMailObjects','Total number of messages refused due to lack of mail objects.',20,1,0,0,300,0,'','','','select MessagesRefusedforMailObjects from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (480,'Exchange MessagesRefusedforSize','Total number of messages rejected because they were too big.',20,1,0,0,300,0,'','','','select MessagesRefusedforSize from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (481,'Exchange MessagesSentPersec','Rate at which outbound messages are being sent.',20,1,0,0,300,0,'','','','select MessagesSentPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (482,'Exchange MessagesSentTotal','Total number of outbound messages sent.',20,1,0,0,300,0,'','','','select MessagesSentTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (483,'Exchange NDRsGenerated','Number of non-delivery reports that have been generated.',20,1,0,0,300,0,'','','','select NDRsGenerated from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (484,'Exchange NumberofMailFilesOpen','Number of handles to open mail files.',20,1,0,0,300,0,'','','','select NumberofMailFilesOpen from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (485,'Exchange NumberofQueueFilesOpen','Number of handles to open queue files.',20,1,0,0,300,0,'','','','select NumberofQueueFilesOpen from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (486,'Exchange OutboundConnectionsCurrent','Number of connections currently outbound.',20,1,0,0,300,0,'','','','select OutboundConnectionsCurrent from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (487,'Exchange OutboundConnectionsRefused','Number of outbound connection attempts refused by remote sites.',20,1,0,0,300,0,'','','','select OutboundConnectionsRefused from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (488,'Exchange OutboundConnectionsTotal','Total number of outbound connections attempted.',20,1,0,0,300,0,'','','','select OutboundConnectionsTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (489,'Exchange PercentRecipientsLocal','Percentage of recipients that will be delivered locally.',20,1,0,0,300,0,'','','','select PercentRecipientsLocal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (490,'Exchange PercentRecipientsRemote','Percentage of recipients that will be delivered remotely.',20,1,0,0,300,0,'','','','select PercentRecipientsRemote from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (491,'Exchange PickupDirectoryMessagesRetrievedPersec','Rate at which messages are being retrieved from the mail pick-up directory.',20,1,0,0,300,0,'','','','select PickupDirectoryMessagesRetrievedPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (492,'Exchange PickupDirectoryMessagesRetrievedTotal ','Total number of messages retrieved from the mail pick-up directory.',20,1,0,0,300,0,'','','','select PickupDirectoryMessagesRetrievedTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (493,'Exchange RemoteQueueLength','Number of messages in the remote queue.',20,1,0,0,300,0,'','','','select RemoteQueueLength from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (494,'Exchange RemoteRetryQueueLength','Number of messages in the retry queue for remote delivery.',20,1,0,0,300,0,'','','','select RemoteRetryQueueLength from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (495,'Exchange RoutingTableLookupsPersec','Number of routing table lookups per second.',20,1,0,0,300,0,'','','','select RoutingTableLookupsPersec from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (496,'Exchange RoutingTableLookups','Total number of routing table lookups.',20,1,0,0,300,0,'','','','select RoutingTableLookupsTotal from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (497,'Exchange TotalConnectionErrors','Total number of connection errors.',20,1,0,0,300,0,'','','','select TotalConnectionErrors from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (498,'Exchange TotalDSNFailures','Total number of failed DSN generation attempts.',20,1,0,0,300,0,'','','','select TotalDSNFailures from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (499,'Exchange Totalmessagessubmitted','Total messages submitted to queuing for delivery.',20,1,0,0,300,0,'','','','select Totalmessagessubmitted from Win32_PerfFormattedData_SMTPSVC_SMTPServer',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (501,'MSDTC AbortedTransactions','Number of canceled transactions.',22,1,0,0,300,0,'','','','select AbortedTransactions from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (502,'MSDTC AbortedTransactionsPersec','Transactions canceled per second.',22,1,0,0,300,0,'','','','select AbortedTransactionsPersec from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (503,'MSDTC ActiveTransactions','Number of currently active transactions.',22,1,0,0,300,0,'','','','select ActiveTransactions from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (504,'MSDTC ActiveTransactionsMaximum','Maximum number of transactions ever concurrently active.',22,1,0,0,300,0,'','','','select ActiveTransactionsMaximum from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (505,'MSDTC CommittedTransactions','Number of committed transactions.\r\n',22,1,0,0,300,0,'','','','select CommittedTransactions from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (506,'MSDTC CommittedTransactionsPersec','Transactions committed per second.',22,1,0,0,300,0,'','','','select CommittedTransactionsPersec from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (507,'MSDTC ForceAbortedTransactions','Number of transactions canceled by the system administrator.',22,1,0,0,300,0,'','','','select ForceAbortedTransactions from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (508,'MSDTC ForceCommittedTransactions','Number of transactions committed by the system administrator.',22,1,0,0,300,0,'','','','select ForceCommittedTransactions from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (509,'MSDTC InDoubtTransactions','Number of transactions whose outcomes are in doubt.',22,1,0,0,300,0,'','','','select InDoubtTransactions from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (510,'MSDTC ResponseTimeAverage','Average time delta between transaction beginning and commitment.',22,1,0,0,300,0,'','','','select ResponseTimeAverage from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (511,'MSDTC ResponseTimeMaximum','Maximum time delta between transaction beginning and commitment.',22,1,0,0,300,0,'','','','select ResponseTimeMaximum from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (512,'MSDTC ResponseTimeMinimum','Minimum time delta between transaction beginning and commitment.',22,1,0,0,300,0,'','','','select ResponseTimeMinimum from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (513,'MSDTC TransactionsPersec','Transactions performed per second.',22,1,0,0,300,0,'','','','select TransactionsPersec from Win32_PerfRawData_MSDTC_DistributedTransactionCoordinator',3,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (514,'c2900InfoPeakBuffersUsed','ftp://ftp.cisco.com/pub/mibs/oid/CISCO-C2900-MIB.oid',23,15,0,0,300,0,'','','public','1.3.6.1.4.1.9.9.87.1.1.2.0',2,2,0,'','','0',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (515,'c2900InfoTotalBufferDepth','ftp://ftp.cisco.com/pub/mibs/oid/CISCO-C2900-MIB.oid',23,15,0,0,300,0,'','','public','1.3.6.1.4.1.9.9.87.1.1.3.0',2,2,0,'','','0',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (516,'c2900BandwidthUsageCurrent ','ftp://ftp.cisco.com/pub/mibs/oid/CISCO-C2900-MIB.oid',23,15,0,0,300,0,'','','public','1.3.6.1.4.1.9.9.87.1.5.1.0',2,2,0,'','','0',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (517,'Latest Message ','Get the last message sent in Syslog',2,17,0,0,300,0,'','','public','1.3.6.1.4.1.9.9.41.1.2.3.1.5.12',1,2,0,'','','0',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (518,'Latest Message date','',2,15,0,0,300,0,'','','public','1.3.6.1.4.1.9.9.41.1.2.3.1.6.12',2,2,0,'','','0',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (519,'CPU avgBusy1min ','',2,15,0,0,300,0,'','','public','1.3.6.1.4.1.9.2.1.57.0',2,2,0,'','','0',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (520,'CPU avgBusy5min ','',2,15,0,0,300,0,'','','public','1.3.6.1.4.1.9.2.1.58.0',2,2,0,'','','0',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (521,'Software Image running ','',2,17,0,0,1800,0,'','','public','1.3.6.1.4.1.9.2.1.73.0',2,2,0,'','','0',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (522,'nvRAMUsed','',2,15,0,0,300,0,'','','public','1.3.6.1.4.1.9.3.6.8.0',2,2,0,'','','0',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (523,'Printers BytesPrintedPersec','Number of bytes per second printed on a print queue.',24,1,0,0,300,1,'','','','select BytesPrintedPersec from Win32_PerfRawData_Spooler_PrintQueue where NAME = '_total'',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (524,'Printers JobErrors','Total number of job errors in a print queue after the last restart.',24,1,0,0,300,1,'','','','select JobErrors from Win32_PerfRawData_Spooler_PrintQueue where NAME = '_total' ',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (525,'Printers Jobs','Current number of jobs in a print queue.',24,1,0,0,300,1,'','','','select Jobs from Win32_PerfRawData_Spooler_PrintQueue where NAME = '_total' ',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (526,'Printers JobsSpooling','Current number of spooling jobs in a print queue.',24,1,0,0,300,1,'','','','select JobsSpooling from Win32_PerfRawData_Spooler_PrintQueue where NAME = '_total'',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (527,'Printers MaxJobsSpooling','Maximum number of spooling jobs in a print queue after the last restart.\r\n',24,1,0,0,300,1,'','','','select MaxJobsSpooling from Win32_PerfRawData_Spooler_PrintQueue where NAME = '_total'',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (528,'Printers NotReadyErrors','Total number of printer-not-ready errors in a print queue after the last restart.',24,1,0,0,300,1,'','','','select NotReadyErrors from Win32_PerfRawData_Spooler_PrintQueue where NAME = '_total'',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (529,'Printers OutofPaperErrors','Total number of out-of-paper errors in a print queue after the last restart.',24,1,0,0,300,1,'','','','select OutofPaperErrors from Win32_PerfRawData_Spooler_PrintQueue where NAME = '_total'',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (530,'Printers TotalJobsPrinted','Total number of jobs printed on a print queue after the last restart.',24,1,0,0,300,1,'','','','select TotalJobsPrinted from Win32_PerfRawData_Spooler_PrintQueue where NAME = '_total'',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (531,'Printers TotalPagesPrinted','Total number of pages printed through GDI on a print queue after the last restart.',24,1,0,0,300,1,'','','','select TotalPagesPrinted from Win32_PerfRawData_Spooler_PrintQueue where NAME = '_total'',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (532,'Printers Availability','Availability and status of the device\r\n\r\nValue Meaning\r\n\r\n10x1 Other\r\n\r\n20x2 Unknown\r\n\r\n30x3 Running or Full Power\r\n\r\n40x4 Warning\r\n\r\n50x5 In Test\r\n\r\n60x6 Not Applicable\r',24,3,0,0,300,0,'','','','select Availability from Win32_Printer',5,6,0,'','','10',0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,NULL,NULL,NULL,0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (533,'Serv_IISAdmin','IIS Administration Server service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'IISAdmin'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (534,'Serv_MSSQL_server','Displays if MS SQL SERVER is running',27,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "MSSQLSERVER"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (535,'SQLServer_DataFilesSizeKB','Sql database size in kb ',27,1,0,0,0,0,'','','','select state from Win32_Service where name = "MSSQLSERVER"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (536,'SQLServer_SQLErrors ','Errors / sec in the database ',27,1,0,0,0,0,'','','','select Errors/sec from Win32_PerfRawData_MSSQLSERVER_SQLServerSQLErrors ',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (537,'SQLServer_TotalServerMemoryKB','Specifies the amount of memory not used currently by the server. ',27,1,0,0,0,0,'','','','select TotalServerMemoryKB from Win32_PerfRawData_MSSQLSERVER_SQLServerMemoryManager ',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (538,'SQLServer_ConnectionMemoryKB','Specifies the total amount of dynamic memory the server is using for maintaining connections.',27,1,0,0,0,0,'','','','select ConnectionMemoryKB from Win32_PerfRawData_MSSQLSERVER_SQLServerMemoryManager ',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (539,'SQLServer_MaxWorkspaceMemoryKB','Indicates the maximum amount of memory available for executing processes such as hash operations, sort, bulk copy, and index creation.',27,1,0,0,0,0,'','','','select MaximumWorkspaceMemoryKB from Win32_PerfRawData_MSSQLSERVER_SQLServerMemoryManager ',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (540,'SQLServer_UserConnections','Count the number of users currently connected to SQL Server.',27,1,0,0,0,0,'','','','select UserConnections from Win32_PerfRawData_MSSQLSERVER_SQLServerGeneralStatistics',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (541,'SQLServer_ Processesblocked','Number of processes currently blocked.',27,1,0,0,0,0,'','','','select Processesblocked from Win32_PerfRawData_MSSQLSERVER_SQLServerGeneralStatistics',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (542,'SQLServer_ActiveTempTables','Number of tables or table variables temporary used.',27,1,0,0,0,0,'','','','select ActiveTempTables from Win32_PerfRawData_MSSQLSERVER_SQLServerGeneralStatistics ',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (543,'SQLServer_TempTablesForDestruction','Number of tables and variables temporary waiting tables to destroy the thread cleaning system.',27,1,0,0,0,0,'','','','select TempTablesForDestruction from Win32_PerfRawData_MSSQLSERVER_SQLServerGeneralStatistics ',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (544,'SQLServer_BytesReceivedPersec','Number of bytes received per second. ',27,1,0,0,0,0,'','','','select BytesReceivedPersec from Win32_PerfFormattedData_MSSQLSERVER_SQLServerDatabaseMirroring',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (545,'SQLServer_BytesSentPersec','Number of bytes sent per second. ',27,1,0,0,0,0,'','','','select BytesSentPersec from Win32_PerfFormattedData_MSSQLSERVER_SQLServerDatabaseMirroring ',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (546,'SQLServer_LogSendQueueKB','Total number of kilobytes of log that have not yet been sent to the mirror server. ',27,1,0,0,0,0,'','','','select LogSendQueueKB from Win32_PerfFormattedData_MSSQLSERVER_SQLServerDatabaseMirroring',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (547,'SQLServer_FreeSpaceintempdbKB','The amount of space (in kilobytes) available in tempdb.',27,1,0,0,0,0,'','','','select FreeSpaceintempdbKB from Win32_PerfRawData_MSSQLSERVER_SQLServerTransactions ',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (548,'SQLServer_Transactions','Number of currently active transactions of all types.',27,1,0,0,0,0,'','','','select Transactions from Win32_PerfRawData_MSSQLSERVER_SQLServerTransactions ',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (549,'Perf_OracleHandleCount','Returns handle count per second for Oracle process.',28,4,0,0,0,0,'','','','select HandleCount from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (550,'Serv_Oracle_1TNSListener','Show if oracle listener is running ',28,2,0,0,0,1,'','','','SELECT state FROM Win32_Service WHERE Name = "Oracle_1TNSListener"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (551,'Serv_Oracle <SID> VSS Writer Service','Show if Serv_Oracle VSS Writer Service is running ',28,2,0,0,0,1,'','','','SELECT state FROM Win32_Service WHERE Name = "Oracle ORACLETA VSS Writer Service"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (552,'Serv_OracleDBConsoleORACLE_SID','Show if OracleDBConsoleORACLE_SID is running ',28,2,0,0,0,1,'','','','SELECT state FROM Win32_Service WHERE Name = "OracleDBConsoleORACLE_SID"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (553,'Serv_Oracle OraDb11g_home1 Clr Agent','Show if Oracle OraDb11g_home1 Clr Agent is up ',28,2,0,0,0,1,'','','','SELECT state FROM Win32_Service WHERE Name = "Oracle OraDb11g_home1 Clr Agent"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (554,'Serv_OracleJobScheduler<SID>','Show if OracleJobScheduler service is up ',28,2,0,0,0,1,'','','','SELECT state FROM Win32_Service WHERE Name = "OracleJobScheduler<SID>"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (555,'Serv_OracleMTSRecoveryService','Show if OracleMTSRecoveryService is running ',28,2,0,0,0,1,'','','','SELECT state FROM Win32_Service WHERE Name = "OracleMTSRecoveryService"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (556,'ORACLE_HOME_Paths','Displays the path of the ORACLE_HOME environment variable ',28,3,0,0,0,0,'','','','SELECT VariableValue FROM Win32_Environment WHERE Name= "ORACLE_HOME"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (557,'Check port 1433/TCP','',27,10,0,0,0,1433,'','','public','',3,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (558,'Check port 1158/TCP','Comprueba el estado del puerto HTTP de la Consola de Enterprise Manager (Oracle)1158',28,9,0,0,0,1158,'','','public','',3,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (559,'Check port 3938/TCP','Comprueba el estado del puerto Puerto del Agente de Enterprise Manager (oracle) ',28,9,0,0,0,3938,'','','public','',7,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (560,'Check port 5620/TCP','Comprueba el estado del puerto HTTP para Ultra Search (oracle) ',28,9,0,0,0,5620,'','','public','',3,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (561,'Check port 5560/TCP','Comprueba el estado del puerto HTTP para iSQL*Plus (Oracle) ',28,9,0,0,0,5560,'','','public','',3,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (562,'N360_status ','Muestra si el antivirus Norton 360 esta corriendo o no ',30,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "N360" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (563,'NortonInternetSecurity_status ','Muestra si el antivirus Norton Internet Security esta corriendo o no ',30,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "NIS" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (564,'NortonAntivirus_status ','Muestra si el antivirus Norton esta corriendo o no ',30,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "NAV" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (565,'NortonIdentifySafe_status ','Muestra si el Norton Identity Safe esta corriendo ',30,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "NCO" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (566,'WindowsFirewall_status ','Show if Firewall Windows is running ',29,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "MpsSvc" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (567,'WindowsDefender_status','Show if WindowsDefender is running',29,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "WinDefend" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (568,'PandaGlobalProtection_status ','Show if PandaGlobalProtection is running',31,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "Panda Software Controller" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (569,'PandaFunctionService_status ','Show if PandaFunctionService is running',31,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "PAVFNSVR" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (570,'Panda_Process_Protection_Service_ status ','Show if Panda ProcessProtection Service is running',31,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "PavPrSrv" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (571,'Panda_Anti-Malware_Service_status','Show if Panda Anti-Malware Service is running',31,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "PAVSRV" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (572,'McAfee_Network_Agent_status ','Show if McAfee_Network_Agent is running',32,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "McNASvc" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (573,'McAfee_Protection_Manager_status ','Show if McAfee_Protection_Manager is running',32,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "mcmscsvc" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (574,'McAfee_Scanner_status ','Show if McAfee_Scanner is running',32,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "McODS" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (575,'McAfee_Proxy_Service_status ','Show if McAfee_Proxy_Service is running',32,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "McProxy" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (576,'McAfee_Real-time_Scanner_status ','Show if McAfee_Real-time_Scanner is running',32,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "McShield" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (577,'McAfee_SystemGuards_status ','Show if McAfee_SystemGuards is running',32,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "McSysmon" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (578,'McAfee_Personal_Firewall_Service_status ','Show if McAfee_Personal_Firewall_Service is running',32,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "MpfService" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (579,'McAfee_Anti-Spam_Service_status ','Show if McAfee_Anti-Spam_Service is running',32,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "MSK80Service" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (580,'Bitdefender_Virus_Shield_status','Show if Bitdefender Virus Shield is running',33,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "VSSERV" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (581,'BitDefender_Parental_service_status','Show if BitDefender Parental Control service is running',33,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "BdDesktopParental" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (582,'Bitdefender-Desktop_Update_Service_status','Show if Bitdefender Desktop Update Service is running',33,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "UPDATESRV" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (583,'Perf_DNSCachingMemory','Total caching memory used by DNS server.',35,1,0,0,0,0,'','','','select CachingMemory from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (584,'Perf_DNSDatabaseNodeMemory','Total database node memory used by DNS server.',35,1,0,0,0,0,'','','','select DatabaseNodeMemory from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (585,'Perf_DNSDynamicUpdateNoOperation','No-operation/Empty dynamic update requests per second received by the DNS server.',35,4,0,0,0,0,'','','','select DynamicUpdateNoOperation from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (586,'Perf_DNSDynamicUpdateQueued','Dynamic updates queued per second by the DNS server.',35,4,0,0,0,0,'','','','select DynamicUpdateQueued from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (587,'Perf_DNSDynamicUpdateReceived','Dynamic update requests received per second by the DNS server.',35,4,0,0,0,0,'','','','select DynamicUpdateReceived from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (588,'Perf_DNSDynamicUpdateRejected','Dynamic updates rejected per second by the DNS server.',35,4,0,0,0,0,'','','','select DynamicUpdateRejected from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (589,'Perf_DNSDynamicUpdateTimeOuts','Dynamic update timeouts per second of the DNS server.',35,4,0,0,0,0,'','','','select DynamicUpdateTimeOuts from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (590,'Perf_DNSDynamicUpdateWrittentoDatabase','Dynamic updates written to the database per second by the DNS server.',35,4,0,0,0,0,'','','','select DynamicUpdateWrittentoDatabase from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (591,'Perf_DNSNbstatMemory','Total Nbstat memory used by DNS server.',35,1,0,0,0,0,'','','','select NbstatMemory from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (592,'Perf_DNSNotifyReceived','Notifies received per second by the secondary DNS server.',35,4,0,0,0,0,'','','','select NotifyReceived from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (593,'Perf_DNSNotifySent','Notifies sent per second by the master DNS server.',35,4,0,0,0,0,'','','','select NotifySent from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (594,'Perf_DNSRecordFlowMemory','Total record flow memory used by DNS server.',35,1,0,0,0,0,'','','','select NbstatMemory from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (595,'Perf_DNSRecursiveQueries','Recursive queries per second received by DNS server.',35,4,0,0,0,0,'','','','select RecursiveQueries from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (596,'Perf_DNSRecursiveQueryFailure','Recursive query failures per second on the DNS server.',35,4,0,0,0,0,'','','','select RecursiveQueryFailure from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (597,'Perf_DNSRecursiveSendTimeOuts','Recursive queries sending timeouts per second on the DNS server.',35,4,0,0,0,0,'','','','select RecursiveSendTimeOuts from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (598,'Perf_DNSSecureUpdateFailure','Secure updates failed per second of the DNS server.',35,4,0,0,0,0,'','','','select SecureUpdateFailure from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (599,'Perf_DNSSecureUpdateReceived','Secure update requests per second received by the DNS server.',35,4,0,0,0,0,'','','','select SecureUpdateReceived from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (600,'Perf_DNSTCPMessageMemory','Total TCP message memory used by DNS server.',35,1,0,0,0,0,'','','','select TCPMessageMemory from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (601,'Perf_DNSTCPResponseSent','TCP reponses per second sent by DNS server.',35,4,0,0,0,0,'','','','select TCPResponseSent from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (602,'Perf_DNSTotalQueryReceived','Queries per second received by DNS server.',35,4,0,0,0,0,'','','','select TotalQueryReceived from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (603,'Perf_DNSTotalResponseSent','Reponses per second sent by DNS server.',35,4,0,0,0,0,'','','','select TotalResponseSent from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (604,'Perf_DNSUDPMessageMemory','Total UDP message memory used by DNS server.',35,1,0,0,0,0,'','','','select UDPMessageMemory from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (605,'Perf_DNSTCPQueryReceived','TCP queries per second received by DNS server.',35,4,0,0,0,0,'','','','select TCPQueryReceived from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (606,'Perf_DNSUDPQueryReceived','UDP queries per second received by DNS server.',35,4,0,0,0,0,'','','','select UDPQueryReceived from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (607,'Perf_DNSUDPResponseSent','UDP reponses per second sent by DNS server.',35,4,0,0,0,0,'','','','select UDPResponseSent from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (608,'Perf_DNSUnmatchedResponsesReceived','Response packets per second received by the DNS server that do not match any outstanding remote query.',35,4,0,0,0,0,'','','','select UnmatchedResponsesReceived from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (609,'Perf_DNSWINSLookupReceived','WINS lookup requests per second received by the server.',35,4,0,0,0,0,'','','','select WINSLookupReceived from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (610,'Perf_DNSWINSResponseSent','WINS lookup responses per second sent by the server.',35,4,0,0,0,0,'','','','select WINSResponseSent from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (611,'Perf_DNSWINSReverseLookupReceived','WINS reverse lookup requests per second received by the server.',35,4,0,0,0,0,'','','','select WINSReverseLookupReceived from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (612,'Perf_DNSWINSReverseResponseSent','WINS Reverse lookup responses per second sent by the server.',35,4,0,0,0,0,'','','','select WINSReverseResponseSent from Win32_PerfFormattedData_DNS_DNS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (613,'Perf_NTDSABANRPersec','The rate at which Address Book clients perform Ambiguous Name Resolutions operations.',36,1,0,0,0,0,'','','','select ABANRPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (614,'Perf_NTDSABBrowsesPersec','AB Browses/sec is the rate at which Address Book clients perform browse operations.',36,1,0,0,0,0,'','','','select ABBrowsesPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (615,'Perf_NTDSABClientSessions','Number of connected Address Book client sessions.',36,1,0,0,0,0,'','','','select ABClientSessions from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (616,'Perf_NTDSABMatchesPersec','The rate at which Address Book clients perform find operations.',36,1,0,0,0,0,'','','','select ABMatchesPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (617,'Perf_NTDSABPropertyReadsPersec','The rate at which Address Book clients perform property read operations.',36,1,0,0,0,0,'','','','select ABPropertyReadsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (618,'Perf_NTDSABProxyLookupsPersec','The rate at which proxy clients perform search operations.',36,1,0,0,0,0,'','','','select ABProxyLookupsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (619,'Perf_NTDSATQRequestLatency','Average length of time (in milliseconds) to process a request, not including time spent on the queue.',36,1,0,0,0,0,'','','','select ATQRequestLatency from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (620,'Perf_NTDSATQThreadsLDAP','The number of threads that ATQ has currently allocated to servicing LDAP requests.',36,1,0,0,0,0,'','','','select ATQThreadsLDAP from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (621,'Perf_NTDSATQThreadsOther','The number of threads that the ATQ has currently allocated to DS services other than LDAP.',36,1,0,0,0,0,'','','','select ATQThreadsOther from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (622,'Perf_NTDSATQThreadsTotal','The total number of ATQ threads that are either waiting to service an incoming request, or are already servicing a request.',36,1,0,0,0,0,'','','','select ATQThreadsTotal from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (623,'Perf_NTDSBasesearchesPersec','The number of base searches/sec',36,1,0,0,0,0,'','','','select BasesearchesPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (624,'Perf_NTDSDatabaseaddsPersec','The number of database adds/sec',36,1,0,0,0,0,'','','','select DatabaseaddsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (625,'Perf_NTDSDatabasedeletesPersec','The number of database deletes/sec',36,1,0,0,0,0,'','','','select DatabasedeletesPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (626,'Perf_NTDSDatabaserecyclesPersec','The number of database recycles/sec',36,1,0,0,0,0,'','','','select DatabaserecyclesPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (627,'Perf_NTDSDigestBindsPersec','The number of digest binds/sec',36,1,0,0,0,0,'','','','select DigestBindsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (628,'Perf_NTDSDRAInboundBytesCompressedBetweenSitesAfterCompressionPersec','Compressed size in bytes of inbound compressed replication data (size after compression, from DSAs in other sites).',36,1,0,0,0,0,'','','','select DRAInboundBytesCompressedBetweenSitesAfterCompressionPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (629,'Perf_NTDSDRAInboundBytesCompressedBetweenSitesAfterCompressionSinceBoot','Compressed size in bytes of inbound compressed replication data (size after compression, from DSAs in other sites).',36,1,0,0,0,0,'','','','select DRAInboundBytesCompressedBetweenSitesAfterCompressionSinceBoot from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (630,'Perf_NTDSDRAInboundBytesCompressedBetweenSitesBeforeCompressionSinceBoot','Original size in bytes of inbound compressed replication data (size before compression, from DSAs in other sites).',36,1,0,0,0,0,'','','','select DRAInboundBytesCompressedBetweenSitesBeforeCompressionSinceBoot from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (631,'Perf_NTDSDRAInboundBytesCompressedBetweenSitesBeforeCompressionPersec','Original size in bytes of inbound compressed replication data (size before compression, from DSAs in other sites).',36,1,0,0,0,0,'','','','select DRAInboundBytesCompressedBetweenSitesBeforeCompressionPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (632,'Perf_NTDSDRAInboundBytesNotCompressedWithinSitePersec','Number of bytes replicated in that were not compressed at the source (i.e., from DSAs in the same site).',36,1,0,0,0,0,'','','','select DRAInboundBytesNotCompressedWithinSitePersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (633,'Perf_NTDSDRAInboundBytesNotCompressedWithinSiteSinceBoot','Number of bytes replicated in that were not compressed at the source (i.e., from DSAs in the same site).',36,1,0,0,0,0,'','','','select DRAInboundBytesNotCompressedWithinSiteSinceBoot from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (634,'Perf_NTDSDRAInboundBytesTotalPersec','Total number of bytes replicated in. Sum of the number of uncompressed bytes (never compressed) and the number of compressed bytes (a',36,1,0,0,0,0,'','','','select DRAInboundBytesTotalPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (635,'Perf_NTDSDRAInboundBytesTotalSinceBoot','Total number of bytes replicated in. Sum of the number of uncompressed bytes (never compressed) and the number of compressed bytes (a',36,1,0,0,0,0,'','','','select DRAInboundBytesTotalSinceBoot from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (636,'Perf_NTDSDRAInboundFullSyncObjectsRemaining','Number of objects remaining until the full sync completes (when set).',36,1,0,0,0,0,'','','','select DRAInboundFullSyncObjectsRemaining from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (637,'Perf_NTDSDRAInboundLinkValueUpdatesRemaininginPacket','The number of link value updates received in the current directory replication update packet that have not yet been applied to the local',36,1,0,0,0,0,'','','','select DRAInboundLinkValueUpdatesRemaininginPacket from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (638,'Perf_NTDSDRAInboundObjectsAppliedPersec','The rate at which replication updates received from replication partners are applied by the local directory service. This count excludes changes ',36,1,0,0,0,0,'','','','select DRAInboundObjectsAppliedPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (639,'Perf_NTDSDRAInboundObjectsFilteredPersec','Number of objects received from inbound replication partners that contained no updates that needed to be applied.',36,1,0,0,0,0,'','','','select DRAInboundObjectsFilteredPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (640,'Perf_NTDSDRAInboundObjectsPersec','No of objects received from neighbors through inbound replication.',36,1,0,0,0,0,'','','','select DRAInboundObjectsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (641,'Perf_NTDSDRAInboundObjectUpdatesRemaininginPacket','The number of object updates received in the current directory replication update packet that have not yet been applied to the local server.',36,1,0,0,0,0,'','','','select DRAInboundObjectUpdatesRemaininginPacket from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (642,'Perf_NTDSDRAInboundPropertiesTotalPersec','Total number of object properties received from inbound replication partners.',36,1,0,0,0,0,'','','','select DRAInboundPropertiesTotalPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (643,'Perf_NTDSDRAInboundTotalUpdatesRemaininginPacket','The number of total (link values + object) updates received in the current directory replication update packet that have not yet been',36,1,0,0,0,0,'','','','select DRAInboundTotalUpdatesRemaininginPacket from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (644,'Perf_NTDSDRAInboundValuesDNsonlyPersec','Number of object property values received from inbound replication partners that are Distinguished Names; i.e., that reference other objects. DN-values,&#x',36,1,0,0,0,0,'','','','select DRAInboundValuesDNsonlyPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (645,'Perf_NTDSDRAInboundValuesTotalPersec','Total number of object property values received from inbound replication partners. Each inbound object has one or more properties, and each prope',36,1,0,0,0,0,'','','','select DRAInboundValuesTotalPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (646,'Perf_NTDSDRAOutboundBytesCompressedBetweenSitesAfterCompressionPersec','Compressed size in bytes of outbound compressed replication data (size after compression, from DSAs in other sites).',36,1,0,0,0,0,'','','','select DRAOutboundBytesCompressedBetweenSitesAfterCompressionPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (647,'Perf_NTDSDRAOutboundBytesCompressedBetweenSitesAfterCompressionSinceBoot','Compressed size in bytes of outbound compressed replication data (size after compression, from DSAs in other sites).',36,1,0,0,0,0,'','','','select DRAOutboundBytesCompressedBetweenSitesAfterCompressionSinceBoot from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (648,'Perf_NTDSDRAOutboundBytesCompressedBetweenSitesBeforeCompressionPersec','Original size in bytes of outbound compressed replication data (size before compression, from DSAs in other sites).',36,1,0,0,0,0,'','','','select DRAOutboundBytesCompressedBetweenSitesBeforeCompressionPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (649,'Perf_NTDSDRAOutboundBytesCompressedBetweenSitesBeforeCompressionSinceBoot','Original size in bytes of outbound compressed replication data (size before compression, from DSAs in other sites).',36,1,0,0,0,0,'','','','select DRAOutboundBytesCompressedBetweenSitesBeforeCompressionSinceBoot from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (650,'Perf_NTDSDRAOutboundBytesNotCompressedWithinSitePersec','Number of bytes replicated out that were not compressed (i.e., from DSAs in the same site).',36,1,0,0,0,0,'','','','select DRAOutboundBytesNotCompressedWithinSitePersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (651,'Perf_NTDSDRAOutboundBytesNotCompressedWithinSiteSinceBoot','Number of bytes replicated out that were not compressed (i.e., from DSAs in the same site).',36,1,0,0,0,0,'','','','select DRAOutboundBytesNotCompressedWithinSiteSinceBoot from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (652,'Perf_NTDSDRAOutboundBytesTotalPersec','Total number of bytes replicated out. Sum of the number of uncompressed bytes (never compressed) and the number of compressed bytes (',36,1,0,0,0,0,'','','','select DRAOutboundBytesTotalPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (653,'Perf_NTDSDRAOutboundBytesTotalSinceBoot','Total number of bytes replicated out. Sum of the number of uncompressed bytes (never compressed) and the number of compressed bytes (',36,1,0,0,0,0,'','','','select DRAOutboundBytesTotalSinceBoot from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (654,'Perf_NTDSDRAOutboundObjectsFilteredPersec','Number of objects looked at by outbound replication that were determined to have no updates that the outbound partner did not already have.',36,1,0,0,0,0,'','','','select DRAOutboundObjectsFilteredPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (655,'Perf_NTDSDRAOutboundObjectsPersec','No of objects replicated out.',36,1,0,0,0,0,'','','','select DRAOutboundObjectsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (656,'Perf_NTDSDRAOutboundPropertiesPersec','No of properties replicated out.',36,1,0,0,0,0,'','','','select DRAOutboundPropertiesPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (657,'Perf_NTDSDRAOutboundValuesDNsonlyPersec','Number of object property values containing Distinguished Names sent to outbound replication partners. DN-values, such as group or distribution list m',36,1,0,0,0,0,'','','','select DRAOutboundValuesDNsonlyPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (658,'Perf_NTDSDRAOutboundValuesTotalPersec','Number of object property values sent to outbound replication partners.',36,1,0,0,0,0,'','','','select DRAOutboundValuesTotalPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (659,'Perf_NTDSDRAPendingReplicationOperations','The total number of replication operations on the directory that are queued for this server but not yet performed.',36,1,0,0,0,0,'','','','select DRAPendingReplicationOperations from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (660,'Perf_NTDSDRAPendingReplicationSynchronizations','DRA Pending Replication Synchronizations is the number of directory synchronizations that are queued for this server but not yet processed.',36,1,0,0,0,0,'','','','select DRAPendingReplicationSynchronizations from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (661,'Perf_NTDSDRASyncFailuresonSchemaMismatch','No of sync requests made to the neighbors that failed because their schema are out of sync.',36,1,0,0,0,0,'','','','select DRASyncFailuresonSchemaMismatch from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (662,'Perf_NTDSDRASyncRequestsMade','No of sync requests made to the neighbors.',36,1,0,0,0,0,'','','','select DRASyncRequestsMade from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (663,'Perf_NTDSDRASyncRequestsSuccessful','No of sync requests made to the neighbors that successfully returned.',36,1,0,0,0,0,'','','','select DRASyncRequestsSuccessful from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (664,'Perf_NTDSDRAThreadsGettingNCChanges','The number of threads on the server which are currently attempting to acquire changes from another server.',36,1,0,0,0,0,'','','','select DRAThreadsGettingNCChanges from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (665,'Perf_NTDSDRAThreadsGettingNCChangesHoldingSemaphore','The number of threads on the server which are currently attempting to acquire changes from another server and hold a semaphore required to&#',36,1,0,0,0,0,'','','','select DRAThreadsGettingNCChangesHoldingSemaphore from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (666,'Perf_NTDSDSClientBindsPersec','Number of ntdsapi.dll binds per second serviced by this DC.',36,1,0,0,0,0,'','','','select DSClientBindsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (667,'Perf_NTDSDSClientNameTranslationsPersec','Number of ntdsapi.dll name translations per second serviced by this DC.',36,1,0,0,0,0,'','','','select DSClientNameTranslationsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (668,'Perf_NTDSDSDirectoryReadsPersec','Number of directory reads per second.',36,1,0,0,0,0,'','','','select DSDirectoryReadsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (669,'Perf_NTDSDSDirectorySearchesPersec','Number of directory searches per second.',36,1,0,0,0,0,'','','','select DSDirectorySearchesPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (670,'Perf_NTDSDSDirectoryWritesPersec','Number of directory writes per second.',36,1,0,0,0,0,'','','','select DSDirectoryWritesPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (671,'Perf_NTDSDSMonitorListSize','The number of requests to be notified when objects are updated that are currently registered with this DSA.',36,1,0,0,0,0,'','','','select DSMonitorListSize from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (672,'Perf_NTDSDSNameCachehitrate','The percentage of directory object name component look ups that are satisfied out of the DSA's name cache.',36,1,0,0,0,0,'','','','select DSNameCachehitrate from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (673,'Perf_NTDSDSNotifyQueueSize','The number of pending update notifications that have been queued, but not yet transmitted to clients.',36,1,0,0,0,0,'','','','select DSNotifyQueueSize from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (674,'Perf_NTDSDSSearchsuboperationsPersec','Number of search suboperations per second. One search operation is made up of many sub operations. A sub operation roughly corresponds to an',36,1,0,0,0,0,'','','','select DSSearchsuboperationsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (675,'Perf_NTDSDSSecurityDescriptorsuboperationsPersec','Number of Security Descriptor Propagation suboperations per second. One Security Descriptor Propagation operation is made up of many sub operations. A',36,1,0,0,0,0,'','','','select DSSecurityDescriptorsuboperationsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (676,'Perf_NTDSDSServerBindsPersec','Number of DC-to-DC binds per second serviced by this DC.',36,1,0,0,0,0,'','','','select DSServerBindsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (677,'Perf_NTDSDSServerNameTranslationsPersec','Number of DC-to-DC name translations per second serviced by this DC.',36,1,0,0,0,0,'','','','select DSServerNameTranslationsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (678,'Perf_NTDSDSThreadsinUse','DS Threads in Use is the current number of threads in use by the directory service (different than the number of threads in the',36,1,0,0,0,0,'','','','select DSThreadsinUse from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (679,'Perf_NTDSExternalBindsPersec','The number of external binds/sec',36,1,0,0,0,0,'','','','select ExternalBindsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (680,'Perf_NTDSFastBindsPersec','The number of fast binds/sec',36,1,0,0,0,0,'','','','select FastBindsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (681,'Perf_NTDSLDAPActiveThreads','LDAP Active Threads is the current number of threads in use by the LDAP subsystem of the local directory service.',36,1,0,0,0,0,'','','','select LDAPActiveThreads from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (682,'Perf_NTDSLDAPBindTime','Time (in milliseconds) taken for last successful LDAP bind.',36,1,0,0,0,0,'','','','select LDAPBindTime from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (683,'Perf_NTDSLDAPClientSessions','Number of connected LDAP client sessions.',36,1,0,0,0,0,'','','','select LDAPClientSessions from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (684,'Perf_NTDSLDAPClosedConnectionsPersec','The number of LDAP connections that have been closed in the last second.',36,1,0,0,0,0,'','','','select LDAPClosedConnectionsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (685,'Perf_NTDSLDAPNewConnectionsPersec','The number of new LDAP connections that have arrived in the last second.',36,1,0,0,0,0,'','','','select LDAPNewConnectionsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (686,'Perf_NTDSLDAPNewSSLConnectionsPersec','The number of new SSL or TLS connections that arrived in the last second.',36,1,0,0,0,0,'','','','select LDAPNewSSLConnectionsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (687,'Perf_NTDSLDAPSearchesPersec','LDAP Searches/sec is the rate at which LDAP clients perform search operations.',36,1,0,0,0,0,'','','','select LDAPSearchesPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (688,'Perf_NTDSLDAPSuccessfulBindsPersec','Number of LDAP Binds per second.',36,1,0,0,0,0,'','','','select LDAPSuccessfulBindsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (689,'Perf_NTDSLDAPUDPoperationsPersec','The number of UDP operations the LDAP server is processing per second.',36,1,0,0,0,0,'','','','select LDAPUDPoperationsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (690,'Perf_NTDSLDAPWritesPersec','LDAP Writes/sec is the rate at which LDAP clients perform write operations.',36,1,0,0,0,0,'','','','select LDAPWritesPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (691,'Perf_NTDSLinkValuesCleanedPersec','The rate at which link values that need to be cleaned are cleaned.',36,1,0,0,0,0,'','','','select LinkValuesCleanedPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (692,'Perf_NTDSNegotiatedBindsPersec','The number of negotiated binds/sec',36,1,0,0,0,0,'','','','select NegotiatedBindsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (693,'Perf_NTDSNTLMBindsPersec','The number of NTLM binds/sec',36,1,0,0,0,0,'','','','select NTLMBindsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (694,'Perf_NTDSOnelevelsearchesPersec','The number of onelevel searches/sec',36,1,0,0,0,0,'','','','select OnelevelsearchesPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (695,'Perf_NTDSPhantomsCleanedPersec','The rate at which stale phantoms are cleaned.',36,1,0,0,0,0,'','','','select PhantomsCleanedPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (696,'Perf_NTDSPhantomsVisitedPersec','The rate at which phantoms are visited to determine if they are stale and need to be cleaned.',36,1,0,0,0,0,'','','','select PhantomsVisitedPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (697,'Perf_NTDSSimpleBindsPersec','The number of simple binds/sec',36,1,0,0,0,0,'','','','select SimpleBindsPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (698,'Perf_NTDSSubtreesearchesPersec','The number of subtree searches/sec',36,1,0,0,0,0,'','','','select SubtreesearchesPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (699,'Perf_NTDSTombstonesGarbageCollectedPersec','The rate at which expired tombstoned objects are garbage collected.',36,1,0,0,0,0,'','','','select TombstonesGarbageCollectedPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (700,'Perf_NTDSTombstonesVisitedPersec','The rate at which tombstoned objects are visited to be considered for garbage collected.',36,1,0,0,0,0,'','','','select TombstonesVisitedPersec from Win32_PerfRawData_NTDS_NTDS',3,6,0,'Administrator','none','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (701,'BullGuard_BsBackup_service','The BullGuard Backup service enables you to backup files that are in use ',37,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "BsBackup"',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (703,'BullGuard_BsBhvScan_service','BullGuard behavioural detection service ',37,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "BsBhvScan"',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (704,'BullGuard_BsFileScan_service','The BullGuard File Scan service performs on-access scan for detecting malware in real time ',37,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "BsFileScan"',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (705,'BullGuard_firewall_service','BullGuard firewall service ',37,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "BsFire"',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (706,'BullGuard_BsMailProxy_service','The BullGuard Behavioural Detection Service is an anti-virus component of BullGuard Internet Security ',37,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "BsMailProxy"',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (707,'BullGuard_main_service','BullGuard main service ',37,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "BsMain"',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (708,'BullGuard_BsScanner_service','The BullGuard Scan Service is the central anti-virus component of BullGuard Internet Security ',37,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "BsScanner"',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (709,'BullGuard_update_service','BullGuard update service ',37,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "BsUpdate"',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (710,'Serv_OracleService<SID>','Returns OracleService<SID> status',28,2,0,0,0,1,'','','','SELECT state FROM Win32_Service WHERE Name = "OracleService<SID>"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (711,'Perf_OracleOtherOperationCount','Returns other operation count per second for Oracle process.',28,4,0,0,0,0,'','','','select OtherOperationCount from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (712,'Perf_OracleOtherTransferCount','Returns other transfer count per second for Oracle process.',28,4,0,0,0,0,'','','','select OtherTransferCount from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (713,'Perf_OraclePageFaults','Returns page faults count per second for Oracle process.',28,4,0,0,0,0,'','','','select PageFaults from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (714,'Perf_OraclePageFileUsage','Returns page file usage count per second for Oracle process.',28,4,0,0,0,0,'','','','select PageFileUsage from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (715,'Perf_OraclePrivatePageCount','Returns private page access count per second for Oracle process.',28,4,0,0,0,0,'','','','select PrivatePageCount from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (716,'Perf_OracleQuotaNonPagedPoolUsage','Returns the current quota for non paged pool usage in Oracle process.',28,1,0,0,0,0,'','','','select QuotaNonPagedPoolUsage from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (717,'Perf_OracleQuotaPagedPoolUsage','Returns the current quota for paged pool usage in Oracle process.',28,1,0,0,0,0,'','','','select QuotaPagedPoolUsage from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (718,'Perf_OracleReadOperationCount','Returns read operation count per second for Oracle process.',28,4,0,0,0,0,'','','','select ReadOperationCount from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (719,'Perf_OracleReadTransferCount','Returns read transfer count per second for Oracle process.',28,4,0,0,0,0,'','','','select ReadTransferCount from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (720,'Perf_OracleThreadCount','Returns current thread count for Oracle process.',28,1,0,0,0,0,'','','','select ThreadCount from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (721,'Perf_OracleWriteOperationCount','Returns write operation count per second for Oracle process.',28,4,0,0,0,0,'','','','select WriteOperationCount from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (722,'Perf_OracleWriteTransferCount','Returns write transfer count per second for Oracle process.',28,4,0,0,0,0,'','','','select WriteTransferCount from Win32_Process WHERE Caption = "oracle.exe"',7,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (723,'Serv_MSExchangeAB','Microsoft Exchange MSExchangeAB service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeAB'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (724,'Serv_MSExchangeADTopology','Microsoft Exchange MSExchangeADTopology service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeADTopology'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (725,'Serv_MSExchangeAntispamUpdate','Microsoft Exchange MSExchangeAntispamUpdate service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeAntispamUpdate'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (726,'Serv_MSExchangeEdgeSync','Microsoft Exchange MSExchangeEdgeSync service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeEdgeSync'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (727,'Serv_MSExchangeFBA','Microsoft Exchange MSExchangeFBA service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeFBA'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (728,'Serv_MSExchangeFDS','Microsoft Exchange MSExchangeFDS service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeFDS'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (729,'Serv_MSExchangeImap4','Microsoft Exchange MSExchangeImap4 service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeImap4'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (730,'Serv_MSExchangeIS','Microsoft Exchange MSExchangeIS service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeIS'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (731,'Serv_MSExchangeMailboxAssistants','Microsoft Exchange MSExchangeMailboxAssistants service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeMailboxAssistants'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (732,'Serv_MSExchangeMailboxReplication','Microsoft Exchange MSExchangeMailboxReplication service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeMailboxReplication'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (733,'Serv_MSExchangeMailSubmission','Microsoft Exchange MSExchangeMailSubmission service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeMailSubmission'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (734,'Serv_MSExchangePop3','Microsoft Exchange MSExchangePop3 service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangePop3'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (735,'Serv_MSExchangeProtectedServiceHost','Microsoft Exchange MSExchangeProtectedServiceHost service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeProtectedServiceHost'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (736,'Serv_MSExchangeRepl','Microsoft Exchange MSExchangeRepl service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeRepl'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (737,'Serv_MSExchangeRPC','Microsoft Exchange MSExchangeRPC service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeRPC'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (738,'Serv_MSExchangeSA','Microsoft Exchange MSExchangeSA service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeSA'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (739,'Serv_MSExchangeSearch','Microsoft Exchange MSExchangeSearch service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeSearch'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (740,'Serv_MSExchangeSearchB','Microsoft Exchange msftesql-Exchange service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'msftesql-Exchange'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (741,'Serv_MSExchangeServiceHost','Microsoft Exchange MSExchangeServiceHost service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeServiceHost'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (742,'Serv_MSExchangeThrottling','Microsoft Exchange MSExchangeThrottling service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeThrottling'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (743,'Serv_MSExchangeTransport','Microsoft Exchange MSExchangeTransport service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeTransport'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (744,'Serv_MSExchangeTransportLogSearch','Microsoft Exchange MSExchangeTransportLogSearch service status.',26,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSExchangeTransportLogSearch'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (745,'Serv_W3SVC','Microsoft IIS W3SVC service status.',38,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'W3SVC'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (746,'Serv_SMTPSVC','Microsoft IIS SMTPSVC service status.',38,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'SMTPSVC'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (747,'Serv_NNTPSVC','Microsoft IIS NNTPSVC service status.',38,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'NNTPSVC'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (749,'Serv_MSFTPSVC','Microsoft IIS MSFTPSVC service status.',38,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'MSFTPSVC'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (750,'Serv_WinRM','Microsoft Windows WinRM service status.',16,2,0,0,300,1,'','','Running','Select State from Win32_Service WHERE name = 'WinRM'',3,6,0,'Administrador','6683','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (751,'Check port 59535/TCP','Checks 59535/TCP Port status.',39,9,0,0,0,59535,'','','public','',3,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (752,'Check port 59536/TCP','Checks 59536/TCP Port status.',39,9,0,0,0,59536,'','','public','',3,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (753,'Check RPC Server','Checks RPC Port status.',39,9,0,0,0,135,'','','public','',3,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (754,'Check POP3 Server','Checks POP3 Port status.',39,9,0,0,0,110,'','','public','',3,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (755,'Check IMAP4 Server','Checks IMAP4 Port status.',39,9,0,0,0,143,'','','public','',3,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (756,'Check SMTP Server','Checks SMTP Port status.',39,9,0,0,0,25,'','','public','',3,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (757,'AVGIDSAgent_status','Show if AVGIDSAgent is running ',40,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "AVGIDSAgent" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (758,'AVG_watchdog_status','Show if AVG watchdog is running ',40,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "avgwd" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (759,'AVG_firewall_status','Show if AVG firewall is running ',40,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "avgfws" ',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (760,'KIS_service_status','Show if KIS antivirus is running ',41,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "ksvsvc"',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (761,'Serv_NTDS','Checks if NTDS service is running',18,2,0,0,0,1,'','','Running','select state from Win32_Service where name="NTDS"',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (762,'Serv_DNS','Checks if DNS service is running',34,2,0,0,0,1,'','','Running','select state from Win32_Service where name="DNS"',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (763,'KIS_KLBLMain_status','Show if KIS antivirus is running ',41,2,0,0,0,1,'','','Running','select state from Win32_Service where name = "KLBLMain"',3,6,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (764,'MongoDB Port Check','Remote check of standard TCP port of MongoDB Server.',15,9,0,0,0,27017,'','','public','',7,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (765,'PostgreSQL Remote Port check','Check remote port on PostgreSQL Server.',15,9,0,0,0,5432,'','','public','',7,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "max_retries", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "module_macros", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff") VALUES (766,'DBSelects','Number of selects on database',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Com_select\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "max_retries", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "module_macros", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff") VALUES (767,'DBUpdates','Number of updates on database',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Com_update\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "max_retries", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "module_macros", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff") VALUES (768,'InnoDB_Rows_Read','Rows read on InnoDB engine',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Innodb_rows_read\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "max_retries", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "module_macros", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff") VALUES (769,'DB_Connections','Current connections on database',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Connections\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "max_retries", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "module_macros", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff") VALUES (770,'Qcache_not_cached','Cache hit missing (queries not cached)',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Qcache_not_cached\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "max_retries", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "module_macros", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff") VALUES (771,'Table_locks_waited','Table locks waited',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Table_locks_waited\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "max_retries", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "module_macros", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff") VALUES (772,'Slow_launch_threads','Slow launch threads',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Slow_launch_threads\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "max_retries", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "module_macros", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff") VALUES (773,'Qcache_hits','Queries cached successfully',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Qcache_hits\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "max_retries", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "module_macros", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff") VALUES (774,'Innodb_data_pending_reads','InnoDB engine pending reads',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Innodb_data_pending_reads\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "max_retries", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "module_macros", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff") VALUES (775,'Aborted_connects','Aborted connection attempts',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Aborted_connects\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "max_retries", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "module_macros", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff") VALUES (776,'Bytes_received','Bytes received by database (global)',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Bytes_received\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "max_retries", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "module_macros", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff") VALUES (777,'Bytes_sent','Bytes_sent by database (global)',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Bytes_sent\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "max_retries", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "module_macros", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff") VALUES (778,'MySQL_Updates','Updates per second',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Com_update\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "max_retries", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "module_macros", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff") VALUES (779,'MySQL_Deletes','Deletes per second',42,4,0,0,300,0,'','','','',6,4,6,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.000000000000000,'','basic','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"IP address\",\"help\":\"IP address\",\"value\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"Username to access to database\",\"value\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"Password to access to database\",\"value\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Query string\",\"help\":\"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'\",\"value\":\"Com_delete\"}}','','','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (780,'MySQL Port','Check MySql Port',42,9,0,0,300,3306,'','','public','',2,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (781,'Check Oracle Listener Port','Check Oracle Listener Port',28,9,0,0,300,1521,'','','public','',2,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (782,'Check_MSSQLServer_Port','Check port MSSQL Server',27,9,0,0,300,1433,'','','public','',2,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (783,'Check Informix Port','',19,9,0,0,300,1526,'','','public','',2,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); -INSERT INTO "tnetwork_component" ("id_nc", "name", "description", "id_group", "type", "max", "min", "module_interval", "tcp_port", "tcp_send", "tcp_rcv", "snmp_community", "snmp_oid", "id_module_group", "id_modulo", "id_plugin", "plugin_user", "plugin_pass", "plugin_parameter", "max_timeout", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "custom_string_1", "custom_string_2", "custom_string_3", "custom_integer_1", "custom_integer_2", "post_process", "wizard_level", "critical_instructions", "warning_instructions", "unknown_instructions", "tags", "disabled_types_event", "module_macros") VALUES (784,'Check port DB2','',49,9,0,0,300,50000,'','','public','',2,2,0,'','','',0,1,0.00,0.00,'',0.00,0.00,'',0,'','','',0,0,0.0000000000000,'basic','','','','','',''); - - --- --- Dumping data for table "tnetwork_component_group" --- -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (1,'General group',0); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (2,'Cisco MIBs',10); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (5,'UNIX Systems',12); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (10,'Network Management',0); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (11,'Microsoft Windows',12); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (12,'Operating Systems',0); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (13,'UCD Mibs (Linux, UCD-SNMP)',12); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (14,'WMI',12); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (15,'Databases',0); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (16,'Windows System',14); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (17,'Windows Hardware Layer',14); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (18,'Windows AD ',14); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (19,'Windows IIS ',14); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (20,'Windows Exchange',14); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (21,'Windows LDAP ',14); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (22,'Windows MSDTC ',14); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (23,'Catalyst 2900 ',2); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (24,'Windows Printers',14); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (25,'Citrix',0); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (26,'Exchange Services',20); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (27,'MS SQL Server',15); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (28,'Oracle',15); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (29,'Antivirus',0); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (30,'Norton',29); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (31,'Panda',29); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (32,'McAfee',29); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (33,'Bitdefender',29); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (34,'Windows DNS',14); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (35,'DNS Counters',34); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (36,'AD Counters',18); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (37,'BullGuard',29); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (38,'IIS services',19); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (39,'Exchange TCP Ports',20); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (40,'AVG',29); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (41,'Kaspersky',29); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (42,'MySQL',15); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (43,'Linux',5); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (44,'HP-UX',5); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (45,'Solaris',5); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (46,'AIX',5); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (47,'BSD',5); -INSERT INTO "tnetwork_component_group" ("id_sg", "name", "parent") VALUES (48,'MacOS',0); -SELECT setval('tnetwork_component_group_id_sg_seq', (SELECT (SELECT MAX(id_sg) FROM tnetwork_component_group))); - --- Network profile - -INSERT INTO "tnetwork_profile" ("id_np", "name", "description") VALUES (2,'Basic Monitoring','Only ICMP check'); -INSERT INTO "tnetwork_profile" ("id_np", "name", "description") VALUES (3,'Basic DMZ Server monitoring','This group of network checks, checks for default services located on DMZ servers...'); - -SELECT setval('tnetwork_profile_id_np_seq', (SELECT (SELECT MAX(id_np) FROM tnetwork_profile))); - -INSERT INTO "tnetwork_profile_component" ("id_nc", "id_np") VALUES (34,2); -INSERT INTO "tnetwork_profile_component" ("id_nc", "id_np") VALUES (34,3); -INSERT INTO "tnetwork_profile_component" ("id_nc", "id_np") VALUES (37,3); -INSERT INTO "tnetwork_profile_component" ("id_nc", "id_np") VALUES (39,3); -INSERT INTO "tnetwork_profile_component" ("id_nc", "id_np") VALUES (38,3); - - --- GIS Data -INSERT INTO "tgis_map" VALUES (1,'Sample',-3.708187,40.42056,0,16,'',-3.708187,40.42056,0,0,1); -SELECT setval('tgis_map_id_tgis_map_seq', (SELECT (SELECT MAX(id_tgis_map) FROM tgis_map))); - -INSERT INTO "tgis_map_connection" VALUES (1,'OpenStreetMap (MapQuest Open)','OSM','{\"type\":\"OSM\",\"url\":\"http://otile1.mqcdn.com/tiles/1.0.0/map/${z}/${x}/${y}.png\"}',19,16,-3.708187,40.42056,0,-3.708187,40.42056,0,0); -INSERT INTO "tgis_map_connection" VALUES (2,'OpenStreetMap (Standard)','OSM','{\"type\":\"OSM\",\"url\":\"http://tile.openstreetmap.org/${z}/${x}/${y}.png\"}',19,16,-3.708187,40.42056,0,-3.708187,40.42056,0,0); -SELECT setval('tgis_map_connection_id_tmap_connection_seq', (SELECT (SELECT MAX(id_tmap_connection) FROM tgis_map_connection))); - -INSERT INTO "tgis_map_has_tgis_map_connection" VALUES (1,1,'2010-03-01 09:46:48',1); -INSERT INTO "tgis_map_layer" VALUES (1,'Group All',1,0,1,0); -SELECT setval('tgis_map_layer_id_tmap_layer_seq', (SELECT (SELECT MAX(id_tmap_layer) FROM tgis_map_layer))); - --- example alert template -INSERT INTO "talert_commands" ("id", "name", "command", "description", "internal", "fields_descriptions", "fields_values") VALUES (12,'Remote agent control','/usr/share/pandora_server/util/udp_client.pl _address_ 41122 "_field1_"','This command is used to send commands to the Pandora FMS agents with the UDP server enabled. The UDP server is used to order agents (Windows and UNIX) to "refresh" the agent execution: that means, to force the agent to execute and send data',0,'[\"Command\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]','[\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]'); -SELECT setval('talert_commands_id_seq', (SELECT (SELECT MAX(id) FROM talert_commands))); - -INSERT INTO "talert_actions" ("id", "name", "id_alert_command", "field1", "field2", "field3", "field4", "field5", "field6", "field7", "field8", "field9", "field10", "id_group", "action_threshold", "field1_recovery", "field2_recovery", "field3_recovery", "field4_recovery", "field5_recovery", "field6_recovery", "field7_recovery", "field8_recovery", "field9_recovery", "field10_recovery") VALUES (1,'Mail to Admin',1,'yourmail@domain.es','[PANDORA] Alert from agent _agent_ on module _module_','','','','','','','','',0,0,'','','','','','','','','',''); -INSERT INTO "talert_actions" ("id", "name", "id_alert_command", "field1", "field2", "field3", "field4", "field5", "field6", "field7", "field8", "field9", "field10", "id_group", "action_threshold", "field1_recovery", "field2_recovery", "field3_recovery", "field4_recovery", "field5_recovery", "field6_recovery", "field7_recovery", "field8_recovery", "field9_recovery", "field10_recovery") VALUES (2,'Restart agent',12,'REFRESH AGENT *','','','','','','','','','',0,0,'','','','','','','','','',''); -INSERT INTO "talert_actions" ("id", "name", "id_alert_command", "field1", "field2", "field3", "field4", "field5", "field6", "field7", "field8", "field9", "field10", "id_group", "action_threshold", "field1_recovery", "field2_recovery", "field3_recovery", "field4_recovery", "field5_recovery", "field6_recovery", "field7_recovery", "field8_recovery", "field9_recovery", "field10_recovery") VALUES (3,'Pandora FMS Event',3,'_agent_ _module_ generated an event alert (_data_)','alert_fired','pandora','','4','','','','','',0,0,'RECOVERED: _agent_ _module_ generated event alert (_data_)','alert_ceased','pandora','','4','','','','',''); -INSERT INTO "talert_actions" ("id", "name", "id_alert_command", "field1", "field2", "field3", "field4", "field5", "field6", "field7", "field8", "field9", "field10", "id_group", "action_threshold", "field1_recovery", "field2_recovery", "field3_recovery", "field4_recovery", "field5_recovery", "field6_recovery", "field7_recovery", "field8_recovery", "field9_recovery", "field10_recovery") VALUES (4,'Create a ticket in Integria IMS',11,'http://localhost/integria/include/api.php','1234','admin','integria','_agent_: _alert_name_','1','3','copy@dom.com','admin','_alert_description_',0,0,'','','','','','','','','',''); -SELECT setval('talert_actions_id_seq', (SELECT (SELECT MAX(id) FROM talert_actions))); - -INSERT INTO "talert_templates" ("id", "name", "description", "id_alert_action", "field1", "field2", "field3", "type", "value", "matches_value", "max_value", "min_value", "time_threshold", "max_alerts", "min_alerts", "time_from", "time_to", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday", "recovery_notify", "field2_recovery", "field3_recovery", "priority", "id_group", "special_day", "wizard_level") VALUES (1,'Critical condition','This is a generic alert template to fire on condition CRITICAL',1,'','','Hello, this is an automated email coming from Pandora FMS\r\n\r\nThis alert has been fired because a CRITICAL condition in one of your monitored items:\r\n\r\nAgent : _agent_\r\nModule: _module_\r\nModule description: _moduledescription_\r\nTimestamp _timestamp_\r\nCurrent value: _data_\r\n\r\nThanks for your time.\r\n\r\nBest regards\r\nPandora FMS\r\n','critical','',1,0.00,0.00,86400,1,0,'12:00:00','12:00:00',1,1,1,1,1,1,1,1,'[PANDORA] Alert RECOVERED for CRITICAL status on _agent_ / _module_','Hello, this is an automated email coming from Pandora FMS\r\n\r\nThis alert has been RECOVERED from a CRITICAL condition in one of your monitored items:\r\n\r\nAgent : _agent_\r\nModule: _module_\r\nModule description: _moduledescription_\r\nTimestamp _timestamp_\r\nCurrent value: _data_\r\n\r\nThanks for your time.\r\n\r\nBest regards\r\nPandora FMS\r\n',4,0,0,'basic'); -INSERT INTO "talert_templates" ("id", "name", "description", "id_alert_action", "field1", "field2", "field3", "type", "value", "matches_value", "max_value", "min_value", "time_threshold", "max_alerts", "min_alerts", "time_from", "time_to", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday", "recovery_notify", "field2_recovery", "field3_recovery", "priority", "id_group", "special_day", "wizard_level") VALUES (2,'Manual alert','This is a template used to fire manual alerts, condition defined here never will be executed. Use this template to assign to your actions/commands used to do remote management (Agent restart, execute commands on server, etc).',NULL,'','','','max_min','',1,0.00,1.00,86400,1,0,'12:00:00','12:00:00',1,1,1,1,1,1,1,0,'','',1,0,0,'basic'); -INSERT INTO "talert_templates" ("id", "name", "description", "id_alert_action", "field1", "field2", "field3", "type", "value", "matches_value", "max_value", "min_value", "time_threshold", "max_alerts", "min_alerts", "time_from", "time_to", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday", "recovery_notify", "field2_recovery", "field3_recovery", "priority", "id_group", "special_day", "wizard_level") VALUES (3,'Warning condition','This is a generic alert template to fire on WARNING condition.',1,'','','Hello, this is an automated email coming from Pandora FMS This alert has been fired because a WARNING condition in one of your monitored items: Agent : _agent_ Module: _module_ Module description: _moduledescription_ Timestamp _timestamp_ Current value: _data_ Thanks for your time. Best regards Pandora FMS ','warning','',1,0.00,0.00,86400,1,0,'12:00:00','12:00:00',1,1,1,1,1,1,1,1,'[PANDORA] Alert RECOVERED for WARNING status on _agent_ / _module_','Hello, this is an automated email coming from Pandora FMS This alert has been RECOVERED from a WARNING condition in one of your monitored items: Agent : _agent_ Module: _module_ Module description: _moduledescription_ Timestamp _timestamp_ Current value: _data_ Thanks for your time. Best regards Pandora FMS ',3,0,0,'basic'); -SELECT setval('talert_templates_id_seq', (SELECT (SELECT MAX(id) FROM talert_templates))); - --- treport_custom_sql Data -INSERT INTO "treport_custom_sql" ("id", "name", "sql") VALUES (1, 'Monitoring Report Agent', 'select direccion, nombre, comentarios, (select nombre from tgrupo where tgrupo.id_grupo = tagente.id_grupo) as "group" from tagente;'); -INSERT INTO "treport_custom_sql" ("id", "name", "sql") VALUES (2, 'Monitoring Report Modules', 'select (select tagente.nombre from tagente where tagente.id_agente = tagente_modulo.id_agente) as agent_name, nombre , (select tmodule_group.name from tmodule_group where tmodule_group.id_mg = tagente_modulo.id_module_group) as module_group, module_interval from tagente_modulo where delete_pending = 0 order by agent_name;'); -INSERT INTO "treport_custom_sql" ("id", "name", "sql") VALUES (3, 'Monitoring Report Alerts', 'select t1.nombre as agent_name, t2.nombre as module_name, (select talert_templates.name from talert_templates where talert_templates.id = t3.id_alert_template) as template, (select group_concat(t02.name) from talert_template_module_actions as t01 inner join talert_actions as t02 on t01.id_alert_action = t02.id where t01.id_alert_template_module = t3.id group by t01.id_alert_template_module) as actions from tagente as t1 inner join tagente_modulo as t2 on t1.id_agente = t2.id_agente inner join talert_template_modules as t3 on t2.id_agente_modulo = t3.id_agent_module order by agent_name, module_name;'); -INSERT INTO "treport_custom_sql" ("id", "name", "sql") VALUES (4, 'Group view', 'select t1.nombre, (select count(t3.id_agente) from tagente as t3 where t1.id_grupo = t3.id_grupo) as agents, (SELECT COUNT(t4.id_agente) FROM tagente as t4 WHERE t4.id_grupo = t1.id_grupo AND t4.disabled = 0 AND t4.ultimo_contacto < NOW() - (intervalo / (1/2))) as agent_unknown, (SELECT COUNT(tagente_estado.id_agente_estado) FROM tagente_estado, tagente, tagente_modulo WHERE tagente.id_grupo = t1.id_grupo AND tagente.disabled = 0 AND tagente.id_agente = tagente_estado.id_agente AND tagente_estado.id_agente_modulo = tagente_modulo.id_agente_modulo AND tagente_modulo.disabled = 0 AND utimestamp > 0 AND tagente_modulo.id_tipo_modulo NOT IN(21,22,23,24,100) AND (UNIX_TIMESTAMP(NOW()) - tagente_estado.utimestamp) >= (tagente_estado.current_interval / (1/2))) as monitor_unknow, (SELECT COUNT(tagente_estado.id_agente_estado) FROM tagente_estado, tagente, tagente_modulo WHERE tagente.id_grupo = t1.id_grupo AND tagente.disabled = 0 AND tagente.id_agente = tagente_estado.id_agente AND tagente_estado.id_agente_modulo = tagente_modulo.id_agente_modulo AND tagente_modulo.disabled = 0 AND tagente_modulo.id_tipo_modulo NOT IN (21,22,23,24) AND utimestamp = 0) as monitor_no_init, (SELECT COUNT(tagente_estado.id_agente_estado) FROM tagente_estado, tagente, tagente_modulo WHERE tagente.id_grupo = t1.id_grupo AND tagente.disabled = 0 AND tagente_estado.id_agente = tagente.id_agente AND tagente_estado.id_agente_modulo = tagente_modulo.id_agente_modulo AND tagente_modulo.disabled = 0 AND estado = 0 AND ((UNIX_TIMESTAMP(NOW()) - tagente_estado.utimestamp) < (tagente_estado.current_interval / (1/2)) OR (tagente_modulo.id_tipo_modulo IN(21,22,23,24,100))) AND (utimestamp > 0 OR (tagente_modulo.id_tipo_modulo IN(21,22,23,24)))) as monitor_ok, (SELECT COUNT(tagente_estado.id_agente_estado) FROM tagente_estado, tagente, tagente_modulo WHERE tagente.id_grupo = t1.id_grupo AND tagente.disabled = 0 AND tagente_estado.id_agente = tagente.id_agente AND tagente_estado.id_agente_modulo = tagente_modulo.id_agente_modulo AND tagente_modulo.disabled = 0 AND estado = 1 AND ((UNIX_TIMESTAMP(NOW()) - tagente_estado.utimestamp) < (tagente_estado.current_interval / (1/2)) OR (tagente_modulo.id_tipo_modulo IN(21,22,23,24,100))) AND utimestamp > 0) as monitor_critical, (SELECT COUNT(talert_template_modules.id) FROM talert_template_modules, tagente_modulo, tagente_estado, tagente WHERE tagente.id_grupo = t1.id_grupo AND tagente_modulo.id_agente = tagente.id_agente AND tagente_estado.id_agente_modulo = tagente_modulo.id_agente_modulo AND tagente_modulo.disabled = 0 AND tagente.disabled = 0 AND talert_template_modules.id_agent_module = tagente_modulo.id_agente_modulo AND times_fired > 0) as monitor_alert_fired from tgrupo as t1 where 0 < (select count(t2.id_agente) from tagente as t2 where t1.id_grupo = t2.id_grupo)'); -SELECT setval('treport_custom_sql_id_seq', (SELECT (SELECT MAX(id) FROM treport_custom_sql))); - -INSERT INTO "trecon_script" VALUES (2,'IPMI Recon','Specific Pandora FMS Intel DCM Discovery (c) Artica ST 2011 <info@artica.es> Usage: ./ipmi-recon.pl <task_id> <group_id> <create_incident_flag> <custom_field1> <custom_field2> <custom_field3> <custom_field4> * custom_field1 = Network i.e.: 192.168.100.0/24 * custom_field2 = Username * custom_field3 = Password * custom_field4 = Additional parameters i.e.: -D LAN_2_0','/usr/share/pandora_server/util/recon_scripts/ipmi-recon.pl','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"Network\",\"help\":\"i.e.: 192.168.100.0/24\",\"value\":\"\",\"hide\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"\",\"value\":\"\",\"hide\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"\",\"value\":\"\",\"hide\":\"1\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Additional parameters\",\"help\":\"Optional additional parameters such as -D LAN_2_0 to use IPMI ver 2.0 instead of 1.5. These options will also be passed to the IPMI plugin when the current values are read.\",\"value\":\"\",\"hide\":\"\"}}'); -INSERT INTO "trecon_script" VALUES (4,'SNMP L2 Recon','Pandora FMS SNMP Recon Plugin for level 2 network topology discovery. (c) Artica ST 2014 <info@artica.es> Usage: ./snmp-recon.pl <task_id> <group_id> <create_incident> <custom_field1> <custom_field2> [custom_field3] [custom_field4] * custom_field1 = comma separated list of networks (i.e.: 192.168.1.0/24,192.168.2.0/24) * custom_field2 = comma separated list of snmp communities to try. * custom_field3 = a router in the network. Optional but recommended. * custom_field4 = set to -a to add all network interfaces (by default only interfaces that are up are added). Additional information: When the script is called from a recon task the task_id, group_id and create_incident parameters are automatically filled by the Pandora FMS Server.','/usr/share/pandora_server/util/recon_scripts/snmp-recon.pl','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"Network\",\"help\":\"Comma separated list of networks (i.e.: 192.168.1.0/24,192.168.2.0/24)\",\"value\":\"\",\"hide\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Community\",\"help\":\"Comma separated list of snmp communities to try.\",\"value\":\"\",\"hide\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Router\",\"help\":\"A router in the network. Optional but recommended.\",\"value\":\"\",\"hide\":\"\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Optional parameter\",\"help\":\"Set to -a to add all network interfaces (by default only interfaces that are up are added).\",\"value\":\"\",\"hide\":\"\"}}'); -INSERT INTO "trecon_script" VALUES (5,'WMI Recon Script','This script is used to automatically gather host information via WMI. Available parameters: * Network = network to scan (e.g. 192.168.100.0/24). * WMI auth = comma separated list of WMI authentication tokens in the format username%password (e.g. Administrador%pass). See the documentation for more information.','/usr/share/pandora_server/util/recon_scripts/wmi-recon.pl','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"Network\",\"help\":\"\",\"value\":\"\",\"hide\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"WMI auth\",\"help\":\"\",\"value\":\"\",\"hide\":\"\"}}'); - -INSERT INTO "tplugin" ("id", "name", "description", "max_timeout", "execute", "plugin_type", "macros", "parameters") VALUES (1,'IPMI Plugin','Plugin to get IPMI monitors from a IPMI Device.',0,'/usr/share/pandora_server/util/plugin/ipmi-plugin.pl',0,'{\"1\":{\"macro\":\"_field1_\",\"desc\":\"Target IP\",\"help\":\"\",\"value\":\"\",\"hide\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Username\",\"help\":\"\",\"value\":\"\",\"hide\":\"\"},\"3\":{\"macro\":\"_field3_\",\"desc\":\"Password\",\"help\":\"\",\"value\":\"\",\"hide\":\"true\"},\"4\":{\"macro\":\"_field4_\",\"desc\":\"Sensor\",\"help\":\"\",\"value\":\"\",\"hide\":\"\"},\"5\":{\"macro\":\"_field5_\",\"desc\":\"Additional Options\",\"help\":\"\",\"value\":\"\",\"hide\":\"\"}}','-h _field1_ -u _field2_ -p _field3_ -s _field4_ -- _field5_'),(2,'DNS Plugin','This plugin is used to check if a specific domain return a specific IP address, and to check how time (milisecs) takes the DNS to answer. Use IP address parameter to specify the IP of your domain. Use these custom parameters for the other parameters: -d domain to check (for example pandorafms.com) -s DNS Server to check (for example 8.8.8.8) Optional parameters: -t Do a DNS time response check instead DNS resolve test ',15,'/usr/share/pandora_server/util/plugin/dns_plugin.sh',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":""},"2":{"macro":"_field2_","desc":"Domain to check","help":"For example pandorafms.com","value":""},"3":{"macro":"_field3_","desc":"DNS Server to check","help":"For example 8.8.8.8","value":""},"4":{"macro":"_field4_","desc":"Optional parameters","help":"","value":""}}','-i _field1_ -d _field2_ -s _field3_ _field4_'),(3,'UDP port check','Check a remote UDP port (by using NMAP). Use IP address and Port options.',5,'/usr/share/pandora_server/util/plugin/udp_nmap_plugin.sh',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":""},"2":{"macro":"_field2_","desc":"Port","help":"","value":""}}','-t _field1_-p _field2_'),(4,'SMTP Check','This plugin is used to send a mail to a SMTP server and check if works. Parameters in the plugin: IP Address - SMTP Server IP address User - AUTH login Pass - AUTH password Port - SMTP port (optional) Optional parameters: -d Destination email -f Email of the sender -a Authentication system. Could be LOGIN, PLAIN, CRAM-MD5 or DIGEST-MD',10,'/usr/share/pandora_server/util/plugin/SMTP_check.pl',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":""},"2":{"macro":"_field2_","desc":"Port","help":"","value":""},"3":{"macro":"_field3_","desc":"Username","help":"","value":""},"4":{"macro":"_field4_","desc":"Password","help":"","value":""},"5":{"macro":"_field5_","desc":"Optional parameters","help":"","value":""}}','-h _field1_ -o _field2_ -u _field3_ -p _field4_ _field5_'), (6,'MySQL Plugin','Samples: ./mysql_plugin.sh -u root -p none -s localhost -q Com_select ./mysql_plugin.sh -u root -p none -s localhost -q Com_update ./mysql_plugin.sh -u root -p none -s localhost -q Connections ./mysql_plugin.sh -u root -p anypass -s 192.168.50.24 -q Innodb_rows_read ',15,'/usr/share/pandora_server/util/plugin/mysql_plugin.sh',0,'{"1":{"macro":"_field1_","desc":"IP address","help":"IP address","value":""},"2":{"macro":"_field2_","desc":"Username","help":"Username to access to database","value":""},"3":{"macro":"_field3_","desc":"Password","help":"Password to access to database","value":""},"4":{"macro":"_field4_","desc":"Query string","help":"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'","value":""}}', '-s _field1_ -u _field2_ -p _field3_ -q _field4_'), (8,'SNMP remote','Plugin that gets remotely, using SNMP, values such as the percentage of disk or memory used, the status of a process or the CPU load',0,'perl /usr/share/pandora_server/util/plugin/snmp_remote.pl',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":"_address_"},"2":{"macro":"_field2_","desc":"Community","help":"","value":"public"},"3":{"macro":"_field3_","desc":"Plug-in Parameters","help":"Memory use (%) -m memuse Disk use (%) -m diskuse -d [disk name] Status of a process (0/1) -m process -p [process_name] Average of CPUs Load (%) -m cpuload","value":""}}', '-H _field1_ -c _field2_ _field3_'); - - -INSERT INTO "tagent_custom_fields" VALUES (1,'Serial Number',0),(2,'Department',0),(3,'Additional ID',0); - -INSERT INTO "ttag" VALUES (1,'network','Network equipment','http://artica.es',''),(2,'critical','Critical modules','',''),(3,'dmz','DMZ Network Zone','',''),(4,'performance','Performance anda capacity modules','',''),(5,'configuration','','',''); - -INSERT INTO "tevent_response" VALUES (1,'Ping to host','Ping to the agent host','ping -c 5 _agent_address_','command',0,620,500,0,''),(2,'SSH to host','Connect via SSH to the agent','http://192.168.70.164:8022/anyterm.html?param=_User_@_agent_address_','url',0,800,450,0,'User'),(3,'Create incident from event','Create a incident from the event with the standard incidents system of Pandora FMS','index.php?sec=workspace&sec2=operation/incidents/incident_detail&insert_form&from_event=_event_id_','url',0,0,0,1,''),(4,'Create Integria IMS incident from event','Create a incident from the event with integria incidents system of Pandora FMS. Is necessary to enable and configure the Integria incidents in Pandora FMS setup.','index.php?sec=workspace&sec2=operation/integria_incidents/incident&tab=editor&from_event=_event_id_','url',0,0,0,1,''),(5,'Restart agent','Restart the agent with using UDP protocol. To use this response is necessary to have installed Pandora FMS server and console in the same machine.','/usr/share/pandora_server/util/udp_client.pl _agent_address_ 41122 "REFRESH AGENT"','command',0,620,500,0,''); - -INSERT INTO "tupdate_settings" VALUES ('current_update', '412'), ('customer_key', 'PANDORA-FREE'), ('updating_binary_path', 'Path where the updated binary files will be stored'), ('updating_code_path', 'Path where the updated code is stored'), ('dbname', ''), ('dbhost', ''), ('dbpass', ''), ('dbuser', ''), ('dbport', ''), ('proxy', ''), ('proxy_port', ''), ('proxy_user', ''), ('proxy_pass', ''); - -INSERT INTO "tmodule" VALUES (7, 'Web module'); - -INSERT INTO "ttipo_modulo" VALUES -(30,'web_data',9,'Remote HTTP module to check latency','mod_web_data.png'), -(31,'web_proc',9,'Remote HTTP module to check server response','mod_web_proc.png'); - -INSERT INTO "tmodule_inventory" VALUES (1,1,'CPU','CPU','/usr/bin/perl','Model;Company;Speed','IyEvdXNyL2Jpbi9wZXJsDQojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KIyBwYW5kb3JhX2NwdS5wbA0KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCiMgQ29weXJpZ2h0IChjKSAyMDA4IFJhbW9uIE5vdm9hLCBybm92b2FAYXJ0aWNhLmVzDQojICAgICAgICAgICAoYykgMjAwOCBBcnRpY2EgU29sdWNpb25lcyBUZWNub2xvZ2ljYXMgUy5MDQojDQojIFRoaXMgcHJvZ3JhbSBpcyBmcmVlIHNvZnR3YXJlOyB5b3UgY2FuIHJlZGlzdHJpYnV0ZSBpdCBhbmQvb3INCiMgbW9kaWZ5IGl0IHVuZGVyIHRoZSB0ZXJtcyBvZiB0aGUgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UNCiMgYXMgcHVibGlzaGVkIGJ5IHRoZSBGcmVlIFNvZnR3YXJlIEZvdW5kYXRpb247IHZlcnNpb24gMi4NCiMNCiMgVGhpcyBwcm9ncmFtIGlzIGRpc3RyaWJ1dGVkIGluIHRoZSBob3BlIHRoYXQgaXQgd2lsbCBiZSB1c2VmdWwsDQojIGJ1dCBXSVRIT1VUIEFOWSBXQVJSQU5UWTsgd2l0aG91dCBldmVuIHRoZSBpbXBsaWVkIHdhcnJhbnR5IG9mDQojIE1FUkNIQU5UQUJJTElUWSBvciBGSVRORVNTIEZPUiBBIFBBUlRJQ1VMQVIgUFVSUE9TRS4gIFNlZSB0aGUNCiMgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UgZm9yIG1vcmUgZGV0YWlscy4NCiMgWW91IHNob3VsZCBoYXZlIHJlY2VpdmVkIGEgY29weSBvZiB0aGUgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UNCiMgYWxvbmcgd2l0aCB0aGlzIHByb2dyYW07IGlmIG5vdCwgd3JpdGUgdG8gdGhlIEZyZWUgU29mdHdhcmUNCiMgRm91bmRhdGlvbiwgSW5jLiwgNTEgRnJhbmtsaW4gU3RyZWV0LCBGaWZ0aCBGbG9vciwgQm9zdG9uLCBNQSAgMDIxMTAtMTMwMSwgVVNBLg0KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCg0KdXNlIHN0cmljdDsNCnVzZSB3YXJuaW5nczsNCg0KIyBDaGVjayBmb3Igc3NoDQpteSAkc3NoX2NsaWVudCA9ICJzc2giOw0KaWYgKHN5c3RlbSgiJHNzaF9jbGllbnQgLXYgPiAvZGV2L251bGwgMj4mMSIpID4+IDggIT0gMjU1KSB7DQoJcHJpbnQgIltlcnJvcl0gJHNzaF9jbGllbnQgbm90IGZvdW5kLlxuIjsNCglleGl0IDE7DQp9DQoNCmlmICgkI0FSR1YgPCAxKSB7DQoJcHJpbnQgIlVzYWdlOiAkMCA8dGFyZ2V0IGlwPiA8dXNlcm5hbWU+XG4iOw0KCWV4aXQgMTsNCn0NCg0KbXkgJHRhcmdldF9pcCA9ICRBUkdWWzBdOw0KbXkgJHVzZXJuYW1lID0gJEFSR1ZbMV07DQoNCiMgUmV0cmlldmUgQ1BVIGRhdGENCm15ICgkbW9kZWwsICR2ZW5kb3IsICRzcGVlZCk7DQpteSBAY3B1X2luZm8gPSBgJHNzaF9jbGllbnQgJHVzZXJuYW1lXEAkdGFyZ2V0X2lwICJjYXQgL3Byb2MvY3B1aW5mbyJgOw0KZm9yZWFjaCBteSAkbGluZSAoQGNwdV9pbmZvKSB7DQoJaWYgKCRsaW5lID1+IC9tb2RlbCBuYW1lXHMrOlxzKyguKikvKSB7DQoJCSRtb2RlbCA9ICQxOw0KCX0gZWxzaWYgKCRsaW5lID1+IC92ZW5kb3JfaWRccys6XHMrKC4qKS8pIHsNCgkJJHZlbmRvciA9ICQxOw0KCX0gZWxzaWYgKCRsaW5lID1+IC9jcHUgTUh6XHMrOlxzKyguKikvKSB7DQoJCSRzcGVlZCA9ICQxOw0KCX0NCn0NCiANCnJldHVybiAxIGlmICgkbW9kZWwgZXEgJycgfHwgJHZlbmRvciBlcSAnJyB8fCAkc3BlZWQgZXEgJycpOw0KcHJpbnQgIiRtb2RlbDskdmVuZG9yOyIgLiBzcHJpbnRmICgiJS4wZiIsICRzcGVlZCkgLiAiIE1IelxuIjsNCg0KZXhpdCAwOw0K'); -INSERT INTO "tmodule_inventory" VALUES (2,9,'CPU','CPU','/usr/bin/perl','Name;Speed;Description','IyEvdXNyL2Jpbi9wZXJsDQojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KIyBwYW5kb3JhX2NwdS5wbA0KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCiMgQ29weXJpZ2h0IChjKSAyMDA4IFJhbW9uIE5vdm9hLCBybm92b2FAYXJ0aWNhLmVzDQojICAgICAgICAgICAoYykgMjAwOCBBcnRpY2EgU29sdWNpb25lcyBUZWNub2xvZ2ljYXMgUy5MDQojDQojIFRoaXMgcHJvZ3JhbSBpcyBmcmVlIHNvZnR3YXJlOyB5b3UgY2FuIHJlZGlzdHJpYnV0ZSBpdCBhbmQvb3INCiMgbW9kaWZ5IGl0IHVuZGVyIHRoZSB0ZXJtcyBvZiB0aGUgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UNCiMgYXMgcHVibGlzaGVkIGJ5IHRoZSBGcmVlIFNvZnR3YXJlIEZvdW5kYXRpb247IHZlcnNpb24gMi4NCiMNCiMgVGhpcyBwcm9ncmFtIGlzIGRpc3RyaWJ1dGVkIGluIHRoZSBob3BlIHRoYXQgaXQgd2lsbCBiZSB1c2VmdWwsDQojIGJ1dCBXSVRIT1VUIEFOWSBXQVJSQU5UWTsgd2l0aG91dCBldmVuIHRoZSBpbXBsaWVkIHdhcnJhbnR5IG9mDQojIE1FUkNIQU5UQUJJTElUWSBvciBGSVRORVNTIEZPUiBBIFBBUlRJQ1VMQVIgUFVSUE9TRS4gIFNlZSB0aGUNCiMgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UgZm9yIG1vcmUgZGV0YWlscy4NCiMgWW91IHNob3VsZCBoYXZlIHJlY2VpdmVkIGEgY29weSBvZiB0aGUgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UNCiMgYWxvbmcgd2l0aCB0aGlzIHByb2dyYW07IGlmIG5vdCwgd3JpdGUgdG8gdGhlIEZyZWUgU29mdHdhcmUNCiMgRm91bmRhdGlvbiwgSW5jLiwgNTEgRnJhbmtsaW4gU3RyZWV0LCBGaWZ0aCBGbG9vciwgQm9zdG9uLCBNQSAgMDIxMTAtMTMwMSwgVVNBLg0KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCg0KdXNlIHN0cmljdDsNCnVzZSB3YXJuaW5nczsNCg0KdXNlIEZpbGU6OkJhc2VuYW1lOw0KdXNlIEhUTUw6OkVudGl0aWVzICgpOw0KDQojIENoZWNrIGZvciB3bWljDQpteSAkd21pX2NsaWVudCA9ICJ3bWljIjsNCmlmIChzeXN0ZW0oIiR3bWlfY2xpZW50ID4gL2Rldi9udWxsIDI+JjEiKSAhPSAyNTYpIHsNCglwcmludCAiW2Vycm9yXSAkd21pX2NsaWVudCBub3QgZm91bmQuXG4iOw0KCWV4aXQgMTsNCn0NCg0KaWYgKCQjQVJHViAhPSAyKSB7DQoJcHJpbnQgIlVzYWdlOiAkMCA8dGFyZ2V0IGlwPiA8dXNlcm5hbWU+IDxwYXNzd29yZD5cbiI7DQoJZXhpdCAxOw0KfQ0KDQpteSAkdGFyZ2V0X2lwID0gJEFSR1ZbMF07DQpteSAkdXNlcm5hbWUgPSAkQVJHVlsxXTsNCm15ICRwYXNzd29yZCA9ICRBUkdWWzJdOw0KDQojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KIyBTVUIgcnVuX3F1ZXJ5ICgkd3FsX3F1ZXJ5KQ0KIyBSdW5zIHRoZSBnaXZlbiBXUUwgcXVlcnkgYW5kIHJldHVybnMgdGhlIHJlc3VsdCBhcyBhbiBhcnJheSBvZiBoYXNoZXMuDQojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0Kc3ViIHJ1bl9xdWVyeSB7DQoJbXkgJHdxbF9xdWVyeSA9ICRfWzBdOw0KCW15IEByZXN1bHQgPSB7fTsNCg0KCSR3cWxfcXVlcnkgPX4gJ3MvIi9cJy9nJzsNCg0KCSMgUnVuIHRoZSBEQ09NL1dNSSBjbGllbnQNCglteSAkb3V0cHV0ID0gYCR3bWlfY2xpZW50IC1VICckdXNlcm5hbWUnJSckcGFzc3dvcmQnIC8vJHRhcmdldF9pcCBcIiR3cWxfcXVlcnlcIiAyPi9kZXYvbnVsbGA7DQoNCglteSBAbGluZXMgPSBzcGxpdCgvXG4vLCAkb3V0cHV0KTsNCgkjIEhlYWRlciwgZGVzY3JpcHRpb24sIHJlc3VsdHMNCglpZiAoJCNsaW5lcyA8IDIpIHsNCgkJZXhpdCAxOw0KCX0NCg0KCSMgRHJvcCB0aGUgaGVhZGVyDQoJc2hpZnQgKEBsaW5lcyk7DQoJDQoJIyBHZXQgY29sdW1uIG5hbWVzDQoJbXkgQGNvbHVtbl9uYW1lcyA9IHNwbGl0KC9cfC8sIHNoaWZ0IChAbGluZXMpKTsNCg0KCSMgR2V0IHJvdyBkYXRhDQoJbXkgJGlkeCA9IDA7DQoJZm9yIChteSAkaSA9IDA7ICRpIDw9ICQjbGluZXM7ICRpKyspIHsNCg0KCQkjIENoZWNrIGZvciBlcnJvcnMNCgkJaWYgKCRsaW5lc1skaV0gPX4gbS9eRVJST1IvKSB7DQoJCQlleGl0IDE7DQoJCX0NCg0KCQkjIEJsYWNrIGxpc3QNCgkJaWYgKCRsaW5lc1skaV0gPX4gbS9GaWxlIDEvKSB7DQoJCQluZXh0Ow0KCQl9DQoNCgkJbXkgQGNvbHVtbiA9IHNwbGl0KC9cfC8sICRsaW5lc1skaV0pOw0KCQlmb3IgKG15ICRqID0gMDsgJGogPD0gJCNjb2x1bW5fbmFtZXM7ICRqKyspIHsNCgkJCWlmICghIGRlZmluZWQoJGNvbHVtblskal0pKSB7DQoJCQkJJHJlc3VsdFskaWR4XS0+eyRjb2x1bW5fbmFtZXNbJGpdfSA9ICIiOw0KCQkJfQ0KCQkJZWxzZSB7DQoJCQkJJHJlc3VsdFskaWR4XS0+eyRjb2x1bW5fbmFtZXNbJGpdfSA9ICRjb2x1bW5bJGpdOw0KCQkJfQ0KCQl9DQoJCQ0KCQkkaWR4Kys7DQoJfQ0KCQ0KCXJldHVybiBAcmVzdWx0Ow0KfQ0KDQojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KIyBTVUIgcHJpbnRfbW9kdWxlZGF0YSAoJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEsIA0KIyAkbW9kdWxlX2Rlc2NyaXB0aW9uLCBAZGF0YSkNCiMgUHJpbnRzIGEgbW9kdWxlZGF0YSBYTUwgdGFnLiAkbW9kdWxlX2l0ZW0sICRtb2R1bGVfZGF0YSBhbmQNCiMgJG1vZHVsZV9kZXNjcmlwdGlvbiBhcmUgdXNlZCB0byBpbmRleCB0aGUgaXRlbSwgZGF0YSBhbmQgZGVzY3JpcHRpb24NCiMgWE1MIHRhZ3MgcmVzcGVjdGl2ZWx5Lg0KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCnN1YiBwcmludF9tb2R1bGVkYXRhIHsNCglteSAkbW9kdWxlX2l0ZW0gPSAkX1swXTsNCglteSAkbW9kdWxlX2RhdGEgPSAkX1sxXTsNCglteSAkbW9kdWxlX2Rlc2NyaXB0aW9uID0gJF9bMl07DQoJbXkgQGRhdGEgPSBAeyRfWzNdfTsNCglteSAkcmVzdWx0Ow0KDQoJZm9yZWFjaCBteSAkZWxlbWVudCAoQGRhdGEpIHsNCgkJDQoJCSRyZXN1bHQgPSAnJzsNCg0KCQkjIEl0ZW0NCgkJaWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2l0ZW19KSkgew0KCQkJJHJlc3VsdCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfaXRlbX0gLiAiOyI7DQoJCX0NCg0KCQkjIERhdGENCgkJaWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2RhdGF9KSkgew0KCQkJJHJlc3VsdCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfZGF0YX0gLiAiIE1oejsiOw0KCQl9DQoNCgkJIyBEZXNjcmlwdGlvbg0KCQlpZiAoZGVmaW5lZCgkZWxlbWVudC0+eyRtb2R1bGVfZGVzY3JpcHRpb259KSkgew0KCQkJJHJlc3VsdCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfZGVzY3JpcHRpb259IC4gIjsiOw0KCQl9DQoNCgkJcHJpbnQgJHJlc3VsdCAuICJcbiI7CQ0KCX0NCn0NCg0KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCiMgTWFpbg0KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCg0KbXkgQHJlc3VsdCA9IHJ1bl9xdWVyeSgiU0VMRUNUIE5hbWUsIE1heENsb2NrU3BlZWQsIERlc2NyaXB0aW9uIEZST00gV2luMzJfUHJvY2Vzc29yIik7DQpwcmludF9tb2R1bGVkYXRhICgiTmFtZSIsICJNYXhDbG9ja1NwZWVkIiwgIkRlc2NyaXB0aW9uIiwgXEByZXN1bHQpOw0KZXhpdCAwOw0K'); -INSERT INTO "tmodule_inventory" VALUES (3,1,'RAM','Memory modules','','Model;Size',''); -INSERT INTO "tmodule_inventory" VALUES (4,9,'RAM','Memory modules','/usr/bin/perl','Tag;Capacity;Name','IyEvdXNyL2Jpbi9wZXJsCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgcGFuZG9yYV9yYW0ucGwKIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMKIyBDb3B5cmlnaHQgKGMpIDIwMDggUmFtb24gTm92b2EsIHJub3ZvYUBhcnRp Y2EuZXMKIyAgICAgICAgICAgKGMpIDIwMDggQXJ0aWNhIFNvbHVjaW9uZXMgVGVjbm9sb2dpY2Fz IFMuTAojCiMgVGhpcyBwcm9ncmFtIGlzIGZyZWUgc29mdHdhcmU7IHlvdSBjYW4gcmVkaXN0cmli dXRlIGl0IGFuZC9vcgojIG1vZGlmeSBpdCB1bmRlciB0aGUgdGVybXMgb2YgdGhlIEdOVSBHZW5l cmFsIFB1YmxpYyBMaWNlbnNlCiMgYXMgcHVibGlzaGVkIGJ5IHRoZSBGcmVlIFNvZnR3YXJlIEZv dW5kYXRpb247IHZlcnNpb24gMi4KIwojIFRoaXMgcHJvZ3JhbSBpcyBkaXN0cmlidXRlZCBpbiB0 aGUgaG9wZSB0aGF0IGl0IHdpbGwgYmUgdXNlZnVsLAojIGJ1dCBXSVRIT1VUIEFOWSBXQVJSQU5U WTsgd2l0aG91dCBldmVuIHRoZSBpbXBsaWVkIHdhcnJhbnR5IG9mCiMgTUVSQ0hBTlRBQklMSVRZ IG9yIEZJVE5FU1MgRk9SIEEgUEFSVElDVUxBUiBQVVJQT1NFLiAgU2VlIHRoZQojIEdOVSBHZW5l cmFsIFB1YmxpYyBMaWNlbnNlIGZvciBtb3JlIGRldGFpbHMuCiMgWW91IHNob3VsZCBoYXZlIHJl Y2VpdmVkIGEgY29weSBvZiB0aGUgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UKIyBhbG9uZyB3 aXRoIHRoaXMgcHJvZ3JhbTsgaWYgbm90LCB3cml0ZSB0byB0aGUgRnJlZSBTb2Z0d2FyZQojIEZv dW5kYXRpb24sIEluYy4sIDUxIEZyYW5rbGluIFN0cmVldCwgRmlmdGggRmxvb3IsIEJvc3Rvbiwg TUEgIDAyMTEwLTEzMDEsIFVTQS4KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKCnVzZSBzdHJpY3Q7CnVzZSB3 YXJuaW5nczsKCnVzZSBGaWxlOjpCYXNlbmFtZTsKdXNlIEhUTUw6OkVudGl0aWVzICgpOwoKIyBD aGVjayBmb3Igd21pYwpteSAkd21pX2NsaWVudCA9ICJ3bWljIjsKaWYgKHN5c3RlbSgiJHdtaV9j bGllbnQgPiAvZGV2L251bGwgMj4mMSIpICE9IDI1NikgewoJcHJpbnQgIltlcnJvcl0gJHdtaV9j bGllbnQgbm90IGZvdW5kLlxuIjsKCWV4aXQgMTsKfQoKaWYgKCQjQVJHViAhPSAyKSB7Cglwcmlu dCAiVXNhZ2U6ICQwIDx0YXJnZXQgaXA+IDx1c2VybmFtZT4gPHBhc3N3b3JkPlxuIjsKCWV4aXQg MTsKfQoKbXkgJHRhcmdldF9pcCA9ICRBUkdWWzBdOwpteSAkdXNlcm5hbWUgPSAkQVJHVlsxXTsK bXkgJHBhc3N3b3JkID0gJEFSR1ZbMl07CgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwojIFNVQiBydW5fcXVl cnkgKCR3cWxfcXVlcnkpCiMgUnVucyB0aGUgZ2l2ZW4gV1FMIHF1ZXJ5IGFuZCByZXR1cm5zIHRo ZSByZXN1bHQgYXMgYW4gYXJyYXkgb2YgaGFzaGVzLgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwpzdWIgcnVu X3F1ZXJ5IHsKCW15ICR3cWxfcXVlcnkgPSAkX1swXTsKCW15IEByZXN1bHQgPSB7fTsKCgkkd3Fs X3F1ZXJ5ID1+ICdzLyIvXCcvZyc7CgoJIyBSdW4gdGhlIERDT00vV01JIGNsaWVudAoJbXkgJG91 dHB1dCA9IGAkd21pX2NsaWVudCAtVSAnJHVzZXJuYW1lJyUnJHBhc3N3b3JkJyAvLyR0YXJnZXRf aXAgXCIkd3FsX3F1ZXJ5XCIgMj4vZGV2L251bGxgOwoKCW15IEBsaW5lcyA9IHNwbGl0KC9cbi8s ICRvdXRwdXQpOwoJIyBIZWFkZXIsIGRlc2NyaXB0aW9uLCByZXN1bHRzCglpZiAoJCNsaW5lcyA8 IDIpIHsKCQlleGl0IDE7Cgl9CgoJIyBEcm9wIHRoZSBoZWFkZXIKCXNoaWZ0IChAbGluZXMpOwoJ CgkjIEdldCBjb2x1bW4gbmFtZXMKCW15IEBjb2x1bW5fbmFtZXMgPSBzcGxpdCgvXHwvLCBzaGlm dCAoQGxpbmVzKSk7CgoJIyBHZXQgcm93IGRhdGEKCW15ICRpZHggPSAwOwoJZm9yIChteSAkaSA9 IDA7ICRpIDw9ICQjbGluZXM7ICRpKyspIHsKCgkJIyBDaGVjayBmb3IgZXJyb3JzCgkJaWYgKCRs aW5lc1skaV0gPX4gbS9eRVJST1IvKSB7CgkJCWV4aXQgMTsKCQl9CgoJCSMgQmxhY2sgbGlzdAoJ CWlmICgkbGluZXNbJGldID1+IG0vRmlsZSAxLykgewoJCQluZXh0OwoJCX0KCgkJbXkgQGNvbHVt biA9IHNwbGl0KC9cfC8sICRsaW5lc1skaV0pOwoJCWZvciAobXkgJGogPSAwOyAkaiA8PSAkI2Nv bHVtbl9uYW1lczsgJGorKykgewoJCQlpZiAoISBkZWZpbmVkKCRjb2x1bW5bJGpdKSkgewoJCQkJ JHJlc3VsdFskaWR4XS0+eyRjb2x1bW5fbmFtZXNbJGpdfSA9ICIiOwoJCQl9CgkJCWVsc2UgewoJ CQkJJHJlc3VsdFskaWR4XS0+eyRjb2x1bW5fbmFtZXNbJGpdfSA9ICRjb2x1bW5bJGpdOwoJCQl9 CgkJfQoJCQoJCSRpZHgrKzsKCX0KCQoJcmV0dXJuIEByZXN1bHQ7Cn0KCiMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjCiMgU1VCIHByaW50X21vZHVsZWRhdGEgKCRtb2R1bGVfaXRlbSwgJG1vZHVsZV9kYXRhLCAK IyAkbW9kdWxlX2Rlc2NyaXB0aW9uLCBAZGF0YSkKIyBQcmludHMgYSBtb2R1bGVkYXRhIFhNTCB0 YWcuICRtb2R1bGVfaXRlbSwgJG1vZHVsZV9kYXRhIGFuZAojICRtb2R1bGVfZGVzY3JpcHRpb24g YXJlIHVzZWQgdG8gaW5kZXggdGhlIGl0ZW0sIGRhdGEgYW5kIGRlc2NyaXB0aW9uCiMgWE1MIHRh Z3MgcmVzcGVjdGl2ZWx5LgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwpzdWIgcHJpbnRfbW9kdWxlZGF0YSB7 CglteSAkbW9kdWxlX2l0ZW0gPSAkX1swXTsKCW15ICRtb2R1bGVfZGF0YSA9ICRfWzFdOwoJbXkg JG1vZHVsZV9kZXNjcmlwdGlvbiA9ICRfWzJdOwoJbXkgQGRhdGEgPSBAeyRfWzNdfTsKCW15ICRy ZXN1bHQ7CgoJZm9yZWFjaCBteSAkZWxlbWVudCAoQGRhdGEpIHsKCQkKCQkkcmVzdWx0ID0gJyc7 CgoJCSMgSXRlbQoJCWlmIChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9pdGVtfSkpIHsKCQkJ JHJlc3VsdCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfaXRlbX0gLiAnOyc7CgkJfQoKCQkjIERhdGEK CQlpZiAoZGVmaW5lZCgkZWxlbWVudC0+eyRtb2R1bGVfZGF0YX0pKSB7CgkJCSRyZXN1bHQgLj0g JyAnIC4gc3ByaW50ZigiJS4xZiIsICRlbGVtZW50LT57JG1vZHVsZV9kYXRhfSAvIDEwNDg1NzYp IC4gIiBNQnl0ZXM7IjsKCQl9CgoJCSMgRGVzY3JpcHRpb24KCQlpZiAoZGVmaW5lZCgkZWxlbWVu dC0+eyRtb2R1bGVfZGVzY3JpcHRpb259KSkgewoJCQkkcmVzdWx0IC49ICRlbGVtZW50LT57JG1v ZHVsZV9kZXNjcmlwdGlvbn07CgkJfQoKCQlwcmludCAkcmVzdWx0IC4gIlxuIjsJCgl9Cn0KCiMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjCiMgTWFpbgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwoKbXkgQHJlc3VsdCA9IHJ1 bl9xdWVyeSgiU0VMRUNUIFRhZywgQ2FwYWNpdHksIE5hbWUgRlJPTSBXaW4zMl9QaHlzaWNhbE1l bW9yeSIpOwpwcmludF9tb2R1bGVkYXRhICgiVGFnIiwgIkNhcGFjaXR5IiwgIk5hbWUiLCBcQHJl c3VsdCk7CmV4aXQgMDsK'); -INSERT INTO "tmodule_inventory" VALUES (5,1,'Video','Video cards','','Controller;Model;Company',''); -INSERT INTO "tmodule_inventory" VALUES (6,9,'Video','Video cards','/usr/bin/perl','Caption;AdapterRAM;VideoProcessor','IyEvdXNyL2Jpbi9wZXJsCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgcGFuZG9yYV92aWRlby5wbAojIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIwojIENvcHlyaWdodCAoYykgMjAwOCBSYW1vbiBOb3ZvYSwgcm5vdm9hQGFy dGljYS5lcwojICAgICAgICAgICAoYykgMjAwOCBBcnRpY2EgU29sdWNpb25lcyBUZWNub2xvZ2lj YXMgUy5MCiMKIyBUaGlzIHByb2dyYW0gaXMgZnJlZSBzb2Z0d2FyZTsgeW91IGNhbiByZWRpc3Ry aWJ1dGUgaXQgYW5kL29yCiMgbW9kaWZ5IGl0IHVuZGVyIHRoZSB0ZXJtcyBvZiB0aGUgR05VIEdl bmVyYWwgUHVibGljIExpY2Vuc2UKIyBhcyBwdWJsaXNoZWQgYnkgdGhlIEZyZWUgU29mdHdhcmUg Rm91bmRhdGlvbjsgdmVyc2lvbiAyLgojCiMgVGhpcyBwcm9ncmFtIGlzIGRpc3RyaWJ1dGVkIGlu IHRoZSBob3BlIHRoYXQgaXQgd2lsbCBiZSB1c2VmdWwsCiMgYnV0IFdJVEhPVVQgQU5ZIFdBUlJB TlRZOyB3aXRob3V0IGV2ZW4gdGhlIGltcGxpZWQgd2FycmFudHkgb2YKIyBNRVJDSEFOVEFCSUxJ VFkgb3IgRklUTkVTUyBGT1IgQSBQQVJUSUNVTEFSIFBVUlBPU0UuICBTZWUgdGhlCiMgR05VIEdl bmVyYWwgUHVibGljIExpY2Vuc2UgZm9yIG1vcmUgZGV0YWlscy4KIyBZb3Ugc2hvdWxkIGhhdmUg cmVjZWl2ZWQgYSBjb3B5IG9mIHRoZSBHTlUgR2VuZXJhbCBQdWJsaWMgTGljZW5zZQojIGFsb25n IHdpdGggdGhpcyBwcm9ncmFtOyBpZiBub3QsIHdyaXRlIHRvIHRoZSBGcmVlIFNvZnR3YXJlCiMg Rm91bmRhdGlvbiwgSW5jLiwgNTEgRnJhbmtsaW4gU3RyZWV0LCBGaWZ0aCBGbG9vciwgQm9zdG9u LCBNQSAgMDIxMTAtMTMwMSwgVVNBLgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwoKdXNlIHN0cmljdDsKdXNl IHdhcm5pbmdzOwoKdXNlIEZpbGU6OkJhc2VuYW1lOwp1c2UgSFRNTDo6RW50aXRpZXMgKCk7Cgoj IENoZWNrIGZvciB3bWljCm15ICR3bWlfY2xpZW50ID0gIndtaWMiOwppZiAoc3lzdGVtKCIkd21p X2NsaWVudCA+IC9kZXYvbnVsbCAyPiYxIikgIT0gMjU2KSB7CglwcmludCAiW2Vycm9yXSAkd21p X2NsaWVudCBub3QgZm91bmQuXG4iOwoJZXhpdCAxOwp9CgppZiAoJCNBUkdWICE9IDIpIHsKCXBy aW50ICJVc2FnZTogJDAgPHRhcmdldCBpcD4gPHVzZXJuYW1lPiA8cGFzc3dvcmQ+XG4iOwoJZXhp dCAxOwp9CgpteSAkdGFyZ2V0X2lwID0gJEFSR1ZbMF07Cm15ICR1c2VybmFtZSA9ICRBUkdWWzFd OwpteSAkcGFzc3dvcmQgPSAkQVJHVlsyXTsKCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgU1VCIHJ1bl9x dWVyeSAoJHdxbF9xdWVyeSkKIyBSdW5zIHRoZSBnaXZlbiBXUUwgcXVlcnkgYW5kIHJldHVybnMg dGhlIHJlc3VsdCBhcyBhbiBhcnJheSBvZiBoYXNoZXMuCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1YiBy dW5fcXVlcnkgewoJbXkgJHdxbF9xdWVyeSA9ICRfWzBdOwoJbXkgQHJlc3VsdCA9IHt9OwoKCSR3 cWxfcXVlcnkgPX4gJ3MvIi9cJy9nJzsKCgkjIFJ1biB0aGUgRENPTS9XTUkgY2xpZW50CglteSAk b3V0cHV0ID0gYCR3bWlfY2xpZW50IC1VICckdXNlcm5hbWUnJSckcGFzc3dvcmQnIC8vJHRhcmdl dF9pcCBcIiR3cWxfcXVlcnlcIiAyPi9kZXYvbnVsbGA7CgoJbXkgQGxpbmVzID0gc3BsaXQoL1xu LywgJG91dHB1dCk7CgkjIEhlYWRlciwgZGVzY3JpcHRpb24sIHJlc3VsdHMKCWlmICgkI2xpbmVz IDwgMikgewoJCWV4aXQgMTsKCX0KCgkjIERyb3AgdGhlIGhlYWRlcgoJc2hpZnQgKEBsaW5lcyk7 CgkKCSMgR2V0IGNvbHVtbiBuYW1lcwoJbXkgQGNvbHVtbl9uYW1lcyA9IHNwbGl0KC9cfC8sIHNo aWZ0IChAbGluZXMpKTsKCgkjIEdldCByb3cgZGF0YQoJbXkgJGlkeCA9IDA7Cglmb3IgKG15ICRp ID0gMDsgJGkgPD0gJCNsaW5lczsgJGkrKykgewoKCQkjIENoZWNrIGZvciBlcnJvcnMKCQlpZiAo JGxpbmVzWyRpXSA9fiBtL15FUlJPUi8pIHsKCQkJZXhpdCAxOwoJCX0KCgkJIyBCbGFjayBsaXN0 CgkJaWYgKCRsaW5lc1skaV0gPX4gbS9GaWxlIDEvKSB7CgkJCW5leHQ7CgkJfQoKCQlteSBAY29s dW1uID0gc3BsaXQoL1x8LywgJGxpbmVzWyRpXSk7CgkJZm9yIChteSAkaiA9IDA7ICRqIDw9ICQj Y29sdW1uX25hbWVzOyAkaisrKSB7CgkJCWlmICghIGRlZmluZWQoJGNvbHVtblskal0pKSB7CgkJ CQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gIiI7CgkJCX0KCQkJZWxzZSB7 CgkJCQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gJGNvbHVtblskal07CgkJ CX0KCQl9CgkJCgkJJGlkeCsrOwoJfQoJCglyZXR1cm4gQHJlc3VsdDsKfQoKIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMKIyBTVUIgcHJpbnRfbW9kdWxlZGF0YSAoJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEs IAojICRtb2R1bGVfZGVzY3JpcHRpb24sIEBkYXRhKQojIFByaW50cyBhIG1vZHVsZWRhdGEgWE1M IHRhZy4gJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEgYW5kCiMgJG1vZHVsZV9kZXNjcmlwdGlv biBhcmUgdXNlZCB0byBpbmRleCB0aGUgaXRlbSwgZGF0YSBhbmQgZGVzY3JpcHRpb24KIyBYTUwg dGFncyByZXNwZWN0aXZlbHkuCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1YiBwcmludF9tb2R1bGVkYXRh IHsKCW15ICRtb2R1bGVfaXRlbSA9ICRfWzBdOwoJbXkgJG1vZHVsZV9kYXRhID0gJF9bMV07Cglt eSAkbW9kdWxlX2Rlc2NyaXB0aW9uID0gJF9bMl07CglteSBAZGF0YSA9IEB7JF9bM119OwoJbXkg JHJlc3VsdDsKCglmb3JlYWNoIG15ICRlbGVtZW50IChAZGF0YSkgewoJCQoJCSRyZXN1bHQgPSAn JzsKCgkJIyBJdGVtCgkJaWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2l0ZW19KSkgewoJ CQkkcmVzdWx0IC49ICRlbGVtZW50LT57JG1vZHVsZV9pdGVtfSAuICc7JzsKCQl9CgoJCSMgRGF0 YQoJCWlmIChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9kYXRhfSkpIHsKCQkJJHJlc3VsdCAu PSAnICcgLiBzcHJpbnRmKCIlLjFmIiwgJGVsZW1lbnQtPnskbW9kdWxlX2RhdGF9IC8gMTA0ODU3 NikgLiAiIE1CeXRlczsiOwoJCX0KCgkJIyBEZXNjcmlwdGlvbgoJCWlmIChkZWZpbmVkKCRlbGVt ZW50LT57JG1vZHVsZV9kZXNjcmlwdGlvbn0pKSB7CgkJCSRyZXN1bHQgLj0gJyAnIC4gJGVsZW1l bnQtPnskbW9kdWxlX2Rlc2NyaXB0aW9ufTsKCQl9CgoJCXByaW50ICRyZXN1bHQgLiAiXG4iOwkK CX0KfQoKIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKIyBNYWluCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCgpteSBAcmVz dWx0ID0gcnVuX3F1ZXJ5KCJTRUxFQ1QgQ2FwdGlvbiwgQWRhcHRlclJBTSwgVmlkZW9Qcm9jZXNz b3IgRlJPTSBXaW4zMl9WaWRlb0NvbnRyb2xsZXIiKTsKcHJpbnRfbW9kdWxlZGF0YSAoIkNhcHRp b24iLCAiQWRhcHRlclJBTSIsICJWaWRlb1Byb2Nlc3NvciIsIFxAcmVzdWx0KTsKZXhpdCAwOwo='); -INSERT INTO "tmodule_inventory" VALUES (7,1,'NIC','Network Interface Cards','','Device;Model;Company;MACAddress',''); -INSERT INTO "tmodule_inventory" VALUES (8,9,'NIC','Network Interface Cards','/usr/bin/perl','Caption;MACAddress;IPAddress','IyEvdXNyL2Jpbi9wZXJsCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgcGFuZG9yYV9uaWMucGwKIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMKIyBDb3B5cmlnaHQgKGMpIDIwMDggUmFtb24gTm92b2EsIHJub3ZvYUBhcnRp Y2EuZXMKIyAgICAgICAgICAgKGMpIDIwMDggQXJ0aWNhIFNvbHVjaW9uZXMgVGVjbm9sb2dpY2Fz IFMuTAojCiMgVGhpcyBwcm9ncmFtIGlzIGZyZWUgc29mdHdhcmU7IHlvdSBjYW4gcmVkaXN0cmli dXRlIGl0IGFuZC9vcgojIG1vZGlmeSBpdCB1bmRlciB0aGUgdGVybXMgb2YgdGhlIEdOVSBHZW5l cmFsIFB1YmxpYyBMaWNlbnNlCiMgYXMgcHVibGlzaGVkIGJ5IHRoZSBGcmVlIFNvZnR3YXJlIEZv dW5kYXRpb247IHZlcnNpb24gMi4KIwojIFRoaXMgcHJvZ3JhbSBpcyBkaXN0cmlidXRlZCBpbiB0 aGUgaG9wZSB0aGF0IGl0IHdpbGwgYmUgdXNlZnVsLAojIGJ1dCBXSVRIT1VUIEFOWSBXQVJSQU5U WTsgd2l0aG91dCBldmVuIHRoZSBpbXBsaWVkIHdhcnJhbnR5IG9mCiMgTUVSQ0hBTlRBQklMSVRZ IG9yIEZJVE5FU1MgRk9SIEEgUEFSVElDVUxBUiBQVVJQT1NFLiAgU2VlIHRoZQojIEdOVSBHZW5l cmFsIFB1YmxpYyBMaWNlbnNlIGZvciBtb3JlIGRldGFpbHMuCiMgWW91IHNob3VsZCBoYXZlIHJl Y2VpdmVkIGEgY29weSBvZiB0aGUgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UKIyBhbG9uZyB3 aXRoIHRoaXMgcHJvZ3JhbTsgaWYgbm90LCB3cml0ZSB0byB0aGUgRnJlZSBTb2Z0d2FyZQojIEZv dW5kYXRpb24sIEluYy4sIDUxIEZyYW5rbGluIFN0cmVldCwgRmlmdGggRmxvb3IsIEJvc3Rvbiwg TUEgIDAyMTEwLTEzMDEsIFVTQS4KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKCnVzZSBzdHJpY3Q7CnVzZSB3 YXJuaW5nczsKCnVzZSBGaWxlOjpCYXNlbmFtZTsKdXNlIEhUTUw6OkVudGl0aWVzICgpOwoKIyBD aGVjayBmb3Igd21pYwpteSAkd21pX2NsaWVudCA9ICJ3bWljIjsKaWYgKHN5c3RlbSgiJHdtaV9j bGllbnQgPiAvZGV2L251bGwgMj4mMSIpICE9IDI1NikgewoJcHJpbnQgIltlcnJvcl0gJHdtaV9j bGllbnQgbm90IGZvdW5kLlxuIjsKCWV4aXQgMTsKfQoKaWYgKCQjQVJHViAhPSAyKSB7Cglwcmlu dCAiVXNhZ2U6ICQwIDx0YXJnZXQgaXA+IDx1c2VybmFtZT4gPHBhc3N3b3JkPlxuIjsKCWV4aXQg MTsKfQoKbXkgJHRhcmdldF9pcCA9ICRBUkdWWzBdOwpteSAkdXNlcm5hbWUgPSAkQVJHVlsxXTsK bXkgJHBhc3N3b3JkID0gJEFSR1ZbMl07CgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwojIFNVQiBydW5fcXVl cnkgKCR3cWxfcXVlcnkpCiMgUnVucyB0aGUgZ2l2ZW4gV1FMIHF1ZXJ5IGFuZCByZXR1cm5zIHRo ZSByZXN1bHQgYXMgYW4gYXJyYXkgb2YgaGFzaGVzLgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwpzdWIgcnVu X3F1ZXJ5IHsKCW15ICR3cWxfcXVlcnkgPSAkX1swXTsKCW15IEByZXN1bHQgPSB7fTsKCgkkd3Fs X3F1ZXJ5ID1+ICdzLyIvXCcvZyc7CgoJIyBSdW4gdGhlIERDT00vV01JIGNsaWVudAoJbXkgJG91 dHB1dCA9IGAkd21pX2NsaWVudCAtVSAnJHVzZXJuYW1lJyUnJHBhc3N3b3JkJyAvLyR0YXJnZXRf aXAgXCIkd3FsX3F1ZXJ5XCIgMj4vZGV2L251bGxgOwoKCW15IEBsaW5lcyA9IHNwbGl0KC9cbi8s ICRvdXRwdXQpOwoJIyBIZWFkZXIsIGRlc2NyaXB0aW9uLCByZXN1bHRzCglpZiAoJCNsaW5lcyA8 IDIpIHsKCQlleGl0IDE7Cgl9CgoJIyBEcm9wIHRoZSBoZWFkZXIKCXNoaWZ0IChAbGluZXMpOwoJ CgkjIEdldCBjb2x1bW4gbmFtZXMKCW15IEBjb2x1bW5fbmFtZXMgPSBzcGxpdCgvXHwvLCBzaGlm dCAoQGxpbmVzKSk7CgoJIyBHZXQgcm93IGRhdGEKCW15ICRpZHggPSAwOwoJZm9yIChteSAkaSA9 IDA7ICRpIDw9ICQjbGluZXM7ICRpKyspIHsKCgkJIyBDaGVjayBmb3IgZXJyb3JzCgkJaWYgKCRs aW5lc1skaV0gPX4gbS9eRVJST1IvKSB7CgkJCWV4aXQgMTsKCQl9CgoJCSMgQmxhY2sgbGlzdAoJ CWlmICgkbGluZXNbJGldID1+IG0vRmlsZSAxLykgewoJCQluZXh0OwoJCX0KCgkJbXkgQGNvbHVt biA9IHNwbGl0KC9cfC8sICRsaW5lc1skaV0pOwoJCWZvciAobXkgJGogPSAwOyAkaiA8PSAkI2Nv bHVtbl9uYW1lczsgJGorKykgewoJCQlpZiAoISBkZWZpbmVkKCRjb2x1bW5bJGpdKSkgewoJCQkJ JHJlc3VsdFskaWR4XS0+eyRjb2x1bW5fbmFtZXNbJGpdfSA9ICIiOwoJCQl9CgkJCWVsc2UgewoJ CQkJJHJlc3VsdFskaWR4XS0+eyRjb2x1bW5fbmFtZXNbJGpdfSA9ICRjb2x1bW5bJGpdOwoJCQl9 CgkJfQoJCQoJCSRpZHgrKzsKCX0KCQoJcmV0dXJuIEByZXN1bHQ7Cn0KCiMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjCiMgU1VCIHByaW50X21vZHVsZWRhdGEgKCRtb2R1bGVfaXRlbSwgJG1vZHVsZV9kYXRhLCAK IyAkbW9kdWxlX2Rlc2NyaXB0aW9uLCBAZGF0YSkKIyBQcmludHMgYSBtb2R1bGVkYXRhIFhNTCB0 YWcuICRtb2R1bGVfaXRlbSwgJG1vZHVsZV9kYXRhIGFuZAojICRtb2R1bGVfZGVzY3JpcHRpb24g YXJlIHVzZWQgdG8gaW5kZXggdGhlIGl0ZW0sIGRhdGEgYW5kIGRlc2NyaXB0aW9uCiMgWE1MIHRh Z3MgcmVzcGVjdGl2ZWx5LgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwpzdWIgcHJpbnRfbW9kdWxlZGF0YSB7 CglteSAkbW9kdWxlX2l0ZW0gPSAkX1swXTsKCW15ICRtb2R1bGVfZGF0YSA9ICRfWzFdOwoJbXkg JG1vZHVsZV9kZXNjcmlwdGlvbiA9ICRfWzJdOwoJbXkgQGRhdGEgPSBAeyRfWzNdfTsKCW15ICRy ZXN1bHQ7CgoJZm9yZWFjaCBteSAkZWxlbWVudCAoQGRhdGEpIHsKCQkKCQkkcmVzdWx0ID0gJyc7 CgoJCSMgSXRlbQoJCWlmIChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9pdGVtfSkpIHsKCQkJ JHJlc3VsdCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfaXRlbX0gLiAnOyc7CgkJfQoKCQkjIERhdGEK CQlpZiAoZGVmaW5lZCgkZWxlbWVudC0+eyRtb2R1bGVfZGF0YX0pKSB7CgkJCSRyZXN1bHQgLj0g JGVsZW1lbnQtPnskbW9kdWxlX2RhdGF9IC4gJzsnOwoJCX0KCgkJIyBEZXNjcmlwdGlvbgoJCWlm IChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9kZXNjcmlwdGlvbn0pKSB7CgkJCSRyZXN1bHQg Lj0gJGVsZW1lbnQtPnskbW9kdWxlX2Rlc2NyaXB0aW9ufTsKCQl9CgoJCXByaW50ICRyZXN1bHQg LiAiXG4iOwkKCX0KfQoKIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKIyBNYWluCiMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj CgpteSBAcmVzdWx0ID0gcnVuX3F1ZXJ5KCJTRUxFQ1QgQ2FwdGlvbiwgTUFDQWRkcmVzcywgSVBB ZGRyZXNzIEZST00gV2luMzJfTmV0d29ya0FkYXB0ZXJDb25maWd1cmF0aW9uIik7CnByaW50X21v ZHVsZWRhdGEgKCJDYXB0aW9uIiwgIk1BQ0FkZHJlc3MiLCAiSVBBZGRyZXNzIiwgXEByZXN1bHQp OwpleGl0IDA7Cg=='); -INSERT INTO "tmodule_inventory" VALUES (9,1,'HD','Hard drives','','Type;Model;Size',''); -INSERT INTO "tmodule_inventory" VALUES (10,9,'HD','Hard drives','/usr/bin/perl','Model;Size;SystemName','IyEvdXNyL2Jpbi9wZXJsCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgcGFuZG9yYV9oZC5wbAojIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIwojIENvcHlyaWdodCAoYykgMjAwOCBSYW1vbiBOb3ZvYSwgcm5vdm9hQGFydGlj YS5lcwojICAgICAgICAgICAoYykgMjAwOCBBcnRpY2EgU29sdWNpb25lcyBUZWNub2xvZ2ljYXMg Uy5MCiMKIyBUaGlzIHByb2dyYW0gaXMgZnJlZSBzb2Z0d2FyZTsgeW91IGNhbiByZWRpc3RyaWJ1 dGUgaXQgYW5kL29yCiMgbW9kaWZ5IGl0IHVuZGVyIHRoZSB0ZXJtcyBvZiB0aGUgR05VIEdlbmVy YWwgUHVibGljIExpY2Vuc2UKIyBhcyBwdWJsaXNoZWQgYnkgdGhlIEZyZWUgU29mdHdhcmUgRm91 bmRhdGlvbjsgdmVyc2lvbiAyLgojCiMgVGhpcyBwcm9ncmFtIGlzIGRpc3RyaWJ1dGVkIGluIHRo ZSBob3BlIHRoYXQgaXQgd2lsbCBiZSB1c2VmdWwsCiMgYnV0IFdJVEhPVVQgQU5ZIFdBUlJBTlRZ OyB3aXRob3V0IGV2ZW4gdGhlIGltcGxpZWQgd2FycmFudHkgb2YKIyBNRVJDSEFOVEFCSUxJVFkg b3IgRklUTkVTUyBGT1IgQSBQQVJUSUNVTEFSIFBVUlBPU0UuICBTZWUgdGhlCiMgR05VIEdlbmVy YWwgUHVibGljIExpY2Vuc2UgZm9yIG1vcmUgZGV0YWlscy4KIyBZb3Ugc2hvdWxkIGhhdmUgcmVj ZWl2ZWQgYSBjb3B5IG9mIHRoZSBHTlUgR2VuZXJhbCBQdWJsaWMgTGljZW5zZQojIGFsb25nIHdp dGggdGhpcyBwcm9ncmFtOyBpZiBub3QsIHdyaXRlIHRvIHRoZSBGcmVlIFNvZnR3YXJlCiMgRm91 bmRhdGlvbiwgSW5jLiwgNTEgRnJhbmtsaW4gU3RyZWV0LCBGaWZ0aCBGbG9vciwgQm9zdG9uLCBN QSAgMDIxMTAtMTMwMSwgVVNBLgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwoKdXNlIHN0cmljdDsKdXNlIHdh cm5pbmdzOwoKdXNlIEZpbGU6OkJhc2VuYW1lOwp1c2UgSFRNTDo6RW50aXRpZXMgKCk7CgojIENo ZWNrIGZvciB3bWljCm15ICR3bWlfY2xpZW50ID0gIndtaWMiOwppZiAoc3lzdGVtKCIkd21pX2Ns aWVudCA+IC9kZXYvbnVsbCAyPiYxIikgIT0gMjU2KSB7CglwcmludCAiW2Vycm9yXSAkd21pX2Ns aWVudCBub3QgZm91bmQuXG4iOwoJZXhpdCAxOwp9CgppZiAoJCNBUkdWICE9IDIpIHsKCXByaW50 ICJVc2FnZTogJDAgPHRhcmdldCBpcD4gPHVzZXJuYW1lPiA8cGFzc3dvcmQ+XG4iOwoJZXhpdCAx Owp9CgpteSAkdGFyZ2V0X2lwID0gJEFSR1ZbMF07Cm15ICR1c2VybmFtZSA9ICRBUkdWWzFdOwpt eSAkcGFzc3dvcmQgPSAkQVJHVlsyXTsKCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgU1VCIHJ1bl9xdWVy eSAoJHdxbF9xdWVyeSkKIyBSdW5zIHRoZSBnaXZlbiBXUUwgcXVlcnkgYW5kIHJldHVybnMgdGhl IHJlc3VsdCBhcyBhbiBhcnJheSBvZiBoYXNoZXMuCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1YiBydW5f cXVlcnkgewoJbXkgJHdxbF9xdWVyeSA9ICRfWzBdOwoJbXkgQHJlc3VsdCA9IHt9OwoKCSR3cWxf cXVlcnkgPX4gJ3MvIi9cJy9nJzsKCgkjIFJ1biB0aGUgRENPTS9XTUkgY2xpZW50CglteSAkb3V0 cHV0ID0gYCR3bWlfY2xpZW50IC1VICckdXNlcm5hbWUnJSckcGFzc3dvcmQnIC8vJHRhcmdldF9p cCBcIiR3cWxfcXVlcnlcIiAyPi9kZXYvbnVsbGA7CgoJbXkgQGxpbmVzID0gc3BsaXQoL1xuLywg JG91dHB1dCk7CgkjIEhlYWRlciwgZGVzY3JpcHRpb24sIHJlc3VsdHMKCWlmICgkI2xpbmVzIDwg MikgewoJCWV4aXQgMTsKCX0KCgkjIERyb3AgdGhlIGhlYWRlcgoJc2hpZnQgKEBsaW5lcyk7CgkK CSMgR2V0IGNvbHVtbiBuYW1lcwoJbXkgQGNvbHVtbl9uYW1lcyA9IHNwbGl0KC9cfC8sIHNoaWZ0 IChAbGluZXMpKTsKCgkjIEdldCByb3cgZGF0YQoJbXkgJGlkeCA9IDA7Cglmb3IgKG15ICRpID0g MDsgJGkgPD0gJCNsaW5lczsgJGkrKykgewoKCQkjIENoZWNrIGZvciBlcnJvcnMKCQlpZiAoJGxp bmVzWyRpXSA9fiBtL15FUlJPUi8pIHsKCQkJZXhpdCAxOwoJCX0KCgkJIyBCbGFjayBsaXN0CgkJ aWYgKCRsaW5lc1skaV0gPX4gbS9GaWxlIDEvKSB7CgkJCW5leHQ7CgkJfQoKCQlteSBAY29sdW1u ID0gc3BsaXQoL1x8LywgJGxpbmVzWyRpXSk7CgkJZm9yIChteSAkaiA9IDA7ICRqIDw9ICQjY29s dW1uX25hbWVzOyAkaisrKSB7CgkJCWlmICghIGRlZmluZWQoJGNvbHVtblskal0pKSB7CgkJCQkk cmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gIiI7CgkJCX0KCQkJZWxzZSB7CgkJ CQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gJGNvbHVtblskal07CgkJCX0K CQl9CgkJCgkJJGlkeCsrOwoJfQoJCglyZXR1cm4gQHJlc3VsdDsKfQoKIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMKIyBTVUIgcHJpbnRfbW9kdWxlZGF0YSAoJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEsIAoj ICRtb2R1bGVfZGVzY3JpcHRpb24sIEBkYXRhKQojIFByaW50cyBhIG1vZHVsZWRhdGEgWE1MIHRh Zy4gJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEgYW5kCiMgJG1vZHVsZV9kZXNjcmlwdGlvbiBh cmUgdXNlZCB0byBpbmRleCB0aGUgaXRlbSwgZGF0YSBhbmQgZGVzY3JpcHRpb24KIyBYTUwgdGFn cyByZXNwZWN0aXZlbHkuCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1YiBwcmludF9tb2R1bGVkYXRhIHsK CW15ICRtb2R1bGVfaXRlbSA9ICRfWzBdOwoJbXkgJG1vZHVsZV9kYXRhID0gJF9bMV07CglteSAk bW9kdWxlX2Rlc2NyaXB0aW9uID0gJF9bMl07CglteSBAZGF0YSA9IEB7JF9bM119OwoJbXkgJHJl c3VsdDsKCglmb3JlYWNoIG15ICRlbGVtZW50IChAZGF0YSkgewoJCQoJCSRyZXN1bHQgPSAnJzsK CgkJIyBJdGVtCgkJaWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2l0ZW19KSkgewoJCQkk cmVzdWx0IC49ICRlbGVtZW50LT57JG1vZHVsZV9pdGVtfSAuICc7JzsKCQl9CgoJCSMgRGF0YQoJ CWlmIChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9kYXRhfSkpIHsKCQkJJHJlc3VsdCAuPSAn ICcgLiBzcHJpbnRmKCIlLjFmIiwgJGVsZW1lbnQtPnskbW9kdWxlX2RhdGF9IC8gMTA3Mzc0MTgy NCkgLiAiIEdCeXRlczsiOwoJCX0KCgkJIyBEZXNjcmlwdGlvbgoJCWlmIChkZWZpbmVkKCRlbGVt ZW50LT57JG1vZHVsZV9kZXNjcmlwdGlvbn0pKSB7CgkJCSRyZXN1bHQgLj0gJyAoJyAuICRlbGVt ZW50LT57JG1vZHVsZV9kZXNjcmlwdGlvbn0gLiAiKSI7CgkJfQoKCQlwcmludCAkcmVzdWx0IC4g IlxuIjsJCgl9Cn0KCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgTWFpbgojIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwoK bXkgQHJlc3VsdCA9IHJ1bl9xdWVyeSgiU0VMRUNUIE1vZGVsLCBTaXplLCBTeXN0ZW1OYW1lIEZS T00gV2luMzJfRGlza0RyaXZlIik7CnByaW50X21vZHVsZWRhdGEgKCJNb2RlbCIsICJTaXplIiwg IlN5c3RlbU5hbWUiLCBcQHJlc3VsdCk7CQpleGl0IDA7Cg=='); -INSERT INTO "tmodule_inventory" VALUES (11,1,'CDROM','CD-ROM drives','','Type;Model;Features',''); -INSERT INTO "tmodule_inventory" VALUES (12,9,'CDROM','CD-ROM drives','/usr/bin/perl','Name;Description;Drive','IyEvdXNyL2Jpbi9wZXJsCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgcGFuZG9yYV9jZHJvbS5wbAojIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIwojIENvcHlyaWdodCAoYykgMjAwOCBSYW1vbiBOb3ZvYSwgcm5vdm9hQGFy dGljYS5lcwojICAgICAgICAgICAoYykgMjAwOCBBcnRpY2EgU29sdWNpb25lcyBUZWNub2xvZ2lj YXMgUy5MCiMKIyBUaGlzIHByb2dyYW0gaXMgZnJlZSBzb2Z0d2FyZTsgeW91IGNhbiByZWRpc3Ry aWJ1dGUgaXQgYW5kL29yCiMgbW9kaWZ5IGl0IHVuZGVyIHRoZSB0ZXJtcyBvZiB0aGUgR05VIEdl bmVyYWwgUHVibGljIExpY2Vuc2UKIyBhcyBwdWJsaXNoZWQgYnkgdGhlIEZyZWUgU29mdHdhcmUg Rm91bmRhdGlvbjsgdmVyc2lvbiAyLgojCiMgVGhpcyBwcm9ncmFtIGlzIGRpc3RyaWJ1dGVkIGlu IHRoZSBob3BlIHRoYXQgaXQgd2lsbCBiZSB1c2VmdWwsCiMgYnV0IFdJVEhPVVQgQU5ZIFdBUlJB TlRZOyB3aXRob3V0IGV2ZW4gdGhlIGltcGxpZWQgd2FycmFudHkgb2YKIyBNRVJDSEFOVEFCSUxJ VFkgb3IgRklUTkVTUyBGT1IgQSBQQVJUSUNVTEFSIFBVUlBPU0UuICBTZWUgdGhlCiMgR05VIEdl bmVyYWwgUHVibGljIExpY2Vuc2UgZm9yIG1vcmUgZGV0YWlscy4KIyBZb3Ugc2hvdWxkIGhhdmUg cmVjZWl2ZWQgYSBjb3B5IG9mIHRoZSBHTlUgR2VuZXJhbCBQdWJsaWMgTGljZW5zZQojIGFsb25n IHdpdGggdGhpcyBwcm9ncmFtOyBpZiBub3QsIHdyaXRlIHRvIHRoZSBGcmVlIFNvZnR3YXJlCiMg Rm91bmRhdGlvbiwgSW5jLiwgNTEgRnJhbmtsaW4gU3RyZWV0LCBGaWZ0aCBGbG9vciwgQm9zdG9u LCBNQSAgMDIxMTAtMTMwMSwgVVNBLgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwoKdXNlIHN0cmljdDsKdXNl IHdhcm5pbmdzOwoKdXNlIEZpbGU6OkJhc2VuYW1lOwp1c2UgSFRNTDo6RW50aXRpZXMgKCk7Cgoj IENoZWNrIGZvciB3bWljCm15ICR3bWlfY2xpZW50ID0gIndtaWMiOwppZiAoc3lzdGVtKCIkd21p X2NsaWVudCA+IC9kZXYvbnVsbCAyPiYxIikgIT0gMjU2KSB7CglwcmludCAiW2Vycm9yXSAkd21p X2NsaWVudCBub3QgZm91bmQuXG4iOwoJZXhpdCAxOwp9CgppZiAoJCNBUkdWICE9IDIpIHsKCXBy aW50ICJVc2FnZTogJDAgPHRhcmdldCBpcD4gPHVzZXJuYW1lPiA8cGFzc3dvcmQ+XG4iOwoJZXhp dCAxOwp9CgpteSAkdGFyZ2V0X2lwID0gJEFSR1ZbMF07Cm15ICR1c2VybmFtZSA9ICRBUkdWWzFd OwpteSAkcGFzc3dvcmQgPSAkQVJHVlsyXTsKCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgU1VCIHJ1bl9x dWVyeSAoJHdxbF9xdWVyeSkKIyBSdW5zIHRoZSBnaXZlbiBXUUwgcXVlcnkgYW5kIHJldHVybnMg dGhlIHJlc3VsdCBhcyBhbiBhcnJheSBvZiBoYXNoZXMuCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1YiBy dW5fcXVlcnkgewoJbXkgJHdxbF9xdWVyeSA9ICRfWzBdOwoJbXkgQHJlc3VsdCA9IHt9OwoKCSR3 cWxfcXVlcnkgPX4gJ3MvIi9cJy9nJzsKCgkjIFJ1biB0aGUgRENPTS9XTUkgY2xpZW50CglteSAk b3V0cHV0ID0gYCR3bWlfY2xpZW50IC1VICckdXNlcm5hbWUnJSckcGFzc3dvcmQnIC8vJHRhcmdl dF9pcCBcIiR3cWxfcXVlcnlcIiAyPi9kZXYvbnVsbGA7CgoJbXkgQGxpbmVzID0gc3BsaXQoL1xu LywgJG91dHB1dCk7CgkjIEhlYWRlciwgZGVzY3JpcHRpb24sIHJlc3VsdHMKCWlmICgkI2xpbmVz IDwgMikgewoJCWV4aXQgMTsKCX0KCgkjIERyb3AgdGhlIGhlYWRlcgoJc2hpZnQgKEBsaW5lcyk7 CgkKCSMgR2V0IGNvbHVtbiBuYW1lcwoJbXkgQGNvbHVtbl9uYW1lcyA9IHNwbGl0KC9cfC8sIHNo aWZ0IChAbGluZXMpKTsKCgkjIEdldCByb3cgZGF0YQoJbXkgJGlkeCA9IDA7Cglmb3IgKG15ICRp ID0gMDsgJGkgPD0gJCNsaW5lczsgJGkrKykgewoKCQkjIENoZWNrIGZvciBlcnJvcnMKCQlpZiAo JGxpbmVzWyRpXSA9fiBtL15FUlJPUi8pIHsKCQkJZXhpdCAxOwoJCX0KCgkJIyBCbGFjayBsaXN0 CgkJaWYgKCRsaW5lc1skaV0gPX4gbS9GaWxlIDEvKSB7CgkJCW5leHQ7CgkJfQoKCQlteSBAY29s dW1uID0gc3BsaXQoL1x8LywgJGxpbmVzWyRpXSk7CgkJZm9yIChteSAkaiA9IDA7ICRqIDw9ICQj Y29sdW1uX25hbWVzOyAkaisrKSB7CgkJCWlmICghIGRlZmluZWQoJGNvbHVtblskal0pKSB7CgkJ CQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gIiI7CgkJCX0KCQkJZWxzZSB7 CgkJCQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gJGNvbHVtblskal07CgkJ CX0KCQl9CgkJCgkJJGlkeCsrOwoJfQoJCglyZXR1cm4gQHJlc3VsdDsKfQoKIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMKIyBTVUIgcHJpbnRfbW9kdWxlZGF0YSAoJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEs IAojICRtb2R1bGVfZGVzY3JpcHRpb24sIEBkYXRhKQojIFByaW50cyBhIG1vZHVsZWRhdGEgWE1M IHRhZy4gJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEgYW5kCiMgJG1vZHVsZV9kZXNjcmlwdGlv biBhcmUgdXNlZCB0byBpbmRleCB0aGUgaXRlbSwgZGF0YSBhbmQgZGVzY3JpcHRpb24KIyBYTUwg dGFncyByZXNwZWN0aXZlbHkuCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1YiBwcmludF9tb2R1bGVkYXRh IHsKCW15ICRtb2R1bGVfaXRlbSA9ICRfWzBdOwoJbXkgJG1vZHVsZV9kYXRhID0gJF9bMV07Cglt eSAkbW9kdWxlX2Rlc2NyaXB0aW9uID0gJF9bMl07CglteSBAZGF0YSA9IEB7JF9bM119OwoJbXkg JHJlc3VsdDsKCglmb3JlYWNoIG15ICRlbGVtZW50IChAZGF0YSkgewoJCQoJCSRyZXN1bHQgPSAn JzsKCgkJIyBJdGVtCgkJaWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2l0ZW19KSkgewoJ CQkkcmVzdWx0IC49ICRlbGVtZW50LT57JG1vZHVsZV9pdGVtfSAuICc7JzsKCQl9CgoJCSMgRGF0 YQoJCWlmIChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9kYXRhfSkpIHsKCQkJJHJlc3VsdCAu PSAkZWxlbWVudC0+eyRtb2R1bGVfZGF0YX0gLiAnOyc7CgkJfQoKCQkjIERlc2NyaXB0aW9uCgkJ aWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2Rlc2NyaXB0aW9ufSkpIHsKCQkJJHJlc3Vs dCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfZGVzY3JpcHRpb259OwoJCX0KCgkJcHJpbnQgJHJlc3Vs dCAuICJcbiI7CQoJfQp9CgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwojIE1haW4KIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMKCm15IEByZXN1bHQgPSBydW5fcXVlcnkoIlNFTEVDVCBOYW1lLCBEZXNjcmlwdGlvbiwgRHJp dmUgRlJPTSBXaW4zMl9DRFJPTURyaXZlIik7CnByaW50X21vZHVsZWRhdGEgKCJOYW1lIiwgIkRl c2NyaXB0aW9uIiwgIkRyaXZlIiwgXEByZXN1bHQpOwpleGl0IDA7Cg=='); -INSERT INTO "tmodule_inventory" VALUES (13,1,'Software','Installed software packages','','Name;Version;Description',''); -INSERT INTO "tmodule_inventory" VALUES (14,9,'Software','Installed software packages','/usr/bin/perl','Name;Version','IyEvdXNyL2Jpbi9wZXJsCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgcGFuZG9yYV9zb2Z0d2FyZS5wbAoj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIwojIENvcHlyaWdodCAoYykgMjAwOCBSYW1vbiBOb3ZvYSwgcm5vdm9h QGFydGljYS5lcwojICAgICAgICAgICAoYykgMjAwOCBBcnRpY2EgU29sdWNpb25lcyBUZWNub2xv Z2ljYXMgUy5MCiMKIyBUaGlzIHByb2dyYW0gaXMgZnJlZSBzb2Z0d2FyZTsgeW91IGNhbiByZWRp c3RyaWJ1dGUgaXQgYW5kL29yCiMgbW9kaWZ5IGl0IHVuZGVyIHRoZSB0ZXJtcyBvZiB0aGUgR05V IEdlbmVyYWwgUHVibGljIExpY2Vuc2UKIyBhcyBwdWJsaXNoZWQgYnkgdGhlIEZyZWUgU29mdHdh cmUgRm91bmRhdGlvbjsgdmVyc2lvbiAyLgojCiMgVGhpcyBwcm9ncmFtIGlzIGRpc3RyaWJ1dGVk IGluIHRoZSBob3BlIHRoYXQgaXQgd2lsbCBiZSB1c2VmdWwsCiMgYnV0IFdJVEhPVVQgQU5ZIFdB UlJBTlRZOyB3aXRob3V0IGV2ZW4gdGhlIGltcGxpZWQgd2FycmFudHkgb2YKIyBNRVJDSEFOVEFC SUxJVFkgb3IgRklUTkVTUyBGT1IgQSBQQVJUSUNVTEFSIFBVUlBPU0UuICBTZWUgdGhlCiMgR05V IEdlbmVyYWwgUHVibGljIExpY2Vuc2UgZm9yIG1vcmUgZGV0YWlscy4KIyBZb3Ugc2hvdWxkIGhh dmUgcmVjZWl2ZWQgYSBjb3B5IG9mIHRoZSBHTlUgR2VuZXJhbCBQdWJsaWMgTGljZW5zZQojIGFs b25nIHdpdGggdGhpcyBwcm9ncmFtOyBpZiBub3QsIHdyaXRlIHRvIHRoZSBGcmVlIFNvZnR3YXJl CiMgRm91bmRhdGlvbiwgSW5jLiwgNTEgRnJhbmtsaW4gU3RyZWV0LCBGaWZ0aCBGbG9vciwgQm9z dG9uLCBNQSAgMDIxMTAtMTMwMSwgVVNBLgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwoKdXNlIHN0cmljdDsK dXNlIHdhcm5pbmdzOwoKdXNlIEZpbGU6OkJhc2VuYW1lOwp1c2UgSFRNTDo6RW50aXRpZXMgKCk7 CgojIENoZWNrIGZvciB3bWljCm15ICR3bWlfY2xpZW50ID0gIndtaWMiOwppZiAoc3lzdGVtKCIk d21pX2NsaWVudCA+IC9kZXYvbnVsbCAyPiYxIikgIT0gMjU2KSB7CglwcmludCAiW2Vycm9yXSAk d21pX2NsaWVudCBub3QgZm91bmQuXG4iOwoJZXhpdCAxOwp9CgppZiAoJCNBUkdWICE9IDIpIHsK CXByaW50ICJVc2FnZTogJDAgPHRhcmdldCBpcD4gPHVzZXJuYW1lPiA8cGFzc3dvcmQ+XG4iOwoJ ZXhpdCAxOwp9CgpteSAkdGFyZ2V0X2lwID0gJEFSR1ZbMF07Cm15ICR1c2VybmFtZSA9ICRBUkdW WzFdOwpteSAkcGFzc3dvcmQgPSAkQVJHVlsyXTsKCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgU1VCIHJ1 bl9xdWVyeSAoJHdxbF9xdWVyeSkKIyBSdW5zIHRoZSBnaXZlbiBXUUwgcXVlcnkgYW5kIHJldHVy bnMgdGhlIHJlc3VsdCBhcyBhbiBhcnJheSBvZiBoYXNoZXMuCiMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1 YiBydW5fcXVlcnkgewoJbXkgJHdxbF9xdWVyeSA9ICRfWzBdOwoJbXkgQHJlc3VsdCA9IHt9OwoK CSR3cWxfcXVlcnkgPX4gJ3MvIi9cJy9nJzsKCgkjIFJ1biB0aGUgRENPTS9XTUkgY2xpZW50Cglt eSAkb3V0cHV0ID0gYCR3bWlfY2xpZW50IC1VICckdXNlcm5hbWUnJSckcGFzc3dvcmQnIC8vJHRh cmdldF9pcCBcIiR3cWxfcXVlcnlcIiAyPi9kZXYvbnVsbGA7CgoJbXkgQGxpbmVzID0gc3BsaXQo L1xuLywgJG91dHB1dCk7CgkjIEhlYWRlciwgZGVzY3JpcHRpb24sIHJlc3VsdHMKCWlmICgkI2xp bmVzIDwgMikgewoJCWV4aXQgMTsKCX0KCgkjIERyb3AgdGhlIGhlYWRlcgoJc2hpZnQgKEBsaW5l cyk7CgkKCSMgR2V0IGNvbHVtbiBuYW1lcwoJbXkgQGNvbHVtbl9uYW1lcyA9IHNwbGl0KC9cfC8s IHNoaWZ0IChAbGluZXMpKTsKCgkjIEdldCByb3cgZGF0YQoJbXkgJGlkeCA9IDA7Cglmb3IgKG15 ICRpID0gMDsgJGkgPD0gJCNsaW5lczsgJGkrKykgewoKCQkjIENoZWNrIGZvciBlcnJvcnMKCQlp ZiAoJGxpbmVzWyRpXSA9fiBtL15FUlJPUi8pIHsKCQkJZXhpdCAxOwoJCX0KCgkJIyBCbGFjayBs aXN0CgkJaWYgKCRsaW5lc1skaV0gPX4gbS9GaWxlIDEvKSB7CgkJCW5leHQ7CgkJfQoKCQlteSBA Y29sdW1uID0gc3BsaXQoL1x8LywgJGxpbmVzWyRpXSk7CgkJZm9yIChteSAkaiA9IDA7ICRqIDw9 ICQjY29sdW1uX25hbWVzOyAkaisrKSB7CgkJCWlmICghIGRlZmluZWQoJGNvbHVtblskal0pKSB7 CgkJCQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gIiI7CgkJCX0KCQkJZWxz ZSB7CgkJCQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gJGNvbHVtblskal07 CgkJCX0KCQl9CgkJCgkJJGlkeCsrOwoJfQoJCglyZXR1cm4gQHJlc3VsdDsKfQoKIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMKIyBTVUIgcHJpbnRfbW9kdWxlZGF0YSAoJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2Rh dGEsIAojICRtb2R1bGVfZGVzY3JpcHRpb24sIEBkYXRhKQojIFByaW50cyBhIG1vZHVsZWRhdGEg WE1MIHRhZy4gJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEgYW5kCiMgJG1vZHVsZV9kZXNjcmlw dGlvbiBhcmUgdXNlZCB0byBpbmRleCB0aGUgaXRlbSwgZGF0YSBhbmQgZGVzY3JpcHRpb24KIyBY TUwgdGFncyByZXNwZWN0aXZlbHkuCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1YiBwcmludF9tb2R1bGVk YXRhIHsKCW15ICRtb2R1bGVfaXRlbSA9ICRfWzBdOwoJbXkgJG1vZHVsZV9kYXRhID0gJF9bMV07 CglteSAkbW9kdWxlX2Rlc2NyaXB0aW9uID0gJF9bMl07CglteSBAZGF0YSA9IEB7JF9bM119OwoJ bXkgJHJlc3VsdDsKCglmb3JlYWNoIG15ICRlbGVtZW50IChAZGF0YSkgewoJCQoJCSRyZXN1bHQg PSAnJzsKCgkJIyBJdGVtCgkJaWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2l0ZW19KSkg ewoJCQkkcmVzdWx0IC49ICRlbGVtZW50LT57JG1vZHVsZV9pdGVtfSAuICc7JzsKCQl9CgoJCSMg RGF0YQoJCWlmIChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9kYXRhfSkpIHsKCQkJJHJlc3Vs dCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfZGF0YX07CgkJfQoKCQlwcmludCAkcmVzdWx0IC4gIlxu IjsJCgl9Cn0KCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgTWFpbgojIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwoKbXkg QHJlc3VsdCA9IHJ1bl9xdWVyeSgiU0VMRUNUIE5hbWUsIFZlcnNpb24gRlJPTSBXaW4zMl9Qcm9k dWN0Iik7CnByaW50X21vZHVsZWRhdGEgKCJOYW1lIiwgIlZlcnNpb24iLCAiIiwgXEByZXN1bHQp OwpleGl0IDA7Cg=='); -INSERT INTO "tmodule_inventory" VALUES (15,9,'Patches','Installed patches','/usr/bin/perl','HotFixID;Description;FixComments','IyEvdXNyL2Jpbi9wZXJsCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgcGFuZG9yYV9wYXRjaC5wbAojIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIwojIENvcHlyaWdodCAoYykgMjAwOCBSYW1vbiBOb3ZvYSwgcm5vdm9hQGFy dGljYS5lcwojICAgICAgICAgICAoYykgMjAwOCBBcnRpY2EgU29sdWNpb25lcyBUZWNub2xvZ2lj YXMgUy5MCiMKIyBUaGlzIHByb2dyYW0gaXMgZnJlZSBzb2Z0d2FyZTsgeW91IGNhbiByZWRpc3Ry aWJ1dGUgaXQgYW5kL29yCiMgbW9kaWZ5IGl0IHVuZGVyIHRoZSB0ZXJtcyBvZiB0aGUgR05VIEdl bmVyYWwgUHVibGljIExpY2Vuc2UKIyBhcyBwdWJsaXNoZWQgYnkgdGhlIEZyZWUgU29mdHdhcmUg Rm91bmRhdGlvbjsgdmVyc2lvbiAyLgojCiMgVGhpcyBwcm9ncmFtIGlzIGRpc3RyaWJ1dGVkIGlu IHRoZSBob3BlIHRoYXQgaXQgd2lsbCBiZSB1c2VmdWwsCiMgYnV0IFdJVEhPVVQgQU5ZIFdBUlJB TlRZOyB3aXRob3V0IGV2ZW4gdGhlIGltcGxpZWQgd2FycmFudHkgb2YKIyBNRVJDSEFOVEFCSUxJ VFkgb3IgRklUTkVTUyBGT1IgQSBQQVJUSUNVTEFSIFBVUlBPU0UuICBTZWUgdGhlCiMgR05VIEdl bmVyYWwgUHVibGljIExpY2Vuc2UgZm9yIG1vcmUgZGV0YWlscy4KIyBZb3Ugc2hvdWxkIGhhdmUg cmVjZWl2ZWQgYSBjb3B5IG9mIHRoZSBHTlUgR2VuZXJhbCBQdWJsaWMgTGljZW5zZQojIGFsb25n IHdpdGggdGhpcyBwcm9ncmFtOyBpZiBub3QsIHdyaXRlIHRvIHRoZSBGcmVlIFNvZnR3YXJlCiMg Rm91bmRhdGlvbiwgSW5jLiwgNTEgRnJhbmtsaW4gU3RyZWV0LCBGaWZ0aCBGbG9vciwgQm9zdG9u LCBNQSAgMDIxMTAtMTMwMSwgVVNBLgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwoKdXNlIHN0cmljdDsKdXNl IHdhcm5pbmdzOwoKdXNlIEZpbGU6OkJhc2VuYW1lOwp1c2UgSFRNTDo6RW50aXRpZXMgKCk7Cgoj IENoZWNrIGZvciB3bWljCm15ICR3bWlfY2xpZW50ID0gIndtaWMiOwppZiAoc3lzdGVtKCIkd21p X2NsaWVudCA+IC9kZXYvbnVsbCAyPiYxIikgIT0gMjU2KSB7CglwcmludCAiW2Vycm9yXSAkd21p X2NsaWVudCBub3QgZm91bmQuXG4iOwoJZXhpdCAxOwp9CgppZiAoJCNBUkdWICE9IDIpIHsKCXBy aW50ICJVc2FnZTogJDAgPHRhcmdldCBpcD4gPHVzZXJuYW1lPiA8cGFzc3dvcmQ+XG4iOwoJZXhp dCAxOwp9CgpteSAkdGFyZ2V0X2lwID0gJEFSR1ZbMF07Cm15ICR1c2VybmFtZSA9ICRBUkdWWzFd OwpteSAkcGFzc3dvcmQgPSAkQVJHVlsyXTsKCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgU1VCIHJ1bl9x dWVyeSAoJHdxbF9xdWVyeSkKIyBSdW5zIHRoZSBnaXZlbiBXUUwgcXVlcnkgYW5kIHJldHVybnMg dGhlIHJlc3VsdCBhcyBhbiBhcnJheSBvZiBoYXNoZXMuCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1YiBy dW5fcXVlcnkgewoJbXkgJHdxbF9xdWVyeSA9ICRfWzBdOwoJbXkgQHJlc3VsdCA9IHt9OwoKCSR3 cWxfcXVlcnkgPX4gJ3MvIi9cJy9nJzsKCgkjIFJ1biB0aGUgRENPTS9XTUkgY2xpZW50CglteSAk b3V0cHV0ID0gYCR3bWlfY2xpZW50IC1VICckdXNlcm5hbWUnJSckcGFzc3dvcmQnIC8vJHRhcmdl dF9pcCBcIiR3cWxfcXVlcnlcIiAyPi9kZXYvbnVsbGA7CgoJbXkgQGxpbmVzID0gc3BsaXQoL1xu LywgJG91dHB1dCk7CgkjIEhlYWRlciwgZGVzY3JpcHRpb24sIHJlc3VsdHMKCWlmICgkI2xpbmVz IDwgMikgewoJCWV4aXQgMTsKCX0KCgkjIERyb3AgdGhlIGhlYWRlcgoJc2hpZnQgKEBsaW5lcyk7 CgkKCSMgR2V0IGNvbHVtbiBuYW1lcwoJbXkgQGNvbHVtbl9uYW1lcyA9IHNwbGl0KC9cfC8sIHNo aWZ0IChAbGluZXMpKTsKCgkjIEdldCByb3cgZGF0YQoJbXkgJGlkeCA9IDA7Cglmb3IgKG15ICRp ID0gMDsgJGkgPD0gJCNsaW5lczsgJGkrKykgewoKCQkjIENoZWNrIGZvciBlcnJvcnMKCQlpZiAo JGxpbmVzWyRpXSA9fiBtL15FUlJPUi8pIHsKCQkJZXhpdCAxOwoJCX0KCgkJIyBCbGFjayBsaXN0 CgkJaWYgKCRsaW5lc1skaV0gPX4gbS9GaWxlIDEvKSB7CgkJCW5leHQ7CgkJfQoKCQlteSBAY29s dW1uID0gc3BsaXQoL1x8LywgJGxpbmVzWyRpXSk7CgkJZm9yIChteSAkaiA9IDA7ICRqIDw9ICQj Y29sdW1uX25hbWVzOyAkaisrKSB7CgkJCWlmICghIGRlZmluZWQoJGNvbHVtblskal0pKSB7CgkJ CQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gIiI7CgkJCX0KCQkJZWxzZSB7 CgkJCQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gJGNvbHVtblskal07CgkJ CX0KCQl9CgkJCgkJJGlkeCsrOwoJfQoJCglyZXR1cm4gQHJlc3VsdDsKfQoKIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMKIyBTVUIgcHJpbnRfbW9kdWxlZGF0YSAoJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEs IAojICRtb2R1bGVfZGVzY3JpcHRpb24sIEBkYXRhKQojIFByaW50cyBhIG1vZHVsZWRhdGEgWE1M IHRhZy4gJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEgYW5kCiMgJG1vZHVsZV9kZXNjcmlwdGlv biBhcmUgdXNlZCB0byBpbmRleCB0aGUgaXRlbSwgZGF0YSBhbmQgZGVzY3JpcHRpb24KIyBYTUwg dGFncyByZXNwZWN0aXZlbHkuCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1YiBwcmludF9tb2R1bGVkYXRh IHsKCW15ICRtb2R1bGVfaXRlbSA9ICRfWzBdOwoJbXkgJG1vZHVsZV9kYXRhID0gJF9bMV07Cglt eSAkbW9kdWxlX2Rlc2NyaXB0aW9uID0gJF9bMl07CglteSBAZGF0YSA9IEB7JF9bM119OwoJbXkg JHJlc3VsdDsKCglmb3JlYWNoIG15ICRlbGVtZW50IChAZGF0YSkgewoJCQoJCSRyZXN1bHQgPSAn JzsKCgkJIyBJdGVtCgkJaWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2l0ZW19KSkgewoJ CQkkcmVzdWx0IC49ICRlbGVtZW50LT57JG1vZHVsZV9pdGVtfSAuICc7JzsKCQl9CgoJCSMgRGF0 YQoJCWlmIChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9kYXRhfSkpIHsKCQkJJHJlc3VsdCAu PSAkZWxlbWVudC0+eyRtb2R1bGVfZGF0YX0gLiAnOyc7CgkJfQoKCQkjIERlc2NyaXB0aW9uCgkJ aWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2Rlc2NyaXB0aW9ufSkpIHsKCQkJJHJlc3Vs dCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfZGVzY3JpcHRpb259OwoJCX0KCgkJcHJpbnQgJHJlc3Vs dCAuICJcbiI7CQoJfQp9CgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwojIE1haW4KIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMKCm15IEByZXN1bHQgPSBydW5fcXVlcnkoIlNFTEVDVCBIb3RGaXhJRCwgRGVzY3JpcHRpb24s IEZpeENvbW1lbnRzIEZST00gV2luMzJfUXVpY2tGaXhFbmdpbmVlcmluZyIpOwpwcmludF9tb2R1 bGVkYXRhICgiSG90Rml4SUQiLCAiRGVzY3JpcHRpb24iLCAiRml4Q29tbWVudHMiLCBcQHJlc3Vs dCk7CmV4aXQgMDsK'); -INSERT INTO "tmodule_inventory" VALUES (16,1,'Init services','Services programmed to lauch in Unix','','Service',''); -INSERT INTO "tmodule_inventory" VALUES (17,9,'Init services','Windows services','/usr/bin/perl','Name;PathName;State','IyEvdXNyL2Jpbi9wZXJsCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgcGFuZG9yYV9zZXJ2aWNlcy5wbAoj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIwojIENvcHlyaWdodCAoYykgMjAwOCBSYW1vbiBOb3ZvYSwgcm5vdm9h QGFydGljYS5lcwojICAgICAgICAgICAoYykgMjAwOCBBcnRpY2EgU29sdWNpb25lcyBUZWNub2xv Z2ljYXMgUy5MCiMKIyBUaGlzIHByb2dyYW0gaXMgZnJlZSBzb2Z0d2FyZTsgeW91IGNhbiByZWRp c3RyaWJ1dGUgaXQgYW5kL29yCiMgbW9kaWZ5IGl0IHVuZGVyIHRoZSB0ZXJtcyBvZiB0aGUgR05V IEdlbmVyYWwgUHVibGljIExpY2Vuc2UKIyBhcyBwdWJsaXNoZWQgYnkgdGhlIEZyZWUgU29mdHdh cmUgRm91bmRhdGlvbjsgdmVyc2lvbiAyLgojCiMgVGhpcyBwcm9ncmFtIGlzIGRpc3RyaWJ1dGVk IGluIHRoZSBob3BlIHRoYXQgaXQgd2lsbCBiZSB1c2VmdWwsCiMgYnV0IFdJVEhPVVQgQU5ZIFdB UlJBTlRZOyB3aXRob3V0IGV2ZW4gdGhlIGltcGxpZWQgd2FycmFudHkgb2YKIyBNRVJDSEFOVEFC SUxJVFkgb3IgRklUTkVTUyBGT1IgQSBQQVJUSUNVTEFSIFBVUlBPU0UuICBTZWUgdGhlCiMgR05V IEdlbmVyYWwgUHVibGljIExpY2Vuc2UgZm9yIG1vcmUgZGV0YWlscy4KIyBZb3Ugc2hvdWxkIGhh dmUgcmVjZWl2ZWQgYSBjb3B5IG9mIHRoZSBHTlUgR2VuZXJhbCBQdWJsaWMgTGljZW5zZQojIGFs b25nIHdpdGggdGhpcyBwcm9ncmFtOyBpZiBub3QsIHdyaXRlIHRvIHRoZSBGcmVlIFNvZnR3YXJl CiMgRm91bmRhdGlvbiwgSW5jLiwgNTEgRnJhbmtsaW4gU3RyZWV0LCBGaWZ0aCBGbG9vciwgQm9z dG9uLCBNQSAgMDIxMTAtMTMwMSwgVVNBLgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwoKdXNlIHN0cmljdDsK dXNlIHdhcm5pbmdzOwoKdXNlIEZpbGU6OkJhc2VuYW1lOwp1c2UgSFRNTDo6RW50aXRpZXMgKCk7 CgojIENoZWNrIGZvciB3bWljCm15ICR3bWlfY2xpZW50ID0gIndtaWMiOwppZiAoc3lzdGVtKCIk d21pX2NsaWVudCA+IC9kZXYvbnVsbCAyPiYxIikgIT0gMjU2KSB7CglwcmludCAiW2Vycm9yXSAk d21pX2NsaWVudCBub3QgZm91bmQuXG4iOwoJZXhpdCAxOwp9CgppZiAoJCNBUkdWICE9IDIpIHsK CXByaW50ICJVc2FnZTogJDAgPHRhcmdldCBpcD4gPHVzZXJuYW1lPiA8cGFzc3dvcmQ+XG4iOwoJ ZXhpdCAxOwp9CgpteSAkdGFyZ2V0X2lwID0gJEFSR1ZbMF07Cm15ICR1c2VybmFtZSA9ICRBUkdW WzFdOwpteSAkcGFzc3dvcmQgPSAkQVJHVlsyXTsKCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgU1VCIHJ1 bl9xdWVyeSAoJHdxbF9xdWVyeSkKIyBSdW5zIHRoZSBnaXZlbiBXUUwgcXVlcnkgYW5kIHJldHVy bnMgdGhlIHJlc3VsdCBhcyBhbiBhcnJheSBvZiBoYXNoZXMuCiMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1 YiBydW5fcXVlcnkgewoJbXkgJHdxbF9xdWVyeSA9ICRfWzBdOwoJbXkgQHJlc3VsdCA9IHt9OwoK CSR3cWxfcXVlcnkgPX4gJ3MvIi9cJy9nJzsKCgkjIFJ1biB0aGUgRENPTS9XTUkgY2xpZW50Cglt eSAkb3V0cHV0ID0gYCR3bWlfY2xpZW50IC1VICckdXNlcm5hbWUnJSckcGFzc3dvcmQnIC8vJHRh cmdldF9pcCBcIiR3cWxfcXVlcnlcIiAyPi9kZXYvbnVsbGA7CgoJbXkgQGxpbmVzID0gc3BsaXQo L1xuLywgJG91dHB1dCk7CgkjIEhlYWRlciwgZGVzY3JpcHRpb24sIHJlc3VsdHMKCWlmICgkI2xp bmVzIDwgMikgewoJCWV4aXQgMTsKCX0KCgkjIERyb3AgdGhlIGhlYWRlcgoJc2hpZnQgKEBsaW5l cyk7CgkKCSMgR2V0IGNvbHVtbiBuYW1lcwoJbXkgQGNvbHVtbl9uYW1lcyA9IHNwbGl0KC9cfC8s IHNoaWZ0IChAbGluZXMpKTsKCgkjIEdldCByb3cgZGF0YQoJbXkgJGlkeCA9IDA7Cglmb3IgKG15 ICRpID0gMDsgJGkgPD0gJCNsaW5lczsgJGkrKykgewoKCQkjIENoZWNrIGZvciBlcnJvcnMKCQlp ZiAoJGxpbmVzWyRpXSA9fiBtL15FUlJPUi8pIHsKCQkJZXhpdCAxOwoJCX0KCgkJIyBCbGFjayBs aXN0CgkJaWYgKCRsaW5lc1skaV0gPX4gbS9GaWxlIDEvKSB7CgkJCW5leHQ7CgkJfQoKCQlteSBA Y29sdW1uID0gc3BsaXQoL1x8LywgJGxpbmVzWyRpXSk7CgkJZm9yIChteSAkaiA9IDA7ICRqIDw9 ICQjY29sdW1uX25hbWVzOyAkaisrKSB7CgkJCWlmICghIGRlZmluZWQoJGNvbHVtblskal0pKSB7 CgkJCQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gIiI7CgkJCX0KCQkJZWxz ZSB7CgkJCQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gJGNvbHVtblskal07 CgkJCX0KCQl9CgkJCgkJJGlkeCsrOwoJfQoJCglyZXR1cm4gQHJlc3VsdDsKfQoKIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMKIyBTVUIgcHJpbnRfbW9kdWxlZGF0YSAoJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2Rh dGEsIAojICRtb2R1bGVfZGVzY3JpcHRpb24sIEBkYXRhKQojIFByaW50cyBhIG1vZHVsZWRhdGEg WE1MIHRhZy4gJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEgYW5kCiMgJG1vZHVsZV9kZXNjcmlw dGlvbiBhcmUgdXNlZCB0byBpbmRleCB0aGUgaXRlbSwgZGF0YSBhbmQgZGVzY3JpcHRpb24KIyBY TUwgdGFncyByZXNwZWN0aXZlbHkuCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1YiBwcmludF9tb2R1bGVk YXRhIHsKCW15ICRtb2R1bGVfaXRlbSA9ICRfWzBdOwoJbXkgJG1vZHVsZV9kYXRhID0gJF9bMV07 CglteSAkbW9kdWxlX2Rlc2NyaXB0aW9uID0gJF9bMl07CglteSBAZGF0YSA9IEB7JF9bM119OwoJ bXkgJHJlc3VsdDsKCglmb3JlYWNoIG15ICRlbGVtZW50IChAZGF0YSkgewoJCQoJCSRyZXN1bHQg PSAnJzsKCgkJIyBJdGVtCgkJaWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2l0ZW19KSkg ewoJCQkkcmVzdWx0IC49ICRlbGVtZW50LT57JG1vZHVsZV9pdGVtfSAuICc7JzsKCQl9CgoJCSMg RGF0YQoJCWlmIChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9kYXRhfSkpIHsKCQkJJHJlc3Vs dCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfZGF0YX0gLiAnOyc7CgkJfQoKCQkjIERlc2NyaXB0aW9u CgkJaWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2Rlc2NyaXB0aW9ufSkpIHsKCQkJJHJl c3VsdCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfZGVzY3JpcHRpb259OwoJCX0KCgkJcHJpbnQgJHJl c3VsdCAuICJcbiI7CQoJfQp9CgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwojIE1haW4KIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMKCm15IEByZXN1bHQgPSBydW5fcXVlcnkoIlNFTEVDVCBOYW1lLCBQYXRoTmFtZSwgU3Rh dGUgRlJPTSBXaW4zMl9TZXJ2aWNlIik7CnByaW50X21vZHVsZWRhdGEgKCJOYW1lIiwgIlBhdGhO YW1lIiwgIlN0YXRlIiwgXEByZXN1bHQpOwpleGl0IDA7Cg=='); -INSERT INTO "tmodule_inventory" ("id_module_inventory", "id_os", "name", "description", "interpreter", "data_format", "code", "block_mode") VALUES (18,1,'File system','UNIX filesystem mounted on system','','Device;Free size;Total size;Mount point','',0); -INSERT INTO "tmodule_inventory" VALUES (19,9,'File system','Disk drives','','Device;Total size;Free size;Mount point',''); -INSERT INTO "tmodule_inventory" VALUES (20,1,'Process','Process running on system','','Process output from ps',''); -INSERT INTO "tmodule_inventory" VALUES (21,9,'Process','Process running on system','/usr/bin/perl','Name;PathName;State','IyEvdXNyL2Jpbi9wZXJsCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgcGFuZG9yYV9wcm9jZXNzZXMucGwK IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMKIyBDb3B5cmlnaHQgKGMpIDIwMDggUmFtb24gTm92b2EsIHJub3Zv YUBhcnRpY2EuZXMKIyAgICAgICAgICAgKGMpIDIwMDggQXJ0aWNhIFNvbHVjaW9uZXMgVGVjbm9s b2dpY2FzIFMuTAojCiMgVGhpcyBwcm9ncmFtIGlzIGZyZWUgc29mdHdhcmU7IHlvdSBjYW4gcmVk aXN0cmlidXRlIGl0IGFuZC9vcgojIG1vZGlmeSBpdCB1bmRlciB0aGUgdGVybXMgb2YgdGhlIEdO VSBHZW5lcmFsIFB1YmxpYyBMaWNlbnNlCiMgYXMgcHVibGlzaGVkIGJ5IHRoZSBGcmVlIFNvZnR3 YXJlIEZvdW5kYXRpb247IHZlcnNpb24gMi4KIwojIFRoaXMgcHJvZ3JhbSBpcyBkaXN0cmlidXRl ZCBpbiB0aGUgaG9wZSB0aGF0IGl0IHdpbGwgYmUgdXNlZnVsLAojIGJ1dCBXSVRIT1VUIEFOWSBX QVJSQU5UWTsgd2l0aG91dCBldmVuIHRoZSBpbXBsaWVkIHdhcnJhbnR5IG9mCiMgTUVSQ0hBTlRB QklMSVRZIG9yIEZJVE5FU1MgRk9SIEEgUEFSVElDVUxBUiBQVVJQT1NFLiAgU2VlIHRoZQojIEdO VSBHZW5lcmFsIFB1YmxpYyBMaWNlbnNlIGZvciBtb3JlIGRldGFpbHMuCiMgWW91IHNob3VsZCBo YXZlIHJlY2VpdmVkIGEgY29weSBvZiB0aGUgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UKIyBh bG9uZyB3aXRoIHRoaXMgcHJvZ3JhbTsgaWYgbm90LCB3cml0ZSB0byB0aGUgRnJlZSBTb2Z0d2Fy ZQojIEZvdW5kYXRpb24sIEluYy4sIDUxIEZyYW5rbGluIFN0cmVldCwgRmlmdGggRmxvb3IsIEJv c3RvbiwgTUEgIDAyMTEwLTEzMDEsIFVTQS4KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKCnVzZSBzdHJpY3Q7 CnVzZSB3YXJuaW5nczsKCnVzZSBGaWxlOjpCYXNlbmFtZTsKdXNlIEhUTUw6OkVudGl0aWVzICgp OwoKIyBDaGVjayBmb3Igd21pYwpteSAkd21pX2NsaWVudCA9ICJ3bWljIjsKaWYgKHN5c3RlbSgi JHdtaV9jbGllbnQgPiAvZGV2L251bGwgMj4mMSIpICE9IDI1NikgewoJcHJpbnQgIltlcnJvcl0g JHdtaV9jbGllbnQgbm90IGZvdW5kLlxuIjsKCWV4aXQgMTsKfQoKaWYgKCQjQVJHViAhPSAyKSB7 CglwcmludCAiVXNhZ2U6ICQwIDx0YXJnZXQgaXA+IDx1c2VybmFtZT4gPHBhc3N3b3JkPlxuIjsK CWV4aXQgMTsKfQoKbXkgJHRhcmdldF9pcCA9ICRBUkdWWzBdOwpteSAkdXNlcm5hbWUgPSAkQVJH VlsxXTsKbXkgJHBhc3N3b3JkID0gJEFSR1ZbMl07CgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwojIFNVQiBy dW5fcXVlcnkgKCR3cWxfcXVlcnkpCiMgUnVucyB0aGUgZ2l2ZW4gV1FMIHF1ZXJ5IGFuZCByZXR1 cm5zIHRoZSByZXN1bHQgYXMgYW4gYXJyYXkgb2YgaGFzaGVzLgojIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwpz dWIgcnVuX3F1ZXJ5IHsKCW15ICR3cWxfcXVlcnkgPSAkX1swXTsKCW15IEByZXN1bHQgPSB7fTsK Cgkkd3FsX3F1ZXJ5ID1+ICdzLyIvXCcvZyc7CgoJIyBSdW4gdGhlIERDT00vV01JIGNsaWVudAoJ bXkgJG91dHB1dCA9IGAkd21pX2NsaWVudCAtVSAnJHVzZXJuYW1lJyUnJHBhc3N3b3JkJyAvLyR0 YXJnZXRfaXAgXCIkd3FsX3F1ZXJ5XCIgMj4vZGV2L251bGxgOwoKCW15IEBsaW5lcyA9IHNwbGl0 KC9cbi8sICRvdXRwdXQpOwoJIyBIZWFkZXIsIGRlc2NyaXB0aW9uLCByZXN1bHRzCglpZiAoJCNs aW5lcyA8IDIpIHsKCQlleGl0IDE7Cgl9CgoJIyBEcm9wIHRoZSBoZWFkZXIKCXNoaWZ0IChAbGlu ZXMpOwoJCgkjIEdldCBjb2x1bW4gbmFtZXMKCW15IEBjb2x1bW5fbmFtZXMgPSBzcGxpdCgvXHwv LCBzaGlmdCAoQGxpbmVzKSk7CgoJIyBHZXQgcm93IGRhdGEKCW15ICRpZHggPSAwOwoJZm9yICht eSAkaSA9IDA7ICRpIDw9ICQjbGluZXM7ICRpKyspIHsKCgkJIyBDaGVjayBmb3IgZXJyb3JzCgkJ aWYgKCRsaW5lc1skaV0gPX4gbS9eRVJST1IvKSB7CgkJCWV4aXQgMTsKCQl9CgoJCSMgQmxhY2sg bGlzdAoJCWlmICgkbGluZXNbJGldID1+IG0vRmlsZSAxLykgewoJCQluZXh0OwoJCX0KCgkJbXkg QGNvbHVtbiA9IHNwbGl0KC9cfC8sICRsaW5lc1skaV0pOwoJCWZvciAobXkgJGogPSAwOyAkaiA8 PSAkI2NvbHVtbl9uYW1lczsgJGorKykgewoJCQlpZiAoISBkZWZpbmVkKCRjb2x1bW5bJGpdKSkg ewoJCQkJJHJlc3VsdFskaWR4XS0+eyRjb2x1bW5fbmFtZXNbJGpdfSA9ICIiOwoJCQl9CgkJCWVs c2UgewoJCQkJJHJlc3VsdFskaWR4XS0+eyRjb2x1bW5fbmFtZXNbJGpdfSA9ICRjb2x1bW5bJGpd OwoJCQl9CgkJfQoJCQoJCSRpZHgrKzsKCX0KCQoJcmV0dXJuIEByZXN1bHQ7Cn0KCiMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjCiMgU1VCIHByaW50X21vZHVsZWRhdGEgKCRtb2R1bGVfaXRlbSwgJG1vZHVsZV9k YXRhLCAKIyAkbW9kdWxlX2Rlc2NyaXB0aW9uLCBAZGF0YSkKIyBQcmludHMgYSBtb2R1bGVkYXRh IFhNTCB0YWcuICRtb2R1bGVfaXRlbSwgJG1vZHVsZV9kYXRhIGFuZAojICRtb2R1bGVfZGVzY3Jp cHRpb24gYXJlIHVzZWQgdG8gaW5kZXggdGhlIGl0ZW0sIGRhdGEgYW5kIGRlc2NyaXB0aW9uCiMg WE1MIHRhZ3MgcmVzcGVjdGl2ZWx5LgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwpzdWIgcHJpbnRfbW9kdWxl ZGF0YSB7CglteSAkbW9kdWxlX2l0ZW0gPSAkX1swXTsKCW15ICRtb2R1bGVfZGF0YSA9ICRfWzFd OwoJbXkgJG1vZHVsZV9kZXNjcmlwdGlvbiA9ICRfWzJdOwoJbXkgQGRhdGEgPSBAeyRfWzNdfTsK CW15ICRyZXN1bHQ7CgoJZm9yZWFjaCBteSAkZWxlbWVudCAoQGRhdGEpIHsKCQkKCQkkcmVzdWx0 ID0gJyc7CgoJCSMgSXRlbQoJCWlmIChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9pdGVtfSkp IHsKCQkJJHJlc3VsdCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfaXRlbX0gLiAnOyc7CgkJfQoKCQkj IERhdGEKCQlpZiAoZGVmaW5lZCgkZWxlbWVudC0+eyRtb2R1bGVfZGF0YX0pKSB7CgkJCSRyZXN1 bHQgLj0gJGVsZW1lbnQtPnskbW9kdWxlX2RhdGF9IC4gJzsnOwoJCX0KCgkJIyBEZXNjcmlwdGlv bgoJCWlmIChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9kZXNjcmlwdGlvbn0pKSB7CgkJCSRy ZXN1bHQgLj0gJGVsZW1lbnQtPnskbW9kdWxlX2Rlc2NyaXB0aW9ufTsKCQl9CgoJCXByaW50ICRy ZXN1bHQgLiAiXG4iOwkKCX0KfQoKIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKIyBNYWluCiMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjCgpteSBAcmVzdWx0ID0gcnVuX3F1ZXJ5KCJTRUxFQ1QgTmFtZSwgUGF0aE5hbWUsIFN0 YXRlIEZST00gV2luMzJfU2VydmljZSIpOwpwcmludF9tb2R1bGVkYXRhICgiTmFtZSIsICJQYXRo TmFtZSIsICJTdGF0ZSIsIFxAcmVzdWx0KTsJCmV4aXQgMDsK'); -INSERT INTO "tmodule_inventory" VALUES (22,1,'Users','User list','','Username',''); -INSERT INTO "tmodule_inventory" VALUES (23,9,'Users','User list','/usr/bin/perl','Name;FullName;Status','IyEvdXNyL2Jpbi9wZXJsCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgcGFuZG9yYV91c2Vycy5wbAojIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIwojIENvcHlyaWdodCAoYykgMjAwOCBSYW1vbiBOb3ZvYSwgcm5vdm9hQGFy dGljYS5lcwojICAgICAgICAgICAoYykgMjAwOCBBcnRpY2EgU29sdWNpb25lcyBUZWNub2xvZ2lj YXMgUy5MCiMKIyBUaGlzIHByb2dyYW0gaXMgZnJlZSBzb2Z0d2FyZTsgeW91IGNhbiByZWRpc3Ry aWJ1dGUgaXQgYW5kL29yCiMgbW9kaWZ5IGl0IHVuZGVyIHRoZSB0ZXJtcyBvZiB0aGUgR05VIEdl bmVyYWwgUHVibGljIExpY2Vuc2UKIyBhcyBwdWJsaXNoZWQgYnkgdGhlIEZyZWUgU29mdHdhcmUg Rm91bmRhdGlvbjsgdmVyc2lvbiAyLgojCiMgVGhpcyBwcm9ncmFtIGlzIGRpc3RyaWJ1dGVkIGlu IHRoZSBob3BlIHRoYXQgaXQgd2lsbCBiZSB1c2VmdWwsCiMgYnV0IFdJVEhPVVQgQU5ZIFdBUlJB TlRZOyB3aXRob3V0IGV2ZW4gdGhlIGltcGxpZWQgd2FycmFudHkgb2YKIyBNRVJDSEFOVEFCSUxJ VFkgb3IgRklUTkVTUyBGT1IgQSBQQVJUSUNVTEFSIFBVUlBPU0UuICBTZWUgdGhlCiMgR05VIEdl bmVyYWwgUHVibGljIExpY2Vuc2UgZm9yIG1vcmUgZGV0YWlscy4KIyBZb3Ugc2hvdWxkIGhhdmUg cmVjZWl2ZWQgYSBjb3B5IG9mIHRoZSBHTlUgR2VuZXJhbCBQdWJsaWMgTGljZW5zZQojIGFsb25n IHdpdGggdGhpcyBwcm9ncmFtOyBpZiBub3QsIHdyaXRlIHRvIHRoZSBGcmVlIFNvZnR3YXJlCiMg Rm91bmRhdGlvbiwgSW5jLiwgNTEgRnJhbmtsaW4gU3RyZWV0LCBGaWZ0aCBGbG9vciwgQm9zdG9u LCBNQSAgMDIxMTAtMTMwMSwgVVNBLgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwoKdXNlIHN0cmljdDsKdXNl IHdhcm5pbmdzOwoKdXNlIEZpbGU6OkJhc2VuYW1lOwp1c2UgSFRNTDo6RW50aXRpZXMgKCk7Cgoj IENoZWNrIGZvciB3bWljCm15ICR3bWlfY2xpZW50ID0gIndtaWMiOwppZiAoc3lzdGVtKCIkd21p X2NsaWVudCA+IC9kZXYvbnVsbCAyPiYxIikgIT0gMjU2KSB7CglwcmludCAiW2Vycm9yXSAkd21p X2NsaWVudCBub3QgZm91bmQuXG4iOwoJZXhpdCAxOwp9CgppZiAoJCNBUkdWICE9IDIpIHsKCXBy aW50ICJVc2FnZTogJDAgPHRhcmdldCBpcD4gPHVzZXJuYW1lPiA8cGFzc3dvcmQ+XG4iOwoJZXhp dCAxOwp9CgpteSAkdGFyZ2V0X2lwID0gJEFSR1ZbMF07Cm15ICR1c2VybmFtZSA9ICRBUkdWWzFd OwpteSAkcGFzc3dvcmQgPSAkQVJHVlsyXTsKCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgU1VCIHJ1bl9x dWVyeSAoJHdxbF9xdWVyeSkKIyBSdW5zIHRoZSBnaXZlbiBXUUwgcXVlcnkgYW5kIHJldHVybnMg dGhlIHJlc3VsdCBhcyBhbiBhcnJheSBvZiBoYXNoZXMuCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1YiBy dW5fcXVlcnkgewoJbXkgJHdxbF9xdWVyeSA9ICRfWzBdOwoJbXkgQHJlc3VsdCA9IHt9OwoKCSR3 cWxfcXVlcnkgPX4gJ3MvIi9cJy9nJzsKCgkjIFJ1biB0aGUgRENPTS9XTUkgY2xpZW50CglteSAk b3V0cHV0ID0gYCR3bWlfY2xpZW50IC1VICckdXNlcm5hbWUnJSckcGFzc3dvcmQnIC8vJHRhcmdl dF9pcCBcIiR3cWxfcXVlcnlcIiAyPi9kZXYvbnVsbGA7CgoJbXkgQGxpbmVzID0gc3BsaXQoL1xu LywgJG91dHB1dCk7CgkjIEhlYWRlciwgZGVzY3JpcHRpb24sIHJlc3VsdHMKCWlmICgkI2xpbmVz IDwgMikgewoJCWV4aXQgMTsKCX0KCgkjIERyb3AgdGhlIGhlYWRlcgoJc2hpZnQgKEBsaW5lcyk7 CgkKCSMgR2V0IGNvbHVtbiBuYW1lcwoJbXkgQGNvbHVtbl9uYW1lcyA9IHNwbGl0KC9cfC8sIHNo aWZ0IChAbGluZXMpKTsKCgkjIEdldCByb3cgZGF0YQoJbXkgJGlkeCA9IDA7Cglmb3IgKG15ICRp ID0gMDsgJGkgPD0gJCNsaW5lczsgJGkrKykgewoKCQkjIENoZWNrIGZvciBlcnJvcnMKCQlpZiAo JGxpbmVzWyRpXSA9fiBtL15FUlJPUi8pIHsKCQkJZXhpdCAxOwoJCX0KCgkJIyBCbGFjayBsaXN0 CgkJaWYgKCRsaW5lc1skaV0gPX4gbS9GaWxlIDEvKSB7CgkJCW5leHQ7CgkJfQoKCQlteSBAY29s dW1uID0gc3BsaXQoL1x8LywgJGxpbmVzWyRpXSk7CgkJZm9yIChteSAkaiA9IDA7ICRqIDw9ICQj Y29sdW1uX25hbWVzOyAkaisrKSB7CgkJCWlmICghIGRlZmluZWQoJGNvbHVtblskal0pKSB7CgkJ CQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gIiI7CgkJCX0KCQkJZWxzZSB7 CgkJCQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gJGNvbHVtblskal07CgkJ CX0KCQl9CgkJCgkJJGlkeCsrOwoJfQoJCglyZXR1cm4gQHJlc3VsdDsKfQoKIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMKIyBTVUIgcHJpbnRfbW9kdWxlZGF0YSAoJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEs IAojICRtb2R1bGVfZGVzY3JpcHRpb24sIEBkYXRhKQojIFByaW50cyBhIG1vZHVsZWRhdGEgWE1M IHRhZy4gJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEgYW5kCiMgJG1vZHVsZV9kZXNjcmlwdGlv biBhcmUgdXNlZCB0byBpbmRleCB0aGUgaXRlbSwgZGF0YSBhbmQgZGVzY3JpcHRpb24KIyBYTUwg dGFncyByZXNwZWN0aXZlbHkuCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1YiBwcmludF9tb2R1bGVkYXRh IHsKCW15ICRtb2R1bGVfaXRlbSA9ICRfWzBdOwoJbXkgJG1vZHVsZV9kYXRhID0gJF9bMV07Cglt eSAkbW9kdWxlX2Rlc2NyaXB0aW9uID0gJF9bMl07CglteSBAZGF0YSA9IEB7JF9bM119OwoJbXkg JHJlc3VsdDsKCglmb3JlYWNoIG15ICRlbGVtZW50IChAZGF0YSkgewoJCQoJCSRyZXN1bHQgPSAn JzsKCgkJIyBJdGVtCgkJaWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2l0ZW19KSkgewoJ CQkkcmVzdWx0IC49ICRlbGVtZW50LT57JG1vZHVsZV9pdGVtfSAuICc7JzsKCQl9CgoJCSMgRGF0 YQoJCWlmIChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9kYXRhfSkpIHsKCQkJJHJlc3VsdCAu PSAkZWxlbWVudC0+eyRtb2R1bGVfZGF0YX0gLiAnOyc7CgkJfQoKCQkjIERlc2NyaXB0aW9uCgkJ aWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2Rlc2NyaXB0aW9ufSkpIHsKCQkJJHJlc3Vs dCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfZGVzY3JpcHRpb259OwoJCX0KCgkJcHJpbnQgJHJlc3Vs dCAuICJcbiI7CQoJfQp9CgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwojIE1haW4KIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMKCm15IEByZXN1bHQgPSBydW5fcXVlcnkoIlNFTEVDVCBOYW1lLCBGdWxsTmFtZSwgU3RhdHVz IEZST00gV2luMzJfVXNlckFjY291bnQiKTsKcHJpbnRfbW9kdWxlZGF0YSAoIk5hbWUiLCAiRnVs bE5hbWUiLCAiU3RhdHVzIiwgXEByZXN1bHQpOwpleGl0IDA7Cg=='); -INSERT INTO "tmodule_inventory" VALUES (25,15,'Software','Installed software applications','','Name;Version;Description',''); - - -INSERT INTO `tmodule_inventory` VALUES -(25,7,'Cisco Interface Remote Inventory','Remote inventory module to get all cards in a Cisco','/usr/bin/perl','Name;Card Name;ID/Serial','IyEvdXNyL2Jpbi9wZXJsDQojSW52ZW50YXJpbyBkZSBUYXJqZXRhcw0KI1Nsb3Q7UGFydE51bWJlcjtTZXJpYWxOdW1iZXINCg0KIyEvdXNyL2Jpbi9wZXJsIC13DQoNCm15ICR0YXJnZXRfaXAgPSAkQVJHVlswXTsNCm15ICRjb21tdW5pdHkgPSAkQVJHVlsxXTsNCg0KI34gRXhlY3V0ZSBjb21tYW5kDQokY29tbWFuZCA9IGBzbm1wd2FsayAtdjJjIC1jICRjb21tdW5pdHkgJHRhcmdldF9pcCBtaWItMi40Ny4xLjEuMS4xLjJgOw0KDQojfiBTcGxpdCB0aGUgb3V0cHV0IGluIGxpbmVzDQpAdGVtcCA9IHNwbGl0ICgiXG4iLCAkY29tbWFuZCk7DQpteSBAdmFsdWVzOw0KDQojfiBFYWNoIGxpbmUNCmZvcmVhY2ggKEB0ZW1wKSB7DQoJI34gc3dhcCBkb3RzIGJ5IHNwYWNlcw0KCSRfID1+IHMvXC4vIC9nOw0KCSN+IHNwbGl0IHRoZSBsaW5lIGJ5IHNwYWNlcw0KCUBsaW5lID0gc3BsaXQgKC8gLywgJF8pOw0KCSN+IHNhdmUgdGhlIDd0aCB2YWx1ZQ0KCXB1c2ggKEB2YWx1ZXMsICRsaW5lWzddKTsNCn0NCg0KZm9yZWFjaCAoQHZhbHVlcykgew0KCSN+IHByaW50ICIkXyI7DQoJJFBJRCA9ICcnOw0KCSRQSUQgLj0gYHNubXBnZXQgLXYyYyAtYyAkY29tbXVuaXR5IC1PdnEgJHRhcmdldF9pcCBtaWItMi40Ny4xLjEuMS4xLjEzLiRfYDsNCgkkUElEIC49IGBzbm1wZ2V0IC12MmMgLWMgJGNvbW11bml0eSAtT3ZxICR0YXJnZXRfaXAgbWliLTIuNDcuMS4xLjEuMS4xMS4kX2A7DQoJJFBJRCA9fiBzL1wifFxufFw8fFw+fFwmfFxbfFxdLy9nOw0KDQoJaWYgKCRQSUQgbmUgIiIgKSB7DQoJCSRyZXN1bHQgPSAnJzsNCgkJIyRyZXN1bHQgLj0gYHNubXBnZXQgLXYyYyAtYyAkY29tbXVuaXR5IC1PdnEgJHRhcmdldF9pcCBzeXNOYW1lLjBgIC4gJzsnOw0KCQkkcmVzdWx0IC49IGBzbm1wZ2V0IC12MmMgLWMgJGNvbW11bml0eSAtT3ZxICR0YXJnZXRfaXAgbWliLTIuNDcuMS4xLjEuMS43LiRfYCAuICc7JzsNCgkJIyRyZXN1bHQgLj0gYHNubXBnZXQgLXYyYyAtYyAkY29tbXVuaXR5IC1PdnEgJHRhcmdldF9pcCBtaWItMi40Ny4xLjEuMS4xLjIuJF9gIC4gJzsnOw0KCQkkcmVzdWx0IC49IGBzbm1wZ2V0IC12MmMgLWMgJGNvbW11bml0eSAtT3ZxICR0YXJnZXRfaXAgbWliLTIuNDcuMS4xLjEuMS4xMy4kX2AgLiAnOyc7DQoJCSRyZXN1bHQgLj0gYHNubXBnZXQgLXYyYyAtYyAkY29tbXVuaXR5IC1PdnEgJHRhcmdldF9pcCBtaWItMi40Ny4xLjEuMS4xLjExLiRfYDsNCgkJDQoJCSRyZXN1bHQgPX4gcy9cInxcbnxcPHxcPnxcJnxcW3xcXS8vZzsNCgkJcHJpbnQgJHJlc3VsdCAuICJcbiI7DQoJfQ0KfQ0KZXhpdCAwOw0K'); - -INSERT INTO `tmodule_inventory` VALUES -(26,7,'Cisco Inventory','Get remote device information about the cisco device','/usr/bin/perl','IP;Hardware;SerialNumber;IOS','IyEvdXNyL2Jpbi9wZXJsDQoNCiNJbmZvcm1hY2lvbiBkZWwgRXF1aXBvDQojSVA7SGFyZHdhcmU7U2VyaWFsTnVtYmVyO0lPUw0KDQpteSAkdGFyZ2V0X2lwID0gJEFSR1ZbMF07DQpteSAkY29tbXVuaXR5ID0gJEFSR1ZbMV07DQoNCiRyZXN1bHQgPSAnJzsNCiMkcmVzdWx0IC49IGBzbm1wZ2V0IC12MmMgLWMgJGNvbW11bml0eSAtT3ZxICR0YXJnZXRfaXAgc3lzTmFtZS4wYCAuICc7JzsNCiRyZXN1bHQgLj0gJHRhcmdldF9pcCAuICc7JzsNCiRlcnJvciA9ICcnOw0KJGVycm9yIC49IGBzbm1wZ2V0IC12MmMgLWMgJGNvbW11bml0eSAtT3ZxICR0YXJnZXRfaXAgbWliLTIuNDcuMS4xLjEuMS4yLjEgfCBncmVwIGV4aXN0c2A7DQokc2VyaWFsID0gJyc7DQokc2VyaWFsIC49IGBzbm1wZ2V0IC12MmMgLWMgJGNvbW11bml0eSAtT3ZxICR0YXJnZXRfaXAgbWliLTIuNDcuMS4xLjEuMS4xMS4xYDsNCiRzZXJpYWwgPX4gcy9cInxcbnxcPHxcPnxcJnxcW3xcXS8vZzsNCg0KaWYgKCRlcnJvciBlcSAiIiAmJiAkc2VyaWFsIG5lICIiKXsNCiAgICAkcmVzdWx0IC49IGBzbm1wZ2V0IC12MmMgLWMgJGNvbW11bml0eSAtT3ZxICR0YXJnZXRfaXAgbWliLTIuNDcuMS4xLjEuMS4yLjFgIC4gJzsnOw0KICAgICRyZXN1bHQgLj0gYHNubXBnZXQgLXYyYyAtYyAkY29tbXVuaXR5IC1PdnEgJHRhcmdldF9pcCBtaWItMi40Ny4xLjEuMS4xLjExLjFgIC4gJzsnOw0KDQp9IGVsc2Ugew0KICAgICRWU1MgPSAnJzsNCiAgICAkVlNTIC49IGBzbm1wZ2V0IC12MmMgLWMgJGNvbW11bml0eSAtT3ZxICR0YXJnZXRfaXAgbWliLTIuNDcuMS4xLjEuMS4yLjEgfCBncmVwIFZpcnR1YWxgOw0KICAgIGlmICgkVlNTIGVxICIiKSB7DQogICAgICAgICRyZXN1bHQgLj0gYHNubXBnZXQgLXYyYyAtYyAkY29tbXVuaXR5IC1PdnEgJHRhcmdldF9pcCBtaWItMi40Ny4xLjEuMS4xLjIuMTAwMWAgLiAnOyc7DQogICAgICAgICRyZXN1bHQgLj0gYHNubXBnZXQgLXYyYyAtYyAkY29tbXVuaXR5IC1PdnEgJHRhcmdldF9pcCBtaWItMi40Ny4xLjEuMS4xLjExLjEwMDFgIC4gJzsnOw0KICAgIH0gZWxzZSB7DQogICAgICAgICRyZXN1bHQgLj0gYHNubXBnZXQgLXYyYyAtYyAkY29tbXVuaXR5IC1PdnEgJHRhcmdldF9pcCBtaWItMi40Ny4xLjEuMS4xLjIuMWAgLiAnOyc7DQogICAgICAgICRyZXN1bHQgLj0gYHNubXBnZXQgLXYyYyAtYyAkY29tbXVuaXR5IC1PdnEgJHRhcmdldF9pcCBtaWItMi40Ny4xLjEuMS4xLjExLjJgIC4gJzsnOw0KICAgIH0NCn0NCg0KJHJlc3VsdCAuPSBgc25tcGdldCAtdjJjIC1jICRjb21tdW5pdHkgLU92cSAkdGFyZ2V0X2lwIHN5c0Rlc2NyLjAgfCBncmVwIElPU2A7DQokcmVzdWx0ID1+IHMvXCJ8XG58XDx8XD58XCZ8XFt8XF0vL2c7DQpwcmludCAkcmVzdWx0IC4gIlxuIjsNCmV4aXQgMDsNCg=='); - - -INSERT INTO "tmodule_inventory" VALUES (24,9,'Services','Services installed','','Name;Command;Status',''); -SELECT setval('tmodule_inventory_id_module_inventory_seq', (SELECT (SELECT MAX(id_module_inventory) FROM tmodule_inventory))); - --- --- Dumping data for table `tlocal_component` --- - -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (1,'Event 1000','module_begin\r\nmodule_name Event_1000-Citrix\r\nmodule_description\r\nmodule_type async_string\r\nmodule_logevent\r\nmodule_source application\r\nmodule_eventtype\r\nmodule_eventcode 1000\r\nmodule_application\r\nmodule_end ','',9,'',25,23,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (2,'Event 1004','module_begin\r\nmodule_name Event_1004-Citrix\r\nmodule_description\r\nmodule_type async_string\r\nmodule_logevent\r\nmodule_source application\r\nmodule_eventtype\r\nmodule_eventcode 1004\r\nmodule_application\r\nmodule_end ','',9,'',25,23,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (3,'Event 1202','module_begin\r\nmodule_name Event_1202-Citrix\r\nmodule_description\r\nmodule_type async_string\r\nmodule_logevent\r\nmodule_source application\r\nmodule_eventtype\r\nmodule_eventcode 1202\r\nmodule_application\r\nmodule_end\r\nn ','',9,'',25,23,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (4,'Event 3621','module_begin\r\nmodule_name Event_3621\nr\nmodule_description Citrix cannot connect SQL server\r\nmodule_type async_string\r\nmodule_logevent\r\nmodule_source application\r\nmodule_eventtype Error\r\nmodule_eventcode 3621\r\nmodule_application\r\nmodule_end ','Citrix cannot connect SQL server',9,'',25,23,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (5,'Event 9014','module_begin\r\nmodule_name Event_9014\nr\nmodule_description Invalid licence\r\nmodule_type async_string\r\nmodule_logevent\r\nmodule_source system\r\nmodule_eventtype Error\r\nmodule_eventcode 9014\r\nmodule_application MetaFrame\r\nmodule_end ','Invalid licence',9,'',25,23,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (6,'Event 5774','module_begin\r\nmodule_name Event_5774\nr\nmodule_description Server goes to grace period (Not enough licences)\r\ndurante 96hr).\r\nmodule_type async_string\r\nmodule_logevent\r\nmodule_source system\r\nmodule_eventtype Error\r\n\nmodule_eventcode 5774\r\nmodule_application MetaFrame\r\nmodule_end ','Server goes to grace period (Not enough licences)',9,'',25,23,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (7,'Event 1388','module_begin\r\nmodule_name Event_1388\nr\nmodule_description Citrix internal monitoring\r\nmodule_type async_string\r\nmodule_logevent\r\nmodule_source application\r\nmodule_eventtype\r\nmodule_eventcode 1388\r\nmodule_application HCAService\r\nmodule_end ','Citrix internal monitoring',9,'',25,23,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (8,'Event 3961','module_begin\r\nmodule_name Event_3961\nr\nmodule_description The Data Collector is out of memory, and the Dynamic Store data might be out of sync. Please elect a new Data Collector and make sure you have enough memory on the new Data Collector\r\nmodule_type async_string\r\nmodule_logevent\r\nmodule_source System\r\nmodule_eventtype\r\nmodule_eventcode 3961\r\nmodule_application\r\nmodule_end ','The Data Collector is out of memory, and the Dynamic Store data might be out of sync. Please elect a new Data Collector and make sure you have enough memory on the new Data Collector',9,'',25,23,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (9,'Serv_HCA','module_begin\r\nmodule_name Serv_HCA\r\nmodule_description\r\nmodule_type generic_proc\r\nmodule_service HCAService\r\nmodule_end ','',9,'',25,2,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (10,'Serv_CTXcpusvnc','module_begin\r\nmodule_name Serv_CTXcpusvnc\r\nmodule_description\r\nmodule_type generic_proc\r\nmodule_service CTXCpuusync\r\n\nmodule_end ','',9,'',25,2,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (11,'Serv_IMA','module_begin\r\nmodule_name Serv_IMA\r\n\nmodule_description\r\nmodule_type generic_proc\r\nmodule_service IMAService\r\nmodule_end ','',9,'',25,2,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (13,'Serv_CTXSMA','module_begin\r\nmodule_name Serv_CTXSMA\r\nmodule_description\r\nmodule_type generic_proc\r\nmodule_service Citrix SMA Service\r\nmodule_end','',9,'',25,2,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (14,'Citrix_Sessions','module_begin\r\nmodule_name Citrix_Sessions\r\nmodule_description Opened active sessions on server\r\nmodule_type generic_data\r\nmodule_exec query session | grep Active | wc -l\r\nmodule_end ','Opened active sessions on server',9,'',25,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (15,'Users_Connected','module_begin\r\nmodule_name Users_Connected\r\nmodule_description Users connected to this server\r\nmodule_type generic_data\r\nmodule_exec quser | grep Active | wc -l\r\nmodule_interval 2\r\nmodule_end\r\n ','Users connected to this server',9,'',25,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (16,'Busy XML Threads','module_begin\r\nmodule_name Busy XML Threads\r\nmodule_description Total threads in the manager who manage the sessions. If there are more than XX, service fails. NOTE: Run this module only in managers\r\nmodule_type generic_data\r\nmodule_exec Typeperf '\\MAQUINA\Citrix Metaframe Presentation Server\Number of busy XML threads' -sc 1\r\nmodule_end\r\n','Total threads in the manager who manage the sessions. If there are more than XX, service fails. NOTE: Run this module only in managers',9,'',25,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (17,'CPU Load','module_begin module_name CPU Load module_type generic_data module_wmiquery SELECT LoadPercentage FROM Win32_Processor module_wmicolumn LoadPercentage module_description CPU Load (%) module_min_warning 80 module_max_warning 90 module_min_critical 91 module_max_critical 100 module_end','CPU Load (using WMI)',9,'',11,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (18,'FreeMemory','# Free Memory module_begin module_name FreeMemory module_type generic_data module_freepercentmemory module_description Free memory (%). module_min_warning 21 module_max_warning 30 module_min_critical 0 module_max_critical 20 module_end','Free memory (%).',9,'',11,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (19,'Microsoft Antivirus','module_begin module_name Microsoft Antivirus module_type generic_proc module_service MsMpSvc module_description Check if microsoft antivirus/malware service is running module_end','Check if microsoft antivirus/malware service is running',9,'',11,2,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (21,'Microsoft Firewall','module_begin module_name Microsoft Firewall module_type generic_proc module_service MpsSvc module_description Microsoft windows firewall status. module_end','Microsoft windows firewall status.',9,'',11,2,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (22,'Kaspersky Antivirus','module_begin module_name Kaspersky Antivirus module_type generic_proc module_service AVP module_description Kaspersky Antivirus module_end','Checks Karspersky Antivirus service status',9,'',11,2,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (23,'CPU Free','module_begin module_name CPU Free module_type generic_data module_exec echo $(( 100-"vmstat 1 2 | tail -1 | awk '{ print $15 }'")) module_max 100 module_min 0 module_description Percentage CPU Free module_end','Percentage of free CPU',1,'',43,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (24,'Load Average','module_begin module_name Load Average module_type generic_data module_exec uptime | awk -F "," '{print $3}' | awk '{print $3}' | tr ­d "\n" module_description Average load last minute module_end ','Load average for last minute',1,'',43,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (25,'Memory Free','module_begin module_name Memory Free module_type generic_data module_freepercentmemory module_description Percentage Mem Free module_end ','Percentage of free memory',1,'',43,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (26,'Disk Free','module_begin module_name Disk Free module_type generic_data module_freepercentdisk / module_description Percentage Free Disk module_end ','Percentage of free disk',1,'',43,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (27,'SSH Status','module_begin module_name SSH Status module_type generic_proc module_exec ps -Af | grep sshd | grep -v "grep" | wc -l module_description Check ssh service module_end','Monitors SSH server status',1,'',43,2,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (28,'Free i-nodes','module_begin module_name Free i-nodes module_type generic_data module_exec df -i | grep -E "/$" | tail -1 | awk '{print 100-(($3/$2)*100)}' module_max 100 module_min 0 module_description Percentage Free i-nodes module_end ','Percentage of free i-nodes',1,'',43,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (29,'FreeDiskC','module_begin module_name FreeDiskC module_type generic_data module_freepercentdisk C: module_description Free space on drive C: (%) module_min_warning 31 module_max_warning 40 module_min_critical 0 module_max_critical 30 module_end ','Free space on disk C: (%)',9,'',11,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (30,'Windows_Update_LastRun','module_begin module_name Windows_Update_LastRun module_type generic_data_string module_exec getreg LM "SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" SetupWizardLaunchTime module_description Last date and time user launch microsoft Windows update module_end','Last date and time user launch microsoft Windows update',9,'',11,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (31,'cpu_user','module_begin module_name cpu_user module_type generic_data module_interval 1 module_exec vmstat -n0 1 2 | tail -1 | awk '{ print $15 }' module_max 100 module_min 0 module_description User CPU Usage (%) module_end','User CPU Usage (%)',4,'',47,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (32,'cpu_system','module_begin module_name cpu_system module_type generic_data module_interval 1 module_exec vmstat -n0 1 2 | tail -1 | awk '{ print $16 }' module_max 100 module_min 0 module_description System CPU Usage (%) module_end','System CPU Usage (%)',4,'',47,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (33,'Load Average','module_begin module_name Load Average module_type generic_data module_exec uptime | cut -d "," -f 4 | cut -d ":" -f 2 | sed "s/ //g" module_description Average process in CPU (Last minute) module_end ','Average process in CPU (Last minute)',4,'',47,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (34,'disk_root_free','module_begin module_name disk_root_free module_type generic_data module_exec df -kh / | tail -1 | awk '{ print 100-$5 }' module_max 100 module_min 0 module_description Free disk Percentage of root partition module_end','Free disk Percentage of root partition',4,'',47,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (35,'memfree','module_begin module_name memfree module_type generic_data module_exec vmstat -H 1 2 | tail -1 | awk '{print $5}' module_description Unused RAM memory module_end ','Free memory on system',4,'',47,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (36,'sshDaemon','module_begin module_name sshDaemon module_type generic_proc module_exec ps -Af | grep sshd | grep -v "grep" | wc -l | sed "s/ //g" module_end ','Check if SSH daemon is running',4,'',47,2,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (37,'cpu_user','module_begin module_name cpu_user module_type generic_data module_interval 1 module_exec sar 1 2 | tail -1 | awk '{ print $2 }' module_max 100 module_min 0 module_description User CPU Usage (%) module_min_warning 70 module_max_warning 90 module_min_critical 91 module_max_critical 100 module_end','User CPU Usage (%)',8,'',48,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (38,'Load Average','module_begin module_name Load Average module_type generic_data module_exec uptime | sed 's/.*load averages: //'|awk '{print $1}' module_description Average process in CPU (Last minute) module_end ','Average process in CPU (Last minute)',8,'',48,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (39,'Cache mem free','module_begin module_name Cache mem free module_type generic_data module_exec vm_stat | grep 'Pages free'| awk '{print $3/256}' module_description Free cache memory in MB module_min_warning 500 module_max_warning 600 module_min_critical 100 module_max_critical 499 module_end ','Free cache memory in MB',8,'',48,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (40,'Free disk Percentage of root partition','module_begin module_name disk_root_free module_type generic_data module_exec df -kh / | tail -1 | awk '{ print 100-$5 }' module_max 100 module_min 0 module_description Free disk Percentage of root partition module_min_warning 70 module_max_warning 90 module_min_critical 91 module_max_critical 100 module_end','Free disk Percentage of root partition',8,'',48,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (41,'disk_usage_/','module_begin module_name disk_usage_/ module_type generic_data module_exec df -P | grep -e "/$" | awk '{print $5}' | tr -d % module_description Disk usage on / (%) module_end','Disk usage on / (%)',5,'',44,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (42,'Swap_Free','module_begin module_name Swap_Free module_type generic_data module_exec /usr/sbin/swapinfo -t | grep memory | tr -d "%" | awk '{ print 100-$5 }' module_description Unused swap memory module_end ','Unused swap memory',5,'',44,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (43,'RAM_Free','module_begin module_name RAM_Free module_type generic_data module_exec /usr/sbin/swapinfo -t | grep memory | awk '{print $4}' module_description Unused RAM memory module_end ','Unused RAM memory',5,'',44,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (44,'CPU_User','module_begin module_name CPU_User module_type generic_data module_exec vmstat 1 2 | tail -1 | awk '{ print $16 }' module_description % of USER CPU module_end','% of USER CPU',5,'',44,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (45,'CPU_System','module_begin module_name CPU_System module_type generic_data module_exec vmstat 1 2 | tail -1 | awk '{ print $17 }' module_description % of system CPU module_end ','% of system CPU',5,'',44,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (46,'disk_root_free','module_begin module_name disk_root_free module_type generic_data module_exec df -k / | tail -1 | tr -d "%" | awk '{ print 100-$5 }' module_max 100 module_min 0 module_description Free disk Percentage of root partition module_end','Free disk Percentage of root partition',2,'',45,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (47,'Swap_Free','module_begin module_name Swap_Free module_type generic_data module_exec vmstat 1 2 | tail -1 | awk '{ print $4 }' module_description Unused swap memory module_end','Unused swap memory',2,'',45,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (48,'RAM_Free','module_begin module_name RAM_Free module_type generic_data module_exec vmstat 1 2 | tail -1 | awk '{ print $5 }' module_description Unused RAM memory module_end','Unused RAM memory',2,'',45,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (49,'CPU_System','module_begin module_name CPU_System module_type generic_data module_exec vmstat 1 2 | tail -1 | awk '{ print $21 }' module_description % of system CPU module_end','% of system CPU',2,'',45,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (50,'Disk_Seek_Operations','module_begin module_name Disk_Seek_Operations module_type generic_data module_exec vmstat 1 2 | tail -1 | awk '{ print $14 }' module_description Disk Seek operations module_end','Disk Seek operations',2,'',45,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (51,'Pandora_Agent_RAM','module_begin module_name Pandora_Agent_RAM module_type generic_data module_exec ps -Afly | grep perl | grep -v grep | awk '{ print $9 }' module_description Return size in KB of memory used by process Pandora module_end ','Return size in KB of memory used by process Pandora',2,'',45,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (52,'InetdDaemon','module_begin module_name InetdDaemon module_type generic_proc module_exec ps -Af | grep inetd | grep -v "grep" | wc -l | awk '{ print $1 }' module_end','Check inetd daemon running',2,'',45,2,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (53,'Pandora_Agent_RAM','module_begin module_name Pandora_Agent_RAM module_type generic_data module_exec ps axu | grep perl | grep -v grep | awk '{ print $4 }' | tr "," "." module_end ','Return RAM used by pandora fms agent.',3,'',46,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (54,'InetdDaemon','module_begin module_name InetdDaemon module_type generic_proc module_exec ps -Af | grep inetd | grep -v "grep" | wc -l | awk '{ print $1 }' module_end ','Check inetddaemon running in system',3,'',46,2,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (55,'disk_root_free','module_begin module_name disk_root_free module_type generic_data module_exec df -k / | tail -1 | awk '{ print 100-$4 }' module_max 100 module_min 0 module_description Free disk Percentage of root partition module_end','Free disk Percentage of root partition',3,'',46,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (56,'OpenedFiles ','module_begin module_name OpenedFiles module_type generic_data module_exec lsof | wc -l module_description Total files opened in system module_end ','Total files opened in system ',1,'',43,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (57,'Zombie processes','module_begin module_name Zombie processes module_type generic_data module_exec ps ­eos | grep Z | wc ­l | tr ­d “\n” module_description Number of zombie processes module_end ','Number of zombie processes ',1,'',43,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -INSERT INTO "tlocal_component" ("id", "name", "data", "description", "id_os", "os_version", "id_network_component_group", "type", "max", "min", "module_interval", "id_module_group", "history_data", "min_warning", "max_warning", "str_warning", "min_critical", "max_critical", "str_critical", "min_ff_event", "post_process", "unit", "wizard_level", "macros", "critical_instructions", "warning_instructions", "unknown_instructions", "critical_inverse", "warning_inverse", "id_category", "tags", "disabled_types_event", "min_ff_event_normal", "min_ff_event_warning", "min_ff_event_critical", "each_ff", "ff_timeout", "dynamic_interval", "dynamic_max", "dynamic_min", "prediction_sample_window", "prediction_samples", "prediction_threshold") VALUES (58,'Disk_IO_Wait','module_begin module_name Disk_IO_Wait module_type generic_data module_exec top -n 3 -c | grep "Cpu" | awk '{ print $6 }' | grep -o "[0-9]*" | tail -1 module_description Simple approach to IO/Wait monitoring. module_end ','Simple approach to IO/Wait monitoring. ',1,'',43,1,0,0,0,0,1,0.00,0.00,NULL,0.00,0.00,NULL,0,0.000000000000000,NULL,'basic',NULL,'','','',0,0,0,'','',0,0,0,0,0,0,0,0,0,0,0); -SELECT setval('tlocal_component_id_seq', (SELECT (SELECT MAX(id) FROM tlocal_component)),'basic'); - --- --- Dumping data for table `tskin` --- -INSERT INTO "tskin" VALUES (1,'skin default', 'skin_default', 'Default skin for Pandora FMS web console', 1); -INSERT INTO "tskin" VALUES (2,'Legacy', 'legacy', 'Skin of the visual style of Pandora FMS 4.x and previous versions', 1); -SELECT setval('tskin_id_seq', (SELECT (SELECT MAX(id) FROM tskin))); - -INSERT INTO `tmodule_inventory` VALUES (27,1,'IP','IP address','','Interface;Address',''); -INSERT INTO `tmodule_inventory` VALUES (28,1,'Routes','Routes table','','Destination;Gateway;Mask;Flags;Metric;Use;Interface',''); - ---- ---- Dumping data for table `tcollection` ---- - -INSERT INTO `tcollection` VALUES (1,'Apache Enterprise Plugin','apache_plugin',0,'Apache Enterprise Plugin to monitor Apache web server using a Perl script.',0); - ---- Example policies - -INSERT INTO `tpolicies` VALUES (1,'Basic Remote Checks','',13,0),(2,'Basic Linux Local Monitoring','',2,0),(3,'Basic Windows Local Monitoring','',2,0); -INSERT INTO `tpolicy_modules` VALUES (1,1,'',9,'','Check 80 port','',0,0,300,80,'','','public','',1,1,2,0,0,'','','',0,0.0000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0),(2,1,'',9,'','Check 443 port','',0,0,0,80,'','','public','',1,1,2,0,0,'','','',0,0.0000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0),(3,1,'',30,'','Check Web Latency','',0,0,0,0,'','','public','',1,1,7,0,0,'Pandora FMS 3.0 / Webcheck','1','task_begin get http://www.google.com check_string iGoogle task_end',0,0.0000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0),(4,1,'',31,'','Check Web Content','',0,0,0,0,'','','public','',1,1,7,0,0,'Pandora FMS 3.0 / Webcheck','1','task_begin get http://www.google.com check_string iGoogle task_end',0,0.0000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0),(5,2,'module_begin module_name Physical mem. free module_type generic_data module_freepercentmemory module_description Percentage Mem Free Phys module_end',1,'','Physical mem. free','',0,0,0,0,'','','','',1,1,1,0,0,'','','',0,0.0000000000000,0,0,0,'',1,31.00,40.00,'',0.00,30.00,'',0,NULL,NULL,NULL,0,0,0),(6,2,'module_begin module_name Zombie processes module_type generic_data module_exec ps -eos | grep Z | wc -l | tr -d “\n” module_description Number of zombie processes module_end',1,'','Zombie processes','',0,0,0,0,'','','','',1,1,1,0,0,'','','',0,0.0000000000000,0,0,0,'',1,30.00,60.00,'',61.00,100.00,'',0,NULL,NULL,NULL,0,0,0),(7,2,'module_begin module_name Processes high CPU module_type generic_data_string module_exec ps -eo pcpu,pid | sort -n | grep -v CPU | tail -1 | awk '{if ($1>90) print $2; else print "NA"}' | tr -d "\n" module_description PID Processes > 90% CPU module_end',3,'','Processes high CPU','',0,0,0,0,'','','','',1,1,1,0,0,'','','',0,0.0000000000000,0,0,0,'',1,50.00,100.00,'',101.00,300.00,'',0,NULL,NULL,NULL,0,0,0),(8,2,'module_begin module_name Free inodos / module_type generic_data module_exec df -i | grep -E "/$" | awk '{print 100-(($3/$2)*100)}' module_max 100 module_min 0 module_description Percentage Free i-nodos module_end',1,'','Free inodos /','',0,0,0,0,'','','','',1,1,1,0,0,'','','',0,0.0000000000000,0,0,0,'',1,21.00,30.00,'',0.00,20.00,'',0,NULL,NULL,NULL,0,0,0),(9,3,'module_begin module_name WMI Service module_type generic_proc module_service winmgmt module_description WMI Service enabled module_end',2,'','WMI Service','',0,0,0,0,'','','','',1,1,1,0,0,'','','',0,0.0000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0),(10,3,'module_begin module_name SNMP Service module_type generic_proc module_service SNMP module_description SNMP Service enabled module_end',2,'','SNMP Service','',0,0,0,0,'','','','',1,1,1,0,0,'','','',0,0.0000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0),(11,3,'module_begin module_name Disk Structure Corrupted module_type async_string module_logevent module_source System module_eventcode 55 module_application Ntfs module_description Disk structure corrupted module_end',23,'','Disk Structure Corrupted','',0,0,0,0,'','','','',1,1,1,0,0,'','','',0,0.0000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0),(12,3,'module_begin module_name Account deleted module_type async_string module_logevent module_source Security module_eventcode 4726 module_description Account deleted module_end',23,'','Account deleted','',0,0,0,0,'','','','',1,1,1,0,0,'','','',0,0.0000000000000,0,0,0,'',1,0.00,0.00,'',0.00,0.00,'',0,NULL,NULL,NULL,0,0,0); -INSERT INTO `tpolicy_alerts` VALUES (1,1,2,1,'',0,0,0),(2,1,1,1,'',0,0,0),(3,1,4,1,'',0,0,0),(4,2,8,1,'',0,0,0),(5,2,5,1,'',0,0,0),(6,2,7,1,'',0,0,0),(7,2,6,1,'',0,0,0),(8,3,10,1,'',0,0,0),(9,3,9,1,'',0,0,0); - --- --- Dumping data for table `tprofile_view` --- -INSERT INTO "tprofile_view" ("id_profile", "sec", "sec2") VALUES (5, '*', '*'); \ No newline at end of file diff --git a/pandora_console/pandoradb.oracle.sql b/pandora_console/pandoradb.oracle.sql deleted file mode 100644 index 614f954380..0000000000 --- a/pandora_console/pandoradb.oracle.sql +++ /dev/null @@ -1,3233 +0,0 @@ --- Pandora FMS - the Flexible Monitoring System --- ============================================ --- Copyright (c) 2005-2011 Artica Soluciones Tecnológicas, http://www.artica.es --- Please see http://pandora.sourceforge.net for full contribution list - --- This program is free software; you can redistribute it and/or --- modify it under the terms of the GNU General Public License --- as published by the Free Software Foundation for version 2. --- This program is distributed in the hope that it will be useful, --- but WITHOUT ANY WARRANTY; without even the implied warranty of --- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --- GNU General Public License for more details. --- You should have received a copy of the GNU General Public License --- along with this program; if not, write to the Free Software --- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - --- PLEASE NO NOT USE MULTILINE COMMENTS --- Because Pandora Installer don't understand them --- and fails creating database !!! --- ----------------------------------------------------------- --- Pandora FMS official tables for 4.0 version -- --- ----------------------------------------------------------- - --- Pandora schema creation script --- Triggers must end with two semicolons because Pandora installer need it -CREATE OR REPLACE FUNCTION UNIX_TIMESTAMP (oracletime IN DATE DEFAULT NULL ) RETURN INTEGER AS utcdate DATE; unixtime INTEGER; BEGIN IF (oracletime IS NULL) THEN utcdate := SYS_EXTRACT_UTC(SYSTIMESTAMP); ELSE utcdate := oracletime; END IF; unixtime := (utcdate - to_date('19700101','YYYYMMDD')) * 86400; RETURN unixtime; END;; -CREATE OR REPLACE FUNCTION NOW RETURN TIMESTAMP AS t_now TIMESTAMP; BEGIN SELECT LOCALTIMESTAMP INTO t_now FROM dual; RETURN t_now; END;; - -CREATE OR REPLACE FUNCTION FROM_UNIXTIME (p_unix_ts IN NUMBER) RETURN TIMESTAMP IS l_date TIMESTAMP; BEGIN l_date := date '1970-01-01' + p_unix_ts/60/60/24; RETURN l_date; END;; - -CREATE OR REPLACE FUNCTION DAYOFWEEK (p_date IN TIMESTAMP) RETURN NUMBER IS l_number_week NUMBER; BEGIN l_number_week := to_char(p_date, 'd'); RETURN l_number_week; END;; - -CREATE OR REPLACE FUNCTION TIME (p_date IN TIMESTAMP) RETURN VARCHAR2 IS l_time VARCHAR2(20); BEGIN l_time := TO_CHAR(p_date,'hh24:mi:ss'); RETURN l_time; END;; - --- Procedure for retrieve PK information after an insert statement -CREATE OR REPLACE PROCEDURE insert_id (table_name IN VARCHAR2, sql_insert IN VARCHAR2, id OUT NUMBER ) IS v_count NUMBER; BEGIN EXECUTE IMMEDIATE sql_insert; EXECUTE IMMEDIATE 'SELECT COUNT(*) FROM user_sequences WHERE sequence_name = UPPER(''' || table_name || '_s'')' INTO v_count; IF v_count >= 1 THEN EXECUTE IMMEDIATE 'SELECT ' || table_name || '_s.currval FROM DUAL' INTO id; ELSE id := 0; END IF; EXCEPTION WHEN others THEN RAISE_APPLICATION_ERROR(-20001, 'ERROR on insert_id procedure, please check input parameters or procedure logic.'); END insert_id;; - --- Procedure for update curr val of sequence -CREATE OR REPLACE PROCEDURE update_currval (table_name IN VARCHAR2, column_name IN VARCHAR2 ) IS key_max NUMBER; BEGIN EXECUTE IMMEDIATE 'SELECT MAX(' || column_name || ') FROM ' || table_name INTO key_max; IF (key_max IS NULL) THEN key_max := 1; ELSE key_max := key_max + 1; END IF; EXECUTE IMMEDIATE 'DROP SEQUENCE ' || table_name || '_s'; EXECUTE IMMEDIATE 'CREATE SEQUENCE ' || table_name || '_s INCREMENT BY 1 START WITH ' || key_max; EXECUTE IMMEDIATE 'SELECT ' || table_name || '_s.nextval FROM dual'; END update_currval;; - --- Type which constists in a table of VARCHAR2 -CREATE OR REPLACE TYPE t_varchar2_tab AS TABLE OF VARCHAR2(4000); - --- Function that uses the 't_varchar2_tab' type to concat elements and return them as 'CLOB', without the limitation of 'LISTAGG()' (VARCHAR2(4000)) -CREATE OR REPLACE FUNCTION tab_to_string (v_varchar2_tab IN t_varchar2_tab, v_delimiter IN CLOB DEFAULT ',') RETURN CLOB IS v_tmp_clob CLOB; v_clob CLOB := ''; BEGIN IF (v_varchar2_tab.COUNT > 0) THEN FOR i IN v_varchar2_tab.FIRST .. v_varchar2_tab.LAST LOOP IF (i != v_varchar2_tab.FIRST) THEN v_clob := v_clob || v_delimiter; END IF; v_tmp_clob := v_varchar2_tab(i); v_clob := v_clob || v_tmp_clob; END LOOP; END IF; RETURN v_clob; END tab_to_string;; - --- --------------------------------------------------------------------- --- Table `taddress` --- --------------------------------------------------------------------- -CREATE TABLE taddress ( - id_a NUMBER(10, 0) PRIMARY KEY, - ip VARCHAR(60) DEFAULT '', - ip_pack NUMBER(10, 0) DEFAULT 0 -); -CREATE INDEX taddress_ip_idx ON taddress(ip); - -CREATE SEQUENCE taddress_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER taddress_inc BEFORE INSERT ON taddress REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT taddress_s.nextval INTO :NEW.id_a FROM dual; END;; - --- --------------------------------------------------------------------- --- Table `taddress_agent` --- --------------------------------------------------------------------- -CREATE TABLE taddress_agent ( - id_ag NUMBER(19, 0) PRIMARY KEY, - id_a NUMBER(19, 0) DEFAULT 0, - id_agent NUMBER(19, 0) DEFAULT 0 -); - -CREATE SEQUENCE taddress_agent_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER taddress_agent_inc BEFORE INSERT ON taddress_agent REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT taddress_agent_s.nextval INTO :NEW.id_ag FROM dual; END;; - --- --------------------------------------------------------------------- --- Table `tagente` --- --------------------------------------------------------------------- -CREATE TABLE tagente ( - id_agente NUMBER(10, 0) PRIMARY KEY, - nombre VARCHAR2(600) DEFAULT '', - direccion VARCHAR2(100) DEFAULT '', - comentarios VARCHAR2(255) DEFAULT '', - id_grupo NUMBER(10, 0) DEFAULT 0, - ultimo_contacto TIMESTAMP DEFAULT to_timestamp('1970-01-01 00:00:00', 'yyyy-mm-dd hh24:mi:ss'), - modo NUMBER(5, 0) DEFAULT 0, - intervalo NUMBER(10, 0) DEFAULT 300, - id_os NUMBER(10, 0) DEFAULT 0, - os_version VARCHAR2(100) DEFAULT '', - agent_version VARCHAR2(100) DEFAULT '', - ultimo_contacto_remoto TIMESTAMP DEFAULT to_timestamp('1970-01-01 00:00:00', 'yyyy-mm-dd hh24:mi:ss'), - disabled NUMBER(5, 0) DEFAULT 0, - remote NUMBER(5, 0) DEFAULT 0, - id_parent NUMBER(10, 0) DEFAULT 0, - custom_id VARCHAR2(255) DEFAULT '', - server_name VARCHAR2(100) DEFAULT '', - cascade_protection NUMBER(5, 0) DEFAULT 0, - cascade_protection_module NUMBER(5, 0) DEFAULT 0, - --number of hours of diference with the server timezone - timezone_offset NUMBER(5, 0) DEFAULT 0, - --path in the server to the image of the icon representing the agent - icon_path VARCHAR2(127) DEFAULT '', - --set it to one to update the position data (altitude, longitude, latitude) whenetting information from the agent or to 0 to keep the last value and don\'t update it - update_gis_data NUMBER(5, 0) DEFAULT 1, - url_address CLOB DEFAULT '', - quiet NUMBER(5, 0) DEFAULT 0, - normal_count NUMBER(20, 0) DEFAULT 0, - warning_count NUMBER(20, 0) DEFAULT 0, - critical_count NUMBER(20, 0) DEFAULT 0, - unknown_count NUMBER(20, 0) DEFAULT 0, - notinit_count NUMBER(20, 0) DEFAULT 0, - total_count NUMBER(20, 0) DEFAULT 0, - fired_count NUMBER(20, 0) DEFAULT 0, - update_module_count NUMBER(5, 0) DEFAULT 0, - update_alert_count NUMBER(5, 0) DEFAULT 0, - transactional_agent NUMBER(5,0) DEFAULT 0 -); -CREATE INDEX tagente_nombre_idx ON tagente(nombre); -CREATE INDEX tagente_direccion_idx ON tagente(direccion); -CREATE INDEX tagente_disabled_idx ON tagente(disabled); -CREATE INDEX tagente_id_grupo_idx ON tagente(id_grupo); - -CREATE SEQUENCE tagente_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tagente_inc BEFORE INSERT ON tagente REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tagente_s.nextval INTO :NEW.id_agente FROM dual; END;; - --- ----------------------------------------------------- --- Table `tagente_datos` --- ----------------------------------------------------- -CREATE TABLE tagente_datos ( - id_agente_modulo NUMBER(10, 0) DEFAULT 0, - datos BINARY_DOUBLE DEFAULT NULL, - utimestamp NUMBER(10, 0) DEFAULT 0 -); -CREATE INDEX tagente_datos_id_agent_mod_idx ON tagente_datos(id_agente_modulo); -CREATE INDEX tagente_datos_utimestamp_idx ON tagente_datos(utimestamp); - --- This sequence will not work with the 'insert_id' procedure - --- ----------------------------------------------------- --- Table `tagente_datos_inc` --- ----------------------------------------------------- -CREATE TABLE tagente_datos_inc ( - id_agente_modulo NUMBER(10, 0) DEFAULT 0, - datos BINARY_DOUBLE DEFAULT NULL, - utimestamp NUMBER(10, 0) DEFAULT 0 -); -CREATE INDEX tagente_datos_inc_id_ag_mo_idx ON tagente_datos_inc(id_agente_modulo); - --- This sequence will not work with the 'insert_id' procedure - --- ----------------------------------------------------- --- Table `tagente_datos_string` --- ----------------------------------------------------- -CREATE TABLE tagente_datos_string ( - id_agente_modulo NUMBER(10, 0), - datos CLOB, - utimestamp NUMBER(10, 0) DEFAULT 0 -); -CREATE INDEX tagente_datos_string_utsta_idx ON tagente_datos_string(utimestamp); - --- This sequence will not work with the 'insert_id' procedure - --- ----------------------------------------------------- --- Table `tagente_datos_log4x` --- ----------------------------------------------------- -CREATE TABLE tagente_datos_log4x ( - id_tagente_datos_log4x NUMBER(19, 0) PRIMARY KEY, - id_agente_modulo NUMBER(10, 0) DEFAULT 0, - severity CLOB, - message CLOB, - stacktrace CLOB, - utimestamp NUMBER(10, 0) DEFAULT 0 -); -CREATE INDEX tagente_datos_log4x_id_a_m_idx ON tagente_datos_log4x(id_agente_modulo); - -CREATE SEQUENCE tagente_datos_log4x_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tagente_datos_log4x_inc BEFORE INSERT ON tagente_datos_log4x REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tagente_datos_log4x_s.nextval INTO :NEW.id_tagente_datos_log4x FROM dual; END;; - --- ----------------------------------------------------- --- Table `tagente_estado` --- ----------------------------------------------------- -CREATE TABLE tagente_estado ( - id_agente_estado NUMBER(10, 0) PRIMARY KEY, - id_agente_modulo NUMBER(10, 0) DEFAULT 0, - datos CLOB DEFAULT '', - timestamp TIMESTAMP DEFAULT NULL, - estado NUMBER(10, 0) DEFAULT 0, - known_status NUMBER(10, 0) DEFAULT 0, - id_agente NUMBER(10, 0) DEFAULT 0, - last_try TIMESTAMP DEFAULT NULL, - utimestamp NUMBER(19, 0) DEFAULT 0, - current_interval NUMBER(10, 0) DEFAULT 0, - running_by NUMBER(10, 0) DEFAULT 0, - last_execution_try NUMBER(19, 0) DEFAULT 0, - status_changes NUMBER(10, 0) DEFAULT 0, - last_status NUMBER(10, 0) DEFAULT 0, - last_known_status NUMBER(10, 0) DEFAULT 0, - last_error NUMBER(10, 0) DEFAULT 0, - ff_start_utimestamp NUMBER(10, 0) DEFAULT 0 -); -CREATE INDEX tagente_estado_id_agente_idx ON tagente_estado(id_agente); -CREATE INDEX tagente_estado_estado_idx ON tagente_estado(estado); -CREATE INDEX tagente_estado_curr_inter_idx ON tagente_estado(current_interval); -CREATE INDEX tagente_estado_running_by_idx ON tagente_estado(running_by); -CREATE INDEX tagente_estado_last_ex_try_idx ON tagente_estado(last_execution_try); - -CREATE SEQUENCE tagente_estado_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tagente_estado_inc BEFORE INSERT ON tagente_estado REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tagente_estado_s.nextval INTO :NEW.id_agente_estado FROM dual; END;; - --- Probably last_execution_try index is not useful and loads more than benefits - --- id_modulo now uses tmodule --- --------------------------- --- 1 - Data server modules (agent related modules) --- 2 - Network server modules --- 4 - Plugin server --- 5 - Predictive server --- 6 - WMI server --- 7 - WEB Server (enteprise) - --- ----------------------------------------------------- --- Table `tagente_modulo` --- ----------------------------------------------------- -CREATE TABLE tagente_modulo ( - id_agente_modulo NUMBER(10, 0) PRIMARY KEY, - id_agente NUMBER(10, 0) DEFAULT 0, - id_tipo_modulo NUMBER(10, 0) DEFAULT 0, - descripcion CLOB DEFAULT '', - extended_info CLOB DEFAULT '', - nombre VARCHAR2(4000) DEFAULT '', - unit VARCHAR2(100) DEFAULT '', - id_policy_module NUMBER(10, 0) DEFAULT 0, - max NUMBER(19, 0) DEFAULT 0, - min NUMBER(19, 0) DEFAULT 0, - module_interval NUMBER(10, 0) DEFAULT 0, - module_ff_interval NUMBER(10, 0) DEFAULT 0, - cron_interval VARCHAR2(100) DEFAULT '', - tcp_port NUMBER(10, 0) DEFAULT 0, - tcp_send CLOB DEFAULT '', - tcp_rcv CLOB DEFAULT '', - snmp_community VARCHAR2(100) DEFAULT '', - snmp_oid VARCHAR2(255) DEFAULT '0', - ip_target VARCHAR2(100) DEFAULT '', - id_module_group NUMBER(10, 0) DEFAULT 0, - flag NUMBER(5, 0) DEFAULT 1, - id_modulo NUMBER(10, 0) DEFAULT 0, - disabled NUMBER(5, 0) DEFAULT 0, - id_export NUMBER(10, 0) DEFAULT 0, - plugin_user CLOB DEFAULT '', - plugin_pass CLOB DEFAULT '', - plugin_parameter CLOB DEFAULT '', - id_plugin NUMBER(10, 0) DEFAULT 0, - post_process BINARY_DOUBLE DEFAULT 0, - prediction_module NUMBER(19, 0) DEFAULT 0, - max_timeout NUMBER(10, 0) DEFAULT 0, - max_retries NUMBER(10, 0) DEFAULT 0, - custom_id VARCHAR2(255) DEFAULT '', - history_data NUMBER(5, 0) DEFAULT 1, - min_warning BINARY_DOUBLE DEFAULT 0, - max_warning BINARY_DOUBLE DEFAULT 0, - str_warning CLOB DEFAULT '', - min_critical BINARY_DOUBLE DEFAULT 0, - max_critical BINARY_DOUBLE DEFAULT 0, - str_critical CLOB DEFAULT '', - min_ff_event INTEGER DEFAULT 0, - delete_pending NUMBER(5, 0) DEFAULT 0, - policy_linked NUMBER(5, 0) DEFAULT 0, - policy_adopted NUMBER(5, 0) DEFAULT 0, - custom_string_1 CLOB DEFAULT '', - custom_string_2 CLOB DEFAULT '', - custom_string_3 CLOB DEFAULT '', - custom_integer_1 NUMBER(10, 0) DEFAULT 0, - custom_integer_2 NUMBER(10, 0) DEFAULT 0, - wizard_level VARCHAR2(100) DEFAULT 'nowizard', - macros CLOB DEFAULT '', - critical_instructions CLOB DEFAULT '', - warning_instructions CLOB DEFAULT '', - unknown_instructions CLOB DEFAULT '', - quiet NUMBER(5, 0) DEFAULT 0, - critical_inverse NUMBER(1, 0) DEFAULT 0, - warning_inverse NUMBER(1, 0) DEFAULT 0, - id_category NUMBER(10, 0) DEFAULT 0, - disabled_types_event CLOB DEFAULT '', - module_macros CLOB DEFAULT '', - min_ff_event_normal INTEGER DEFAULT 0, - min_ff_event_warning INTEGER DEFAULT 0, - min_ff_event_critical INTEGER DEFAULT 0, - each_ff NUMBER(1, 0) DEFAULT 0, - ff_timeout INTEGER DEFAULT 0, - dynamic_interval INTEGER default 0, - dynamic_max INTEGER default 0, - dynamic_min INTEGER default 0, - dynamic_next INTEGER NOT NULL default 0, - dynamic_two_tailed INTEGER default 0, - prediction_sample_window INTEGER default 0, - prediction_samples INTEGER default 0, - prediction_threshold INTEGER default 0, - alias varchar2(600) NOT NULL default '', - parent_module_id NUMBER(10, 0), - CONSTRAINT t_agente_modulo_wizard_cons CHECK (wizard_level IN ('basic','advanced','nowizard')) -); -CREATE INDEX tagente_modulo_id_agente_idx ON tagente_modulo(id_agente); -CREATE INDEX tagente_modulo_id_t_mod_idx ON tagente_modulo(id_tipo_modulo); -CREATE INDEX tagente_modulo_disabled_idx ON tagente_modulo(disabled); - -CREATE SEQUENCE tagente_modulo_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tagente_modulo_inc BEFORE INSERT ON tagente_modulo REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tagente_modulo_s.nextval INTO :NEW.id_agente_modulo FROM dual; END;; - --- snmp_oid is also used for WMI query - --- ----------------------------------------------------- --- Table `tagent_access` --- ----------------------------------------------------- -CREATE TABLE tagent_access ( - id_agent NUMBER(10, 0) DEFAULT 0, - utimestamp NUMBER(19, 0) DEFAULT 0 -); -CREATE INDEX tagent_access_id_agent_idx ON tagent_access(id_agent); -CREATE INDEX tagent_access_utimestamp_idx ON tagent_access(utimestamp); - --- This sequence will not work with the 'insert_id' procedure - --- ----------------------------------------------------- --- Table `talert_snmp` --- ----------------------------------------------------- -CREATE TABLE talert_snmp ( - id_as NUMBER(10, 0) PRIMARY KEY, - id_alert NUMBER(10, 0) DEFAULT 0, - al_field1 CLOB DEFAULT '', - al_field2 CLOB DEFAULT '', - al_field3 CLOB DEFAULT '', - al_field4 CLOB DEFAULT '', - al_field5 CLOB DEFAULT '', - al_field6 CLOB DEFAULT '', - al_field7 CLOB DEFAULT '', - al_field8 CLOB DEFAULT '', - al_field9 CLOB DEFAULT '', - al_field10 CLOB DEFAULT '', - al_field11 CLOB DEFAULT '', - al_field12 CLOB DEFAULT '', - al_field13 CLOB DEFAULT '', - al_field14 CLOB DEFAULT '', - al_field15 CLOB DEFAULT '', - description VARCHAR2(255) DEFAULT '', - alert_type NUMBER(5, 0) DEFAULT 0, - agent VARCHAR2(100) DEFAULT '', - custom_oid CLOB DEFAULT '', - oid VARCHAR2(255) DEFAULT '', - time_threshold NUMBER(10, 0) DEFAULT 0, - times_fired NUMBER(5, 0) DEFAULT 0, - last_fired TIMESTAMP DEFAULT NULL, - max_alerts NUMBER(10, 0) DEFAULT 1, - min_alerts NUMBER(10, 0) DEFAULT 1, - internal_counter NUMBER(10, 0) DEFAULT 0, - priority NUMBER(10, 0) DEFAULT 0, - "_snmp_f1_" CLOB DEFAULT '', - "_snmp_f2_" CLOB DEFAULT '', - "_snmp_f3_" CLOB DEFAULT '', - "_snmp_f4_" CLOB DEFAULT '', - "_snmp_f5_" CLOB DEFAULT '', - "_snmp_f6_" CLOB DEFAULT '', - "_snmp_f7_" CLOB DEFAULT '', - "_snmp_f8_" CLOB DEFAULT '', - "_snmp_f9_" CLOB DEFAULT '', - "_snmp_f10_" CLOB DEFAULT '', - "_snmp_f11_" CLOB DEFAULT '', - "_snmp_f12_" CLOB DEFAULT '', - "_snmp_f13_" CLOB DEFAULT '', - "_snmp_f14_" CLOB DEFAULT '', - "_snmp_f15_" CLOB DEFAULT '', - "_snmp_f16_" CLOB DEFAULT '', - "_snmp_f17_" CLOB DEFAULT '', - "_snmp_f18_" CLOB DEFAULT '', - "_snmp_f19_" CLOB DEFAULT '', - "_snmp_f20_" CLOB DEFAULT '', - trap_type NUMBER(10, 0) DEFAULT -1, - single_value VARCHAR2(255) DEFAULT '', - position NUMBER(10, 0) DEFAULT 0, - id_group NUMBER(10, 0) DEFAULT 0, - order_1 NUMBER(10, 0) DEFAULT 1 , - order_2 NUMBER(10, 0) DEFAULT 2 , - order_3 NUMBER(10, 0) DEFAULT 3 , - order_4 NUMBER(10, 0) DEFAULT 4 , - order_5 NUMBER(10, 0) DEFAULT 5 , - order_6 NUMBER(10, 0) DEFAULT 6 , - order_7 NUMBER(10, 0) DEFAULT 7 , - order_8 NUMBER(10, 0) DEFAULT 8 , - order_9 NUMBER(10, 0) DEFAULT 9 , - order_10 NUMBER(10, 0) DEFAULT 10 , - order_11 NUMBER(10, 0) DEFAULT 11 , - order_12 NUMBER(10, 0) DEFAULT 12 , - order_13 NUMBER(10, 0) DEFAULT 13 , - order_14 NUMBER(10, 0) DEFAULT 14 , - order_15 NUMBER(10, 0) DEFAULT 15 , - order_16 NUMBER(10, 0) DEFAULT 16 , - order_17 NUMBER(10, 0) DEFAULT 17 , - order_18 NUMBER(10, 0) DEFAULT 18 , - order_19 NUMBER(10, 0) DEFAULT 19 , - order_20 NUMBER(10, 0) DEFAULT 20 -); - -CREATE SEQUENCE talert_snmp_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER talert_snmp_inc BEFORE INSERT ON talert_snmp REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT talert_snmp_s.nextval INTO :NEW.id_as FROM dual; END;; - --- ----------------------------------------------------- --- Table `talert_commands` --- ----------------------------------------------------- -CREATE TABLE talert_commands ( - id NUMBER(10, 0) PRIMARY KEY, - name VARCHAR2(100) DEFAULT '', - command CLOB DEFAULT '', - description CLOB DEFAULT '', - internal NUMBER(10, 0) DEFAULT 0, - fields_descriptions CLOB DEFAULT '', - fields_values CLOB DEFAULT '' -); - -CREATE SEQUENCE talert_commands_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER talert_commands_inc BEFORE INSERT ON talert_commands REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT talert_commands_s.nextval INTO :NEW.id FROM dual; END;; - --- ----------------------------------------------------- --- Table `talert_actions` --- ----------------------------------------------------- -CREATE TABLE talert_actions ( - id NUMBER(10, 0) PRIMARY KEY, - name CLOB DEFAULT '', - id_alert_command NUMBER(10, 0) DEFAULT 0 REFERENCES talert_commands(id) ON DELETE CASCADE, - field1 CLOB DEFAULT '', - field2 CLOB DEFAULT '', - field3 CLOB DEFAULT '', - field4 CLOB DEFAULT '', - field5 CLOB DEFAULT '', - field6 CLOB DEFAULT '', - field7 CLOB DEFAULT '', - field8 CLOB DEFAULT '', - field9 CLOB DEFAULT '', - field10 CLOB DEFAULT '', - field11 CLOB DEFAULT '', - field12 CLOB DEFAULT '', - field13 CLOB DEFAULT '', - field14 CLOB DEFAULT '', - field15 CLOB DEFAULT '', - id_group NUMBER(19, 0) DEFAULT 0, - action_threshold NUMBER(19, 0) DEFAULT 0, - field1_recovery CLOB DEFAULT '', - field2_recovery CLOB DEFAULT '', - field3_recovery CLOB DEFAULT '', - field4_recovery CLOB DEFAULT '', - field5_recovery CLOB DEFAULT '', - field6_recovery CLOB DEFAULT '', - field7_recovery CLOB DEFAULT '', - field8_recovery CLOB DEFAULT '', - field9_recovery CLOB DEFAULT '', - field10_recovery CLOB DEFAULT '', - field11_recovery CLOB DEFAULT '', - field12_recovery CLOB DEFAULT '', - field13_recovery CLOB DEFAULT '', - field14_recovery CLOB DEFAULT '', - field15_recovery CLOB DEFAULT '', -); - -CREATE SEQUENCE talert_actions_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER talert_actions_inc BEFORE INSERT ON talert_actions REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT talert_actions_s.nextval INTO :NEW.id FROM dual; END;; - --- on update trigger -CREATE OR REPLACE TRIGGER talert_actions_update AFTER UPDATE OF id ON talert_commands FOR EACH ROW BEGIN UPDATE talert_actions SET id_alert_command = :NEW.id WHERE id_alert_command = :OLD.id; END;; - --- ----------------------------------------------------- --- Table `talert_templates` --- ----------------------------------------------------- --- use to_char(time_from, 'hh24:mi:ss') function to retrieve time_from field info --- use to_char(time_to, 'hh24:mi:ss') function to retrieve time_to field info -CREATE TABLE talert_templates ( - id NUMBER(10, 0) PRIMARY KEY, - name CLOB DEFAULT '', - description CLOB DEFAULT '', - id_alert_action NUMBER(10, 0) REFERENCES talert_actions(id) ON DELETE SET NULL, - field1 CLOB DEFAULT '', - field2 CLOB DEFAULT '', - field3 CLOB DEFAULT '', - field4 CLOB DEFAULT '', - field5 CLOB DEFAULT '', - field6 CLOB DEFAULT '', - field7 CLOB DEFAULT '', - field8 CLOB DEFAULT '', - field9 CLOB DEFAULT '', - field10 CLOB DEFAULT '', - field11 CLOB DEFAULT '', - field12 CLOB DEFAULT '', - field13 CLOB DEFAULT '', - field14 CLOB DEFAULT '', - field15 CLOB DEFAULT '', - type VARCHAR2(50), - value VARCHAR2(255) DEFAULT '', - matches_value NUMBER(5, 0) DEFAULT 0, - max_value DOUBLE PRECISION DEFAULT NULL, - min_value DOUBLE PRECISION DEFAULT NULL, - time_threshold NUMBER(10, 0) DEFAULT 0, - max_alerts NUMBER(10, 0) DEFAULT 1, - min_alerts NUMBER(10, 0) DEFAULT 0, - time_from TIMESTAMP DEFAULT to_date('00:00:00','hh24:mi:ss'), - time_to TIMESTAMP DEFAULT to_date('00:00:00','hh24:mi:ss'), - monday NUMBER(5, 0) DEFAULT 1, - tuesday NUMBER(5, 0) DEFAULT 1, - wednesday NUMBER(5, 0) DEFAULT 1, - thursday NUMBER(5, 0) DEFAULT 1, - friday NUMBER(5, 0) DEFAULT 1, - saturday NUMBER(5, 0) DEFAULT 1, - sunday NUMBER(5, 0) DEFAULT 1, - recovery_notify NUMBER(5, 0) DEFAULT 0, - field1_recovery CLOB DEFAULT '', - field2_recovery CLOB DEFAULT '', - field3_recovery CLOB DEFAULT '', - field4_recovery CLOB DEFAULT '', - field5_recovery CLOB DEFAULT '', - field6_recovery CLOB DEFAULT '', - field7_recovery CLOB DEFAULT '', - field8_recovery CLOB DEFAULT '', - field9_recovery CLOB DEFAULT '', - field10_recovery CLOB DEFAULT '', - field11_recovery CLOB DEFAULT '', - field12_recovery CLOB DEFAULT '', - field13_recovery CLOB DEFAULT '', - field14_recovery CLOB DEFAULT '', - field15_recovery CLOB DEFAULT '', - priority NUMBER(10, 0) DEFAULT 0, - id_group NUMBER(10, 0) DEFAULT 0, - special_day NUMBER(5, 0) DEFAULT 0, - wizard_level VARCHAR2(100) DEFAULT 'nowizard', - min_alerts_reset_counter NUMBER(5, 0) DEFAULT 0, - CONSTRAINT t_alert_templates_type_cons CHECK (type IN ('regex', 'max_min', 'max', 'min', 'equal', 'not_equal', 'warning', 'critical', 'onchange', 'unknown', 'always')), - CONSTRAINT t_alert_templates_wizard_cons CHECK (wizard_level IN ('basic','advanced','nowizard')) -); -CREATE INDEX talert_templates_id_al_act_idx ON talert_templates(id_alert_action); - -CREATE SEQUENCE talert_templates_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER talert_templates_inc BEFORE INSERT ON talert_templates REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT talert_templates_s.nextval INTO :NEW.id FROM dual; END;; - --- on update trigger -CREATE OR REPLACE TRIGGER talert_templates_update AFTER UPDATE OF id ON talert_actions FOR EACH ROW BEGIN UPDATE talert_templates SET id_alert_action = :NEW.id WHERE id_alert_action = :OLD.id; END;; - --- ----------------------------------------------------- --- Table `talert_template_modules` --- ----------------------------------------------------- -CREATE TABLE talert_template_modules ( - id NUMBER(10, 0) PRIMARY KEY, - id_agent_module NUMBER(10, 0) REFERENCES tagente_modulo(id_agente_modulo) ON DELETE CASCADE, - id_alert_template NUMBER(10, 0) REFERENCES talert_templates(id) ON DELETE CASCADE, - id_policy_alerts NUMBER(10, 0) DEFAULT 0, - internal_counter NUMBER(10, 0) DEFAULT 0, - last_fired NUMBER(19, 0) DEFAULT 0, - last_reference NUMBER(19, 0) DEFAULT 0, - times_fired NUMBER(10, 0) DEFAULT 0, - disabled NUMBER(5, 0) DEFAULT 0, - standby NUMBER(5, 0) DEFAULT 0, - priority NUMBER(10, 0) DEFAULT 0, - force_execution NUMBER(5, 0) DEFAULT 0 -); -CREATE UNIQUE INDEX talert_template_modules_idx ON talert_template_modules(id_agent_module); - -CREATE SEQUENCE talert_template_modules_s INCREMENT BY 1 START WITH 1; - -CREATE OR REPLACE TRIGGER talert_template_modules_inc BEFORE INSERT ON talert_template_modules REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT talert_template_modules_s.nextval INTO :NEW.id FROM dual; END;; - --- on update trigger -CREATE OR REPLACE TRIGGER talert_template_modules_update AFTER UPDATE OF id_agente_modulo ON tagente_modulo FOR EACH ROW BEGIN UPDATE talert_template_modules SET id_agent_module = :NEW.id_agente_modulo WHERE id_agent_module = :OLD.id_agente_modulo; END;; - --- on update trigger 1 -CREATE OR REPLACE TRIGGER talert_template_module_update1 AFTER UPDATE OF id ON talert_templates FOR EACH ROW BEGIN UPDATE talert_template_modules SET id_alert_template = :NEW.id WHERE id_alert_template = :OLD.id; END;; - --- ----------------------------------------------------- --- Table `talert_template_module_actions` --- ----------------------------------------------------- -CREATE TABLE talert_template_module_actions ( - id NUMBER(10, 0) PRIMARY KEY, - id_alert_template_module NUMBER(10, 0) REFERENCES talert_template_modules(id) ON DELETE CASCADE, - id_alert_action NUMBER(10, 0) REFERENCES talert_actions(id) ON DELETE CASCADE, - fires_min NUMBER(10, 0) DEFAULT 0, - fires_max NUMBER(10, 0) DEFAULT 0, - module_action_threshold NUMBER(10, 0) DEFAULT 0, - last_execution NUMBER(18, 0) DEFAULT 0 -); --- This sequence will not work with the 'insert_id' procedure -CREATE SEQUENCE talert_template_modu_actions_s INCREMENT BY 1 START WITH 1; - -CREATE OR REPLACE TRIGGER talert_template_mod_action_inc BEFORE INSERT ON talert_template_module_actions REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT talert_template_modu_actions_s.nextval INTO :NEW.id FROM dual; END;; - --- on update trigger -CREATE OR REPLACE TRIGGER talert_template_mod_act_update AFTER UPDATE OF id ON talert_template_modules FOR EACH ROW BEGIN UPDATE talert_template_module_actions SET id_alert_template_module = :NEW.id WHERE id_alert_template_module = :OLD.id; END;; - --- on update trigger 1 -CREATE OR REPLACE TRIGGER talert_template_mod_ac_update1 AFTER UPDATE OF id ON talert_actions FOR EACH ROW BEGIN UPDATE talert_template_module_actions SET id_alert_action = :NEW.id WHERE id_alert_action = :OLD.id; END;; - --- ----------------------------------------------------- --- Table `talert_special_days` --- ----------------------------------------------------- -CREATE TABLE talert_special_days ( - id NUMBER(10,0) PRIMARY KEY, - id_group NUMBER(10, 0) DEFAULT 0, - "date" DATE, - same_day VARCHAR2(20) DEFAULT 'sunday', - description CLOB, - CONSTRAINT talert_special_days_sday_cons CHECK (same_day IN ('monday','tuesday','wednesday','thursday','friday','saturday','sunday')) -); - --- on update trigger -CREATE SEQUENCE talert_special_days_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER talert_special_days_inc BEFORE INSERT ON talert_special_days REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT talert_special_days_s.nextval INTO :NEW.id FROM dual; END talert_special_days_inc;; - --- --------------------------------------------------------------------- --- Table `tattachment` --- --------------------------------------------------------------------- --- Priority : 0 - Maintance (grey) --- Priority : 1 - Low (green) --- Priority : 2 - Normal (blue) --- Priority : 3 - Warning (yellow) --- Priority : 4 - Critical (red) -CREATE TABLE tattachment ( - id_attachment NUMBER(10, 0) PRIMARY KEY, - id_incidencia NUMBER(10, 0) DEFAULT 0, - id_usuario VARCHAR2(60) DEFAULT '', - filename VARCHAR2(255) DEFAULT '', - description VARCHAR2(150) DEFAULT '', - "size" NUMBER(19, 0) DEFAULT 0 -); - -CREATE SEQUENCE tattachment_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tattachment_inc BEFORE INSERT ON tattachment REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tattachment_s.nextval INTO :NEW.id_attachment FROM dual; END;; - --- --------------------------------------------------------------------- --- Table `tconfig` --- --------------------------------------------------------------------- -CREATE TABLE tconfig ( - id_config NUMBER(10, 0) PRIMARY KEY, - token VARCHAR2(100) DEFAULT '', - value CLOB DEFAULT '' -); - -CREATE SEQUENCE tconfig_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tconfig_inc BEFORE INSERT ON tconfig REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tconfig_s.nextval INTO :NEW.id_config FROM dual; END;; - --- --------------------------------------------------------------------- --- Table `tconfig_os` --- --------------------------------------------------------------------- -CREATE TABLE tconfig_os ( - id_os NUMBER(10, 0) PRIMARY KEY, - name VARCHAR2(100) DEFAULT '', - description VARCHAR2(250) DEFAULT '', - icon_name VARCHAR2(100) DEFAULT '' -); - -CREATE SEQUENCE tconfig_os_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tconfig_os_inc BEFORE INSERT ON tconfig_os REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tconfig_os_s.nextval INTO :NEW.id_os FROM dual; END;; - --- --------------------------------------------------------------------- --- Table `tevento` --- --------------------------------------------------------------------- --- use to_char(timestamp, 'hh24:mi:ss') function to retrieve timestamp field info -CREATE TABLE tevento ( - id_evento NUMBER(19, 0) PRIMARY KEY, - id_agente NUMBER(10, 0) DEFAULT 0, - id_usuario VARCHAR2(100) DEFAULT '0', - id_grupo NUMBER(10, 0) DEFAULT 0, - estado NUMBER(10, 0) DEFAULT 0, - timestamp TIMESTAMP DEFAULT NULL, - evento CLOB DEFAULT '', - utimestamp NUMBER(19, 0) DEFAULT 0, - event_type VARCHAR2(50) DEFAULT 'unknown', - id_agentmodule NUMBER(10, 0) DEFAULT 0, - id_alert_am NUMBER(10, 0) DEFAULT 0, - criticity NUMBER(10, 0) DEFAULT 0, - user_comment CLOB, - tags CLOB, - source VARCHAR2(100) DEFAULT '', - id_extra VARCHAR2(100) DEFAULT '', - critical_instructions CLOB DEFAULT '', - warning_instructions CLOB DEFAULT '', - unknown_instructions CLOB DEFAULT '', - owner_user VARCHAR2(100) DEFAULT '0', - ack_utimestamp NUMBER(19, 0) DEFAULT 0, - custom_data CLOB, - CONSTRAINT tevento_event_type_cons CHECK (event_type IN ('going_unknown','unknown','alert_fired','alert_recovered','alert_ceased','alert_manual_validation','recon_host_detected','system','error','new_agent','going_up_warning','going_up_critical','going_down_warning','going_down_normal','going_down_critical','going_up_normal', 'configuration_change')) -); -CREATE INDEX tevento_id_1_idx ON tevento(id_agente, id_evento); -CREATE INDEX tevento_id_2_idx ON tevento(utimestamp, id_evento); -CREATE INDEX tevento_id_agentmodule_idx ON tevento(id_agentmodule); - -CREATE SEQUENCE tevento_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tevento_inc BEFORE INSERT ON tevento REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tevento_s.nextval INTO :NEW.id_evento FROM dual; END;; - --- --------------------------------------------------------------------- --- Table `tgrupo` --- --------------------------------------------------------------------- --- Criticity: 0 - Maintance (grey) --- Criticity: 1 - Informational (blue) --- Criticity: 2 - Normal (green) (status 0) --- Criticity: 3 - Warning (yellow) (status 2) --- Criticity: 4 - Critical (red) (status 1) -CREATE TABLE tgrupo ( - id_grupo NUMBER(10, 0) PRIMARY KEY, - nombre VARCHAR2(100) DEFAULT '', - icon VARCHAR2(50) DEFAULT 'world', - parent NUMBER(10, 0) DEFAULT 0, - propagate NUMBER(5, 0) DEFAULT 0, - disabled NUMBER(5, 0) DEFAULT 0, - custom_id VARCHAR2(255) DEFAULT '', - id_skin NUMBER(10, 0) DEFAULT 0, - description CLOB, - contact CLOB, - other CLOB -); - -CREATE SEQUENCE tgrupo_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tgrupo_inc BEFORE INSERT ON tgrupo REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tgrupo_s.nextval INTO :NEW.id_grupo FROM dual; END;; - --- --------------------------------------------------------------------- --- Table `tincidencia` --- --------------------------------------------------------------------- -CREATE TABLE tincidencia ( - id_incidencia NUMBER(19, 0) PRIMARY KEY, - inicio TIMESTAMP DEFAULT NULL, - cierre TIMESTAMP DEFAULT NULL, - titulo CLOB DEFAULT '', - descripcion CLOB, - id_usuario VARCHAR2(60) DEFAULT '', - origen VARCHAR2(100) DEFAULT '', - estado NUMBER(10, 0) DEFAULT 0, - prioridad NUMBER(10, 0) DEFAULT 0, - id_grupo NUMBER(10, 0) DEFAULT 0, - actualizacion TIMESTAMP DEFAULT CURRENT_TIMESTAMP, - id_creator VARCHAR2(60) DEFAULT NULL, - id_lastupdate VARCHAR2(60) DEFAULT NULL, - id_agente_modulo NUMBER(19, 0), - notify_email NUMBER(10, 0) DEFAULT 0, - id_agent NUMBER(19, 0) DEFAULT 0 NULL -); -CREATE INDEX tincidencia_id_1_idx ON tincidencia(id_usuario,id_incidencia); -CREATE INDEX tincidencia_id_agente_mod_idx ON tincidencia(id_agente_modulo); - ---This trigger is for tranlate on update CURRENT_TIMESTAMP of MySQL. -CREATE OR REPLACE TRIGGER tincidencia_actualizacion_ts BEFORE UPDATE ON tincidencia FOR EACH ROW BEGIN select CURRENT_TIMESTAMP into :NEW.actualizacion FROM dual; END;; - -CREATE SEQUENCE tincidencia_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tincidencia_inc BEFORE INSERT ON tincidencia REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tincidencia_s.nextval INTO :NEW.id_incidencia FROM dual; END;; - --- --------------------------------------------------------------------- --- Table `tlanguage` --- --------------------------------------------------------------------- -CREATE TABLE tlanguage ( - id_language VARCHAR2(6) DEFAULT '', - name VARCHAR2(100) DEFAULT '' -); --- This sequence will not work with the 'insert_id' procedure - --- --------------------------------------------------------------------- --- Table `tlink` --- --------------------------------------------------------------------- -CREATE TABLE tlink ( - id_link NUMBER(10, 0) PRIMARY KEY, - name VARCHAR2(100) DEFAULT '', - link VARCHAR2(255) DEFAULT '' -); - -CREATE SEQUENCE tlink_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tlink_inc BEFORE INSERT ON tlink REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tlink_s.nextval INTO :NEW.id_link FROM dual; END;; - --- --------------------------------------------------------------------- --- Table `tmensajes` --- --------------------------------------------------------------------- -CREATE TABLE tmensajes ( - id_mensaje NUMBER(10, 0) PRIMARY KEY, - id_usuario_origen VARCHAR2(60) DEFAULT '', - id_usuario_destino VARCHAR2(60) DEFAULT '', - mensaje CLOB, - timestamp NUMBER(19, 0) DEFAULT 0, - subject VARCHAR2(255) DEFAULT '', - estado NUMBER(10, 0) DEFAULT 0 -); - -CREATE SEQUENCE tmensajes_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tmensajes_inc BEFORE INSERT ON tmensajes REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tmensajes_s.nextval INTO :NEW.id_mensaje FROM dual; END;; - --- --------------------------------------------------------------------- --- Table `tmodule_group` --- --------------------------------------------------------------------- -CREATE TABLE tmodule_group ( - id_mg NUMBER(10, 0) PRIMARY KEY, - name VARCHAR2(150) DEFAULT '' -); - -CREATE SEQUENCE tmodule_group_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tmodule_group_inc BEFORE INSERT ON tmodule_group REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tmodule_group_s.nextval INTO :NEW.id_mg FROM dual; END;; - --- This table was moved cause the `tmodule_relationship` will add --- a foreign key for the trecon_task(id_rt) --- ---------------------------------------------------------------------- --- Table `trecon_task` --- ---------------------------------------------------------------------- -CREATE TABLE trecon_task ( - id_rt NUMBER(10, 0) PRIMARY KEY, - name VARCHAR2(100) DEFAULT '', - description VARCHAR2(250) DEFAULT '', - subnet CLOB DEFAULT NULL, - id_network_profile NUMBER(10, 0) DEFAULT 0, - create_incident NUMBER(10, 0) DEFAULT 0, - id_group NUMBER(10, 0) DEFAULT 1, - utimestamp NUMBER(19, 0) DEFAULT 0, - status NUMBER(10, 0) DEFAULT 0, - interval_sweep NUMBER(10, 0) DEFAULT 0, - id_recon_server NUMBER(10, 0) DEFAULT 0, - id_os NUMBER(10, 0) DEFAULT 0, - recon_ports VARCHAR2(250) DEFAULT '', - snmp_community VARCHAR2(64) DEFAULT 'public', - id_recon_script NUMBER(10, 0), - field1 CLOB DEFAULT NULL, - field2 VARCHAR2(250) DEFAULT '', - field3 VARCHAR2(250) DEFAULT '', - field4 VARCHAR2(250) DEFAULT '', - os_detect NUMBER(5, 0) DEFAULT 1, - resolve_names NUMBER(5, 0) DEFAULT 1, - parent_detection NUMBER(5, 0) DEFAULT 1, - parent_recursion NUMBER(5, 0) DEFAULT 1, - disabled NUMBER(5, 0) DEFAULT 0, - macros CLOB DEFAULT '' -); -CREATE INDEX trecon_task_id_rec_serv_idx ON trecon_task(id_recon_server); - -CREATE SEQUENCE trecon_task_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER trecon_task_inc BEFORE INSERT ON trecon_task REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT trecon_task_s.nextval INTO :NEW.id_rt FROM dual; END trecon_task_inc;; - --- ---------------------------------------------------------------------- --- Table `tmodule_relationship` --- ---------------------------------------------------------------------- -CREATE TABLE tmodule_relationship ( - id NUMBER(10, 0) PRIMARY KEY, - id_rt NUMBER(10, 0) DEFAULT 0 REFERENCES trecon_task(id_rt) ON DELETE CASCADE, - module_a NUMBER(10, 0) REFERENCES tagente_modulo(id_agente_modulo) ON DELETE CASCADE, - module_b NUMBER(10, 0) REFERENCES tagente_modulo(id_agente_modulo) ON DELETE CASCADE, - disable_update NUMBER(1, 0) DEFAULT 0 -); - -CREATE SEQUENCE tmodule_relationship_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tmodule_relationship_inc BEFORE INSERT ON tmodule_relationship REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tmodule_relationship_s.nextval INTO :NEW.id FROM dual; END;; - --- ---------------------------------------------------------------------- --- Table `tnetwork_component` --- ---------------------------------------------------------------------- -CREATE TABLE tnetwork_component ( - id_nc NUMBER(10, 0) PRIMARY KEY, - name VARCHAR2(4000) DEFAULT '', - description VARCHAR2(300) DEFAULT NULL, - id_group NUMBER(10, 0) DEFAULT 1, - type NUMBER(10, 0) DEFAULT 6, - max NUMBER(10, 0) DEFAULT 0, - min NUMBER(19, 0) DEFAULT 0, - module_interval NUMBER(19, 0) DEFAULT 0, - tcp_port NUMBER(10, 0) DEFAULT 0, - tcp_send CLOB, - tcp_rcv CLOB, - snmp_community VARCHAR2(255) DEFAULT '', - snmp_oid VARCHAR2(400) DEFAULT '', - id_module_group NUMBER(10, 0) DEFAULT 0, - id_modulo NUMBER(10, 0) DEFAULT 0, - id_plugin NUMBER(10, 0) DEFAULT 0, - plugin_user CLOB DEFAULT '', - plugin_pass CLOB DEFAULT '', - plugin_parameter CLOB, - max_timeout NUMBER(10, 0) DEFAULT 0, - max_retries NUMBER(10, 0) DEFAULT 0, - history_data NUMBER(5, 0) DEFAULT 1, - min_warning BINARY_DOUBLE DEFAULT 0, - max_warning BINARY_DOUBLE DEFAULT 0, - str_warning CLOB DEFAULT '', - min_critical BINARY_DOUBLE DEFAULT 0, - max_critical BINARY_DOUBLE DEFAULT 0, - str_critical CLOB DEFAULT '', - min_ff_event NUMBER(10, 0) DEFAULT 0, - custom_string_1 CLOB DEFAULT '', - custom_string_2 CLOB DEFAULT '', - custom_string_3 CLOB DEFAULT '', - custom_integer_1 INTEGER DEFAULT 0, - custom_integer_2 INTEGER DEFAULT 0, - post_process BINARY_DOUBLE DEFAULT 0, - unit CLOB DEFAULT '', - wizard_level VARCHAR2(100) DEFAULT 'nowizard', - macros CLOB DEFAULT '', - critical_instructions CLOB DEFAULT '', - warning_instructions CLOB DEFAULT '', - unknown_instructions CLOB DEFAULT '', - critical_inverse NUMBER(1, 0) DEFAULT 0, - warning_inverse NUMBER(1, 0) DEFAULT 0, - id_category NUMBER(10, 0) DEFAULT 0, - tags CLOB, - disabled_types_event CLOB DEFAULT '', - module_macros CLOB DEFAULT '', - min_ff_event_normal INTEGER DEFAULT 0, - min_ff_event_warning INTEGER DEFAULT 0, - min_ff_event_critical INTEGER DEFAULT 0, - each_ff NUMBER(1, 0) DEFAULT 0, - dynamic_interval INTEGER default 0, - dynamic_max INTEGER default 0, - dynamic_min INTEGER default 0, - dynamic_next INTEGER NOT NULL default 0, - dynamic_two_tailed INTEGER default 0, - CONSTRAINT t_network_component_wiz_cons CHECK (wizard_level IN ('basic','advanced','nowizard')) -); - -CREATE SEQUENCE tnetwork_component_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tnetwork_component_inc BEFORE INSERT ON tnetwork_component REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tnetwork_component_s.nextval INTO :NEW.id_nc FROM dual; END;; - --- ---------------------------------------------------------------------- --- Table `tnetwork_component_group` --- ---------------------------------------------------------------------- -CREATE TABLE tnetwork_component_group ( - id_sg NUMBER(10, 0) PRIMARY KEY, - name VARCHAR2(200) DEFAULT '', - parent NUMBER(19, 0) DEFAULT 0 -); - -CREATE SEQUENCE tnetwork_component_group_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tnetwork_component_group_inc BEFORE INSERT ON tnetwork_component_group REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tnetwork_component_group_s.nextval INTO :NEW.id_sg FROM dual; END;; - --- ---------------------------------------------------------------------- --- Table `tnetwork_profile` --- ---------------------------------------------------------------------- -CREATE TABLE tnetwork_profile ( - id_np NUMBER(10, 0) PRIMARY KEY, - name VARCHAR2(100) DEFAULT '', - description VARCHAR2(250) DEFAULT '' -); - -CREATE SEQUENCE tnetwork_profile_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tnetwork_profile_inc BEFORE INSERT ON tnetwork_profile REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tnetwork_profile_s.nextval INTO :NEW.id_np FROM dual; END;; - --- ---------------------------------------------------------------------- --- Table `tnetwork_profile_component` --- ---------------------------------------------------------------------- -CREATE TABLE tnetwork_profile_component ( - id_nc NUMBER(19, 0) DEFAULT 0, - id_np NUMBER(19, 0) DEFAULT 0 -); -CREATE INDEX tnetwork_profile_id_np_idx ON tnetwork_profile_component(id_np); - --- This sequence will not work with the 'insert_id' procedure - --- ---------------------------------------------------------------------- --- Table `tnota` --- ---------------------------------------------------------------------- -CREATE TABLE tnota ( - id_nota NUMBER(19, 0) PRIMARY KEY, - id_incident NUMBER(19, 0), - id_usuario VARCHAR2(100) DEFAULT '0', - timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP, - nota CLOB -); -CREATE INDEX tnota_id_incident_idx ON tnota(id_incident); - --- This sequence will not work with the 'insert_id' procedure - --- ---------------------------------------------------------------------- --- Table `torigen` --- ---------------------------------------------------------------------- -CREATE TABLE torigen ( - origen VARCHAR2(100) DEFAULT '' -); - --- This sequence will not work with the 'insert_id' procedure - --- ---------------------------------------------------------------------- --- Table `tperfil` --- ---------------------------------------------------------------------- -CREATE TABLE tperfil ( - id_perfil NUMBER(10, 0) PRIMARY KEY, - name VARCHAR2(200) NOT NULL, - incident_edit NUMBER(1, 0) DEFAULT 0, - incident_view NUMBER(1, 0) DEFAULT 0, - incident_management NUMBER(1, 0) DEFAULT 0, - agent_view NUMBER(1, 0) DEFAULT 0, - agent_edit NUMBER(1, 0) DEFAULT 0, - alert_edit NUMBER(1, 0) DEFAULT 0, - user_management NUMBER(1, 0) DEFAULT 0, - db_management NUMBER(1, 0) DEFAULT 0, - alert_management NUMBER(1, 0) DEFAULT 0, - pandora_management NUMBER(1, 0) DEFAULT 0, - report_view NUMBER(1, 0) DEFAULT 0, - report_edit NUMBER(1, 0) DEFAULT 0, - report_management NUMBER(1, 0) DEFAULT 0, - event_view NUMBER(1, 0) DEFAULT 0, - event_edit NUMBER(1, 0) DEFAULT 0, - event_management NUMBER(1, 0) DEFAULT 0, - agent_disable NUMBER(1, 0) DEFAULT 0, - map_view NUMBER(1, 0) DEFAULT 0, - map_edit NUMBER(1, 0) DEFAULT 0, - map_management NUMBER(1, 0) DEFAULT 0, - vconsole_view NUMBER(1, 0) DEFAULT 0, - vconsole_edit NUMBER(1, 0) DEFAULT 0, - vconsole_management NUMBER(1, 0) DEFAULT 0 -); - -CREATE SEQUENCE tperfil_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tperfil_inc BEFORE INSERT ON tperfil REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tperfil_s.nextval INTO :NEW.id_perfil FROM dual; END;; - --- ---------------------------------------------------------------------- --- Table `trecon_script` --- ---------------------------------------------------------------------- -CREATE TABLE trecon_script ( - id_recon_script NUMBER(10, 0) PRIMARY KEY, - name VARCHAR2(100) DEFAULT '', - description CLOB DEFAULT NULL, - script VARCHAR2(250) DEFAULT '', - macros CLOB DEFAULT '' -); - -CREATE SEQUENCE trecon_script_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER trecon_script_inc BEFORE INSERT ON trecon_script REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT trecon_script_s.nextval INTO :NEW.id_recon_script FROM dual; END;; - --- ---------------------------------------------------------------------- --- Table `tserver` --- ---------------------------------------------------------------------- -CREATE TABLE tserver ( - id_server NUMBER(10, 0) PRIMARY KEY, - name VARCHAR2(100) DEFAULT '', - ip_address VARCHAR2(100) DEFAULT '', - status NUMBER(10, 0) DEFAULT 0, - laststart TIMESTAMP DEFAULT NULL, - keepalive TIMESTAMP DEFAULT NULL, - snmp_server NUMBER(10, 0) DEFAULT 0, - network_server NUMBER(10, 0) DEFAULT 0, - data_server NUMBER(10, 0) DEFAULT 0, - master NUMBER(10, 0) DEFAULT 0, - checksum NUMBER(10, 0) DEFAULT 0, - description VARCHAR2(255) DEFAULT NULL, - recon_server NUMBER(10, 0) DEFAULT 0, - version VARCHAR2(20) DEFAULT '', - plugin_server NUMBER(10, 0) DEFAULT 0, - prediction_server NUMBER(10, 0) DEFAULT 0, - wmi_server NUMBER(10, 0) DEFAULT 0, - export_server NUMBER(10, 0) DEFAULT 0, - server_type NUMBER(10, 0) DEFAULT 0, - queued_modules NUMBER(10, 0) DEFAULT 0, - threads NUMBER(10, 0) DEFAULT 0, - lag_time NUMBER(10, 0) DEFAULT 0, - lag_modules NUMBER(10, 0) DEFAULT 0, - total_modules_running NUMBER(10, 0) DEFAULT 0, - my_modules NUMBER(10, 0) DEFAULT 0, - server_keepalive NUMBER(10, 0) DEFAULT 0, - stat_utimestamp NUMBER(19, 0) DEFAULT 0 -); -CREATE INDEX tserver_name_idx ON tserver(name); -CREATE INDEX tserver_keepalive_idx ON tserver(keepalive); -CREATE INDEX tserver_status_idx ON tserver(status); - -CREATE SEQUENCE tserver_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tserver_inc BEFORE INSERT ON tserver REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tserver_s.nextval INTO :NEW.id_server FROM dual; END tserver_inc;; - --- server types: --- 0 data --- 1 network --- 2 snmp trap console --- 3 recon --- 4 plugin --- 5 prediction --- 6 wmi --- 7 export --- 8 inventory --- 9 web --- TODO: drop 2.x xxxx_server fields, unused since server_type exists. - --- ---------------------------------------------------------------------- --- Table `tsesion` --- ---------------------------------------------------------------------- -CREATE TABLE tsesion ( - id_sesion NUMBER(19, 0) PRIMARY KEY, - id_usuario VARCHAR2(60) DEFAULT '0', - ip_origen VARCHAR2(100) DEFAULT '', - accion VARCHAR2(100) DEFAULT '', - descripcion CLOB DEFAULT '', - fecha TIMESTAMP DEFAULT NULL, - utimestamp NUMBER(19, 0) DEFAULT 0 -); -CREATE INDEX tsesion_utimestamp_idx ON tsesion(utimestamp); -CREATE INDEX tsesion_id_usuario_idx ON tsesion(id_usuario); - -CREATE SEQUENCE tsesion_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tsesion_inc BEFORE INSERT ON tsesion REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tsesion_s.nextval INTO :NEW.id_sesion FROM dual; END tsesion_inc;; - --- --------------------------------------------------------------------- --- Table `ttipo_modulo` --- --------------------------------------------------------------------- -CREATE TABLE ttipo_modulo ( - id_tipo NUMBER(10, 0) PRIMARY KEY, - nombre VARCHAR2(100) DEFAULT '', - categoria NUMBER(10, 0) DEFAULT 0, - descripcion VARCHAR2(100) DEFAULT '', - icon VARCHAR2(100) DEFAULT NULL -); - -CREATE SEQUENCE ttipo_modulo_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER ttipo_modulo_inc BEFORE INSERT ON ttipo_modulo REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT ttipo_modulo_s.nextval INTO :NEW.id_tipo FROM dual; END ttipo_modulo_inc;; - --- --------------------------------------------------------------------- --- Table `ttrap` --- --------------------------------------------------------------------- -CREATE TABLE ttrap ( - id_trap NUMBER(19, 0) PRIMARY KEY, - source VARCHAR2(50) DEFAULT '', - oid VARCHAR2(1024) DEFAULT '', - oid_custom VARCHAR2(1024) DEFAULT '', - type NUMBER(10, 0) DEFAULT 0, - type_custom VARCHAR2(100) DEFAULT '', - value CLOB DEFAULT '', - value_custom CLOB DEFAULT '', - alerted NUMBER(5, 0) DEFAULT 0, - status NUMBER(5, 0) DEFAULT 0, - id_usuario VARCHAR2(150) DEFAULT '', - timestamp TIMESTAMP DEFAULT NULL, - priority NUMBER(5, 0) DEFAULT 2, - text VARCHAR2(255) DEFAULT '', - description VARCHAR2(255) DEFAULT '', - severity NUMBER(10, 0) DEFAULT 2 -); - -CREATE SEQUENCE ttrap_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER ttrap_inc BEFORE INSERT ON ttrap REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT ttrap_s.nextval INTO :NEW.id_trap FROM dual; END ttrap_inc;; - --- ----------------------------------------------------- --- Table `tusuario` --- ----------------------------------------------------- -CREATE TABLE tusuario ( - id_user VARCHAR2(60) PRIMARY KEY, - fullname VARCHAR2(255), - firstname VARCHAR2(255), - lastname VARCHAR2(255), - middlename VARCHAR2(255) DEFAULT '', - password VARCHAR2(45) DEFAULT NULL, - comments VARCHAR2(200) DEFAULT NULL, - last_connect NUMBER(19, 0) DEFAULT 0, - registered NUMBER(19, 0) DEFAULT 0, - email VARCHAR2(100) DEFAULT NULL, - phone VARCHAR2(100) DEFAULT NULL, - is_admin NUMBER(5, 0) DEFAULT 0, - language VARCHAR2(10) DEFAULT NULL, - timezone VARCHAR2(50) DEFAULT '', - block_size NUMBER(10, 0) DEFAULT 20, - flash_chart NUMBER(10, 0) DEFAULT 1, - id_skin NUMBER(10, 0) DEFAULT 0, - disabled NUMBER(10, 0) DEFAULT 0, - shortcut NUMBER(5, 0) DEFAULT 0, - shortcut_data CLOB DEFAULT '', - section VARCHAR2(255) DEFAULT '', - data_section VARCHAR2(255) DEFAULT '', - force_change_pass NUMBER(5,0) DEFAULT 0, - last_pass_change TIMESTAMP, - last_failed_login TIMESTAMP, - failed_attempt NUMBER(5,0) DEFAULT 0, - login_blocked NUMBER(5,0) DEFAULT 0, - metaconsole_access VARCHAR2(100) DEFAULT 'basic', - not_login NUMBER(5,0) DEFAULT 0, - metaconsole_agents_manager NUMBER(10, 0) DEFAULT 0, - metaconsole_assigned_server NUMBER(10, 0) DEFAULT 0, - metaconsole_access_node NUMBER(10, 0) DEFAULT 0, - strict_acl NUMBER(5,0) DEFAULT 0, - session_time INTEGER DEFAULT 0, - CONSTRAINT t_usuario_metaconsole_acc_cons CHECK (metaconsole_access IN ('basic','advanced')) -); - --- This sequence will not work with the 'insert_id' procedure - --- ----------------------------------------------------- --- Table `tusuario_perfil` --- ----------------------------------------------------- -CREATE TABLE tusuario_perfil ( - id_up NUMBER(19, 0) PRIMARY KEY, - id_usuario VARCHAR2(100) DEFAULT '', - id_perfil NUMBER(10, 0) DEFAULT 0, - id_grupo NUMBER(10, 0) DEFAULT 0, - assigned_by VARCHAR2(100) DEFAULT '', - id_policy NUMBER(10, 0) DEFAULT 0, - tags VARCHAR2(255) DEFAULT '' -); - -CREATE SEQUENCE tusuario_perfil_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tusuario_perfil_inc BEFORE INSERT ON tusuario_perfil REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tusuario_perfil_s.nextval INTO :NEW.id_up FROM dual; END tusuario_perfil_inc;; - --- ---------------------------------------------------------------------- --- Table `tuser_double_auth` --- ---------------------------------------------------------------------- -CREATE TABLE tuser_double_auth ( - id NUMBER(10, 0) PRIMARY KEY, - id_user VARCHAR2(60) REFERENCES tusuario(id_user) ON DELETE CASCADE, - secret VARCHAR2(20) -); - -CREATE SEQUENCE tuser_double_auth_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tuser_double_auth_inc BEFORE INSERT ON tuser_double_auth REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tuser_double_auth_s.nextval INTO :NEW.id FROM dual; END tuser_double_auth_inc;; - --- --------------------------------------------------------------------- --- Table `tnews` --- --------------------------------------------------------------------- -CREATE TABLE tnews ( - id_news NUMBER(10, 0) PRIMARY KEY, - author VARCHAR2(255) DEFAULT '', - subject VARCHAR2(255) DEFAULT '', - text CLOB, - timestamp TIMESTAMP DEFAULT NULL, - id_group NUMBER(10, 0) DEFAULT 0, - modal NUMBER(5, 0) DEFAULT 0, - expire NUMBER(5, 0) DEFAULT 0, - expire_timestamp TIMESTAMP DEFAULT NULL -); - -CREATE SEQUENCE tnews_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tnews_inc BEFORE INSERT ON tnews REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tnews_s.nextval INTO :NEW.id_news FROM dual; END tnews_inc;; - --- --------------------------------------------------------------------- --- Table `tgraph` --- --------------------------------------------------------------------- -CREATE TABLE tgraph ( - id_graph NUMBER(10, 0) PRIMARY KEY, - id_user VARCHAR2(100) DEFAULT '', - name VARCHAR2(150) DEFAULT '', - description CLOB, - period NUMBER(10, 0) DEFAULT 0, - width NUMBER(10, 0) DEFAULT 0, - height NUMBER(10, 0) DEFAULT 0, - private NUMBER(5, 0) DEFAULT 0, - events NUMBER(5, 0) DEFAULT 0, - stacked NUMBER(5, 0) DEFAULT 0, - id_group NUMBER(19, 0) DEFAULT 0, - id_graph_template NUMBER(11, 0) DEFAULT 0, - percentil NUMBER(5, 0) DEFAULT 0 -); - -CREATE SEQUENCE tgraph_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tgraph_inc BEFORE INSERT ON tgraph REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tgraph_s.nextval INTO :NEW.id_graph FROM dual; END tgraph_inc;; - --- --------------------------------------------------------------------- --- Table `tgraph_source` --- --------------------------------------------------------------------- -CREATE TABLE tgraph_source ( - id_gs NUMBER(10, 0) PRIMARY KEY, - id_graph NUMBER(19, 0) DEFAULT 0, - id_server NUMBER(19, 0) DEFAULT 0, - id_agent_module NUMBER(19, 0) DEFAULT 0, - weight BINARY_DOUBLE DEFAULT 0, - label VARCHAR2(150) DEFAULT '' -); - -CREATE SEQUENCE tgraph_source_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tgraph_source_inc BEFORE INSERT ON tgraph_source REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tgraph_source_s.nextval INTO :NEW.id_gs FROM dual; END tgraph_source_inc;; - --- --------------------------------------------------------------------- --- Table `treport` --- --------------------------------------------------------------------- -CREATE TABLE treport ( - id_report NUMBER(10, 0) PRIMARY KEY, - id_user VARCHAR2(100) DEFAULT '', - name VARCHAR2(150) DEFAULT '', - description CLOB, - private NUMBER(5, 0) DEFAULT 0, - id_group NUMBER(19, 0) DEFAULT 0, - custom_logo VARCHAR2(200) DEFAULT NULL, - header CLOB DEFAULT NULL, - first_page CLOB DEFAULT NULL, - footer CLOB DEFAULT NULL, - custom_font VARCHAR2(200) DEFAULT NULL, - id_template NUMBER(10, 0) DEFAULT 0, - id_group_edit NUMBER(19, 0) DEFAULT 0, - metaconsole NUMBER(5, 0) DEFAULT 0, - non_interactive NUMBER(5, 0) DEFAULT 0 -); - -CREATE SEQUENCE treport_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER treport_inc BEFORE INSERT ON treport REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT treport_s.nextval INTO :NEW.id_report FROM dual; END treport_inc;; - --- ----------------------------------------------------- --- Table `treport_content` --- ----------------------------------------------------- --- use to_char(time_from, 'hh24:mi:ss') function to retrieve time_from field info --- use to_char(time_to, 'hh24:mi:ss') function to retrieve time_to field info -CREATE TABLE treport_content ( - id_rc NUMBER(10, 0) PRIMARY KEY, - id_report NUMBER(10, 0) DEFAULT 0 REFERENCES treport(id_report) ON DELETE CASCADE, - id_gs NUMBER(10, 0) DEFAULT NULL, - id_agent_module NUMBER(19, 0) DEFAULT NULL, - "type" VARCHAR2(30) DEFAULT 'simple_graph', - period NUMBER(19, 0) DEFAULT 0, - "order" NUMBER(19, 0) DEFAULT 0, - name VARCHAR2(150) DEFAULT NULL, - description CLOB, - id_agent NUMBER(19, 0) DEFAULT 0, - text CLOB DEFAULT NULL, - external_source CLOB DEFAULT NULL, - treport_custom_sql_id NUMBER(10, 0) DEFAULT 0, - header_definition CLOB DEFAULT NULL, - column_separator CLOB DEFAULT NULL, - line_separator CLOB DEFAULT NULL, - time_from TIMESTAMP DEFAULT to_date('00:00:00','hh24:mi:ss'), - time_to TIMESTAMP DEFAULT to_date('00:00:00','hh24:mi:ss'), - monday NUMBER(5, 0) DEFAULT 1, - tuesday NUMBER(5, 0) DEFAULT 1, - wednesday NUMBER(5, 0) DEFAULT 1, - thursday NUMBER(5, 0) DEFAULT 1, - friday NUMBER(5, 0) DEFAULT 1, - saturday NUMBER(5, 0) DEFAULT 1, - sunday NUMBER(5, 0) DEFAULT 1, - only_display_wrong NUMBER(5, 0) DEFAULT 0, - top_n NUMBER(10, 0) DEFAULT 0, - top_n_value NUMBER(10, 0) DEFAULT 10 , - exception_condition NUMBER(10, 0) DEFAULT 0, - exception_condition_value BINARY_DOUBLE DEFAULT 0, - show_resume NUMBER(10, 0) DEFAULT 0, - order_uptodown NUMBER(10, 0) DEFAULT 0, - show_graph NUMBER(10, 0) DEFAULT 0, - group_by_agent NUMBER(10, 0) DEFAULT 0, - style CLOB DEFAULT '', - id_group NUMBER(10, 0) DEFAULT 0, - id_module_group NUMBER(10, 0) DEFAULT 0, - server_name VARCHAR2(1000) default '' -); - -CREATE SEQUENCE treport_content_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER treport_content_inc BEFORE INSERT ON treport_content REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT treport_content_s.nextval INTO :NEW.id_rc FROM dual; END treport_content_inc;; - --- on update trigger -CREATE OR REPLACE TRIGGER treport_content_update AFTER UPDATE OF id_report ON treport FOR EACH ROW BEGIN UPDATE treport_content SET id_rc = :NEW.id_report WHERE id_rc = :OLD.id_report; END;; - --- ----------------------------------------------------- --- Table `treport_content_sla_combined` --- ----------------------------------------------------- -CREATE TABLE treport_content_sla_combined ( - id NUMBER(10, 0) PRIMARY KEY, - id_report_content NUMBER(10, 0) REFERENCES treport_content(id_rc) ON DELETE CASCADE, - id_agent_module NUMBER(10, 0), - sla_max BINARY_DOUBLE DEFAULT 0, - sla_min BINARY_DOUBLE DEFAULT 0, - sla_limit BINARY_DOUBLE DEFAULT 0, - server_name CLOB DEFAULT '' -); - --- This sequence will not work with the 'insert_id' procedure - -CREATE SEQUENCE treport_cont_sla_c_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER treport_content_sla_comb_inc BEFORE INSERT ON treport_content_sla_combined REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT treport_cont_sla_c_s.nextval INTO :NEW.id FROM dual; END treport_content_sla_comb_inc;; - --- on update trigger -CREATE OR REPLACE TRIGGER treport_cont_sla_comb_update AFTER UPDATE OF id on treport_content_sla_combined FOR EACH ROW BEGIN UPDATE treport_content_sla_combined SET id = :NEW.id WHERE id = :OLD.id; END;; - --- ----------------------------------------------------- --- Table `treport_content_item` --- ----------------------------------------------------- -CREATE TABLE treport_content_item ( - id NUMBER(10, 0) PRIMARY KEY, - id_report_content NUMBER(10, 0) REFERENCES treport_content(id_rc) ON DELETE CASCADE, - id_agent_module NUMBER(10, 0), - server_name CLOB DEFAULT '', - operation CLOB DEFAULT '' -); - -CREATE SEQUENCE treport_content_item_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER treport_content_item_inc BEFORE INSERT ON treport_content_item REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT treport_content_item_s.nextval INTO :NEW.id FROM dual; END treport_content_item_inc;; - --- --------------------------------------------------------------------- --- Table `treport_custom_sql` --- --------------------------------------------------------------------- -CREATE TABLE treport_custom_sql ( - id NUMBER(10, 0) PRIMARY KEY, - name VARCHAR2(150) DEFAULT '', - sql CLOB DEFAULT NULL -); - -CREATE SEQUENCE treport_custom_sql_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER treport_custom_sql_inc BEFORE INSERT ON treport_custom_sql REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT treport_custom_sql_s.nextval INTO :NEW.id FROM dual; END treport_custom_sql_inc;; - --- --------------------------------------------------------------------- --- Table `tlayout` --- --------------------------------------------------------------------- -CREATE TABLE tlayout ( - id NUMBER(10, 0) PRIMARY KEY, - name varchar(50) , - id_group NUMBER(10, 0), - background VARCHAR2(200) , - height NUMBER(10, 0) DEFAULT 0, - background_color VARCHAR2(50) DEFAULT '#FFF', - width NUMBER(10, 0) DEFAULT 0 -); - -CREATE SEQUENCE tlayout_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tlayout_inc BEFORE INSERT ON tlayout REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tlayout_s.nextval INTO :NEW.id FROM dual; END tlayout_inc;; - --- --------------------------------------------------------------------- --- Table `tlayout_data` --- --------------------------------------------------------------------- -CREATE TABLE tlayout_data ( - id NUMBER(10, 0) PRIMARY KEY, - id_layout NUMBER(10, 0) DEFAULT 0, - pos_x NUMBER(10, 0) DEFAULT 0, - pos_y NUMBER(10, 0) DEFAULT 0, - height NUMBER(10, 0) DEFAULT 0, - width NUMBER(10, 0) DEFAULT 0, - label CLOB DEFAULT '', - image VARCHAR2(200) DEFAULT '', - type NUMBER(5, 0) DEFAULT 0, - period NUMBER(10, 0) DEFAULT 3600, - id_agente_modulo NUMBER(19, 0) DEFAULT 0, - id_agent NUMBER(10, 0) DEFAULT 0, - id_layout_linked NUMBER(10, 0) DEFAULT 0, - parent_item NUMBER(10, 0) DEFAULT 0, - enable_link NUMBER(5, 0) DEFAULT 1, - id_metaconsole NUMBER(10, 0) DEFAULT 0, - id_group NUMBER(10, 0) DEFAULT 0, - id_custom_graph NUMBER(10, 0) DEFAULT 0, - border_width NUMBER(10, 0) DEFAULT 0, - type_graph VARCHAR2(50) DEFAULT 'area', - label_position VARCHAR2(50) DEFAULT 'down', - border_color VARCHAR2(200) DEFAULT '', - fill_color VARCHAR2(200) DEFAULT '' -); - -CREATE SEQUENCE tlayout_data_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tlayout_data_inc BEFORE INSERT ON tlayout_data REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tlayout_data_s.nextval INTO :NEW.id FROM dual; END tlayout_data_inc;; - --- --------------------------------------------------------------------- --- Table `tplugin` --- --------------------------------------------------------------------- -CREATE TABLE tplugin ( - id NUMBER(10, 0) PRIMARY KEY, - name VARCHAR2(200), - description CLOB, - max_timeout NUMBER(10, 0) DEFAULT 0, - max_retries NUMBER(10, 0) DEFAULT 0, - execute VARCHAR2(250), - net_dst_opt VARCHAR2(50) DEFAULT '', - net_port_opt VARCHAR2(50) DEFAULT '', - user_opt VARCHAR2(50) DEFAULT '', - pass_opt VARCHAR2(50) DEFAULT '', - plugin_type NUMBER(5, 0) DEFAULT 0, - macros CLOB DEFAULT '', - parameters CLOB DEFAULT '' -); - -CREATE SEQUENCE tplugin_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tplugin_inc BEFORE INSERT ON tplugin REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tplugin_s.nextval INTO :NEW.id FROM dual; END tplugin_inc;; - --- --------------------------------------------------------------------- --- Table `tmodule` --- --------------------------------------------------------------------- -CREATE TABLE tmodule ( - id_module NUMBER(10, 0) PRIMARY KEY, - name VARCHAR2(100) DEFAULT '' -); - -CREATE SEQUENCE tmodule_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tmodule_inc BEFORE INSERT ON tmodule REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tmodule_s.nextval INTO :NEW.id_module FROM dual; END tmodule_inc;; - --- --------------------------------------------------------------------- --- Table `tserver_export` --- --------------------------------------------------------------------- -CREATE TABLE tserver_export ( - id NUMBER(10, 0) PRIMARY KEY, - name VARCHAR2(100) DEFAULT '', - preffix VARCHAR2(100) DEFAULT '', - interval NUMBER(10, 0) DEFAULT 300, - ip_server VARCHAR2(100) DEFAULT '', - connect_mode VARCHAR2(20) DEFAULT 'local', - id_export_server NUMBER(10, 0) DEFAULT NULL , - "user" VARCHAR2(100) DEFAULT '', - pass VARCHAR2(100) DEFAULT '', - port NUMBER(10, 0) DEFAULT 0, - directory VARCHAR2(100) DEFAULT '', - options VARCHAR2(100) DEFAULT '', - --Number of hours of diference with the server timezone - timezone_offset NUMBER(5, 0) DEFAULT 0, - CONSTRAINT tserver_export_conn_mode_cons CHECK (connect_mode IN ('tentacle', 'ssh', 'local')) -); - -CREATE SEQUENCE tserver_export_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tserver_export_inc BEFORE INSERT ON tserver_export REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tserver_export_s.nextval INTO :NEW.id FROM dual; END tserver_export_inc;; - --- --------------------------------------------------------------------- --- Table `tserver_export_data` --- --------------------------------------------------------------------- --- id_export_server is real pandora fms export server process that manages this server --- id is the destination server to export -CREATE TABLE tserver_export_data ( - id NUMBER(10, 0) PRIMARY KEY, - id_export_server NUMBER(10, 0) DEFAULT 0, - agent_name VARCHAR2(100) DEFAULT '', - module_name VARCHAR2(100) DEFAULT '', - module_type VARCHAR2(100) DEFAULT '', - data VARCHAR2(255) DEFAULT NULL, - timestamp TIMESTAMP DEFAULT NULL -); - -CREATE SEQUENCE tserver_export_data_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tserver_export_data_inc BEFORE INSERT ON tserver_export_data REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tserver_export_data_s.nextval INTO :NEW.id FROM dual; END tserver_export_data_inc;; - --- ----------------------------------------------------- --- Table `tplanned_downtime` --- ----------------------------------------------------- -CREATE TABLE tplanned_downtime ( - id NUMBER(19, 0) PRIMARY KEY, - name VARCHAR2(100), - description CLOB, - date_from NUMBER(19, 0) DEFAULT 0, - date_to NUMBER(19, 0) DEFAULT 0, - executed NUMBER(5, 0) DEFAULT 0, - id_group NUMBER(19, 0) DEFAULT 0, - only_alerts NUMBER(5, 0) DEFAULT 0, - monday NUMBER(5, 0) DEFAULT 0, - tuesday NUMBER(5, 0) DEFAULT 0, - wednesday NUMBER(5, 0) DEFAULT 0, - thursday NUMBER(5, 0) DEFAULT 0, - friday NUMBER(5, 0) DEFAULT 0, - saturday NUMBER(5, 0) DEFAULT 0, - sunday NUMBER(5, 0) DEFAULT 0, - -- Need to set better datatype - periodically_time_from DATE DEFAULT NULL, - periodically_time_to DATE DEFAULT NULL, - -- - periodically_day_from NUMBER(19, 0) DEFAULT NULL, - periodically_day_to NUMBER(19, 0) DEFAULT NULL, - type_downtime VARCHAR2(100) DEFAULT 'disabled_agents_alerts', - type_execution VARCHAR2(100) DEFAULT 'once', - type_periodicity VARCHAR2(100) DEFAULT 'weekly', - id_user VARCHAR2(100) DEFAULT '0' -); - -CREATE SEQUENCE tplanned_downtime_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tplanned_downtime_inc BEFORE INSERT ON tplanned_downtime REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tplanned_downtime_s.nextval INTO :NEW.id FROM dual; END tplanned_downtime_inc;; - --- ----------------------------------------------------- --- Table `tplanned_downtime_agents` --- ----------------------------------------------------- -CREATE TABLE tplanned_downtime_agents ( - id NUMBER(19, 0) PRIMARY KEY, - id_agent NUMBER(19, 0) DEFAULT 0, - id_downtime NUMBER(19, 0) DEFAULT 0 REFERENCES tplanned_downtime(id) ON DELETE CASCADE, - all_modules NUMBER(5, 0) DEFAULT 1 -); - -CREATE SEQUENCE tplanned_downtime_agents_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tplanned_downtime_agents_inc BEFORE INSERT ON tplanned_downtime_agents REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tplanned_downtime_agents_s.nextval INTO :NEW.id FROM dual; END tplanned_downtime_agents_inc;; - --- ----------------------------------------------------- --- Table `tplanned_downtime_modules` --- ----------------------------------------------------- -CREATE TABLE tplanned_downtime_modules ( - id NUMBER(19, 0) PRIMARY KEY, - id_agent NUMBER(19, 0) DEFAULT 0, - id_agent_module NUMBER(10, 0) REFERENCES tagente_modulo(id_agente_modulo) ON DELETE CASCADE, - id_downtime NUMBER(19, 0) DEFAULT 0 REFERENCES tplanned_downtime(id) ON DELETE CASCADE -); - -CREATE SEQUENCE tplanned_downtime_modules_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tplanned_downtime_modules_inc BEFORE INSERT ON tplanned_downtime_modules REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tplanned_downtime_modules_s.nextval INTO :NEW.id FROM dual; END tplanned_downtime_modules_inc;; - ---IS extension Tables - --- ----------------------------------------------------- --- Table `tgis_data_history` --- ----------------------------------------------------- ---Table to store historicalIS information of the agents -CREATE TABLE tgis_data_history ( - --key of the table - id_tgis_data NUMBER(10, 0) PRIMARY KEY, - longitude BINARY_DOUBLE, - latitude BINARY_DOUBLE, - altitude BINARY_DOUBLE, - --timestamp on wich the agente started to be in this position - start_timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP, - --timestamp on wich the agent was placed for last time on this position - end_timestamp TIMESTAMP DEFAULT NULL, - --description of the region correoponding to this placemnt - description CLOB DEFAULT NULL, - -- 0 to show that the position cames from the agent, 1 to show that the position was established manualy - manual_placement NUMBER(5, 0) DEFAULT 0, - -- Number of data packages received with this position from the start_timestampa to the_end_timestamp - number_of_packages NUMBER(10, 0) DEFAULT 1, - --reference to the agent - tagente_id_agente NUMBER(10, 0) -); -CREATE INDEX tgis_data_history_start_t_idx ON tgis_data_history(start_timestamp); -CREATE INDEX tgis_data_history_end_t_idx ON tgis_data_history(end_timestamp); - -CREATE SEQUENCE tgis_data_history_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tgis_data_history_inc BEFORE INSERT ON tgis_data_history REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tgis_data_history_s.nextval INTO :NEW.id_tgis_data FROM dual; END tgis_data_history_inc;; - --- ----------------------------------------------------- --- Table `tgis_data_status` --- ----------------------------------------------------- ---Table to store lastIS information of the agents ---ON UPDATE NO ACTION is implicit on Oracle DBMS for tagente_id_agente field -CREATE TABLE tgis_data_status ( - --Reference to the agent - tagente_id_agente NUMBER(10, 0) REFERENCES tagente(id_agente) ON DELETE CASCADE, - --Last received longitude - current_longitude BINARY_DOUBLE, - --Last received latitude - current_latitude BINARY_DOUBLE, - --Last received altitude - current_altitude BINARY_DOUBLE, - --Reference longitude to see if the agent has moved - stored_longitude BINARY_DOUBLE, - --Reference latitude to see if the agent has moved - stored_latitude BINARY_DOUBLE, - --Reference altitude to see if the agent has moved - stored_altitude BINARY_DOUBLE DEFAULT NULL, - --Number of data packages received with this position since start_timestampa - number_of_packages NUMBER(10, 0) DEFAULT 1, - --Timestamp on wich the agente started to be in this position - start_timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP, - --0 to show that the position cames from the agent, 1 to show that the position was established manualy - manual_placement NUMBER(5, 0) DEFAULT 0, - --description of the region correoponding to this placemnt - description CLOB NULL, - PRIMARY KEY(tagente_id_agente) -); -CREATE INDEX tgis_data_status_start_t_idx ON tgis_data_status(start_timestamp); - --- This sequence will not work with the 'insert_id' procedure - --- ----------------------------------------------------- --- Table `tgis_map` --- ----------------------------------------------------- ---Table containing information about ais map -CREATE TABLE tgis_map ( - --table identifier - id_tgis_map NUMBER(10, 0) PRIMARY KEY, - --Name of the map - map_name VARCHAR2(63), - --longitude of the center of the map when it\'s loaded - initial_longitude BINARY_DOUBLE DEFAULT NULL, - --latitude of the center of the map when it\'s loaded - initial_latitude BINARY_DOUBLE DEFAULT NULL, - --altitude of the center of the map when it\'s loaded - initial_altitude BINARY_DOUBLE DEFAULT NULL, - --Zoom level to show when the map is loaded. - zoom_level NUMBER(5, 0) DEFAULT 1, - --path on the server to the background image of the map - map_background VARCHAR2(127) DEFAULT NULL, - --Default longitude for the agents placed on the map - default_longitude BINARY_DOUBLE DEFAULT NULL, - --Default latitude for the agents placed on the map - default_latitude BINARY_DOUBLE DEFAULT NULL, - --Default altitude for the agents placed on the map - default_altitude DOUBLE PRECISION DEFAULT NULL, - --Group that owns the map - group_id NUMBER(10, 0) DEFAULT 0, - --1 if this is the default map, 0 in other case - default_map NUMBER(5, 0) DEFAULT 0 -); -CREATE INDEX tgis_map_tagente_map_name_idx ON tgis_map(map_name); - -CREATE SEQUENCE tgis_map_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tgis_map_inc BEFORE INSERT ON tgis_map REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tgis_map_s.nextval INTO :NEW.id_tgis_map FROM dual; END tgis_map_inc;; - --- ----------------------------------------------------- --- Table `tgis_map_connection` --- ----------------------------------------------------- ---Table to store the map connection information -CREATE TABLE tgis_map_connection ( - --table id - id_tmap_connection NUMBER(10, 0) PRIMARY KEY, - --Name of the connection (name of the base layer) - conection_name VARCHAR2(45) DEFAULT NULL, - --Type of map server to connect - connection_type VARCHAR2(45) DEFAULT NULL, - --connection information (this can probably change to fit better the possible connection parameters) - conection_data CLOB DEFAULT NULL, - --Number of zoom levels available - num_zoom_levels NUMBER(5, 0) DEFAULT NULL, - --Default Zoom Level for the connection - default_zoom_level NUMBER(5, 0) DEFAULT 16, - --Default longitude for the agents placed on the map - default_longitude BINARY_DOUBLE DEFAULT NULL, - --Default latitude for the agents placed on the map - default_latitude BINARY_DOUBLE DEFAULT NULL, - --Default altitude for the agents placed on the map - default_altitude BINARY_DOUBLE DEFAULT NULL, - --longitude of the center of the map when it\'s loaded - initial_longitude BINARY_DOUBLE DEFAULT NULL, - --latitude of the center of the map when it\'s loaded - initial_latitude BINARY_DOUBLE DEFAULT NULL, - --altitude of the center of the map when it\'s loaded - initial_altitude BINARY_DOUBLE DEFAULT NULL, - --Group that owns the map - group_id NUMBER(10, 0) DEFAULT 0 -); - -CREATE SEQUENCE tgis_map_connection_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tgis_map_connection_inc BEFORE INSERT ON tgis_map_connection REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tgis_map_connection_s.nextval INTO :NEW.id_tmap_connection FROM dual; END tgis_map_connection_inc;; - --- ----------------------------------------------------- --- Table `tgis_map_has_tgis_map_con` (tgis_map_has_tgis_map_connection) --- ----------------------------------------------------- ---Table to associate a connection to gis map -CREATE TABLE tgis_map_has_tgis_map_con ( - --reference to tgis_map - tgis_map_id_tgis_map NUMBER(10, 0) REFERENCES tgis_map(id_tgis_map) ON DELETE CASCADE, - --reference to tgis_map_connection - tgis_map_con_id_tmap_con NUMBER(10, 0) REFERENCES tgis_map_connection (id_tmap_connection) ON DELETE CASCADE, - --Last Modification Time of the Connection - modification_time TIMESTAMP DEFAULT CURRENT_TIMESTAMP, - --Flag to mark the default map connection of a map - default_map_connection NUMBER(5, 0) DEFAULT 0, - PRIMARY KEY (tgis_map_id_tgis_map, tgis_map_con_id_tmap_con) -); -CREATE INDEX tgis_map_has_tgis_map_con1_idx ON tgis_map_has_tgis_map_con(tgis_map_id_tgis_map); -CREATE INDEX tgis_map_has_tgis_map_con2_idx ON tgis_map_has_tgis_map_con(tgis_map_con_id_tmap_con); - ---This trigger is for tranlate on update CURRENT_TIMESTAMP of MySQL. -CREATE OR REPLACE TRIGGER tgis_map_has_tgis_map_con_ts BEFORE UPDATE ON tgis_map_has_tgis_map_con FOR EACH ROW BEGIN SELECT CURRENT_TIMESTAMP INTO :NEW.modification_time FROM DUAL; END;; - --- ----------------------------------------------------- --- Table `tgis_map_layer` --- ----------------------------------------------------- ---Table containing information about the map layers -CREATE TABLE tgis_map_layer ( - --table id - id_tmap_layer NUMBER(10, 0) PRIMARY KEY, - --Name of the layer - layer_name VARCHAR2(45), - --True if the layer must be shown - view_layer NUMBER(5, 0) DEFAULT 1, - --Number of order of the layer in the layer stack, bigger means upper on the stack.\n - layer_stack_order NUMBER(5, 0) DEFAULT 0, - --reference to the map containing the layer - tgis_map_id_tgis_map NUMBER(10, 0) DEFAULT 0 REFERENCES tgis_map(id_tgis_map) ON DELETE CASCADE, - --reference to theroup shown in the layer - tgrupo_id_grupo NUMBER(19, 0) -); - -CREATE SEQUENCE tgis_map_layer_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tgis_map_layer_inc BEFORE INSERT ON tgis_map_layer REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tgis_map_layer_s.nextval INTO :NEW.id_tmap_layer FROM dual; END tgis_map_layer_inc;; - --- ----------------------------------------------------- --- Table `tgis_map_layer_has_tagente` --- ----------------------------------------------------- ---Table to define wich agents are shown in a layer -CREATE TABLE tgis_map_layer_has_tagente ( - tgis_map_layer_id_tmap_layer NUMBER(10, 0) REFERENCES tgis_map_layer(id_tmap_layer) ON DELETE CASCADE, - tagente_id_agente NUMBER(10, 0) REFERENCES tagente(id_agente) ON DELETE CASCADE, - PRIMARY KEY (tgis_map_layer_id_tmap_layer, tagente_id_agente) -); -CREATE INDEX tgis_map_layer_has_tagente_idx ON tgis_map_layer_has_tagente(tgis_map_layer_id_tmap_layer); -CREATE INDEX tgis_map_layer_has_tagent1_idx ON tgis_map_layer_has_tagente(tagente_id_agente); - --- This sequence will not work with the 'insert_id' procedure - --- --------------------------------------------------------------------- --- Table `tgroup_stat` --- --------------------------------------------------------------------- ---Table to storelobal system stats perroup -CREATE TABLE tgroup_stat ( - id_group NUMBER(10, 0) DEFAULT 0 PRIMARY KEY, - modules NUMBER(10, 0) DEFAULT 0, - normal NUMBER(10, 0) DEFAULT 0, - critical NUMBER(10, 0) DEFAULT 0, - warning NUMBER(10, 0) DEFAULT 0, - unknown NUMBER(10, 0) DEFAULT 0, - "non-init" NUMBER(10, 0) DEFAULT 0, - alerts NUMBER(10, 0) DEFAULT 0, - alerts_fired NUMBER(10, 0) DEFAULT 0, - agents NUMBER(10, 0) DEFAULT 0, - agents_unknown NUMBER(10, 0) DEFAULT 0, - utimestamp NUMBER(10, 0) DEFAULT 0 -); - --- This sequence will not work with the 'insert_id' procedure - ------------------------------------------------------------------------- --- Table `tnetwork_map` ------------------------------------------------------------------------- -CREATE TABLE tnetwork_map ( - id_networkmap NUMBER(10, 0) PRIMARY KEY, - id_user VARCHAR2(60) , - name VARCHAR2(100) , - type VARCHAR2(20) , - layout VARCHAR2(20) , - nooverlap NUMBER(5, 0) DEFAULT 0, - simple NUMBER(5, 0) DEFAULT 0, - regenerate NUMBER(5, 0) DEFAULT 1, - font_size NUMBER(10, 0) DEFAULT 12, - id_group NUMBER(10, 0) DEFAULT 0, - id_module_group NUMBER(10, 0) DEFAULT 0, - id_policy NUMBER(10, 0) DEFAULT 0, - depth VARCHAR2(20), - only_modules_with_alerts NUMBER(10, 0) DEFAULT 0, - hide_policy_modules SMALLINT DEFAULT 0, - zoom BINARY_DOUBLE DEFAULT 1, - distance_nodes BINARY_DOUBLE DEFAULT 2.5, - center NUMBER(10, 0) DEFAULT 0, - contracted_nodes CLOB, - show_snmp_modules NUMBER(5, 0) DEFAULT 0, - text_filter VARCHAR(100) DEFAULT '', - dont_show_subgroups NUMBER(10, 0) DEFAULT 0, - pandoras_children NUMBER(10, 0) DEFAULT 0, - show_groups NUMBER(10, 0) DEFAULT 0, - show_modules NUMBER(10, 0) DEFAULT 0, - id_agent NUMBER(10, 0) DEFAULT 0, - server_name VARCHAR(100), - show_modulegroup NUMBER(10, 0) DEFAULT 0, - l2_network NUMBER(1, 0) DEFAULT 0, - id_tag NUMBER(11, 0) DEFAULT 0, - store_group NUMBER(11, 0) DEFAULT 0 -); - -CREATE SEQUENCE tnetwork_map_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tnetwork_map_inc BEFORE INSERT ON tnetwork_map REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tnetwork_map_s.nextval INTO :NEW.id_networkmap FROM dual; END tnetwork_map_inc;; - --- --------------------------------------------------------------------- --- Table `tsnmp_filter` --- --------------------------------------------------------------------- -CREATE TABLE tsnmp_filter ( - id_snmp_filter NUMBER(10, 0) PRIMARY KEY, - description VARCHAR2(255) DEFAULT '', - filter VARCHAR2(255) DEFAULT '' -); - -CREATE SEQUENCE tsnmp_filter_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tsnmp_filter_inc BEFORE INSERT ON tsnmp_filter REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tsnmp_filter_s.nextval INTO :NEW.id_snmp_filter FROM dual; END tsnmp_filter_inc;; - --- --------------------------------------------------------------------- --- Table `tagent_custom_fields` --- --------------------------------------------------------------------- -CREATE TABLE tagent_custom_fields ( - id_field NUMBER(10, 0) PRIMARY KEY, - name VARCHAR2(45) DEFAULT '', - display_on_front NUMBER(5, 0) DEFAULT 0 -); - -CREATE SEQUENCE tagent_custom_fields_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tagent_custom_fields_inc BEFORE INSERT ON tagent_custom_fields REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tagent_custom_fields_s.nextval INTO :NEW.id_field FROM dual; END tagent_custom_fields_inc;; - --- --------------------------------------------------------------------- --- Table `tagent_custom_data` --- --------------------------------------------------------------------- -CREATE TABLE tagent_custom_data ( - id_field NUMBER(10, 0) REFERENCES tagent_custom_fields(id_field) ON DELETE CASCADE, - id_agent NUMBER(10, 0) REFERENCES tagente(id_agente) ON DELETE CASCADE, - description CLOB DEFAULT '', - PRIMARY KEY (id_field, id_agent) -); - --- This sequence will not work with the 'insert_id' procedure - --- on update trigger -CREATE OR REPLACE TRIGGER tagent_custom_data_update AFTER UPDATE OF id_field on tagent_custom_fields FOR EACH ROW BEGIN UPDATE tagent_custom_data SET id_field = :NEW.id_field WHERE id_field = :OLD.id_field; END;; - --- on update trigger 1 -CREATE OR REPLACE TRIGGER tagent_custom_data_update1 AFTER UPDATE OF id_agente on tagente FOR EACH ROW BEGIN UPDATE tagent_custom_data SET id_agent = :NEW.id_agente WHERE id_agent = :OLD.id_agente; END;; - --- --------------------------------------------------------------------- --- Table `ttag` --- --------------------------------------------------------------------- -CREATE TABLE ttag ( - id_tag NUMBER(10, 0) PRIMARY KEY, - name VARCHAR2(100) DEFAULT '', - description CLOB DEFAULT '', - url CLOB DEFAULT '', - email CLOB NULL, - phone CLOB NULL -); - -CREATE SEQUENCE ttag_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER ttag_inc BEFORE INSERT ON ttag REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT ttag_s.nextval INTO :NEW.id_tag FROM dual; END ttag_inc;; - --- --------------------------------------------------------------------- --- Table `ttag_module` --- --------------------------------------------------------------------- -CREATE TABLE ttag_module ( - id_tag NUMBER(10, 0), - id_agente_modulo NUMBER(10, 0) DEFAULT 0, - id_policy_module NUMBER(10, 0) DEFAULT 0, - PRIMARY KEY (id_tag, id_agente_modulo) -); -CREATE INDEX ttag_module_id_ag_modulo_idx ON ttag_module(id_agente_modulo); - --- This sequence will not work with the 'insert_id' procedure - --- --------------------------------------------------------------------- --- Table `ttag_policy_module` --- --------------------------------------------------------------------- -CREATE TABLE ttag_policy_module ( - id_tag NUMBER(10, 0), - id_policy_module NUMBER(10, 0) DEFAULT 0, - PRIMARY KEY (id_tag, id_policy_module) -); -CREATE INDEX ttag_poli_mod_id_pol_mo_idx ON ttag_policy_module(id_policy_module); - --- This sequence will not work with the 'insert_id' procedure - --- ----------------------------------------------------- --- Table `tnetflow_filter` --- ----------------------------------------------------- -CREATE TABLE tnetflow_filter ( - id_sg NUMBER(10, 0) PRIMARY KEY, - id_name VARCHAR2(600), - id_group NUMBER(10, 0), - ip_dst CLOB, - ip_src CLOB, - dst_port CLOB, - src_port CLOB, - router_ip CLOB, - advanced_filter CLOB, - filter_args CLOB, - aggregate VARCHAR2(60), - output VARCHAR2(60) -); - -CREATE SEQUENCE tnetflow_filter_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tnetflow_filter_inc BEFORE INSERT ON tnetflow_filter REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tnetflow_filter_s.nextval INTO :NEW.id_sg FROM dual; END tnetflow_filter_inc;; - --- ----------------------------------------------------- --- Table `tnetflow_report` --- ----------------------------------------------------- -CREATE TABLE tnetflow_report ( - id_report NUMBER(10, 0) PRIMARY KEY, - id_name VARCHAR2(100), - description CLOB DEFAULT '', - id_group NUMBER(10, 0), - server_name CLOB DEFAULT '' -); - -CREATE SEQUENCE tnetflow_report_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tnetflow_report_inc BEFORE INSERT ON tnetflow_report REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tnetflow_report_s.nextval INTO :NEW.id_report FROM dual; END tnetflow_report_inc;; - --- ----------------------------------------------------- --- Table `tnetflow_report_content` --- ----------------------------------------------------- -CREATE TABLE tnetflow_report_content ( - id_rc NUMBER(10, 0) PRIMARY KEY, - id_report NUMBER(10, 0) REFERENCES tnetflow_report(id_report) ON DELETE CASCADE, - id_filter NUMBER(10,0) REFERENCES tnetflow_filter(id_sg) ON DELETE CASCADE, - description CLOB DEFAULT '', - "date" NUMBER(20, 0) DEFAULT 0, - period NUMBER(11, 0) DEFAULT 0, - max NUMBER(11, 0) DEFAULT 0, - show_graph VARCHAR2(60), - "order" NUMBER(11,0) DEFAULT 0 -); - -CREATE SEQUENCE tnetflow_report_content_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tnetflow_report_content_inc BEFORE INSERT ON tnetflow_report_content REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tnetflow_report_content_s.nextval INTO :NEW.id_rc FROM dual; END tnetflow_report_content_inc;; - --- --------------------------------------------------------------------- --- Table `tevent_filter` --- --------------------------------------------------------------------- -CREATE TABLE tevent_filter ( - id_filter NUMBER(10, 0) PRIMARY KEY, - id_group_filter NUMBER(10, 0) DEFAULT 0, - id_name VARCHAR2(600), - id_group NUMBER(10, 0) DEFAULT 0, - event_type CLOB DEFAULT '', - severity NUMBER(10, 0) DEFAULT -1, - status NUMBER(10, 0) DEFAULT -1, - search CLOB DEFAULT '', - text_agent CLOB DEFAULT '', - id_agent NUMBER(10, 0) DEFAULT 0, - id_agent_module NUMBER(10, 0) DEFAULT 0, - pagination NUMBER(10, 0) DEFAULT 25, - event_view_hr NUMBER(10, 0) DEFAULT 8, - id_user_ack CLOB, - group_rep NUMBER(10, 0) DEFAULT 0, - tag_with CLOB, - tag_without CLOB, - date_from DATE DEFAULT NULL, - date_to DATE DEFAULT NULL, - filter_only_alert NUMBER(10, 0) DEFAULT -1 -); - -CREATE SEQUENCE tevent_filter_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tevent_filter_inc BEFORE INSERT ON tevent_filter REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tevent_filter_s.nextval INTO :NEW.id_filter FROM dual; END tevent_filter_inc;; - --- --------------------------------------------------------------------- --- Table `tpassword_history` --- --------------------------------------------------------------------- -CREATE TABLE tpassword_history ( - id_pass NUMBER(10) PRIMARY KEY, - id_user varchar2(60), - password varchar2(45) DEFAULT '', - date_begin TIMESTAMP, - date_end TIMESTAMP -); - -CREATE SEQUENCE tpassword_history_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tpassword_history_inc BEFORE INSERT ON tpassword_history REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tpassword_history_s.nextval INTO :NEW.id_pass FROM dual; END tpassword_history_inc;; - --- --------------------------------------------------------------------- --- Table `tevent_response` --- --------------------------------------------------------------------- -CREATE TABLE tevent_response ( - id NUMBER(10) PRIMARY KEY, - name varchar2(600) DEFAULT '', - description CLOB, - target CLOB, - type varchar2(60), - id_group NUMBER(10, 0) DEFAULT 0, - modal_width NUMBER(10, 0) DEFAULT 0, - modal_height NUMBER(10, 0) DEFAULT 0, - new_window NUMBER(10, 0) DEFAULT 0, - params CLOB -); - -CREATE SEQUENCE tevent_response_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tevent_response_inc BEFORE INSERT ON tevent_response REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tevent_response_s.nextval INTO :NEW.id FROM dual; END tevent_response_inc;; - --- --------------------------------------------------------------------- --- Table `tcategory` --- --------------------------------------------------------------------- -CREATE TABLE tcategory ( - id NUMBER(10, 0) PRIMARY KEY, - name VARCHAR2(600) DEFAULT '' -); - -CREATE SEQUENCE tcategory_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tcategory_inc BEFORE INSERT ON tcategory REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tcategory_s.nextval INTO :NEW.ID FROM dual; END tcategory_inc;; - --- --------------------------------------------------------------------- --- Table `tupdate_settings` --- --------------------------------------------------------------------- -CREATE TABLE tupdate_settings ( - "key" VARCHAR2(255) DEFAULT '' PRIMARY KEY, - "value" VARCHAR2(255) DEFAULT '' -); - --- This sequence will not work with the 'insert_id' procedure - --- --------------------------------------------------------------------- --- Table `tupdate_package` --- --------------------------------------------------------------------- -CREATE TABLE tupdate_package ( - id NUMBER(10, 0) PRIMARY KEY, - timestamp TIMESTAMP DEFAULT NULL, - description VARCHAR2(255) DEFAULT '' -); - -CREATE SEQUENCE tupdate_package_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tupdate_package_inc BEFORE INSERT ON tupdate_package REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tupdate_package_s.nextval INTO :NEW.id FROM dual; END tupdate_package_inc;; - --- --------------------------------------------------------------------- --- Table `tupdate` --- --------------------------------------------------------------------- -CREATE TABLE tupdate ( - id NUMBER(10, 0) PRIMARY KEY, - type VARCHAR2(15), - id_update_package NUMBER(10, 0) DEFAULT 0 REFERENCES tupdate_package(id) ON DELETE CASCADE, - filename VARCHAR2(250) DEFAULT '', - checksum VARCHAR2(250) DEFAULT '', - previous_checksum VARCHAR2(250) DEFAULT '', - svn_version NUMBER(10, 0) DEFAULT 0, - data CLOB DEFAULT '', - data_rollback CLOB DEFAULT '', - description CLOB DEFAULT '', - db_table_name VARCHAR2(140) DEFAULT '', - db_field_name VARCHAR2(140) DEFAULT '', - db_field_value VARCHAR2(1024) DEFAULT '', - CONSTRAINT tupdate_type_cons CHECK (type IN ('code', 'db_data', 'db_schema', 'binary')) -); - -CREATE SEQUENCE tupdate_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tupdate_inc BEFORE INSERT ON tupdate REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tupdate_s.nextval INTO :NEW.id FROM dual; END;; -CREATE OR REPLACE TRIGGER tupdate_update AFTER UPDATE OF id on tupdate_package FOR EACH ROW BEGIN UPDATE tupdate SET id_update_package = :NEW.id WHERE id_update_package = :OLD.id; END;; - --- --------------------------------------------------------------------- --- Table `tupdate_journal` --- --------------------------------------------------------------------- -CREATE TABLE tupdate_journal ( - id NUMBER(10, 0) PRIMARY KEY, - id_update NUMBER(10, 0) DEFAULT 0 REFERENCES tupdate(id) ON DELETE CASCADE -); - -CREATE SEQUENCE tupdate_journal_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tupdate_journal_inc BEFORE INSERT ON tupdate_journal REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tupdate_journal_s.nextval INTO :NEW.id FROM dual; END;; -CREATE OR REPLACE TRIGGER tupdate_journal_update AFTER UPDATE OF id on tupdate FOR EACH ROW BEGIN UPDATE tupdate_journal SET id = :NEW.id WHERE id = :OLD.id; END;; - --- --------------------------------------------------------------------- --- Table `talert_snmp_action` --- --------------------------------------------------------------------- -CREATE TABLE talert_snmp_action ( - id NUMBER(10, 0) PRIMARY KEY, - id_alert_snmp NUMBER(10, 0) DEFAULT 0, - alert_type NUMBER(2, 0) DEFAULT 0, - al_field1 CLOB DEFAULT '', - al_field2 CLOB DEFAULT '', - al_field3 CLOB DEFAULT '', - al_field4 CLOB DEFAULT '', - al_field5 CLOB DEFAULT '', - al_field6 CLOB DEFAULT '', - al_field7 CLOB DEFAULT '', - al_field8 CLOB DEFAULT '', - al_field9 CLOB DEFAULT '', - al_field10 CLOB DEFAULT '', - al_field11 CLOB DEFAULT '', - al_field12 CLOB DEFAULT '', - al_field13 CLOB DEFAULT '', - al_field14 CLOB DEFAULT '', - al_field15 CLOB DEFAULT '' -); -CREATE SEQUENCE talert_snmp_action_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER talert_snmp_action_inc BEFORE INSERT ON talert_snmp_action REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT talert_snmp_action_s.nextval INTO :NEW.id FROM dual; END;; - --- This sequence will not work with the 'insert_id' procedure - --- --------------------------------------------------------------------- --- Table `tsessions_php` --- --------------------------------------------------------------------- -CREATE TABLE tsessions_php ( - id_session VARCHAR2(52) PRIMARY KEY, - last_active NUMBER(20, 0), - data CLOB DEFAULT '' -); - --- This sequence will not work with the 'insert_id' procedure - --- --------------------------------------------------------------------- --- Table `tmap` --- --------------------------------------------------------------------- -CREATE TABLE IF NOT EXISTS tmap ( - id NUMBER(10, 0) PRIMARY KEY, - id_group NUMBER(10, 0) DEFAULT 0, - id_user VARCHAR2(100) DEFAULT '', - type NUMBER(5, 0) DEFAULT 0, - subtype NUMBER(5, 0) DEFAULT 0, - name VARCHAR2(100) DEFAULT '', - description CLOB DEFAULT '', - height NUMBER(10, 0) DEFAULT 0, - width NUMBER(10, 0) DEFAULT 0, - center_x NUMBER(10, 0) DEFAULT 0, - center_y NUMBER(10, 0) DEFAULT 0, - background VARCHAR2(100) DEFAULT '', - background_options NUMBER(10, 0) DEFAULT 0, - source_period NUMBER(10, 0) DEFAULT 0, - source NUMBER(10, 0) DEFAULT 0, - source_data VARCHAR2(250) DEFAULT '', - generation_method NUMBER(10, 0) DEFAULT 0, - generated NUMBER(10, 0) DEFAULT 0, - filter CLOB DEFAULT '', -); - -CREATE SEQUENCE tmap_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tmap_inc BEFORE INSERT ON tmap REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tmap_s.nextval INTO :NEW.id FROM dual; END tmap_inc;; - --- --------------------------------------------------------------------- --- Table titem --- --------------------------------------------------------------------- -CREATE TABLE IF NOT EXISTS titem ( - id NUMBER(10, 0) PRIMARY KEY, - id_map NUMBER(10, 0) DEFAULT 0, - x NUMBER(10, 0) DEFAULT 0, - y NUMBER(10, 0) DEFAULT 0, - z NUMBER(10, 0) DEFAULT 0, - deleted NUMBER(1, 0) DEFAULT 0, - type NUMBER(5, 0) DEFAULT 0, - refresh NUMBER(10, 0) DEFAULT 0, - source NUMBER(10, 0) DEFAULT 0, - source_data VARCHAR2(250) DEFAULT '', - options CLOB DEFAULT '', - style CLOB DEFAULT '' -); -CREATE SEQUENCE titem_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER titem_inc BEFORE INSERT ON titem REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT titem_s.nextval INTO :NEW.id FROM dual; END titem_inc;; - --- --------------------------------------------------------------------- --- Table trel_item --- --------------------------------------------------------------------- -CREATE TABLE IF NOT EXISTS trel_item ( - id NUMBER(10, 0) PRIMARY KEY, - id_parent NUMBER(10, 0) DEFAULT 0, - id_child NUMBER(10, 0) DEFAULT 0, - id_parent_source_data NUMBER(10, 0) DEFAULT 0, - id_child_source_data NUMBER(10, 0) DEFAULT 0, - parent_type NUMBER(5, 0) DEFAULT 0, - child_type NUMBER(5, 0) DEFAULT 0, - id_item NUMBER(10, 0) DEFAULT 0, - deleted NUMBER(1, 0) DEFAULT 0 -); -CREATE SEQUENCE trel_item_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER trel_item_inc BEFORE INSERT ON trel_item REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT trel_item_s.nextval INTO :NEW.id FROM dual; END trel_item_inc;; - --- ----------------------------------------------------- --- Table "tlocal_component" --- ----------------------------------------------------- --- tlocal_component is a repository of local modules for --- physical agents on Windows / Unix physical agents -CREATE TABLE tlocal_component ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - name CLOB NOT NULL, - data CLOB NOT NULL, - description VARCHAR2(1024) default NULL, - id_os NUMBER(10, 0) default 0 NOT NULL, - os_version VARCHAR2(100) default '', - id_network_component_group NUMBER(10, 0) default 0 NOT NULL REFERENCES tnetwork_component_group(id_sg) ON DELETE CASCADE, - type NUMBER(6, 0) default 6 NOT NULL, - max NUMBER(19, 0) default 0 NOT NULL, - min NUMBER(19, 0) default 0 NOT NULL, - module_interval NUMBER(10, 0) default 0 NULL, - id_module_group NUMBER(10, 0) default 0 NOT NULL, - history_data NUMBER(5, 0) default 1 NOT NULL, - min_warning DOUBLE PRECISION default 0 NOT NULL, - max_warning DOUBLE PRECISION default 0 NOT NULL, - str_warning CLOB default '', - min_critical DOUBLE PRECISION default 0 NOT NULL, - max_critical DOUBLE PRECISION default 0 NOT NULL, - str_critical CLOB default '', - min_ff_event NUMBER(10, 0) default 0 NOT NULL, - post_process DOUBLE PRECISION default 0 NOT NULL, - unit CLOB default '', - wizard_level VARCHAR2(100) default 'nowizard' NOT NULL, - macros CLOB default '', - critical_instructions VARCHAR2(255) default '', - warning_instructions VARCHAR2(255) default '', - unknown_instructions VARCHAR2(255) default '', - critical_inverse NUMBER(1, 0) default 0 NOT NULL, - warning_inverse NUMBER(1, 0) default 0 NOT NULL, - id_category NUMBER(10, 0) default 0 NOT NULL, - tags CLOB default '', - disabled_types_event CLOB default '', - min_ff_event_normal INTEGER default 0, - min_ff_event_warning INTEGER default 0, - min_ff_event_critical INTEGER default 0, - each_ff NUMBER(1, 0) default 0, - ff_timeout INTEGER default 0, - dynamic_interval INTEGER default 0, - dynamic_max INTEGER default 0, - dynamic_min INTEGER default 0, - dynamic_next INTEGER default 0 NOT NULL, - dynamic_two_tailed NUMBER(1, 0) default 0, - prediction_sample_window INTEGER default 0, - prediction_samples INTEGER default 0, - prediction_threshold INTEGER default 0, - CONSTRAINT t_local_component_wizard_cons CHECK (wizard_level IN ('basic','advanced','nowizard')) -); - -CREATE SEQUENCE tlocal_component_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tlocal_component_inc BEFORE INSERT ON tlocal_component REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tlocal_component_s.nextval INTO :NEW.ID FROM dual; END tlocal_component_inc;; --- on update trigger -CREATE OR REPLACE TRIGGER tlocal_component_update AFTER UPDATE OF ID_SG ON tnetwork_component_group FOR EACH ROW BEGIN UPDATE tlocal_component SET ID_NETWORK_COMPONENT_GROUP = :NEW.ID_SG WHERE ID_NETWORK_COMPONENT_GROUP = :OLD.ID_SG; END;; - - --- ----------------------------------------------------- --- Table "tpolicy_modules" --- ----------------------------------------------------- -CREATE TABLE tpolicy_modules ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_policy NUMBER(10, 0) default 0 NOT NULL, - configuration_data CLOB default '', - id_tipo_modulo NUMBER(5, 0) default 0 NOT NULL, - description VARCHAR2(1024) default '', - name VARCHAR2(200) default '' NOT NULL, - unit CLOB default '', - max NUMBER(19, 0) default 0 NOT NULL, - min NUMBER(19, 0) default 0 NOT NULL, - module_interval NUMBER(10, 0) default 0 NOT NULL, - tcp_port NUMBER(10, 0) default 0 NOT NULL, - tcp_send CLOB default '', - tcp_rcv CLOB default '', - snmp_community VARCHAR2(100) default '', - snmp_oid VARCHAR2(255) default '0', - id_module_group NUMBER(10, 0) default 0 NOT NULL, - flag NUMBER(5, 0) default 0 NOT NULL, - id_module NUMBER(10, 0) default 0 NOT NULL, - disabled NUMBER(5, 0) default 0 NOT NULL, - id_export NUMBER(5, 0) default 0 NOT NULL, - plugin_user CLOB default '', - plugin_pass CLOB default '', - plugin_parameter CLOB, - id_plugin NUMBER(10, 0) default 0 NOT NULL, - post_process BINARY_DOUBLE default NULL, - prediction_module NUMBER(19, 0) default 0 NOT NULL, - max_timeout NUMBER(10, 0) default 0 NOT NULL, - max_retries NUMBER(10, 0) default 0 NOT NULL, - custom_id VARCHAR2(255) default '', - history_data NUMBER(5, 0) default 1 NOT NULL, - min_warning BINARY_DOUBLE default 0, - max_warning BINARY_DOUBLE default 0, - str_warning CLOB default '', - min_critical BINARY_DOUBLE default 0, - max_critical BINARY_DOUBLE default 0, - str_critical CLOB default '', - min_ff_event NUMBER(10, 0) default 0 NOT NULL, - custom_string_1 CLOB default '', - custom_string_2 CLOB default '', - custom_string_3 CLOB default '', - custom_integer_1 NUMBER(10, 0) default 0 NOT NULL, - custom_integer_2 NUMBER(10, 0) default 0 NOT NULL, - pending_delete NUMBER(5, 0) default 0 NOT NULL, - critical_instructions CLOB default '', - warning_instructions CLOB default '', - unknown_instructions CLOB default '', - critical_inverse NUMBER(1, 0) default 0 NOT NULL, - warning_inverse NUMBER(1, 0) default 0 NOT NULL, - id_category NUMBER(10, 0) default 0 NOT NULL, - module_ff_interval NUMBER(19, 0) default 0 NOT NULL, - quiet NUMBER(5, 0) default 0 NOT NULL, - cron_interval VARCHAR2(100) DEFAULT '', - macros CLOB default '', - disabled_types_event CLOB default '', - module_macros CLOB default '', - min_ff_event_normal INTEGER default 0, - min_ff_event_warning INTEGER default 0, - min_ff_event_critical INTEGER default 0, - each_ff NUMBER(1, 0) default 0, - ff_timeout INTEGER default 0, - dynamic_interval INTEGER default 0, - dynamic_max INTEGER default 0, - dynamic_min INTEGER default 0, - dynamic_next INTEGER NOT NULL default 0, - dynamic_two_tailed INTEGER default 0, - prediction_sample_window INTEGER default 0, - prediction_samples INTEGER default 0, - prediction_threshold INTEGER default 0 -); -CREATE UNIQUE INDEX tpolicy_modules_id_pol_na_idx ON tpolicy_modules(id_policy, name); -CREATE INDEX tpolicy_modules_id_policy_idx ON tpolicy_modules(id_policy); - -CREATE SEQUENCE tpolicy_modules_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tpolicy_modules_inc BEFORE INSERT ON tpolicy_modules REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tpolicy_modules_s.nextval INTO :NEW.ID FROM dual; END tpolicy_modules_inc;; - - --- ----------------------------------------------------- --- Table "tpolicies" --- ----------------------------------------------------- --- 'status' could be 0 (without changes, updated), 1 (needy update only database) or 2 (needy update database and conf files) -CREATE TABLE tpolicies ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - name VARCHAR2(255) NOT NULL, - description VARCHAR2(255) default '', - id_group NUMBER(10, 0) default 0 NOT NULL, - status NUMBER(10, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tpolicies_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tpolicies_inc BEFORE INSERT ON tpolicies REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tpolicies_s.nextval INTO :NEW.ID FROM dual; END tpolicies_inc;; - - --- ----------------------------------------------------- --- Table "tpolicy_alerts" --- ----------------------------------------------------- -CREATE TABLE tpolicy_alerts ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_policy NUMBER(10, 0) default 0 NOT NULL REFERENCES tpolicies(id) ON DELETE CASCADE, - id_policy_module NUMBER(10, 0) default 0 NOT NULL, - id_alert_template NUMBER(10, 0) default 0 NOT NULL REFERENCES talert_templates(id) ON DELETE CASCADE, - name_extern_module VARCHAR2(300) default '', - disabled NUMBER(5, 0) default 0 NOT NULL, - standby NUMBER(5, 0) default 0 NOT NULL, - pending_delete NUMBER(5, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tpolicy_alerts_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tpolicy_alerts_inc BEFORE INSERT ON tpolicy_alerts REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tpolicy_alerts_s.nextval INTO :NEW.ID FROM dual; END tpolicy_alerts_inc;; --- on update trigger -CREATE OR REPLACE TRIGGER tpolicy_alerts_update AFTER UPDATE OF ID ON tpolicies FOR EACH ROW BEGIN UPDATE tpolicy_alerts SET ID_POLICY = :NEW.ID WHERE ID_POLICY = :OLD.ID; END;; --- on update trigger 1 -CREATE OR REPLACE TRIGGER tpolicy_alerts_update1 AFTER UPDATE OF ID ON talert_templates FOR EACH ROW BEGIN UPDATE tpolicy_alerts SET ID_ALERT_TEMPLATE = :NEW.ID WHERE ID_ALERT_TEMPLATE = :OLD.ID; END;; - - --- ----------------------------------------------------- --- Table "tpolicy_agents" --- ----------------------------------------------------- -CREATE TABLE tpolicy_agents ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_policy NUMBER(10, 0) default 0 NOT NULL, - id_agent NUMBER(10, 0) default 0 NOT NULL, - policy_applied NUMBER(5, 0) default 0 NOT NULL, - pending_delete NUMBER(5, 0) default 0 NOT NULL, - last_apply_utimestamp NUMBER(10, 0) default 0 NOT NULL -); -CREATE UNIQUE INDEX tpolicy_agents_id_po_id_ag_idx ON tpolicy_agents(id_policy, id_agent); - -CREATE SEQUENCE tpolicy_agents_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tpolicy_agents_inc BEFORE INSERT ON tpolicy_agents REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tpolicy_agents_s.nextval INTO :NEW.ID FROM dual; END tpolicy_agents_inc;; - - --- ----------------------------------------------------- --- Table "tdashboard" --- ----------------------------------------------------- -CREATE TABLE tdashboard ( - id NUMBER(19, 0) NOT NULL PRIMARY KEY, - name VARCHAR2(60) default '' NOT NULL, - id_user VARCHAR2(60) default '' NOT NULL, - id_group NUMBER(10, 0) default 0 NOT NULL, - active NUMBER(5, 0) default 0 NOT NULL, - cells CLOB default '' -); - -CREATE SEQUENCE tdashboard_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tdashboard_inc BEFORE INSERT ON tdashboard REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tdashboard_s.nextval INTO :NEW.ID FROM dual; END tdashboard_inc;; - - --- ----------------------------------------------------- --- Table "twidget" --- ----------------------------------------------------- -CREATE TABLE twidget ( - id NUMBER(19, 0) NOT NULL PRIMARY KEY, - class_name VARCHAR2(60) default '' NOT NULL, - unique_name VARCHAR2(60) default '' NOT NULL, - description CLOB default '' NOT NULL, - options CLOB default '' NOT NULL, - page VARCHAR2(120) default '' NOT NULL -); - -CREATE SEQUENCE twidget_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER twidget_inc BEFORE INSERT ON twidget REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT twidget_s.nextval INTO :NEW.ID FROM dual; END twidget_inc;; - - --- ----------------------------------------------------- --- Table "twidget_dashboard" --- ----------------------------------------------------- -CREATE TABLE twidget_dashboard ( - id NUMBER(19, 0) NOT NULL PRIMARY KEY, - options CLOB default '', - "order" NUMBER(10, 0) default 0 NOT NULL, - id_dashboard NUMBER(19, 0) default 0 NOT NULL REFERENCES tdashboard(id) ON DELETE CASCADE, - id_widget NUMBER(19, 0) default 0 NOT NULL, - prop_width DOUBLE PRECISION default 0.32 NOT NULL, - prop_height DOUBLE PRECISION default 0.32 NOT NULL -); - -CREATE SEQUENCE twidget_dashboard_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER twidget_dashboard_inc BEFORE INSERT ON twidget_dashboard REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT twidget_dashboard_s.nextval INTO :NEW.ID FROM dual; END twidget_dashboard_inc;; --- on update trigger -CREATE OR REPLACE TRIGGER twidget_dashboard_update AFTER UPDATE OF ID ON tdashboard FOR EACH ROW BEGIN UPDATE twidget_dashboard SET ID_DASHBOARD = :NEW.ID WHERE ID_DASHBOARD = :OLD.ID; END;; --- on update trigger 1 -CREATE OR REPLACE TRIGGER twidget_dashboard_update1 AFTER UPDATE OF ID ON twidget FOR EACH ROW BEGIN UPDATE twidget_dashboard SET ID_WIDGET = :NEW.ID WHERE ID_WIDGET = :OLD.ID; END;; - - --- ----------------------------------------------------- --- Table "tmodule_inventory" --- ----------------------------------------------------- -CREATE TABLE tmodule_inventory ( - id_module_inventory NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_os NUMBER(10, 0) default NULL REFERENCES tconfig_os(id_os) ON DELETE CASCADE, - name VARCHAR2(100) default '', - description VARCHAR2(100) default '', - interpreter VARCHAR2(100) default '', - data_format VARCHAR2(100) default '', - code CLOB default '', - block_mode NUMBER(3, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tmodule_inventory_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tmodule_inventory_inc BEFORE INSERT ON tmodule_inventory REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tmodule_inventory_s.nextval INTO :NEW.ID_MODULE_INVENTORY FROM dual; END tmodule_inventory_inc;; - - --- ----------------------------------------------------- --- Table "tagente_datos_inventory" --- ----------------------------------------------------- -CREATE TABLE tagente_datos_inventory ( - id_agent_module_inventory NUMBER (10, 0) NOT NULL, - data CLOB default '', - utimestamp NUMBER(10, 0) default 0 NOT NULL, - timestamp TIMESTAMP default NULL -); -CREATE INDEX tagente_datos_inventory_id ON tagente_datos_inventory(id_agent_module_inventory); -CREATE INDEX tagente_datos_inventory_ut ON tagente_datos_inventory(utimestamp); - --- This sequence will not work with the 'insert_id' procedure - --- on update trigger -CREATE OR REPLACE TRIGGER tmodule_inventory_update AFTER UPDATE OF ID_OS ON tconfig_os FOR EACH ROW BEGIN UPDATE tmodule_inventory SET ID_OS = :NEW.ID_OS WHERE ID_OS = :OLD.ID_OS; END;; - - --- ----------------------------------------------------- --- Table "tagent_module_inventory" --- ----------------------------------------------------- -CREATE TABLE tagent_module_inventory ( - id_agent_module_inventory NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_agente NUMBER(10, 0) NOT NULL REFERENCES tagente(id_agente) ON DELETE CASCADE, - id_module_inventory NUMBER(10, 0) NOT NULL REFERENCES tmodule_inventory(id_module_inventory) ON DELETE CASCADE, - target VARCHAR2(100) default '', - "interval" NUMBER(10, 0) default 3600 NOT NULL, - username VARCHAR2(100) default '', - password VARCHAR2(100) default '', - data CLOB default '', - timestamp TIMESTAMP default NULL, - utimestamp NUMBER(19, 0) default 0 NOT NULL, - flag NUMBER(5, 0) default 1 NOT NULL, - id_policy_module_inventory NUMBER(10, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tagent_module_inventory_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tagent_module_inventory_inc BEFORE INSERT ON tagent_module_inventory REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tagent_module_inventory_s.nextval INTO :NEW.ID_AGENT_MODULE_INVENTORY FROM dual; END tagent_module_inventory_inc;; --- on update trigger -CREATE OR REPLACE TRIGGER tagent_module_inventory_update AFTER UPDATE OF ID_AGENTE ON tagente FOR EACH ROW BEGIN UPDATE tagent_module_inventory SET ID_AGENTE = :NEW.ID_AGENTE WHERE ID_AGENTE = :OLD.ID_AGENTE; END;; --- on update trigger 1 -CREATE OR REPLACE TRIGGER tagent_module_inventor_update1 AFTER UPDATE OF ID_MODULE_INVENTORY ON tmodule_inventory FOR EACH ROW BEGIN UPDATE tagent_module_inventory SET ID_MODULE_INVENTORY = :NEW.ID_MODULE_INVENTORY WHERE ID_MODULE_INVENTORY = :OLD.ID_MODULE_INVENTORY; END;; - - --- ----------------------------------------------------- --- Table "ttrap_custom_values" --- ----------------------------------------------------- -CREATE TABLE ttrap_custom_values ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - oid VARCHAR2(255) default '' NOT NULL, - custom_oid VARCHAR2(255) default '' NOT NULL, - text VARCHAR2(255) default '', - description VARCHAR2(255) default '', - severity NUMBER(10, 0) default 2 NOT NULL, - CONSTRAINT oid_custom_oid UNIQUE(oid, custom_oid) -); - -CREATE SEQUENCE ttrap_custom_values_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER ttrap_custom_values_inc BEFORE INSERT ON ttrap_custom_values REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT ttrap_custom_values_s.nextval INTO :NEW.ID FROM dual; END ttrap_custom_values_inc;; - - --- ----------------------------------------------------- --- Table "tmetaconsole_setup" --- ----------------------------------------------------- ---Table to store metaconsole sources -CREATE TABLE tmetaconsole_setup ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - server_name VARCHAR2(1000) default '', - server_url CLOB default '', - dbuser CLOB default '', - dbpass CLOB default '', - dbhost CLOB default '', - dbport CLOB default '', - dbname CLOB default '', - auth_token CLOB default '', - id_group NUMBER(10, 0) default 0 NOT NULL, - api_password CLOB default '', - disabled NUMBER(10, 0) default 0, - last_event_replication NUMBER(19, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tmetaconsole_setup_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tmetaconsole_setup_inc BEFORE INSERT ON tmetaconsole_setup REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tmetaconsole_setup_s.nextval INTO :NEW.ID FROM dual; END tmetaconsole_setup_inc;; - - --- ----------------------------------------------------- --- Table "tprofile_view" --- ----------------------------------------------------- ---Table to define by each profile defined in Pandora, to which sec/page has access independently of its ACL (for showing in the console or not). By default have access to all pages allowed by ACL, if forbidden here, then pages are not shown. -CREATE TABLE tprofile_view ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_profile NUMBER(10, 0) default 0 NOT NULL, - sec CLOB default '', - sec2 CLOB default '', - sec3 CLOB default '' -); - -CREATE SEQUENCE tprofile_view_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tprofile_view_inc BEFORE INSERT ON tprofile_view REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tprofile_view_s.nextval INTO :NEW.ID FROM dual; END tprofile_view_inc;; - - --- ----------------------------------------------------- --- Table "tservice" --- ----------------------------------------------------- ---Table to define services to monitor -CREATE TABLE tservice ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - name VARCHAR2(100) default '' NOT NULL, - description CLOB default '' NOT NULL, - id_group NUMBER(10, 0) default 0 NOT NULL, - critical BINARY_DOUBLE default 0 NOT NULL, - warning BINARY_DOUBLE default 0 NOT NULL, - service_interval BINARY_DOUBLE default 0 NOT NULL, - service_value BINARY_DOUBLE default 0 NOT NULL, - status NUMBER(10, 0) default -1 NOT NULL, - utimestamp NUMBER(10, 0) default 0 NOT NULL, - auto_calculate NUMBER(10, 0) default 1 NOT NULL, - id_agent_module NUMBER(10, 0) default 0 NOT NULL, - sla_interval DOUBLE PRECISION default 0 NOT NULL, - sla_id_module NUMBER(10, 0) default 0 NOT NULL, - sla_value_id_module NUMBER(10, 0) default 0 NOT NULL, - sla_limit DOUBLE PRECISION default 100 NOT NULL, - id_template_alert_warning NUMBER(10, 0) default 0 NOT NULL, - id_template_alert_critical NUMBER(10, 0) default 0 NOT NULL, - id_template_alert_unknown NUMBER(10, 0) default 0 NOT NULL, - id_template_alert_critical_sla NUMBER(10, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tservice_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tservice_inc BEFORE INSERT ON tservice REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tservice_s.nextval INTO :NEW.ID FROM dual; END tservice_inc;; - - --- ----------------------------------------------------- --- Table "tservice_element" --- ----------------------------------------------------- ---Table to define the modules and the weights of the modules that define a service -CREATE TABLE tservice_element ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_service NUMBER(10, 0) NOT NULL, - weight_ok BINARY_DOUBLE default 0 NOT NULL, - weight_warning BINARY_DOUBLE default 0 NOT NULL, - weight_critical DOUBLE PRECISION default 0 NOT NULL, - weight_unknown DOUBLE PRECISION default 0 NOT NULL, - description CLOB default '', - id_agente_modulo NUMBER(10, 0) default 0 NOT NULL, - id_agent NUMBER(10, 0) default 0 NOT NULL, - id_service_child NUMBER(10, 0) default 0 NOT NULL, - id_server_meta NUMBER(10, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tservice_element_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tservice_element_inc BEFORE INSERT ON tservice_element REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tservice_element_s.nextval INTO :NEW.ID FROM dual; END tservice_element_inc;; - - --- ----------------------------------------------------- --- Table "tcollection" --- ----------------------------------------------------- -CREATE TABLE tcollection ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - name VARCHAR2(100) default '' NOT NULL, - short_name VARCHAR2(100) default '' NOT NULL, - id_group NUMBER(10, 0) default 0 NOT NULL, - description CLOB, - status NUMBER(10, 0) default 0 NOT NULL -); --- status: 0 - Not apply --- status: 1 - Applied - -CREATE SEQUENCE tcollection_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tcollection_inc BEFORE INSERT ON tcollection REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tcollection_s.nextval INTO :NEW.ID FROM dual; END tcollection_inc;; - - --- ----------------------------------------------------- --- Table "tpolicy_collections" --- ----------------------------------------------------- -CREATE TABLE tpolicy_collections ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_policy NUMBER(10, 0) default 0 NOT NULL REFERENCES tpolicies (id) ON DELETE CASCADE, - id_collection NUMBER(10, 0) default 0 NOT NULL REFERENCES tcollection (id) ON DELETE CASCADE, - pending_delete NUMBER(5, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tpolicy_collections_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tpolicy_collections_inc BEFORE INSERT ON tpolicy_collections REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tpolicy_collections_s.nextval INTO :NEW.ID FROM dual; END tpolicy_collections_inc;; --- on update trigger -CREATE OR REPLACE TRIGGER tpolicy_collections_update AFTER UPDATE OF ID ON tpolicies FOR EACH ROW BEGIN UPDATE tpolicy_collections SET ID_POLICY = :NEW.ID WHERE ID_POLICY = :OLD.ID; END;; --- on update trigger 1 -CREATE OR REPLACE TRIGGER tpolicy_collections_update1 AFTER UPDATE OF ID ON tcollection FOR EACH ROW BEGIN UPDATE tpolicy_collections SET ID_COLLECTION = :NEW.ID WHERE ID_COLLECTION = :OLD.ID; END;; - - --- ----------------------------------------------------- --- Table "tpolicy_alerts_actions" --- ----------------------------------------------------- -CREATE TABLE tpolicy_alerts_actions ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_policy_alert NUMBER(10, 0) default 0 NOT NULL REFERENCES tpolicy_alerts (id) ON DELETE CASCADE, - id_alert_action NUMBER(10, 0) default 0 NOT NULL REFERENCES talert_actions (id) ON DELETE CASCADE, - fires_min NUMBER(10, 0) default 0, - fires_max NUMBER(10, 0) default 0 -); - -CREATE SEQUENCE tpolicy_alerts_actions_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tpolicy_alerts_actions_inc BEFORE INSERT ON tpolicy_alerts_actions REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tpolicy_alerts_actions_s.nextval INTO :NEW.ID FROM dual; END tpolicy_alerts_actions_inc;; --- on update trigger -CREATE OR REPLACE TRIGGER tpolicy_alerts_actions_update AFTER UPDATE OF ID ON tpolicy_alerts FOR EACH ROW BEGIN UPDATE tpolicy_alerts_actions SET ID_POLICY_ALERT = :NEW.ID WHERE ID_POLICY_ALERT = :OLD.ID; END;; --- on update trigger 1 -CREATE OR REPLACE TRIGGER tpolicy_alerts_actions_update1 AFTER UPDATE OF ID ON talert_actions FOR EACH ROW BEGIN UPDATE tpolicy_alerts_actions SET ID_ALERT_ACTION = :NEW.ID WHERE ID_ALERT_ACTION = :OLD.ID; END;; - --- ----------------------------------------------------- --- Table "tpolicy_plugins" --- ----------------------------------------------------- -CREATE TABLE tpolicy_plugins ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_policy NUMBER(10, 0) default 0 NOT NULL, - plugin_exec CLOB default '', - pending_delete NUMBER(5, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tpolicy_plugins_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tpolicy_plugins_inc BEFORE INSERT ON tpolicy_plugins REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tpolicy_plugins_s.nextval INTO :NEW.ID FROM dual; END tpolicy_plugins_inc;; - - --- ----------------------------------------------------- --- Table "tsesion_extended" --- ----------------------------------------------------- -CREATE TABLE tsesion_extended ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_sesion NUMBER(10, 0) NOT NULL, - extended_info CLOB default '', - hash VARCHAR2(255) default '' -); - -CREATE SEQUENCE tsesion_extended_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tsesion_extended_inc BEFORE INSERT ON tsesion_extended REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tsesion_extended_s.nextval INTO :NEW.ID FROM dual; END tsesion_extended_inc;; - - --- ----------------------------------------------------- --- Table `tskin` --- ----------------------------------------------------- -CREATE TABLE tskin ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - name CLOB DEFAULT '' NOT NULL, - relative_path CLOB DEFAULT '' NOT NULL, - description CLOB DEFAULT '' NOT NULL, - disabled NUMBER(10,0) default 0 NOT NULL -); - -CREATE SEQUENCE tskin_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tskin_inc BEFORE INSERT ON tskin REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tskin_s.nextval INTO :NEW.ID FROM dual; END tskin_inc;; - - --- ----------------------------------------------------- --- Table `tpolicy_queue` --- ----------------------------------------------------- -CREATE TABLE tpolicy_queue ( - id NUMBER(19, 0) NOT NULL PRIMARY KEY, - id_policy NUMBER(10, 0) default 0 NOT NULL, - id_agent NUMBER(10, 0) default 0 NOT NULL, - operation VARCHAR2(15) default '' NOT NULL, - progress NUMBER(10, 0) default 0 NOT NULL, - end_utimestamp NUMBER(10, 0) default 0 NOT NULL, - priority NUMBER(10, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tpolicy_queue_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tpolicy_queue_inc BEFORE INSERT ON tpolicy_queue REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tpolicy_queue_s.nextval INTO :NEW.ID FROM dual; END tpolicy_queue_inc;; - - --- ----------------------------------------------------- --- Table `tmodule_synth` --- ----------------------------------------------------- -CREATE TABLE tmodule_synth ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_agent_module_source NUMBER(10, 0) default 0 NOT NULL, - id_agent_module_target NUMBER(10, 0) default 0 NOT NULL REFERENCES tagente_modulo(id_agente_modulo) ON DELETE CASCADE, - fixed_value BINARY_DOUBLE default NULL, - operation VARCHAR2(20) default 'NOP', - "order" NUMBER(11, 0) default 0 NOT NULL, - CONSTRAINT t_module_synth_operation_cons CHECK (operation IN ('ADD', 'SUB', 'DIV', 'MUL', 'AVG', 'NOP')) -); - -CREATE SEQUENCE tmodule_synth_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tmodule_synth_inc BEFORE INSERT ON tmodule_synth REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tmodule_synth_s.nextval INTO :NEW.ID FROM dual; END tmodule_synth_inc;; - - --- ----------------------------------------------------- --- Table `tevent_rule` --- ----------------------------------------------------- -CREATE TABLE tevent_rule ( - id_event_rule NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_event_alert NUMBER(10, 0) NOT NULL, - operation VARCHAR2(20) NOT NULL, - "order" NUMBER(10, 0) default '0', - window NUMBER(10, 0) default '0' NOT NULL, - count NUMBER(10, 0) default '1' NOT NULL, - agent CLOB default '', - id_usuario VARCHAR2(100) default '' NOT NULL, - id_grupo NUMBER(10, 0) default '0' NOT NULL, - evento CLOB default '' NOT NULL, - event_type VARCHAR2(50) default 'unknown', - module CLOB default '', - alert CLOB default '', - criticity NUMBER(10, 0) default '0' NOT NULL, - user_comment CLOB NOT NULL, - id_tag NUMBER(10, 0) default '0' NOT NULL, - name CLOB default '', - CONSTRAINT t_event_rule_operation_cons CHECK (operation IN ('NOP', 'AND','OR','XOR','NAND','NOR','NXOR')), - CONSTRAINT t_event_rule_event_type CHECK (event_type IN ('','unknown','alert_fired','alert_recovered','alert_ceased','alert_manual_validation','recon_host_detected','system','error','new_agent','going_up_warning','going_up_critical','going_down_warning','going_down_normal','going_down_critical','going_up_normal')) -); -CREATE INDEX tevent_rule_id_event_alert_idx ON tevent_rule(id_event_alert); - -CREATE SEQUENCE tevent_rule_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tevent_rule_inc BEFORE INSERT ON tevent_rule REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tevent_rule_s.nextval INTO :NEW.ID_EVENT_RULE FROM dual; END tevent_rule_inc;; - - --- ----------------------------------------------------- --- Table `tevent_alert` --- ----------------------------------------------------- --- use to_char(time_from, 'hh24:mi:ss') function to retrieve time_from field info --- use to_char(time_to, 'hh24:mi:ss') function to retrieve time_to field info -CREATE TABLE tevent_alert ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - name CLOB default '', - description CLOB, - "order" NUMBER(10, 0) default 0, - "mode" VARCHAR2(20), - field1 CLOB default '' NOT NULL, - field2 CLOB default '' NOT NULL, - field3 CLOB default '' NOT NULL, - field4 CLOB default '' NOT NULL, - field5 CLOB default '' NOT NULL, - field6 CLOB default '' NOT NULL, - field7 CLOB default '' NOT NULL, - field8 CLOB default '' NOT NULL, - field9 CLOB default '' NOT NULL, - field10 CLOB default '' NOT NULL, - time_threshold NUMBER(10, 0) default 0 NOT NULL, - max_alerts NUMBER(10, 0) default 1 NOT NULL, - min_alerts NUMBER(10, 0) default 0 NOT NULL, - time_from TIMESTAMP default to_date('00:00:00','hh24:mi:ss'), - time_to TIMESTAMP default to_date('00:00:00','hh24:mi:ss'), - monday NUMBER(10, 0) default 1, - tuesday NUMBER(10, 0) default 1, - wednesday NUMBER(10, 0) default 1, - thursday NUMBER(10, 0) default 1, - friday NUMBER(10, 0) default 1, - saturday NUMBER(10, 0) default 1, - sunday NUMBER(10, 0) default 1, - recovery_notify NUMBER(10, 0) default '0', - field2_recovery CLOB default '' NOT NULL, - field3_recovery CLOB NOT NULL, - id_group NUMBER(10, 0) default 0 NULL, - internal_counter NUMBER(10, 0) default 0, - last_fired NUMBER(19, 0) default 0 NOT NULL, - last_reference NUMBER(19, 0) default 0 NOT NULL, - times_fired NUMBER(10, 0) default 0 NOT NULL, - disabled NUMBER(10, 0) default 0, - standby NUMBER(10, 0) default 0, - priority NUMBER(10, 0) default 0, - force_execution NUMBER(10, 0) default 0, - "group_by" VARCHAR2(20) default '', - CONSTRAINT t_event_alert_group_by CHECK ("group_by" IN ('','id_agente','id_agentmodule','id_alert_am','id_grupo')), - CONSTRAINT t_event_alert_mode_cons CHECK ("mode" IN ('PASS','DROP')) -); - -CREATE SEQUENCE tevent_alert_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tevent_alert_inc BEFORE INSERT ON tevent_alert REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tevent_alert_s.nextval INTO :NEW.ID FROM dual; END tevent_alert_inc;; - - --- ----------------------------------------------------- --- Table `tevent_alert_action` --- ----------------------------------------------------- -CREATE TABLE tevent_alert_action ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_event_alert NUMBER(10, 0) NOT NULL REFERENCES tevent_alert(id) ON DELETE CASCADE, - id_alert_action NUMBER(10, 0) NOT NULL REFERENCES talert_actions(id) ON DELETE CASCADE, - fires_min NUMBER(10, 0) default 0, - fires_max NUMBER(10, 0) default 0, - module_action_threshold NUMBER(10, 0) default 0 NOT NULL, - last_execution NUMBER(19, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tevent_alert_action_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tevent_alert_action_inc BEFORE INSERT ON tevent_alert_action REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tevent_alert_action_s.nextval INTO :NEW.ID FROM dual; END tevent_alert_action_inc;; - --- on update trigger -CREATE OR REPLACE TRIGGER tevent_alert_action_update AFTER UPDATE OF ID ON tevent_alert FOR EACH ROW BEGIN UPDATE tevent_alert_action SET ID_EVENT_ALERT = :NEW.ID WHERE ID_EVENT_ALERT = :OLD.ID; END;; --- on update trigger 1 -CREATE OR REPLACE TRIGGER tevent_alert_action_update1 AFTER UPDATE OF ID ON talert_actions FOR EACH ROW BEGIN UPDATE tevent_alert_action SET ID_ALERT_ACTION = :NEW.ID WHERE ID_ALERT_ACTION = :OLD.ID; END;; - - --- ----------------------------------------------------- --- Table `tpolicy_modules_inventory` --- ----------------------------------------------------- -CREATE TABLE tpolicy_modules_inventory ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_policy NUMBER(10, 0) NOT NULL REFERENCES tpolicies(id) ON DELETE CASCADE, - id_module_inventory NUMBER(10, 0) NOT NULL REFERENCES tmodule_inventory(id_module_inventory) ON DELETE CASCADE, - interval NUMBER(10, 0) default 3600 NOT NULL, - username VARCHAR2(100) default '', - password VARCHAR2(100) default '', - pending_delete NUMBER(5, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tpolicy_modules_inventory_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tpolicy_modules_inventory_inc BEFORE INSERT ON tpolicy_modules_inventory REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tpolicy_modules_inventory_s.nextval INTO :NEW.ID FROM dual; END tpolicy_modules_inventory_inc;; - - --- ----------------------------------------------------- --- Table `tnetworkmap_enterprise` --- ----------------------------------------------------- -CREATE TABLE tnetworkmap_enterprise ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - name VARCHAR2(500) default '', - id_group NUMBER(10, 0) default 0 NOT NULL, - options CLOB default '' -); - -CREATE SEQUENCE tnetworkmap_enterprise_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tnetworkmap_enterprise_inc BEFORE INSERT ON tnetworkmap_enterprise REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tnetworkmap_enterprise_s.nextval INTO :NEW.ID FROM dual; END tnetworkmap_enterprise_inc;; - - --- ----------------------------------------------------- --- Table `tnetworkmap_enterprise_nodes` --- ----------------------------------------------------- -CREATE TABLE tnetworkmap_enterprise_nodes ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_networkmap_enterprise NUMBER(10, 0) NOT NULL REFERENCES tnetworkmap_enterprise(id) ON DELETE CASCADE, - x NUMBER(10, 0) default 0 NOT NULL, - y NUMBER(10, 0) default 0 NOT NULL, - z NUMBER(10, 0) default 0 NOT NULL, - id_agent NUMBER(10, 0) default 0 NOT NULL, - id_module NUMBER(10, 0) default 0 NOT NULL, - id_agent_module NUMBER(10, 0) default 0 NOT NULL, - parent NUMBER(10, 0) default 0, - options CLOB default '', - deleted NUMBER(10, 0) default 0 NOT NULL, - state CLOB default '' -); - -CREATE SEQUENCE tnetworkmap_enterprise_nodes_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tnetworkmap_enter_nod_inc BEFORE INSERT ON tnetworkmap_enterprise_nodes REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tnetworkmap_enterprise_nodes_s.nextval INTO :NEW.ID FROM dual; END tnetworkmap_enter_nod_inc;; --- on update trigger -CREATE OR REPLACE TRIGGER tnetworkmap_enter_nod_update AFTER UPDATE OF ID ON tnetworkmap_enterprise FOR EACH ROW BEGIN UPDATE tnetworkmap_enterprise_nodes SET ID_NETWORKMAP_ENTERPRISE = :NEW.ID WHERE ID_NETWORKMAP_ENTERPRISE = :OLD.ID; END;; - - --- ----------------------------------------------------- --- Table `tnetworkmap_ent_rel_nodes` (Before `tnetworkmap_enterprise_relation_nodes`) --- ----------------------------------------------------- -CREATE TABLE tnetworkmap_ent_rel_nodes ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_networkmap_enterprise NUMBER(10, 0) NOT NULL REFERENCES tnetworkmap_enterprise(id) ON DELETE CASCADE, - parent NUMBER(10, 0) default 0, - parent_type VARCHAR2(30) default 'node', - child NUMBER(10, 0) default 0, - child_type VARCHAR2(30) default 'node', - deleted NUMBER(10, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tnetworkmap_ent_rel_nodes_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tnetworkmap_ent_rel_nodes_inc BEFORE INSERT ON tnetworkmap_ent_rel_nodes REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tnetworkmap_ent_rel_nodes_s.nextval INTO :NEW.ID FROM dual; END tnetworkmap_ent_rel_nodes_inc;; --- on update trigger -CREATE OR REPLACE TRIGGER tnetworkmap_enter_rel_nod_upd AFTER UPDATE OF ID ON tnetworkmap_enterprise FOR EACH ROW BEGIN UPDATE tnetworkmap_ent_rel_nodes SET ID_NETWORKMAP_ENTERPRISE = :NEW.ID WHERE ID_NETWORKMAP_ENTERPRISE = :OLD.ID; END;; - - --- ----------------------------------------------------- --- Table `treport_template` --- ----------------------------------------------------- -CREATE TABLE treport_template ( - id_report NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_user varchar2(100) default '' NOT NULL, - name varchar2(150) default '' NOT NULL, - description CLOB NOT NULL, - private NUMBER(10, 0) default 0 NOT NULL, - id_group NUMBER(10, 0) default NULL NULL, - custom_logo varchar2(200) default NULL, - header CLOB default NULL, - first_page CLOB default NULL, - footer CLOB default NULL, - custom_font varchar2(200) default NULL, - metaconsole NUMBER(5, 0) DEFAULT 0 -); - -CREATE SEQUENCE treport_template_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER treport_template_inc BEFORE INSERT ON treport_template REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT treport_template_s.nextval INTO :NEW.ID_REPORT FROM dual; END treport_template_inc;; - - --- ----------------------------------------------------- --- Table `treport_content_template` --- ----------------------------------------------------- -CREATE TABLE treport_content_template ( - id_rc NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_report NUMBER(10, 0) default 0 NOT NULL REFERENCES treport_template(id_report) ON DELETE CASCADE, - id_gs NUMBER(10, 0) default NULL NULL, - text_agent_module CLOB default NULL, - type varchar2(30) default 'simple_graph', - period NUMBER(10, 0) default 0 NOT NULL, - "order" NUMBER(10, 0) default 0 NOT NULL, - description CLOB, - text_agent CLOB default '', - text CLOB default NULL, - external_source CLOB default NULL, - treport_custom_sql_id NUMBER(10, 0) default 0, - header_definition CLOB default NULL, - column_separator CLOB default NULL, - line_separator CLOB default NULL, - time_from TIMESTAMP default to_date('00:00:00','hh24:mi:ss'), - time_to TIMESTAMP default to_date('00:00:00','hh24:mi:ss'), - monday NUMBER(5, 0) default 1 NOT NULL, - tuesday NUMBER(5, 0) default 1 NOT NULL, - wednesday NUMBER(5, 0) default 1 NOT NULL, - thursday NUMBER(5, 0) default 1 NOT NULL, - friday NUMBER(5, 0) default 1 NOT NULL, - saturday NUMBER(5, 0) default 1 NOT NULL, - sunday NUMBER(5, 0) default 1 NOT NULL, - only_display_wrong NUMBER(5, 0) default 0 not null, - top_n NUMBER(10, 0) default 0 NOT NULL, - top_n_value NUMBER(10, 0) default 10 NOT NULL, - exception_condition NUMBER(10, 0) default 0 NOT NULL, - exception_condition_value DOUBLE PRECISION default 0 NOT NULL, - show_resume DOUBLE PRECISION default 0 NOT NULL, - order_uptodown DOUBLE PRECISION default 0 NOT NULL, - show_graph DOUBLE PRECISION default 0 NOT NULL, - group_by_agent DOUBLE PRECISION default 0 NOT NULL, - style CLOB DEFAULT '' NOT NULL, - id_group NUMBER(10, 0) DEFAULT 0 NOT NULL, - id_module_group NUMBER(10, 0) DEFAULT 0 NOT NULL, - server_name CLOB default '', - exact_match NUMBER(10, 0) default 0, - module_names CLOB default NULL, - module_free_text CLOB default NULL, - each_agent NUMBER(5, 0) default 1 NOT NULL -); - -CREATE SEQUENCE treport_content_template_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER treport_content_template_inc BEFORE INSERT ON treport_content_template REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT treport_content_template_s.nextval INTO :NEW.ID_RC FROM dual; END treport_content_template_inc;; - - --- ----------------------------------------------------- --- Table `treport_content_sla_com_temp` (treport_content_sla_combined_template) --- ----------------------------------------------------- -CREATE TABLE treport_content_sla_com_temp ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_report_content NUMBER(10, 0) NOT NULL REFERENCES treport_content_template(id_rc) ON DELETE CASCADE, - text_agent CLOB default '', - text_agent_module CLOB default '', - sla_max DOUBLE PRECISION default 0 NOT NULL, - sla_min DOUBLE PRECISION default 0 NOT NULL, - sla_limit DOUBLE PRECISION default 0 NOT NULL, - server_name CLOB default '', - exact_match NUMBER(5, 0) default 0 -); - -CREATE SEQUENCE treport_content_sla_com_temp_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER treport_content_sla_c_t_inc BEFORE INSERT ON treport_content_sla_com_temp REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT treport_content_sla_com_temp_s.nextval INTO :NEW.ID FROM dual; END treport_content_sla_c_t_inc;; - - --- ----------------------------------------------------- --- Table `treport_content_item_temp` (treport_content_item_template) --- ----------------------------------------------------- -CREATE TABLE treport_content_item_temp ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_report_content NUMBER(10, 0) NOT NULL REFERENCES treport_content_template(id_rc) ON DELETE CASCADE, - text_agent CLOB default '', - text_agent_module CLOB default '', - server_name CLOB default '', - exact_match NUMBER(5, 0) default 0, - operation CLOB -); - -CREATE SEQUENCE treport_content_item_temp_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER treport_content_item_temp_inc BEFORE INSERT ON treport_content_item_temp REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT treport_content_item_temp_s.nextval INTO :NEW.ID FROM dual; END treport_content_item_temp_inc;; - - --- ----------------------------------------------------- --- Table `tgraph_template` --- ----------------------------------------------------- -CREATE TABLE tgraph_template ( - id_graph_template NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_user VARCHAR2(255) NOT NULL, - name VARCHAR2(255) NOT NULL, - description CLOB default '', - period NUMBER(11, 0) default 0 NOT NULL, - width SMALLINT default 0 NOT NULL, - height SMALLINT default 0 NOT NULL, - private SMALLINT default 0 NOT NULL, - events SMALLINT default 0 NOT NULL, - stacked SMALLINT default 0 NOT NULL, - id_group NUMBER(8, 0) default 0 -); - -CREATE SEQUENCE tgraph_template_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tgraph_template_inc BEFORE INSERT ON tgraph_template REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tgraph_template_s.nextval INTO :NEW.ID_GRAPH_TEMPLATE FROM dual; END tgraph_template_inc;; - - --- --------------------------------------------------------------------- --- Table `tgraph_source_template` --- --------------------------------------------------------------------- -CREATE TABLE tgraph_source_template ( - id_gs_template NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_template NUMBER(10, 0) default 0 NOT NULL, - agent VARCHAR2(255), - module VARCHAR2(255), - weight FLOAT(5) DEFAULT 2 NOT NULL, - exact_match SMALLINT default 0 NOT NULL -); - -CREATE SEQUENCE tgraph_source_template_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tgraph_source_template_inc BEFORE INSERT ON tgraph_source_template REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tgraph_source_template_s.nextval INTO :NEW.ID_GS_TEMPLATE FROM dual; END tgraph_source_template_inc;; - - --- --------------------------------------------------------------------- --- Table `textension_translate_string` --- --------------------------------------------------------------------- -CREATE TABLE textension_translate_string ( - id NUMBER(10, 0) NOT NULL PRIMARY KEY, - lang VARCHAR2(50) NOT NULL, - string VARCHAR2(4000) NOT NULL, - translation VARCHAR2(4000) NOT NULL -); - -CREATE SEQUENCE textension_translate_string_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER textension_translate_str_inc BEFORE INSERT ON textension_translate_string REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT textension_translate_string_s.nextval INTO :NEW.ID FROM dual; END;; - --- --------------------------------------------------------------------- --- Table `tmetaconsole_event` --- --------------------------------------------------------------------- --- use to_char(timestamp, 'hh24:mi:ss') function to retrieve timestamp field info -CREATE TABLE tmetaconsole_event ( - id_evento NUMBER(19, 0) NOT NULL PRIMARY KEY, - id_source_event NUMBER(19, 0) NOT NULL, - id_agente NUMBER(10, 0) DEFAULT 0, - agent_name VARCHAR2(600) DEFAULT '', - id_usuario VARCHAR2(100) DEFAULT '0', - id_grupo NUMBER(10, 0) DEFAULT 0, - group_name CLOB DEFAULT '', - estado NUMBER(10, 0) DEFAULT 0, - timestamp TIMESTAMP DEFAULT NULL, - evento CLOB DEFAULT '', - utimestamp NUMBER(19, 0) DEFAULT 0, - event_type VARCHAR2(50) DEFAULT 'unknown', - id_agentmodule NUMBER(10, 0) DEFAULT 0, - module_name CLOB DEFAULT '', - id_alert_am NUMBER(10, 0) DEFAULT 0, - alert_template_name CLOB DEFAULT '', - criticity NUMBER(10, 0) DEFAULT 0, - user_comment CLOB, - tags CLOB, - source VARCHAR2(100) DEFAULT '', - id_extra VARCHAR2(100) DEFAULT '', - critical_instructions CLOB DEFAULT '', - warning_instructions CLOB DEFAULT '', - unknown_instructions CLOB DEFAULT '', - owner_user VARCHAR2(100) DEFAULT '0', - ack_utimestamp NUMBER(19, 0) DEFAULT 0, - server_id NUMBER(10, 0) DEFAULT 0 NOT NULL, - custom_data CLOB DEFAULT '', - CONSTRAINT tmetaconsole_e_event_type_cons CHECK (event_type IN ('going_unknown','unknown','alert_fired','alert_recovered','alert_ceased','alert_manual_validation','recon_host_detected','system','error','new_agent','going_up_warning','going_up_critical','going_down_warning','going_down_normal','going_down_critical','going_up_normal', 'configuration_change')) -); -CREATE INDEX tmetaconsole_e_id_1_idx ON tmetaconsole_event(id_agente, id_evento); -CREATE INDEX tmetaconsole_e_id_am_idx ON tmetaconsole_event(id_agentmodule); -CREATE INDEX tmetaconsole_e_id_server_idx ON tmetaconsole_event(server_id); -CREATE INDEX tmetaconsole_e_id_grupo_idx ON tmetaconsole_event(id_grupo); -CREATE INDEX tmetaconsole_e_criticity_idx ON tmetaconsole_event(criticity); -CREATE INDEX tmetaconsole_e_estado_idx ON tmetaconsole_event(estado); - -CREATE SEQUENCE tmetaconsole_event_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tmetaconsole_event_inc BEFORE INSERT ON tmetaconsole_event REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tmetaconsole_event_s.nextval INTO :NEW.ID_EVENTO FROM dual; END;; - --- --------------------------------------------------------------------- --- Table `tmetaconsole_event_history` --- --------------------------------------------------------------------- --- use to_char(timestamp, 'hh24:mi:ss') function to retrieve timestamp field info -CREATE TABLE tmetaconsole_event_history ( - id_evento NUMBER(19, 0) NOT NULL PRIMARY KEY, - id_source_event NUMBER(19, 0) NOT NULL, - id_agente NUMBER(10, 0) default 0 NOT NULL, - agent_name VARCHAR2(600) default '', - id_usuario VARCHAR2(100) default '0' NOT NULL, - id_grupo NUMBER(10, 0) default 0 NOT NULL, - group_name CLOB default '', - estado NUMBER(10, 0) default 0 NOT NULL, - timestamp TIMESTAMP default NULL, - evento CLOB default '', - utimestamp NUMBER(19, 0) default 0 NOT NULL, - event_type VARCHAR2(50) default 'unknown', - id_agentmodule NUMBER(10, 0) default 0 NOT NULL, - module_name CLOB default '', - id_alert_am NUMBER(10, 0) default 0 NOT NULL, - alert_template_name CLOB default '', - criticity NUMBER(10, 0) default 0 NOT NULL, - user_comment CLOB, - tags CLOB, - source VARCHAR2(100) default '' NOT NULL, - id_extra VARCHAR2(100) default '' NOT NULL, - critical_instructions VARCHAR2(255) default '', - warning_instructions VARCHAR2(255) default '', - unknown_instructions VARCHAR2(255) default '', - owner_user VARCHAR2(100) default '0' NOT NULL, - ack_utimestamp NUMBER(19, 0) default 0 NOT NULL, - server_id NUMBER(10, 0) default 0 NOT NULL, - custom_data CLOB default '', - CONSTRAINT tmeta_eh_event_type_cons CHECK (event_type IN ('going_unknown','unknown','alert_fired','alert_recovered','alert_ceased','alert_manual_validation','recon_host_detected','system','error','new_agent','going_up_warning','going_up_critical','going_down_warning','going_down_normal','going_down_critical','going_up_normal', 'configuration_change')) -); -CREATE INDEX tmetaconsole_eh_id_1_idx ON tmetaconsole_event_history(id_agente, id_evento); -CREATE INDEX tmetaconsole_eh_id_am_idx ON tmetaconsole_event_history(id_agentmodule); -CREATE INDEX tmetaconsole_eh_id_server_idx ON tmetaconsole_event_history(server_id); -CREATE INDEX tmetaconsole_eh_id_grupo_idx ON tmetaconsole_event_history(id_grupo); -CREATE INDEX tmetaconsole_eh_criticity_idx ON tmetaconsole_event_history(criticity); -CREATE INDEX tmetaconsole_eh_estado_idx ON tmetaconsole_event_history(estado); - -CREATE SEQUENCE tmetaconsole_event_h_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tmetaconsole_event_h_inc BEFORE INSERT ON tmetaconsole_event_history REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tmetaconsole_event_h_s.nextval INTO :NEW.ID_EVENTO FROM dual; END;; - --- --------------------------------------------------------------------- --- Table `tagent_module_log` --- --------------------------------------------------------------------- -CREATE TABLE tagent_module_log ( - id_agent_module_log NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_agent NUMBER(10, 0) NOT NULL REFERENCES tagente(id_agente) ON DELETE CASCADE, - source VARCHAR2(4000) NOT NULL, - timestamp TIMESTAMP NULL, - utimestamp NUMBER(10, 0) default 0 NOT NULL -); - -CREATE SEQUENCE tagent_module_log_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tagent_module_log_inc BEFORE INSERT ON tagent_module_log REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tagent_module_log_s.nextval INTO :NEW.ID_AGENT_MODULE_LOG FROM dual; END tagent_module_log_inc;; - --- --------------------------------------------------------------------- --- Table `tevent_custom_field` --- --------------------------------------------------------------------- -CREATE TABLE tevent_custom_field ( - id_group NUMBER(4, 0) default 0 NOT NULL PRIMARY KEY, - value VARCHAR2(255) default '' NOT NULL -); - --- This sequence will not work with the 'insert_id' procedure - --- --------------------------------------------------------------------- --- Table `tmetaconsole_agent` --- --------------------------------------------------------------------- -CREATE TABLE tmetaconsole_agent ( - id_agente NUMBER(10, 0) NOT NULL PRIMARY KEY, - id_tagente NUMBER(10, 0) NOT NULL, - id_tmetaconsole_setup NUMBER(10) NOT NULL REFERENCES tmetaconsole_setup(id) ON DELETE CASCADE, - nombre VARCHAR2(600) default '' NOT NULL, - direccion VARCHAR2(100) default '' NULL, - comentarios VARCHAR2(255) default '' NULL, - id_grupo NUMBER(10, 0) default 0 NOT NULL, - ultimo_contacto TIMESTAMP NOT NULL, - modo NUMBER(1, 0) default 0 NOT NULL, - intervalo NUMBER(11, 0) default 300 NOT NULL, - id_os NUMBER(10, 0) default 0 NOT NULL, - os_version VARCHAR2(100) default '', - agent_version VARCHAR2(100) default '', - ultimo_contacto_remoto TIMESTAMP default NULL, - disabled NUMBER(1, 0) default 0 NOT NULL, - remote NUMBER(1) default 0 NOT NULL, - id_parent NUMBER(10, 0) default 0 NOT NULL, - custom_id VARCHAR2(255) default '', - server_name VARCHAR2(100) default '', - cascade_protection NUMBER(1, 0) default 0 NOT NULL, - cascade_protection_module NUMBER(10, 0) default 0 NOT NULL, - -- Number of hours of diference with the server timezone - timezone_offset NUMBER(2, 2) default 0 NULL, - -- Path in the server to the image of the icon representing the agent - icon_path VARCHAR2(127) default NULL, - -- Set it to one to update the position data (altitude, longitude, latitude) when getting information from the agent or to 0 to keep the last value and do not update it - update_gis_data NUMBER(1) default 1 NOT NULL, - url_address CLOB NULL, - quiet NUMBER(1) default 0 NOT NULL, - normal_count NUMBER(20, 0) default 0 NOT NULL, - warning_count NUMBER(20, 0) default 0 NOT NULL, - critical_count NUMBER(20, 0) default 0 NOT NULL, - unknown_count NUMBER(20, 0) default 0 NOT NULL, - notinit_count NUMBER(20, 0) default 0 NOT NULL, - total_count NUMBER(20, 0) default 0 NOT NULL, - fired_count NUMBER(20, 0) default 0 NOT NULL, - update_module_count NUMBER(1, 0) default 0 NOT NULL, - update_alert_count NUMBER(1, 0) default 0 NOT NULL, - alias varchar2(600) NOT NULL default '', - transactional_agent NUMBER(1) default 0 NOT NULL -); -CREATE INDEX tmetaconsole_agent_nombre_idx ON tmetaconsole_agent(nombre); -CREATE INDEX tmetaconsole_agent_dir_idx ON tmetaconsole_agent(direccion); -CREATE INDEX tmetaconsole_agent_dis_idx ON tmetaconsole_agent(disabled); -CREATE INDEX tmetaconsole_agent_id_g_idx ON tmetaconsole_agent(id_grupo); - -CREATE SEQUENCE tmetaconsole_agent_s INCREMENT BY 1 START WITH 1; -CREATE OR REPLACE TRIGGER tmetaconsole_agent_inc BEFORE INSERT ON tmetaconsole_agent REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tmetaconsole_agent_s.nextval INTO :NEW.ID_AGENTE FROM dual; END tmetaconsole_agent_inc;; diff --git a/pandora_console/pandoradb.postgreSQL.sql b/pandora_console/pandoradb.postgreSQL.sql deleted file mode 100644 index 8dd25296a5..0000000000 --- a/pandora_console/pandoradb.postgreSQL.sql +++ /dev/null @@ -1,2649 +0,0 @@ --- Pandora FMS - the Flexible Monitoring System --- ============================================ --- Copyright (c) 2005-2011 Artica Soluciones Tecnológicas, http://www.artica.es --- Please see http://pandora.sourceforge.net for full contribution list - --- This program is free software; you can redistribute it and/or --- modify it under the terms of the GNU General Public License --- as published by the Free Software Foundation for version 2. --- This program is distributed in the hope that it will be useful, --- but WITHOUT ANY WARRANTY; without even the implied warranty of --- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --- GNU General Public License for more details. --- You should have received a copy of the GNU General Public License --- along with this program; if not, write to the Free Software --- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - --- PLEASE NO NOT USE MULTILINE COMMENTS --- Because Pandora Installer don't understand them --- and fails creating database !!! --- ----------------------------------------------------------- --- Pandora FMS official tables for 3.2 version -- --- ----------------------------------------------------------- - --- The charset is for all DB not only table. ---CREATE DATABASE "pandora" WITH ENCODING 'utf8'; - ---\c "pandora" - --- For previous PostgreSQL version 9.0 -CREATE OR REPLACE LANGUAGE plpgsql; - -CREATE OR REPLACE FUNCTION unix_timestamp(TIMESTAMP without time zone = CURRENT_TIMESTAMP) RETURNS double precision AS 'SELECT ceil(date_part(''epoch'', $1)); ' LANGUAGE SQL; - --- --------------------------------------------------------------------- --- Table `taddress` --- --------------------------------------------------------------------- -CREATE TABLE "taddress" ( - "id_a" SERIAL NOT NULL PRIMARY KEY, - "ip" VARCHAR(60) NOT NULL default '', - "ip_pack" INTEGER NOT NULL default 0 -); -CREATE INDEX "taddress_ip_idx" ON "taddress"("ip"); - --- --------------------------------------------------------------------- --- Table `taddress_agent` --- --------------------------------------------------------------------- -CREATE TABLE "taddress_agent" ( - "id_ag" BIGSERIAL NOT NULL PRIMARY KEY, - "id_a" BIGINT NOT NULL default 0, - "id_agent" BIGINT NOT NULL default 0 -); - --- --------------------------------------------------------------------- --- Table `tagente` --- --------------------------------------------------------------------- -CREATE TABLE "tagente" ( - "id_agente" SERIAL NOT NULL PRIMARY KEY, - "nombre" varchar(600) NOT NULL default '', - "direccion" varchar(100) default NULL, - "comentarios" varchar(255) default '', - "id_grupo" INTEGER NOT NULL default 0, - "ultimo_contacto" TIMESTAMP without time zone default '1970-01-01 00:00:00', - "modo" SMALLINT NOT NULL default 0, - "intervalo" INTEGER NOT NULL default 300, - "id_os" INTEGER default 0, - "os_version" varchar(100) default '', - "agent_version" varchar(100) default '', - "ultimo_contacto_remoto" TIMESTAMP without time zone default '1970-01-01 00:00:00', - "disabled" SMALLINT NOT NULL default 0, - "remote" SMALLINT NOT NULL default 0, - "id_parent" INTEGER default 0, - "custom_id" varchar(255) default '', - "server_name" varchar(100) default '', - "cascade_protection" SMALLINT NOT NULL default 0, - --number of hours of diference with the server timezone - "timezone_offset" SMALLINT NULL DEFAULT 0, - --path in the server to the image of the icon representing the agent - "icon_path" VARCHAR(127) NULL DEFAULT NULL, - --set it to one to update the position data (altitude, longitude, latitude) when getting information from the agent or to 0 to keep the last value and don\'t update it - "update_gis_data" SMALLINT NOT NULL DEFAULT 1, - "url_address" TEXT NULL default '', - "quiet" SMALLINT NOT NULL default 0, - "normal_count" INTEGER NOT NULL default 0, - "warning_count" INTEGER NOT NULL default 0, - "critical_count" INTEGER NOT NULL default 0, - "unknown_count" INTEGER NOT NULL default 0, - "notinit_count" INTEGER NOT NULL default 0, - "total_count" INTEGER NOT NULL default 0, - "fired_count" INTEGER NOT NULL default 0, - "update_module_count" SMALLINT NOT NULL DEFAULT 1, - "update_alert_count" SMALLINT NOT NULL DEFAULT 1, - "transactional_agent" SMALLINT NOT NULL DEFAULT 0 -); -CREATE INDEX "tagente_nombre_idx" ON "tagente"("nombre"); -CREATE INDEX "tagente_direccion_idx" ON "tagente"("direccion"); -CREATE INDEX "tagente_disabled_idx" ON "tagente"("disabled"); -CREATE INDEX "tagente_id_grupo_idx" ON "tagente"("id_grupo"); - --- --------------------------------------------------------------------- --- Table `tagente_datos` --- --------------------------------------------------------------------- -CREATE TABLE "tagente_datos" ( - "id_agente_modulo" INTEGER NOT NULL default 0, - "datos" DOUBLE PRECISION default NULL, - "utimestamp" BIGINT default 0 -); -CREATE INDEX "tagente_datos_id_agente_modulo_idx" ON "tagente_datos"("id_agente_modulo"); -CREATE INDEX "tagente_datos_utimestamp_idx" ON "tagente_datos"("utimestamp"); - --- --------------------------------------------------------------------- --- Table `tagente_datos_inc` --- --------------------------------------------------------------------- -CREATE TABLE "tagente_datos_inc" ( - "id_agente_modulo" INTEGER NOT NULL default 0, - "datos" DOUBLE PRECISION default NULL, - "utimestamp" INTEGER NOT NULL default 0 -); -CREATE INDEX "tagente_datos_inc_id_agente_modulo_idx" ON "tagente_datos_inc"("id_agente_modulo"); - --- --------------------------------------------------------------------- --- Table `tagente_datos_string` --- --------------------------------------------------------------------- -CREATE TABLE "tagente_datos_string" ( - "id_agente_modulo" INTEGER NOT NULL default 0, - "datos" TEXT NOT NULL, - "utimestamp" INTEGER NOT NULL default 0 -); -CREATE INDEX "tagente_datos_string_id_agente_modulo_idx" ON "tagente_datos_string"("id_agente_modulo"); -CREATE INDEX "tagente_datos_string_utimestamp_idx" ON "tagente_datos_string"("utimestamp"); - --- ----------------------------------------------------- --- Table `tagente_datos_log4x` --- ----------------------------------------------------- -CREATE TABLE "tagente_datos_log4x" ( - "id_tagente_datos_log4x" BIGSERIAL NOT NULL PRIMARY KEY, - "id_agente_modulo" INTEGER NOT NULL default 0, - "severity" text NOT NULL, - "message" text NOT NULL, - "stacktrace" text NOT NULL, - "utimestamp" INTEGER NOT NULL default 0 -); -CREATE INDEX "tagente_datos_log4x_id_agente_modulo_idx" ON "tagente_datos_log4x"("id_agente_modulo"); - --- --------------------------------------------------------------------- --- Table `tagente_estado` --- --------------------------------------------------------------------- -CREATE TABLE "tagente_estado" ( - "id_agente_estado" SERIAL NOT NULL PRIMARY KEY, - "id_agente_modulo" INTEGER NOT NULL default 0, - "datos" text NOT NULL default '', - "timestamp" TIMESTAMP without time zone default '1970-01-01 00:00:00', - "estado" INTEGER NOT NULL default 0, - "known_status" INTEGER default 0, - "id_agente" INTEGER NOT NULL default 0, - "last_try" TIMESTAMP without time zone default '1970-01-01 00:00:00', - "utimestamp" BIGINT NOT NULL default 0, - "current_interval" INTEGER NOT NULL default 0, - "running_by" INTEGER default 0, - "last_execution_try" BIGINT NOT NULL default 0, - "status_changes" INTEGER default 0, - "last_status" INTEGER default 0, - "last_known_status" INTEGER default 0, - "last_error" INTEGER default 0, - "ff_start_utimestamp" BIGINT default 0 -); -CREATE INDEX "tagente_estado_id_agente_modulo_idx" ON "tagente_estado"("id_agente_modulo"); -CREATE INDEX "tagente_estado_id_agente_idx" ON "tagente_estado"("id_agente"); -CREATE INDEX "tagente_estado_estado_idx" ON "tagente_estado"("estado"); -CREATE INDEX "tagente_estado_current_interval_idx" ON "tagente_estado"("current_interval"); -CREATE INDEX "tagente_estado_running_by_idx" ON "tagente_estado"("running_by"); -CREATE INDEX "tagente_estado_last_execution_try_idx" ON "tagente_estado"("last_execution_try"); - --- Probably last_execution_try index is not useful and loads more than benefits - --- id_modulo now uses tmodule --- --------------------------- --- 1 - Data server modules (agent related modules) --- 2 - Network server modules --- 4 - Plugin server --- 5 - Predictive server --- 6 - WMI server --- 7 - WEB Server (enteprise) - -CREATE TYPE type_tagente_modulo_wizard_level AS ENUM ('basic','advanced','nowizard'); -CREATE TABLE "tagente_modulo" ( - "id_agente_modulo" SERIAL NOT NULL PRIMARY KEY, - "id_agente" INTEGER NOT NULL default 0, - "id_tipo_modulo" INTEGER NOT NULL default 0, - "descripcion" TEXT NOT NULL default '', - "extended_info" TEXT NOT NULL default '', - "nombre" TEXT NOT NULL default '', - "unit" TEXT default '', - "id_policy_module" INTEGER NOT NULL default 0, - "max" BIGINT NOT NULL default 0, - "min" BIGINT NOT NULL default 0, - "module_interval" INTEGER NOT NULL default 0, - "cron_interval" varchar(100) default '', - "module_ff_interval" INTEGER NOT NULL default 0, - "tcp_port" INTEGER NOT NULL default 0, - "tcp_send" TEXT default '', - "tcp_rcv" TEXT default '', - "snmp_community" varchar(100) default '', - "snmp_oid" varchar(255) default '0', - "ip_target" varchar(100) default '', - "id_module_group" INTEGER NOT NULL default 0, - "flag" SMALLINT NOT NULL default 1, - "id_modulo" INTEGER NOT NULL default 0, - "disabled" SMALLINT NOT NULL default 0, - "id_export" INTEGER NOT NULL default 0, - "plugin_user" text default '', - "plugin_pass" text default '', - "plugin_parameter" text, - "id_plugin" INTEGER default 0, - "post_process" DOUBLE PRECISION default NULL, - "prediction_module" BIGINT default 0, - "max_timeout" INTEGER default 0, - "max_retries" INTEGER default 0, - "custom_id" varchar(255) default '', - "history_data" SMALLINT default 1, - "min_warning" DOUBLE PRECISION default 0, - "max_warning" DOUBLE PRECISION default 0, - "str_warning" text, - "min_critical" DOUBLE PRECISION default 0, - "max_critical" DOUBLE PRECISION default 0, - "str_critical" text, - "min_ff_event" INTEGER default 0, - "delete_pending" SMALLINT NOT NULL default 0, - "policy_linked" SMALLINT NOT NULL default 0, - "policy_adopted" SMALLINT NOT NULL default 0, - "custom_string_1" text default '', - "custom_string_2" text default '', - "custom_string_3" text default '', - "custom_integer_1" INTEGER default 0, - "custom_integer_2" INTEGER default 0, - "wizard_level" type_tagente_modulo_wizard_level default 'nowizard', - "macros" TEXT default '', - "critical_instructions" TEXT default '', - "warning_instructions" TEXT default '', - "unknown_instructions" TEXT default '', - "quiet" SMALLINT NOT NULL default 0, - "critical_inverse" SMALLINT NOT NULL default 0, - "warning_inverse" SMALLINT NOT NULL default 0, - "id_category" INTEGER NOT NULL default 0, - "disabled_types_event" TEXT default '', - "module_macros" TEXT default '', - "min_ff_event_normal" INTEGER default 0, - "min_ff_event_warning" INTEGER default 0, - "min_ff_event_critical" INTEGER default 0, - "each_ff" SMALLINT default 0, - "ff_timeout" INTEGER default 0, - "dynamic_interval" INTEGER default 0, - "dynamic_max" INTEGER default 0, - "dynamic_min" INTEGER default 0, - "dynamic_next" INTEGER NOT NULL default 0, - "dynamic_two_tailed" INTEGER default 0 -); -CREATE INDEX "tagente_modulo_id_agente_idx" ON "tagente_modulo"("id_agente"); -CREATE INDEX "tagente_modulo_id_tipo_modulo_idx" ON "tagente_modulo"("id_tipo_modulo"); -CREATE INDEX "tagente_modulo_disabled_idx" ON "tagente_modulo"("disabled"); - --- snmp_oid is also used for WMI query - -CREATE TABLE "tagent_access" ( - "id_agent" INTEGER NOT NULL default 0, - "utimestamp" BIGINT NOT NULL default 0 -); -CREATE INDEX "tagent_access_id_agent_idx" ON "tagent_access"("id_agent"); -CREATE INDEX "tagent_access_utimestamp_idx" ON "tagent_access"("utimestamp"); - -CREATE TABLE "talert_snmp" ( - "id_as" SERIAL NOT NULL PRIMARY KEY, - "id_alert" INTEGER NOT NULL default 0, - "al_field1" text NOT NULL default '', - "al_field2" text NOT NULL default '', - "al_field3" text NOT NULL default '', - "al_field4" text NOT NULL default '', - "al_field5" text NOT NULL default '', - "al_field6" text NOT NULL default '', - "al_field7" text NOT NULL default '', - "al_field8" text NOT NULL default '', - "al_field9" text NOT NULL default '', - "al_field10" text NOT NULL default '', - "al_field11" text NOT NULL default '', - "al_field12" text NOT NULL default '', - "al_field13" text NOT NULL default '', - "al_field14" text NOT NULL default '', - "al_field15" text NOT NULL default '', - "description" varchar(255) default '', - "alert_type" SMALLINT NOT NULL default 0, - "agent" varchar(100) default '', - "custom_oid" text default '', - "oid" varchar(255) NOT NULL default '', - "time_threshold" INTEGER NOT NULL default 0, - "times_fired" SMALLINT NOT NULL default 0, - "last_fired" TIMESTAMP without time zone default '1970-01-01 00:00:00', - "max_alerts" INTEGER NOT NULL default 1, - "min_alerts" INTEGER NOT NULL default 1, - "internal_counter" INTEGER NOT NULL default 0, - "priority" INTEGER default 0, - "_snmp_f1_" text DEFAULT '', - "_snmp_f2_" text DEFAULT '', - "_snmp_f3_" text DEFAULT '', - "_snmp_f4_" text DEFAULT '', - "_snmp_f5_" text DEFAULT '', - "_snmp_f6_" text DEFAULT '', - "_snmp_f7_" text DEFAULT '', - "_snmp_f8_" text DEFAULT '', - "_snmp_f9_" text DEFAULT '', - "_snmp_f10_" text DEFAULT '', - "_snmp_f11_" text DEFAULT '', - "_snmp_f12_" text DEFAULT '', - "_snmp_f13_" text DEFAULT '', - "_snmp_f14_" text DEFAULT '', - "_snmp_f15_" text DEFAULT '', - "_snmp_f16_" text DEFAULT '', - "_snmp_f17_" text DEFAULT '', - "_snmp_f18_" text DEFAULT '', - "_snmp_f19_" text DEFAULT '', - "_snmp_f20_" text DEFAULT '', - "trap_type" INTEGER NOT NULL DEFAULT '-1', - "single_value" varchar(255) DEFAULT '', - "position" INTEGER NOT NULL default 0, - "id_group" INTEGER NOT NULL default 0, - "order_1" INTEGER NOT NULL default 1, - "order_2" INTEGER NOT NULL default 2, - "order_3" INTEGER NOT NULL default 3, - "order_4" INTEGER NOT NULL default 4, - "order_5" INTEGER NOT NULL default 5, - "order_6" INTEGER NOT NULL default 6, - "order_7" INTEGER NOT NULL default 7, - "order_8" INTEGER NOT NULL default 8, - "order_9" INTEGER NOT NULL default 9, - "order_10" INTEGER NOT NULL default 10, - "order_11" INTEGER NOT NULL default 11, - "order_12" INTEGER NOT NULL default 12, - "order_13" INTEGER NOT NULL default 13, - "order_14" INTEGER NOT NULL default 14, - "order_15" INTEGER NOT NULL default 15, - "order_16" INTEGER NOT NULL default 16, - "order_17" INTEGER NOT NULL default 17, - "order_18" INTEGER NOT NULL default 18, - "order_19" INTEGER NOT NULL default 19, - "order_20" INTEGER NOT NULL default 20 -); - -CREATE TABLE "talert_commands" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "name" varchar(100) NOT NULL default '', - "command" text default '', - "description" text default '', - "internal" SMALLINT default 0, - "fields_descriptions" text default '', - "fields_values" text default '' -); - -CREATE TABLE "talert_actions" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "name" text default '', - "id_alert_command" INTEGER NOT NULL default 0 REFERENCES talert_commands("id") ON DELETE CASCADE ON UPDATE CASCADE, - "field1" text NOT NULL default '', - "field2" text NOT NULL default '', - "field3" text NOT NULL default '', - "field4" text NOT NULL default '', - "field5" text NOT NULL default '', - "field6" text NOT NULL default '', - "field7" text NOT NULL default '', - "field8" text NOT NULL default '', - "field9" text NOT NULL default '', - "field10" text NOT NULL default '', - "field11" text NOT NULL default '', - "field12" text NOT NULL default '', - "field13" text NOT NULL default '', - "field14" text NOT NULL default '', - "field15" text NOT NULL default '', - "id_group" BIGINT NOT NULL default 0, - "action_threshold" BIGINT NOT NULL default 0, - "field1_recovery" text NOT NULL default '', - "field2_recovery" text NOT NULL default '', - "field3_recovery" text NOT NULL default '', - "field4_recovery" text NOT NULL default '', - "field5_recovery" text NOT NULL default '', - "field6_recovery" text NOT NULL default '', - "field7_recovery" text NOT NULL default '', - "field8_recovery" text NOT NULL default '', - "field9_recovery" text NOT NULL default '', - "field10_recovery" text NOT NULL default '', - "field11_recovery" text NOT NULL default '', - "field12_recovery" text NOT NULL default '', - "field13_recovery" text NOT NULL default '', - "field14_recovery" text NOT NULL default '', - "field15_recovery" text NOT NULL default '', -); - -CREATE TYPE type_talert_templates_alert_template AS ENUM ('regex', 'max_min', 'max', 'min', 'equal', 'not_equal', 'warning', 'critical', 'onchange', 'unknown', 'always'); -CREATE TYPE type_talert_templates_wizard_level AS ENUM ('basic','advanced','nowizard'); -CREATE TABLE "talert_templates" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "name" text default '', - "description" TEXT, - "id_alert_action" INTEGER REFERENCES talert_actions("id") ON DELETE SET NULL ON UPDATE CASCADE, - "field1" text NOT NULL default '', - "field2" text NOT NULL default '', - "field3" text NOT NULL default '', - "field4" text NOT NULL default '', - "field5" text NOT NULL default '', - "field6" text NOT NULL default '', - "field7" text NOT NULL default '', - "field8" text NOT NULL default '', - "field9" text NOT NULL default '', - "field10" text NOT NULL default '', - "field11" text NOT NULL default '', - "field12" text NOT NULL default '', - "field13" text NOT NULL default '', - "field14" text NOT NULL default '', - "field15" text NOT NULL default '', - "type" type_talert_templates_alert_template, - "value" varchar(255) default '', - "matches_value" SMALLINT default 0, - "max_value" DOUBLE PRECISION default NULL, - "min_value" DOUBLE PRECISION default NULL, - "time_threshold" INTEGER NOT NULL default 0, - "max_alerts" INTEGER NOT NULL default 1, - "min_alerts" INTEGER NOT NULL default 0, - "time_from" TIME without time zone default '00:00:00', - "time_to" TIME without time zone default '00:00:00', - "monday" SMALLINT default 1, - "tuesday" SMALLINT default 1, - "wednesday" SMALLINT default 1, - "thursday" SMALLINT default 1, - "friday" SMALLINT default 1, - "saturday" SMALLINT default 1, - "sunday" SMALLINT default 1, - "recovery_notify" SMALLINT default 0, - "field1_recovery" text NOT NULL default '', - "field2_recovery" text NOT NULL default '', - "field3_recovery" text NOT NULL default '', - "field4_recovery" text NOT NULL default '', - "field5_recovery" text NOT NULL default '', - "field6_recovery" text NOT NULL default '', - "field7_recovery" text NOT NULL default '', - "field8_recovery" text NOT NULL default '', - "field9_recovery" text NOT NULL default '', - "field10_recovery" text NOT NULL default '', - "field11_recovery" text NOT NULL default '', - "field12_recovery" text NOT NULL default '', - "field13_recovery" text NOT NULL default '', - "field14_recovery" text NOT NULL default '', - "field15_recovery" text NOT NULL default '', - "priority" INTEGER NOT NULL default 0, - "id_group" INTEGER NOT NULL default 0, - "special_day" SMALLINT default 0, - "wizard_level" type_talert_templates_wizard_level default 'nowizard' -); -CREATE INDEX "talert_templates_id_alert_action_idx" ON "talert_templates"("id_alert_action"); - -CREATE TABLE "talert_template_modules" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_agent_module" INTEGER NOT NULL REFERENCES tagente_modulo("id_agente_modulo") ON DELETE CASCADE ON UPDATE CASCADE, - "id_alert_template" INTEGER NOT NULL REFERENCES talert_templates("id") ON DELETE CASCADE ON UPDATE CASCADE, - "id_policy_alerts" INTEGER NOT NULL default 0, - "internal_counter" INTEGER default 0, - "last_fired" BIGINT NOT NULL default 0, - "last_reference" BIGINT NOT NULL default 0, - "times_fired" INTEGER NOT NULL default 0, - "disabled" SMALLINT default 0, - "standby" SMALLINT default 0, - "priority" INTEGER default 0, - "force_execution" SMALLINT default 0 -); -CREATE UNIQUE INDEX "talert_template_modules_id_agent_module_idx" ON "talert_template_modules"("id_agent_module"); - -CREATE TABLE "talert_template_module_actions" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_alert_template_module" INTEGER NOT NULL REFERENCES talert_template_modules("id") ON DELETE CASCADE ON UPDATE CASCADE, - "id_alert_action" INTEGER NOT NULL REFERENCES talert_actions("id") ON DELETE CASCADE ON UPDATE CASCADE, - "fires_min" INTEGER NOT NULL default 0, - "fires_max" INTEGER NOT NULL default 0 -); - -CREATE TYPE type_talert_special_days_same_day AS ENUM ('monday','tuesday','wednesday','thursday','friday','saturday','sunday'); -CREATE TABLE "talert_special_days" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_group" INTEGER NOT NULL default 0, - "date" DATE NOT NULL default '0001-01-01', - "same_day" type_talert_special_days_same_day NOT NULL default 'sunday', - "description" TEXT -); - --- Priority : 0 - Maintance (grey) --- Priority : 1 - Low (green) --- Priority : 2 - Normal (blue) --- Priority : 3 - Warning (yellow) --- Priority : 4 - Critical (red) -CREATE TABLE "tattachment" ( - "id_attachment" SERIAL NOT NULL PRIMARY KEY, - "id_incidencia" INTEGER NOT NULL default 0, - "id_usuario" varchar(60) NOT NULL default '', - "filename" varchar(255) NOT NULL default '', - "description" varchar(150) default '', - "size" BIGINT NOT NULL default 0 -); - -CREATE TABLE "tconfig" ( - "id_config" SERIAL NOT NULL PRIMARY KEY, - "token" varchar(100) NOT NULL default '', - "value" text NOT NULL default '' -); - -CREATE TABLE "tconfig_os" ( - "id_os" SERIAL NOT NULL PRIMARY KEY, - "name" varchar(100) NOT NULL default '', - "description" varchar(250) default '', - "icon_name" varchar(100) default '' -); - --- --------------------------------------------------------------------- --- Table `tevento` --- --------------------------------------------------------------------- -CREATE TYPE type_tevento_event AS ENUM ('going_unknown','unknown','alert_fired','alert_recovered','alert_ceased','alert_manual_validation','recon_host_detected','system','error','new_agent','going_up_warning','going_up_critical','going_down_warning','going_down_normal','going_down_critical','going_up_normal', 'configuration_change'); -CREATE TABLE "tevento" ( - "id_evento" BIGSERIAL NOT NULL PRIMARY KEY, - "id_agente" INTEGER NOT NULL default 0, - "id_usuario" varchar(100) NOT NULL default '0', - "id_grupo" INTEGER NOT NULL default 0, - "estado" INTEGER NOT NULL default 0, - "timestamp" TIMESTAMP without time zone default '1970-01-01 00:00:00', - "evento" text NOT NULL default '', - "utimestamp" BIGINT NOT NULL default 0, - "event_type" type_tevento_event default 'unknown', - "id_agentmodule" INTEGER NOT NULL default 0, - "id_alert_am" INTEGER NOT NULL default 0, - "criticity" INTEGER NOT NULL default 0, - "user_comment" text NOT NULL, - "tags" text NOT NULL, - "source" text NOT NULL default '', - "id_extra" text NOT NULL default '', - "critical_instructions" TEXT default '', - "warning_instructions" TEXT default '', - "unknown_instructions" TEXT default '', - "owner_user" varchar(100) NOT NULL default '0', - "ack_utimestamp" BIGINT NOT NULL default 0, - "custom_data" text NOT NULL -); -CREATE INDEX "tevento_id_1_idx" ON "tevento"("id_agente", "id_evento"); -CREATE INDEX "tevento_id_2_idx" ON "tevento"("utimestamp", "id_evento"); -CREATE INDEX "tevento_id_agentmodule_idx" ON "tevento"("id_agentmodule"); - --- --------------------------------------------------------------------- --- Table `tgrupo` --- --------------------------------------------------------------------- --- Criticity: 0 - Maintance (grey) --- Criticity: 1 - Informational (blue) --- Criticity: 2 - Normal (green) (status 0) --- Criticity: 3 - Warning (yellow) (status 2) --- Criticity: 4 - Critical (red) (status 1) -CREATE TABLE "tgrupo" ( - "id_grupo" SERIAL NOT NULL PRIMARY KEY, - "nombre" text NOT NULL default '', - "icon" varchar(50) default 'world', - "parent" INTEGER NOT NULL default 0, - "propagate" SMALLINT default 0, - "disabled" SMALLINT default 0, - "custom_id" varchar(255) default '', - "id_skin" INTEGER NOT NULL DEFAULT 0, - "description" text, - "contact" text, - "other" text -); - --- --------------------------------------------------------------------- --- Table `tincidencia` --- --------------------------------------------------------------------- -CREATE TABLE "tincidencia" ( - "id_incidencia" BIGSERIAL NOT NULL PRIMARY KEY, - "inicio" TIMESTAMP without time zone default '1970-01-01 00:00:00', - "cierre" TIMESTAMP without time zone default '1970-01-01 00:00:00', - "titulo" text NOT NULL default '', - "descripcion" text NOT NULL, - "id_usuario" varchar(60) NOT NULL default '', - "origen" varchar(100) NOT NULL default '', - "estado" INTEGER NOT NULL default 0, - "prioridad" INTEGER NOT NULL default 0, - "id_grupo" INTEGER NOT NULL default 0, - "actualizacion" TIMESTAMP without time zone default CURRENT_TIMESTAMP, - "id_creator" varchar(60) default NULL, - "id_lastupdate" varchar(60) default NULL, - "id_agente_modulo" BIGINT NOT NULL, - "notify_email" INTEGER NOT NULL default 0, - "id_agent" INTEGER NULL default 0 -); -CREATE INDEX "tincidencia_id_1_idx" ON "tincidencia"("id_usuario","id_incidencia"); -CREATE INDEX "tincidencia_id_agente_modulo_idx" ON "tincidencia"("id_agente_modulo"); ---This function is for to tranlate "on update CURRENT_TIMESTAMP" of MySQL. - --It is in only one line because the parser of Pandora installer execute the code at the end with ; -CREATE OR REPLACE FUNCTION update_tincidencia_actualizacion() RETURNS TRIGGER AS $$ BEGIN NEW.actualizacion = now(); RETURN NEW; END; $$ language 'plpgsql'; -CREATE TRIGGER trigger_tincidencia_actualizacion BEFORE UPDATE ON tincidencia FOR EACH ROW EXECUTE PROCEDURE update_tincidencia_actualizacion(); - --- --------------------------------------------------------------------- --- Table `tlanguage` --- --------------------------------------------------------------------- -CREATE TABLE "tlanguage" ( - "id_language" varchar(6) NOT NULL default '', - "name" varchar(100) NOT NULL default '' -); - --- --------------------------------------------------------------------- --- Table `tlink` --- --------------------------------------------------------------------- -CREATE TABLE "tlink" ( - "id_link" SERIAL NOT NULL PRIMARY KEY, - "name" varchar(100) NOT NULL default '', - "link" varchar(255) NOT NULL default '' -); - --- --------------------------------------------------------------------- --- Table `tmensajes` --- --------------------------------------------------------------------- -CREATE TABLE "tmensajes" ( - "id_mensaje" SERIAL NOT NULL PRIMARY KEY, - "id_usuario_origen" varchar(60) NOT NULL default '', - "id_usuario_destino" varchar(60) NOT NULL default '', - "mensaje" TEXT NOT NULL, - "timestamp" BIGINT NOT NULL default 0, - "subject" varchar(255) NOT NULL default '', - "estado" INTEGER NOT NULL default 0 -); - --- --------------------------------------------------------------------- --- Table `tmodule_group` --- --------------------------------------------------------------------- -CREATE TABLE "tmodule_group" ( - "id_mg" SERIAL NOT NULL PRIMARY KEY, - "name" varchar(150) NOT NULL default '' -); - --- This table was moved cause the "tmodule_relationship" will add --- a foreign key for the trecon_task(id_rt) --- --------------------------------------------------------------------- --- Table `trecon_task` --- --------------------------------------------------------------------- -CREATE TABLE "trecon_task" ( - "id_rt" SERIAL NOT NULL PRIMARY KEY, - "name" varchar(100) NOT NULL default '', - "description" varchar(250) NOT NULL default '', - "subnet" TEXT default NULL, - "id_network_profile" INTEGER NOT NULL default 0, - "create_incident" INTEGER NOT NULL default 0, - "id_group" INTEGER NOT NULL default 1, - "utimestamp" BIGINT NOT NULL default 0, - "status" INTEGER NOT NULL default 0, - "interval_sweep" INTEGER NOT NULL default 0, - "id_recon_server" INTEGER NOT NULL default 0, - "id_os" INTEGER NOT NULL default 0, - "recon_ports" varchar(250) NOT NULL default '', - "snmp_community" varchar(64) NOT NULL default 'public', - "id_recon_script" INTEGER, - "field1" TEXT default NULL, - "field2" varchar(250) NOT NULL default '', - "field3" varchar(250) NOT NULL default '', - "field4" varchar(250) NOT NULL default '', - "os_detect" SMALLINT NOT NULL default 1, - "resolve_names" SMALLINT NOT NULL default 1, - "parent_detection" SMALLINT NOT NULL default 1, - "parent_recursion" SMALLINT NOT NULL default 1, - "disabled" SMALLINT NOT NULL default 1, - "macros" TEXT NOT NULL default '' -); -CREATE INDEX "trecon_task_id_recon_server_idx" ON "trecon_task"("id_recon_server"); - --- ---------------------------------------------------------------------- --- Table `tmodule_relationship` --- ---------------------------------------------------------------------- -CREATE TABLE "tmodule_relationship" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_rt" INTEGER NOT NULL REFERENCES trecon_task("id_rt") - ON DELETE CASCADE, - "module_a" INTEGER NOT NULL REFERENCES tagente_modulo("id_agente_modulo") - ON DELETE CASCADE, - "module_b" INTEGER NOT NULL REFERENCES tagente_modulo("id_agente_modulo") - ON DELETE CASCADE, - "disable_update" SMALLINT NOT NULL default 0 -); - --- --------------------------------------------------------------------- --- Table `tnetwork_component` --- --------------------------------------------------------------------- -CREATE TYPE type_tlocal_component_wizard_level AS ENUM ('basic','advanced','nowizard'); -CREATE TABLE "tnetwork_component" ( - "id_nc" SERIAL NOT NULL PRIMARY KEY, - "name" text NOT NULL, - "description" text NOT NULL default '', - "id_group" INTEGER NOT NULL default 1, - "type" INTEGER NOT NULL default 6, - "max" BIGINT NOT NULL default 0, - "min" BIGINT NOT NULL default 0, - "module_interval" BIGINT NOT NULL default 0, - "tcp_port" INTEGER NOT NULL default 0, - "tcp_send" text NOT NULL, - "tcp_rcv" text NOT NULL, - "snmp_community" varchar(255) NOT NULL default 'NULL', - "snmp_oid" varchar(400) NOT NULL, - "id_module_group" INTEGER NOT NULL default 0, - "id_modulo" INTEGER NOT NULL default 0, - "id_plugin" INTEGER default 0, - "plugin_user" text default '', - "plugin_pass" text default '', - "plugin_parameter" text, - "max_timeout" INTEGER default 0, - "max_retries" INTEGER default 0, - "history_data" SMALLINT default 1, - "min_warning" DOUBLE PRECISION default 0, - "max_warning" DOUBLE PRECISION default 0, - "str_warning" text, - "min_critical" DOUBLE PRECISION default 0, - "max_critical" DOUBLE PRECISION default 0, - "str_critical" text, - "min_ff_event" INTEGER default 0, - "custom_string_1" text default '', - "custom_string_2" text default '', - "custom_string_3" text default '', - "custom_integer_1" INTEGER default 0, - "custom_integer_2" INTEGER default 0, - "post_process" DOUBLE PRECISION default 0, - "unit" TEXT default '', - "wizard_level" type_tlocal_component_wizard_level default 'nowizard', - "macros" TEXT default '', - "critical_instructions" TEXT default '', - "warning_instructions" TEXT default '', - "unknown_instructions" TEXT default '', - "critical_inverse" SMALLINT NOT NULL default 0, - "warning_inverse" SMALLINT NOT NULL default 0, - "id_category" INTEGER NOT NULL default 0, - "tags" text NOT NULL, - "disabled_types_event" TEXT default '', - "module_macros" TEXT default '', - "min_ff_event_normal" INTEGER default 0, - "min_ff_event_warning" INTEGER default 0, - "min_ff_event_critical" INTEGER default 0, - "each_ff" SMALLINT default 0, - "dynamic_interval" INTEGER default 0, - "dynamic_max" INTEGER default 0, - "dynamic_min" INTEGER default 0, - "dynamic_next" INTEGER NOT NULL default 0, - "dynamic_two_tailed" INTEGER default 0 -); - --- --------------------------------------------------------------------- --- Table `tnetwork_component_group` --- --------------------------------------------------------------------- -CREATE TABLE "tnetwork_component_group" ( - "id_sg" SERIAL NOT NULL PRIMARY KEY, - "name" varchar(200) NOT NULL default '', - "parent" BIGINT NOT NULL default 0 -); - --- --------------------------------------------------------------------- --- Table `tnetwork_profile` --- --------------------------------------------------------------------- -CREATE TABLE "tnetwork_profile" ( - "id_np" SERIAL NOT NULL PRIMARY KEY, - "name" varchar(100) NOT NULL default '', - "description" varchar(250) default '' -); - --- --------------------------------------------------------------------- --- Table `tnetwork_profile_component` --- --------------------------------------------------------------------- -CREATE TABLE "tnetwork_profile_component" ( - "id_nc" BIGINT NOT NULL default 0, - "id_np" BIGINT NOT NULL default 0 -); -CREATE INDEX "tnetwork_profile_id_np_idx" ON "tnetwork_profile_component"("id_np"); - --- --------------------------------------------------------------------- --- Table `tnota` --- --------------------------------------------------------------------- -CREATE TABLE "tnota" ( - "id_nota" BIGSERIAL NOT NULL PRIMARY KEY, - "id_incident" BIGINT NOT NULL, - "id_usuario" varchar(100) NOT NULL default '0', - "timestamp" TIMESTAMP without time zone default CURRENT_TIMESTAMP, - "nota" TEXT NOT NULL -); -CREATE INDEX "tnota_id_incident_idx" ON "tnota"("id_incident"); - --- --------------------------------------------------------------------- --- Table `torigen` --- --------------------------------------------------------------------- -CREATE TABLE "torigen" ( - "origen" varchar(100) NOT NULL default '' -); - --- --------------------------------------------------------------------- --- Table `tperfil` --- --------------------------------------------------------------------- -CREATE TABLE "tperfil" ( - "id_perfil" SERIAL NOT NULL PRIMARY KEY, - "name" TEXT NOT NULL default '', - "incident_edit" SMALLINT NOT NULL default 0, - "incident_view" SMALLINT NOT NULL default 0, - "incident_management" SMALLINT NOT NULL default 0, - "agent_view" SMALLINT NOT NULL default 0, - "agent_edit" SMALLINT NOT NULL default 0, - "alert_edit" SMALLINT NOT NULL default 0, - "user_management" SMALLINT NOT NULL default 0, - "db_management" SMALLINT NOT NULL default 0, - "alert_management" SMALLINT NOT NULL default 0, - "pandora_management" SMALLINT NOT NULL default 0, - "report_view" SMALLINT NOT NULL default 0, - "report_edit" SMALLINT NOT NULL default 0, - "report_management" SMALLINT NOT NULL default 0, - "event_view" SMALLINT NOT NULL default 0, - "event_edit" SMALLINT NOT NULL default 0, - "event_management" SMALLINT NOT NULL default 0, - "agent_disable" SMALLINT NOT NULL default 0, - "map_view" SMALLINT NOT NULL default 0, - "map_edit" SMALLINT NOT NULL default 0, - "map_management" SMALLINT NOT NULL default 0, - "vconsole_view" SMALLINT NOT NULL default 0, - "vconsole_edit" SMALLINT NOT NULL default 0, - "vconsole_management" SMALLINT NOT NULL default 0 -); - --- --------------------------------------------------------------------- --- Table `trecon_script` --- --------------------------------------------------------------------- -CREATE TABLE "trecon_script" ( - "id_recon_script" SERIAL NOT NULL PRIMARY KEY, - "name" varchar(100) default '', - "description" TEXT default NULL, - "script" varchar(250) default '', - "macros" TEXT NOT NULL default '' -); - -CREATE TABLE "tserver" ( - "id_server" SERIAL NOT NULL PRIMARY KEY, - "name" varchar(100) NOT NULL default '', - "ip_address" varchar(100) NOT NULL default '', - "status" INTEGER NOT NULL default 0, - "laststart" TIMESTAMP without time zone default '1970-01-01 00:00:00', - "keepalive" TIMESTAMP without time zone default '1970-01-01 00:00:00', - "snmp_server" INTEGER NOT NULL default 0, - "network_server" INTEGER NOT NULL default 0, - "data_server" INTEGER NOT NULL default 0, - "master" INTEGER NOT NULL default 0, - "checksum" INTEGER NOT NULL default 0, - "description" varchar(255) default NULL, - "recon_server" INTEGER NOT NULL default 0, - "version" varchar(20) NOT NULL default '', - "plugin_server" INTEGER NOT NULL default 0, - "prediction_server" INTEGER NOT NULL default 0, - "wmi_server" INTEGER NOT NULL default 0, - "export_server" INTEGER NOT NULL default 0, - "server_type" INTEGER NOT NULL default 0, - "queued_modules" INTEGER NOT NULL default 0, - "threads" INTEGER NOT NULL default 0, - "lag_time" INTEGER NOT NULL default 0, - "lag_modules" INTEGER NOT NULL default 0, - "total_modules_running" INTEGER NOT NULL default 0, - "my_modules" INTEGER NOT NULL default 0, - "server_keepalive" INTEGER NOT NULL default 0, - "stat_utimestamp" BIGINT NOT NULL default 0 -); -CREATE INDEX "tserver_name_idx" ON "tserver"("name"); -CREATE INDEX "tserver_keepalive_idx" ON "tserver"("keepalive"); -CREATE INDEX "tserver_status_idx" ON "tserver"("status"); - --- server types: --- 0 data --- 1 network --- 2 snmp trap console --- 3 recon --- 4 plugin --- 5 prediction --- 6 wmi --- 7 export --- 8 inventory --- 9 web --- TODO: drop 2.x xxxx_server fields, unused since server_type exists. - -CREATE TABLE "tsesion" ( - "id_sesion" BIGSERIAL NOT NULL PRIMARY KEY, - "id_usuario" varchar(60) NOT NULL default '0', - "ip_origen" varchar(100) NOT NULL default '', - "accion" varchar(100) NOT NULL default '', - "descripcion" text NOT NULL default '', - "fecha" TIMESTAMP without time zone default '1970-01-01 00:00:00', - "utimestamp" BIGINT NOT NULL default 0 -); -CREATE INDEX "tsesion_utimestamp_idx" ON "tsesion"("utimestamp"); -CREATE INDEX "tsesion_id_usuario_idx" ON "tsesion"("id_usuario"); - --- ----------------------------------------------------- --- Table `ttipo_modulo` --- ----------------------------------------------------- -CREATE TABLE "ttipo_modulo" ( - "id_tipo" SERIAL NOT NULL PRIMARY KEY, - "nombre" varchar(100) NOT NULL default '', - "categoria" INTEGER NOT NULL default 0, - "descripcion" varchar(100) NOT NULL default '', - "icon" varchar(100) default NULL -); - --- ----------------------------------------------------- --- Table `ttrap` --- ----------------------------------------------------- -CREATE TABLE "ttrap" ( - "id_trap" BIGSERIAL NOT NULL PRIMARY KEY, - "source" varchar(50) NOT NULL default '', - "oid" text NOT NULL default '', - "oid_custom" text default '', - "type" INTEGER NOT NULL default 0, - "type_custom" varchar(100) default '', - "value" text default '', - "value_custom" text default '', - "alerted" SMALLINT NOT NULL default 0, - "status" SMALLINT NOT NULL default 0, - "id_usuario" varchar(150) default '', - "timestamp" TIMESTAMP without time zone default '1970-01-01 00:00:00', - "priority" INTEGER NOT NULL default 2, - "text" varchar(255) default '', - "description" varchar(255) default '', - "severity" INTEGER NOT NULL default 2 -); - --- ----------------------------------------------------- --- Table `tusuario` --- ----------------------------------------------------- -CREATE TYPE type_tusuario_metaconsole_access AS ENUM ('basic','advanced'); -CREATE TABLE "tusuario" ( - "id_user" varchar(60) NOT NULL PRIMARY KEY, - "fullname" varchar(255) NOT NULL, - "firstname" varchar(255) NOT NULL, - "lastname" varchar(255) NOT NULL, - "middlename" varchar(255) NOT NULL default '', - "password" varchar(45) default NULL, - "comments" varchar(200) default NULL, - "last_connect" BIGINT NOT NULL default 0, - "registered" BIGINT NOT NULL default 0, - "email" varchar(100) default NULL, - "phone" varchar(100) default NULL, - "is_admin" SMALLINT NOT NULL default 0, - "language" varchar(10) default NULL, - "timezone" varchar(50) default '', - "block_size" INTEGER NOT NULL default 20, - "flash_chart" INTEGER NOT NULL default 1, - "id_skin" INTEGER NOT NULL DEFAULT 0, - "disabled" INTEGER NOT NULL default 0, - "shortcut" SMALLINT DEFAULT 0, - "shortcut_data" text default '', - "section" varchar(255) NOT NULL DEFAULT '', - "data_section" varchar(255) NOT NULL DEFAULT '', - "force_change_pass" SMALLINT NOT NULL default 0, - "last_pass_change" BIGINT NOT NULL default 0, - "last_failed_login" BIGINT NOT NULL default 0, - "failed_attempt" INTEGER NOT NULL DEFAULT 0, - "login_blocked" SMALLINT NOT NULL default 0, - "not_login" SMALLINT NOT NULL default 0, - "metaconsole_agents_manager" SMALLINT DEFAULT 0, - "metaconsole_assigned_server" INTEGER NOT NULL default 0, - "metaconsole_access_node" SMALLINT DEFAULT 0, - "metaconsole_access" type_tusuario_metaconsole_access default 'basic', - "strict_acl" SMALLINT DEFAULT 0, - "session_time" INTEGER DEFAULT 0 -); - --- ----------------------------------------------------- --- Table `tusuario_perfil` --- ----------------------------------------------------- -CREATE TABLE "tusuario_perfil" ( - "id_up" BIGSERIAL NOT NULL PRIMARY KEY, - "id_usuario" varchar(100) NOT NULL default '', - "id_perfil" INTEGER NOT NULL default 0, - "id_grupo" INTEGER NOT NULL default 0, - "assigned_by" varchar(100) NOT NULL default '', - "id_policy" INTEGER DEFAULT 0 NOT NULL, - "tags" text NOT NULL -); - --- ---------------------------------------------------------------------- --- Table `tuser_double_auth` --- ---------------------------------------------------------------------- -CREATE TABLE "tuser_double_auth" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_user" varchar(60) NOT NULL UNIQUE REFERENCES "tusuario"("id_user") ON DELETE CASCADE, - "secret" varchar(20) NOT NULL -); - --- ----------------------------------------------------- --- Table `tnews` --- ----------------------------------------------------- -CREATE TABLE "tnews" ( - "id_news" SERIAL NOT NULL PRIMARY KEY, - "author" varchar(255) NOT NULL DEFAULT '', - "subject" varchar(255) NOT NULL DEFAULT '', - "text" TEXT NOT NULL, - "timestamp" TIMESTAMP without time zone default '1970-01-01 00:00:00', - "id_group" INTEGER NOT NULL default 0, - "modal" SMALLINT DEFAULT 0, - "expire" SMALLINT DEFAULT 0, - "expire_timestamp" TIMESTAMP without time zone default '1970-01-01 00:00:00' -); - --- ----------------------------------------------------- --- Table `tgraph` --- ----------------------------------------------------- -CREATE TABLE "tgraph" ( - "id_graph" SERIAL NOT NULL PRIMARY KEY, - "id_user" varchar(100) NOT NULL default '', - "name" varchar(150) NOT NULL default '', - "description" TEXT NOT NULL, - "period" INTEGER NOT NULL default 0, - "width" INTEGER NOT NULL default 0, - "height" INTEGER NOT NULL default 0, - "private" SMALLINT NOT NULL default 0, - "events" SMALLINT NOT NULL default 0, - "stacked" SMALLINT NOT NULL default 0, - "id_group" BIGINT NOT NULL default 0, - "id_graph_template" INTEGER NOT NULL default 0, - "percentil" INTEGER NOT NULL default 0 -); - --- ----------------------------------------------------- --- Table `tgraph_source` --- ----------------------------------------------------- -CREATE TABLE "tgraph_source" ( - "id_gs" SERIAL NOT NULL PRIMARY KEY, - "id_server" BIGINT NOT NULL default 0, - "id_graph" BIGINT NOT NULL default 0, - "id_agent_module" BIGINT NOT NULL default 0, - "weight" DOUBLE PRECISION default 0, - "label" VARCHAR2(150) DEFAULT '' -); - --- ----------------------------------------------------- --- Table "treport" --- ----------------------------------------------------- -CREATE TABLE "treport" ( - "id_report" SERIAL NOT NULL PRIMARY KEY, - "id_user" varchar(100) NOT NULL default '', - "name" varchar(150) NOT NULL default '', - "description" TEXT NOT NULL, - "private" SMALLINT NOT NULL default 0, - "id_group" BIGINT NOT NULL default 0, - "custom_logo" varchar(200) default NULL, - "header" TEXT default NULL, - "first_page" TEXT default NULL, - "footer" TEXT default NULL, - "custom_font" varchar(200) default NULL, - "id_template" BIGINT NOT NULL default 0, - "id_group_edit" BIGINT NOT NULL default 0, - "metaconsole" SMALLINT DEFAULT 0, - "non_interactive" SMALLINT DEFAULT 0 -); - --- ----------------------------------------------------- --- Table "treport_content" --- ----------------------------------------------------- -CREATE TABLE "treport_content" ( - "id_rc" SERIAL NOT NULL PRIMARY KEY, - "id_report" INTEGER NOT NULL default 0 REFERENCES treport("id_report") ON UPDATE CASCADE ON DELETE CASCADE, - "id_gs" INTEGER default NULL, - "id_agent_module" BIGINT default NULL, - "type" varchar(30) default 'simple_graph', - "period" BIGINT NOT NULL default 0, - "order" BIGINT NOT NULL default 0, - "name" varchar(150) NULL, - "description" TEXT, - "id_agent" BIGINT NOT NULL default 0, - "text" TEXT default NULL, - "external_source" TEXT default NULL, - "treport_custom_sql_id" INTEGER default 0, - "header_definition" TEXT default NULL, - "column_separator" TEXT default NULL, - "line_separator" TEXT default NULL, - "time_from" TIME without time zone default '00:00:00', - "time_to" TIME without time zone default '00:00:00', - "monday" SMALLINT NOT NULL default 1, - "tuesday" SMALLINT NOT NULL default 1, - "wednesday" SMALLINT NOT NULL default 1, - "thursday" SMALLINT NOT NULL default 1, - "friday" SMALLINT NOT NULL default 1, - "saturday" SMALLINT NOT NULL default 1, - "sunday" SMALLINT NOT NULL default 1, - "only_display_wrong" SMALLINT NOT NULL default 0, - "top_n" INTEGER NOT NULL default 0, - "top_n_value" INTEGER NOT NULL default 10, - "exception_condition" INTEGER NOT NULL default 0, - "exception_condition_value" DOUBLE PRECISION NOT NULL default 0, - "show_resume" INTEGER NOT NULL default 0, - "order_uptodown" INTEGER NOT NULL default 0, - "show_graph" INTEGER NOT NULL default 0, - "group_by_agent" INTEGER NOT NULL default 0, - "style" TEXT NOT NULL DEFAULT '', - "id_group" INTEGER NOT NULL default 0, - "id_module_group" INTEGER NOT NULL default 0, - "server_name" TEXT DEFAULT '' -); - --- ----------------------------------------------------- --- Table "treport_content_sla_combined" --- ----------------------------------------------------- -CREATE TABLE "treport_content_sla_combined" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_report_content" INTEGER NOT NULL REFERENCES treport_content("id_rc") ON UPDATE CASCADE ON DELETE CASCADE, - "id_agent_module" INTEGER NOT NULL, - "sla_max" DOUBLE PRECISION NOT NULL default 0, - "sla_min" DOUBLE PRECISION NOT NULL default 0, - "sla_limit" DOUBLE PRECISION NOT NULL default 0, - "server_name" TEXT DEFAULT '' -); - --- ----------------------------------------------------- --- Table "treport_content_item" --- ----------------------------------------------------- -CREATE TABLE "treport_content_item" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_report_content" INTEGER NOT NULL REFERENCES treport_content("id_rc") ON UPDATE CASCADE ON DELETE CASCADE, - "id_agent_module" INTEGER NOT NULL, - "server_name" TEXT DEFAULT '', - "operation" TEXT DEFAULT '' -); - --- ----------------------------------------------------- --- Table "treport_custom_sql" --- ----------------------------------------------------- -CREATE TABLE "treport_custom_sql" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "name" varchar(150) NOT NULL default '', - "sql" TEXT default NULL -); - --- ----------------------------------------------------- --- Table "tlayout" --- ----------------------------------------------------- -CREATE TABLE "tlayout" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "name" varchar(50) NOT NULL, - "id_group" INTEGER NOT NULL, - "background" varchar(200) NOT NULL, - "height" INTEGER NOT NULL default 0, - "background_color" varchar(50) NOT NULL default '#FFF', - "width" INTEGER NOT NULL default 0 -); - --- --------------------------------------------------------------------- --- Table "tlayout_data" --- --------------------------------------------------------------------- -CREATE TABLE "tlayout_data" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_layout" INTEGER NOT NULL default 0, - "pos_x" INTEGER NOT NULL default 0, - "pos_y" INTEGER NOT NULL default 0, - "height" INTEGER NOT NULL default 0, - "width" INTEGER NOT NULL default 0, - "label" TEXT default '', - "image" varchar(200) DEFAULT '', - "type" SMALLINT NOT NULL default 0, - "period" INTEGER NOT NULL default 3600, - "id_agente_modulo" BIGINT NOT NULL default 0, - "id_agent" INTEGER NOT NULL default 0, - "id_layout_linked" INTEGER NOT NULL default 0, - "parent_item" INTEGER NOT NULL default 0, - "enable_link" SMALLINT NOT NULL default 1, - "id_metaconsole" INTEGER NOT NULL default 0, - "id_group" INTEGER NOT NULL default 0, - "id_custom_graph" INTEGER NOT NULL default 0, - "border_width" INTEGER NOT NULL default 0, - "type_graph" varchar(50) NOT NULL DEFAULT 'area', - "label_position" varchar(50) NOT NULL DEFAULT 'down', - "border_color" varchar(200) DEFAULT '', - "fill_color" varchar(200) DEFAULT '' -); - --- --------------------------------------------------------------------- --- Table "tplugin" --- --------------------------------------------------------------------- -CREATE TABLE "tplugin" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "name" varchar(200) NOT NULL, - "description" TEXT, - "max_timeout" INTEGER NOT NULL default 0, - "max_retries" INTEGER NOT NULL default 0, - "execute" varchar(250) NOT NULL, - "net_dst_opt" varchar(50) default '', - "net_port_opt" varchar(50) default '', - "user_opt" varchar(50) default '', - "pass_opt" varchar(50) default '', - "plugin_type" SMALLINT NOT NULL default 0, - "macros" TEXT default '', - "parameters" TEXT default '' -); - --- --------------------------------------------------------------------- --- Table "tmodule" --- --------------------------------------------------------------------- -CREATE TABLE "tmodule" ( - "id_module" SERIAL NOT NULL PRIMARY KEY, - "name" varchar(100) NOT NULL default '' -); - --- --------------------------------------------------------------------- --- Table "tserver_export" --- --------------------------------------------------------------------- -CREATE TYPE type_tserver_export_connect_mode AS ENUM ('tentacle', 'ssh', 'local'); -CREATE TABLE "tserver_export" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "name" varchar(100) NOT NULL default '', - "preffix" varchar(100) NOT NULL default '', - "interval" INTEGER NOT NULL default 300, - "ip_server" varchar(100) NOT NULL default '', - "connect_mode" type_tserver_export_connect_mode default 'local', - "id_export_server" INTEGER default NULL , - "user" varchar(100) NOT NULL default '', - "pass" varchar(100) NOT NULL default '', - "port" INTEGER NOT NULL default 0, - "directory" varchar(100) NOT NULL default '', - "options" varchar(100) NOT NULL default '', - --Number of hours of diference with the server timezone - "timezone_offset" SMALLINT NOT NULL default 0 -); - --- --------------------------------------------------------------------- --- Table "tserver_export_data" --- --------------------------------------------------------------------- --- id_export_server is real pandora fms export server process that manages this server --- id is the "destination" server to export -CREATE TABLE "tserver_export_data" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_export_server" INTEGER NOT NULL default 0, - "agent_name" varchar(100) NOT NULL default '', - "module_name" varchar(100) NOT NULL default '', - "module_type" varchar(100) NOT NULL default '', - "data" varchar(255) default NULL, - "timestamp" TIMESTAMP without time zone default '1970-01-01 00:00:00' -); - --- --------------------------------------------------------------------- --- Table "tplanned_downtime" --- --------------------------------------------------------------------- -CREATE TABLE "tplanned_downtime" ( - "id" BIGSERIAL NOT NULL PRIMARY KEY, - "name" VARCHAR( 100 ) NOT NULL, - "description" TEXT NOT NULL, - "date_from" BIGINT NOT NULL default 0, - "date_to" BIGINT NOT NULL default 0, - "executed" SMALLINT NOT NULL default 0, - "id_group" BIGINT NOT NULL default 0, - "only_alerts" SMALLINT NOT NULL default 0, - "monday" SMALLINT default 0, - "tuesday" SMALLINT default 0, - "wednesday" SMALLINT default 0, - "thursday" SMALLINT default 0, - "friday" SMALLINT default 0, - "saturday" SMALLINT default 0, - "sunday" SMALLINT default 0, - "periodically_time_from" TIME default NULL, - "periodically_time_to" TIME default NULL, - "periodically_day_from" SMALLINT default NULL, - "periodically_day_to" SMALLINT default NULL, - "type_downtime" VARCHAR( 100 ) NOT NULL default 'disabled_agents_alerts', - "type_execution" VARCHAR( 100 ) NOT NULL default 'once', - "type_periodicity" VARCHAR( 100 ) NOT NULL default 'weekly', - "id_user" varchar(100) NOT NULL default '0' -); - --- --------------------------------------------------------------------- --- Table "tplanned_downtime_agents" --- --------------------------------------------------------------------- -CREATE TABLE "tplanned_downtime_agents" ( - "id" BIGSERIAL NOT NULL PRIMARY KEY, - "id_agent" BIGINT NOT NULL default 0, - "id_downtime" BIGINT NOT NULL REFERENCES tplanned_downtime("id") ON DELETE CASCADE, - "all_modules" SMALLINT default 1 -); - --- --------------------------------------------------------------------- --- Table "tplanned_downtime_modules" --- --------------------------------------------------------------------- -CREATE TABLE "tplanned_downtime_modules" ( - "id" BIGSERIAL NOT NULL PRIMARY KEY, - "id_agent" BIGINT NOT NULL default 0, - "id_agent_module" INTEGER NOT NULL default 0, - "id_downtime" BIGINT NOT NULL REFERENCES tplanned_downtime("id") ON DELETE CASCADE -); - - --- GIS extension Tables --- --------------------------------------------------------------------- --- Table "tgis_data_history" --- --------------------------------------------------------------------- ---Table to store historical GIS information of the agents -CREATE TABLE "tgis_data_history" ( - --key of the table - "id_tgis_data" SERIAL NOT NULL PRIMARY KEY, - "longitude" DOUBLE PRECISION NOT NULL, - "latitude" DOUBLE PRECISION NOT NULL, - "altitude" DOUBLE PRECISION NOT NULL, - --timestamp on wich the agente started to be in this position - "start_timestamp" TIMESTAMP without time zone DEFAULT CURRENT_TIMESTAMP, - --timestamp on wich the agent was placed for last time on this position - "end_timestamp" TIMESTAMP without time zone default '1970-01-01 00:00:00', - --description of the region correoponding to this placemnt - "description" TEXT DEFAULT NULL, - -- 0 to show that the position cames from the agent, 1 to show that the position was established manualy - "manual_placement" SMALLINT NOT NULL default 0, - -- Number of data packages received with this position from the start_timestampa to the_end_timestamp - "number_of_packages" INTEGER NOT NULL default 1, - --reference to the agent - "tagente_id_agente" INTEGER NOT NULL -); -CREATE INDEX "tgis_data_history_start_timestamp_idx" ON "tgis_data_history"("start_timestamp"); -CREATE INDEX "tgis_data_history_end_timestamp_idx" ON "tgis_data_history"("end_timestamp"); - --- --------------------------------------------------------------------- --- Table "tgis_data_status" --- --------------------------------------------------------------------- ---Table to store last GIS information of the agents -CREATE TABLE "tgis_data_status" ( - --Reference to the agent - "tagente_id_agente" INTEGER NOT NULL REFERENCES "tagente"("id_agente") ON DELETE CASCADE ON UPDATE NO ACTION, - --Last received longitude - "current_longitude" DOUBLE PRECISION NOT NULL, - --Last received latitude - "current_latitude" DOUBLE PRECISION NOT NULL, - --Last received altitude - "current_altitude" DOUBLE PRECISION NOT NULL, - --Reference longitude to see if the agent has moved - "stored_longitude" DOUBLE PRECISION NOT NULL, - --Reference latitude to see if the agent has moved - "stored_latitude" DOUBLE PRECISION NOT NULL, - --Reference altitude to see if the agent has moved - "stored_altitude" DOUBLE PRECISION DEFAULT NULL, - --Number of data packages received with this position since start_timestampa - "number_of_packages" INTEGER NOT NULL default 1, - --Timestamp on wich the agente started to be in this position - "start_timestamp" TIMESTAMP without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP, - --0 to show that the position cames from the agent, 1 to show that the position was established manualy - "manual_placement" SMALLINT NOT NULL default 0, - --description of the region correoponding to this placemnt - "description" TEXT NULL, - PRIMARY KEY("tagente_id_agente") -); -CREATE INDEX "tgis_data_status_start_timestamp_idx" ON "tgis_data_status"("start_timestamp"); -CREATE INDEX "tgis_data_status_tagente_id_agente_idx" ON "tgis_data_status"("tagente_id_agente"); - --- ----------------------------------------------------- --- Table "tgis_map" --- ----------------------------------------------------- ---Table containing information about a gis map -CREATE TABLE "tgis_map" ( - --table identifier - "id_tgis_map" SERIAL NOT NULL PRIMARY KEY, - --Name of the map - "map_name" VARCHAR(63) NOT NULL, - --longitude of the center of the map when it\'s loaded - "initial_longitude" DOUBLE PRECISION DEFAULT NULL, - --latitude of the center of the map when it\'s loaded - "initial_latitude" DOUBLE PRECISION DEFAULT NULL, - --altitude of the center of the map when it\'s loaded - "initial_altitude" DOUBLE PRECISION DEFAULT NULL, - --Zoom level to show when the map is loaded. - "zoom_level" SMALLINT NOT NULL default 1, - --path on the server to the background image of the map - "map_background" VARCHAR(127) DEFAULT NULL, - --default longitude for the agents placed on the map - "default_longitude" DOUBLE PRECISION DEFAULT NULL, - --default latitude for the agents placed on the map - "default_latitude" DOUBLE PRECISION DEFAULT NULL, - --default altitude for the agents placed on the map - "default_altitude" DOUBLE PRECISION DEFAULT NULL, - --Group that owns the map - "group_id" INTEGER NOT NULL default 0, - --1 if this is the default map, 0 in other case - "default_map" SMALLINT NOT NULL default 0 -); -CREATE INDEX "tgis_map_tagente_map_name_idx" ON "tgis_map"("map_name"); - --- ----------------------------------------------------- --- Table "tgis_map_connection" --- ----------------------------------------------------- ---Table to store the map connection information -CREATE TABLE "tgis_map_connection" ( - --table id - "id_tmap_connection" SERIAL NOT NULL PRIMARY KEY, - --Name of the connection (name of the base layer) - "conection_name" VARCHAR(45) DEFAULT NULL, - --Type of map server to connect - "connection_type" VARCHAR(45) DEFAULT NULL, - --connection information (this can probably change to fit better the possible connection parameters) - "conection_data" TEXT DEFAULT NULL, - --Number of zoom levels available - "num_zoom_levels" SMALLINT DEFAULT NULL, - --Default Zoom Level for the connection - "default_zoom_level" SMALLINT NOT NULL default 16, - --default longitude for the agents placed on the map - "default_longitude" DOUBLE PRECISION DEFAULT NULL, - --default latitude for the agents placed on the map - "default_latitude" DOUBLE PRECISION DEFAULT NULL, - --default altitude for the agents placed on the map - "default_altitude" DOUBLE PRECISION DEFAULT NULL, - --longitude of the center of the map when it\'s loaded - "initial_longitude" DOUBLE PRECISION DEFAULT NULL, - --latitude of the center of the map when it\'s loaded - "initial_latitude" DOUBLE PRECISION DEFAULT NULL, - --altitude of the center of the map when it\'s loaded - "initial_altitude" DOUBLE PRECISION DEFAULT NULL, - --Group that owns the map - "group_id" INTEGER NOT NULL default 0 -); - --- ----------------------------------------------------- --- Table "tgis_map_has_tgis_map_connection" --- ----------------------------------------------------- ---Table to asociate a connection to a gis map -CREATE TABLE "tgis_map_has_tgis_map_connection" ( - --reference to tgis_map - "tgis_map_id_tgis_map" INTEGER NOT NULL REFERENCES "tgis_map"("id_tgis_map") ON DELETE CASCADE ON UPDATE NO ACTION, - --reference to tgis_map_connection - "tgis_map_connection_id_tmap_connection" INTEGER NOT NULL REFERENCES "tgis_map_connection" ("id_tmap_connection") ON DELETE CASCADE ON UPDATE NO ACTION, - --Last Modification Time of the Connection - "modification_time" TIMESTAMP without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP, - --Flag to mark the default map connection of a map - "default_map_connection" SMALLINT NOT NULL default 0, - PRIMARY KEY ("tgis_map_id_tgis_map", "tgis_map_connection_id_tmap_connection") -); -CREATE INDEX "tgis_map_has_tgis_map_connection_map_tgis_map_id_tgis_map_idx" ON "tgis_map_has_tgis_map_connection"("tgis_map_id_tgis_map"); -CREATE INDEX "tgis_map_has_tgis_map_connection_map_tgis_map_connection_id_tmap_connection_idx" ON "tgis_map_has_tgis_map_connection"("tgis_map_connection_id_tmap_connection"); ---This function is for to tranlate "ON UPDATE CURRENT_TIMESTAMP" of MySQL. - --It is in only one line because the parser of Pandora installer execute the code at the end with ; -CREATE OR REPLACE FUNCTION update_tgis_map_has_tgis_map_connection_modification_time() RETURNS TRIGGER AS $$ BEGIN NEW.modification_time = now(); RETURN NEW; END; $$ language 'plpgsql'; -CREATE TRIGGER trigger_tgis_map_has_tgis_map_connection_modification_time BEFORE UPDATE ON tgis_map_has_tgis_map_connection FOR EACH ROW EXECUTE PROCEDURE update_tgis_map_has_tgis_map_connection_modification_time(); - --- ----------------------------------------------------- --- Table "tgis_map_layer" --- ----------------------------------------------------- ---Table containing information about the map layers -CREATE TABLE "tgis_map_layer" ( - --table id - "id_tmap_layer" SERIAL NOT NULL PRIMARY KEY, - --Name of the layer - "layer_name" VARCHAR(45) NOT NULL, - --True if the layer must be shown - "view_layer" SMALLINT NOT NULL default 1, - --Number of order of the layer in the layer stack, bigger means upper on the stack.\n - "layer_stack_order" SMALLINT NOT NULL default 0, - --reference to the map containing the layer - "tgis_map_id_tgis_map" INTEGER NOT NULL default 0 REFERENCES "tgis_map"("id_tgis_map") ON DELETE CASCADE ON UPDATE NO ACTION, - --reference to the group shown in the layer - "tgrupo_id_grupo" BIGINT NOT NULL -); -CREATE INDEX "tgis_map_layer_id_tmap_layer_idx" ON "tgis_map_layer"("id_tmap_layer"); - - --- ----------------------------------------------------- --- Table "tgis_map_layer_has_tagente" --- ----------------------------------------------------- ---Table to define wich agents are shown in a layer -CREATE TABLE "tgis_map_layer_has_tagente" ( - "tgis_map_layer_id_tmap_layer" INTEGER NOT NULL REFERENCES "tgis_map_layer"("id_tmap_layer") ON DELETE CASCADE ON UPDATE NO ACTION, - "tagente_id_agente" INTEGER NOT NULL REFERENCES "tagente"("id_agente") ON DELETE CASCADE ON UPDATE NO ACTION, - PRIMARY KEY ("tgis_map_layer_id_tmap_layer", "tagente_id_agente") -); -CREATE INDEX "tgis_map_layer_has_tagente_tgis_map_layer_id_tmap_layer_idx" ON "tgis_map_layer_has_tagente"("tgis_map_layer_id_tmap_layer"); -CREATE INDEX "tgis_map_layer_has_tagente_tagente_id_agente_idx" ON "tgis_map_layer_has_tagente"("tagente_id_agente"); - ------------------------------------------------------------------------- --- Table "tgroup_stat" ------------------------------------------------------------------------- ---Table to store global system stats per group -CREATE TABLE "tgroup_stat" ( - "id_group" INTEGER NOT NULL default 0 PRIMARY KEY, - "modules" INTEGER NOT NULL default 0, - "normal" INTEGER NOT NULL default 0, - "critical" INTEGER NOT NULL default 0, - "warning" INTEGER NOT NULL default 0, - "unknown" INTEGER NOT NULL default 0, - "non-init" INTEGER NOT NULL default 0, - "alerts" INTEGER NOT NULL default 0, - "alerts_fired" INTEGER NOT NULL default 0, - "agents" INTEGER NOT NULL default 0, - "agents_unknown" INTEGER NOT NULL default 0, - "utimestamp" INTEGER NOT NULL default 0 -); - ------------------------------------------------------------------------- --- Table "tnetwork_map" ------------------------------------------------------------------------- -CREATE TABLE "tnetwork_map" ( - "id_networkmap" SERIAL NOT NULL PRIMARY KEY, - "id_user" VARCHAR(60) NOT NULL, - "name" VARCHAR(100) NOT NULL, - "type" VARCHAR(20) NOT NULL, - "layout" VARCHAR(20) NOT NULL, - "nooverlap" SMALLINT NOT NULL default 0, - "simple" SMALLINT NOT NULL default 0, - "regenerate" SMALLINT NOT NULL default 1, - "font_size" INTEGER NOT NULL default 12, - "id_group" INTEGER NOT NULL default 0, - "id_module_group" INTEGER NOT NULL default 0, - "id_policy" INTEGER NOT NULL default 0, - "depth" VARCHAR(20) NOT NULL, - "only_modules_with_alerts" SMALLINT NOT NULL default 0, - "hide_policy_modules" SMALLINT NOT NULL default 0, - "zoom" DOUBLE PRECISION default 1, - "distance_nodes" DOUBLE PRECISION default 2.5, - "center" INTEGER NOT NULL default 0, - "contracted_nodes" TEXT, - "show_snmp_modules" SMALLINT NOT NULL default 0, - "text_filter" VARCHAR(100) DEFAULT '', - "dont_show_subgroups" INTEGER NOT NULL default 0, - "pandoras_children" INTEGER NOT NULL default 0, - "show_modules" INTEGER NOT NULL default 0, - "show_groups" INTEGER NOT NULL default 0, - "id_agent" INTEGER NOT NULL default 0, - "server_name" VARCHAR(100) NOT NULL, - "show_modulegroup" INTEGER NOT NULL default 0, - "l2_network" SMALLINT NOT NULL default 0, - "id_tag" INTEGER default 0, - "store_group" INTEGER default 0 -); - ------------------------------------------------------------------------- --- Table "tsnmp_filter" ------------------------------------------------------------------------- -CREATE TABLE "tsnmp_filter" ( - "id_snmp_filter" SERIAL NOT NULL PRIMARY KEY, - "description" varchar(255) default '', - "filter" varchar(255) default '' -); - ------------------------------------------------------------------------- --- Table "tagent_custom_fields" ------------------------------------------------------------------------- -CREATE TABLE "tagent_custom_fields" ( - "id_field" SERIAL NOT NULL PRIMARY KEY, - "name" varchar(45) NOT NULL default '', - "display_on_front" SMALLINT NOT NULL default 0 -); - --- --------------------------------------------------------------------- --- Table "tagent_custom_data" --- --------------------------------------------------------------------- -CREATE TABLE "tagent_custom_data" ( - "id_field" INTEGER NOT NULL REFERENCES tagent_custom_fields("id_field") ON UPDATE CASCADE ON DELETE CASCADE, - "id_agent" INTEGER NOT NULL REFERENCES tagente("id_agente") ON UPDATE CASCADE ON DELETE CASCADE, - "description" text default '', - PRIMARY KEY ("id_field", "id_agent") -); - --- --------------------------------------------------------------------- --- Table "ttag" --- --------------------------------------------------------------------- - -CREATE TABLE "ttag" ( - "id_tag" SERIAL NOT NULL PRIMARY KEY, - "name" VARCHAR(100) NOT NULL default '', - "description" text NOT NULL default '', - "url" text NOT NULL default '', - "email" text NULL, - "phone" text NULL -); - --- --------------------------------------------------------------------- --- Table "ttag_module" --- --------------------------------------------------------------------- - -CREATE TABLE "ttag_module" ( - "id_tag" INTEGER NOT NULL, - "id_agente_modulo" INTEGER NOT NULL DEFAULT 0, - "id_policy_module" INTEGER NOT NULL DEFAULT 0, - PRIMARY KEY (id_tag, id_agente_modulo) -); - -CREATE INDEX "ttag_module_id_ag_modulo_idx" ON "ttag_module"("id_agente_modulo"); - --- ----------------------------------------------------- --- Table "ttag_policy_module" --- ----------------------------------------------------- - -CREATE TABLE "ttag_policy_module" ( - "id_tag" INTEGER NOT NULL, - "id_policy_module" INTEGER NOT NULL DEFAULT 0, - PRIMARY KEY (id_tag, id_policy_module) -); - -CREATE INDEX "ttag_poli_mod_id_pol_mo_idx" ON "ttag_policy_module"("id_policy_module"); - --- ----------------------------------------------------- --- Table `tnetflow_filter` --- ----------------------------------------------------- -CREATE TABLE "tnetflow_filter" ( - "id_sg" SERIAL NOT NULL PRIMARY KEY, - "id_name" varchar(600) NOT NULL default '', - "id_group" INTEGER, - "ip_dst" TEXT NOT NULL, - "ip_src" TEXT NOT NULL, - "dst_port" TEXT NOT NULL, - "src_port" TEXT NOT NULL, - "router_ip" TEXT NOT NULL, - "advanced_filter" TEXT NOT NULL, - "filter_args" TEXT NOT NULL, - "aggregate" varchar(60), - "output" varchar(60) -); - --- ----------------------------------------------------- --- Table `tnetflow_report` --- ----------------------------------------------------- -CREATE TABLE "tnetflow_report" ( - "id_report" SERIAL NOT NULL PRIMARY KEY, - "id_name" varchar(150) NOT NULL default '', - "description" TEXT, - "id_group" INTEGER, - "server_name" TEXT -); - --- ----------------------------------------------------- --- Table `tnetflow_report_content` --- ----------------------------------------------------- -CREATE TABLE "tnetflow_report_content" ( - "id_rc" SERIAL NOT NULL PRIMARY KEY, - "id_report" INTEGER NOT NULL default 0 REFERENCES tnetflow_report("id_report") ON DELETE CASCADE, - "id_filter" INTEGER NOT NULL default 0 REFERENCES tnetflow_filter("id_sg") ON DELETE CASCADE, - "description" TEXT, - "date" BIGINT NOT NULL default 0, - "period" INTEGER NOT NULL default 0, - "max" INTEGER NOT NULL default 0, - "show_graph" varchar(60), - "order" INTEGER NOT NULL default 0 -); - --- --------------------------------------------------------------------- --- Table `tevent_filter` --- --------------------------------------------------------------------- -CREATE TABLE "tevent_filter" ( - "id_filter" SERIAL NOT NULL PRIMARY KEY, - "id_group_filter" INTEGER NOT NULL default 0, - "id_name" varchar(600) NOT NULL, - "id_group" INTEGER NOT NULL default 0, - "event_type" TEXT NOT NULL default '', - "severity" INTEGER NOT NULL default -1, - "status" INTEGER NOT NULL default -1, - "search" TEXT default '', - "text_agent" TEXT default '', - "id_agent" int(10) default 0, - "id_agent_module" int(10) default 0, - "pagination" INTEGER NOT NULL default 25, - "event_view_hr" INTEGER NOT NULL default 8, - "id_user_ack" TEXT, - "group_rep" INTEGER NOT NULL default 0, - "tag_with" text NOT NULL, - "tag_without" text NOT NULL, - "filter_only_alert" INTEGER NOT NULL default -1 -); - --- --------------------------------------------------------------------- --- Table `tpassword_history` --- --------------------------------------------------------------------- -CREATE TABLE "tpassword_history" ( - "id_pass" INTEGER NOT NULL PRIMARY KEY, - "id_user" varchar(60) NOT NULL, - "password" varchar(45) default NULL, - "date_begin" BIGINT NOT NULL default 0, - "date_end" BIGINT NOT NULL default 0 -); - --- ----------------------------------------------------- --- Table `tevent_response` --- ----------------------------------------------------- -CREATE TABLE "tevent_response" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "name" varchar(600) NOT NULL default '', - "description" TEXT, - "target" TEXT, - "type" varchar(60) NOT NULL, - "id_group" INTEGER NOT NULL default 0, - "modal_width" INTEGER NOT NULL DEFAULT 0, - "modal_height" INTEGER NOT NULL DEFAULT 0, - "new_window" INTEGER NOT NULL DEFAULT 0, - "params" TEXT -); - --- --------------------------------------------------------------------- --- Table "tcategory" --- --------------------------------------------------------------------- -CREATE TABLE "tcategory" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "name" varchar(600) NOT NULL default '' -); - --- ----------------------------------------------------- --- Table `tupdate_settings` --- ----------------------------------------------------- -CREATE TABLE "tupdate_settings" ( - "key" varchar(255) default '' PRIMARY KEY, - "value" varchar(255) default '' -); - --- ----------------------------------------------------- --- Table `tupdate_package` --- ----------------------------------------------------- -CREATE TABLE "tupdate_package"( - "id" SERIAL NOT NULL PRIMARY KEY, - "timestamp" TIMESTAMP without time zone default NULL, - "description" varchar(255) default '' -); - -CREATE TYPE type_tupdate_type AS ENUM ('code', 'db_data', 'db_schema', 'binary'); - --- ----------------------------------------------------- --- Table `tupdate` --- ----------------------------------------------------- -CREATE TABLE "tupdate" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "type" type_tupdate_type, - "id_update_package" INTEGER default 0 REFERENCES "tupdate_package"("id") ON UPDATE CASCADE ON DELETE CASCADE, - "filename" varchar(250) default '', - "checksum" varchar(250) default '', - "previous_checksum" varchar(250) default '', - "svn_version" INTEGER default 0, - "data" TEXT default '', - "data_rollback" TEXT default '', - "description" TEXT default '', - "db_table_name" varchar(140) default '', - "db_field_name" varchar(140) default '', - "db_field_value" varchar(1024) default '' -); - --- ----------------------------------------------------- --- Table `tupdate_journal` --- ----------------------------------------------------- -CREATE TABLE "tupdate_journal" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_update" INTEGER default 0 REFERENCES "tupdate"("id") ON UPDATE CASCADE ON DELETE CASCADE -); - --- --------------------------------------------------------------------- --- Table talert_snmp_action --- --------------------------------------------------------------------- -CREATE TABLE "talert_snmp_action" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_alert_snmp" INTEGER default 0, - "alert_type" INTEGER default 0, - "al_field1" TEXT default '', - "al_field2" TEXT default '', - "al_field3" TEXT default '', - "al_field4" TEXT default '', - "al_field5" TEXT default '', - "al_field6" TEXT default '', - "al_field7" TEXT default '', - "al_field8" TEXT default '', - "al_field9" TEXT default '', - "al_field10" TEXT default '', - "al_field11" TEXT default '', - "al_field12" TEXT default '', - "al_field13" TEXT default '', - "al_field14" TEXT default '', - "al_field15" TEXT default '', -); - --- --------------------------------------------------------------------- --- Table tsessions_php --- --------------------------------------------------------------------- -CREATE TABLE "tsessions_php" ( - "id_session" SERIAL NOT NULL PRIMARY KEY, - "last_active" INTEGER NOT NULL, - "data" TEXT default '' -); - --- --------------------------------------------------------------------- --- Table "tmap" --- --------------------------------------------------------------------- -CREATE TABLE IF NOT EXISTS "tmap" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_group" INTEGER default 0, - "id_user" varchar(250) default '', - "type" SMALLINT NOT NULL default 0, - "subtype" SMALLINT NOT NULL default 0, - "name" varchar(250) default '', - "description" TEXT, - "height" INTEGER UNSIGNED NOT NULL default 0, - "width" INTEGER UNSIGNED NOT NULL default 0, - "center_x" INTEGER NOT NULL default 0, - "center_y" INTEGER NOT NULL default 0, - "background" varchar(250) default '', - "background_options" INTEGER UNSIGNED NOT NULL default 0, - "source_period" INTEGER UNSIGNED NOT NULL default 0, - "source" SMALLINT NOT NULL default 0, - "source_data" varchar(250) default '', - "generation_method" SMALLINT NOT NULL default 0, - "generated" SMALLINT NOT NULL default 0, - "filter" TEXT -); - --- --------------------------------------------------------------------- --- Table "titem" --- --------------------------------------------------------------------- -CREATE TABLE IF NOT EXISTS "titem" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_map" INTEGER default 0, - "x" INTEGER UNSIGNED NOT NULL default 0, - "y" INTEGER UNSIGNED NOT NULL default 0, - "z" INTEGER UNSIGNED NOT NULL default 0, - "deleted" INTEGER(1) unsigned NOT NULL default 0, - "type" SMALLINT NOT NULL default 0, - "refresh" INTEGER UNSIGNED NOT NULL default 0, - "source" SMALLINT NOT NULL default 0, - "source_data" varchar(250) default '', - "options" TEXT, - "style" TEXT, - PRIMARY KEY("id") -); - --- --------------------------------------------------------------------- --- Table "trel_item" --- --------------------------------------------------------------------- -CREATE TABLE IF NOT EXISTS "trel_item" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_parent" INTEGER default 0, - "id_child" INTEGER default 0, - "id_parent_source_data" INTEGER default 0, - "id_child_source_data" INTEGER default 0, - "parent_type" SMALLINT NOT NULL default 0, - "child_type" SMALLINT NOT NULL default 0, - "id_item" INTEGER default 0, - "deleted" SMALLINT NOT NULL default 0 -); - --- ----------------------------------------------------- --- Table "tlocal_component" --- ----------------------------------------------------- --- tlocal_component is a repository of local modules for --- physical agents on Windows / Unix physical agents -CREATE TABLE "tlocal_component" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "name" TEXT NOT NULL, - "data" TEXT NOT NULL, - "description" varchar(1024) default NULL, - "id_os" INTEGER NOT NULL default 0, - "os_version" varchar(100) default '', - "id_network_component_group" INTEGER NOT NULL default 0 REFERENCES tnetwork_component_group("id_sg") ON DELETE CASCADE ON UPDATE CASCADE, - "type" SMALLINT NOT NULL default 6, - "max" INTEGER NOT NULL default 0, - "min" INTEGER NOT NULL default 0, - "module_interval" INTEGER NOT NULL default 0, - "id_module_group" INTEGER NOT NULL default 0, - "history_data" INTEGER default '1', - "min_warning" DOUBLE PRECISION default NULL, - "max_warning" DOUBLE PRECISION default NULL, - "str_warning" TEXT default '', - "min_critical" DOUBLE PRECISION default NULL, - "max_critical" DOUBLE PRECISION default NULL, - "str_critical" TEXT default '', - "min_ff_event" INTEGER NOT NULL default 0, - "post_process" DOUBLE PRECISION default NULL, - "unit" TEXT default '', - "wizard_level" type_tlocal_component_wizard_level default 'nowizard', - "macros" TEXT default '', - "critical_instructions" TEXT default '', - "warning_instructions" TEXT default '', - "unknown_instructions" TEXT default '', - "critical_inverse" SMALLINT default 0 NOT NULL, - "warning_inverse" SMALLINT default 0 NOT NULL, - "id_category" INTEGER NOT NULL default 0, - "tags" TEXT default '', - "disabled_types_event" TEXT default '', - "min_ff_event_normal" INTEGER default 0, - "min_ff_event_warning" INTEGER default 0, - "min_ff_event_critical" INTEGER default 0, - "dynamic_interval" INTEGER default 0, - "dynamic_max" INTEGER default 0, - "dynamic_min" INTEGER default 0, - "dynamic_next" INTEGER default 0 NOT NULL, - "dynamic_two_tailed" SMALLINT default 0, - "each_ff" SMALLINT default 0, - "ff_timeout" INTEGER default 0 -); - - --- ----------------------------------------------------- --- Table "tpolicy_modules" --- ----------------------------------------------------- -CREATE TABLE "tpolicy_modules" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_policy" INTEGER NOT NULL default 0, - "configuration_data" TEXT NOT NULL, - "id_tipo_modulo" SMALLINT NOT NULL default 0, - "description" varchar(1024) NOT NULL default '', - "name" varchar(200) NOT NULL default '', - "unit" TEXT default '', - "max" BIGINT NOT NULL default 0, - "min" BIGINT NOT NULL default 0, - "module_interval" INTEGER NOT NULL default 0, - "tcp_port" INTEGER NOT NULL default 0, - "tcp_send" text default '', - "tcp_rcv" text default '', - "snmp_community" varchar(100) default '', - "snmp_oid" varchar(255) default '0', - "id_module_group" INTEGER NOT NULL default 0, - "flag" SMALLINT NOT NULL default 0, - "id_module" INTEGER NOT NULL default 0, - "disabled" SMALLINT NOT NULL default 0, - "id_export" SMALLINT NOT NULL default 0, - "plugin_user" text default '', - "plugin_pass" text default '', - "plugin_parameter" text, - "id_plugin" INTEGER NOT NULL default 0, - "post_process" DOUBLE PRECISION default NULL, - "prediction_module" BIGINT NOT NULL default 0, - "max_timeout" INTEGER NOT NULL default 0, - "max_retries" INTEGER NOT NULL default 0, - "custom_id" varchar(255) default '', - "history_data" SMALLINT NOT NULL default 1, - "min_warning" DOUBLE PRECISION default 0, - "max_warning" DOUBLE PRECISION default 0, - "str_warning" text default '', - "min_critical" DOUBLE PRECISION default 0, - "max_critical" DOUBLE PRECISION default 0, - "str_critical" text default '', - "min_ff_event" INTEGER NOT NULL default 0, - "custom_string_1" text default '', - "custom_string_2" text default '', - "custom_string_3" text default '', - "custom_integer_1" INTEGER NOT NULL default 0, - "custom_integer_2" INTEGER NOT NULL default 0, - "pending_delete" SMALLINT NOT NULL default 0, - "critical_instructions" TEXT default '', - "warning_instructions" TEXT default '', - "unknown_instructions" TEXT default '', - "critical_inverse" SMALLINT default 0 NOT NULL, - "warning_inverse" SMALLINT default 0 NOT NULL, - "id_category" INTEGER NOT NULL default 0, - "module_ff_interval" INTEGER NOT NULL default 0, - "quiet" SMALLINT NOT NULL default 0, - "cron_interval" varchar(100) default '', - "macros" text default '', - "disabled_types_event" TEXT default '', - "module_macros" TEXT default '', - "min_ff_event_normal" INTEGER default 0, - "min_ff_event_warning" INTEGER default 0, - "min_ff_event_critical" INTEGER default 0, - "each_ff" SMALLINT default 0, - "ff_timeout" INTEGER default 0, - "dynamic_interval" INTEGER default 0, - "dynamic_max" INTEGER default 0, - "dynamic_min" INTEGER default 0, - "dynamic_next" INTEGER NOT NULL default 0, - "dynamic_two_tailed" INTEGER default 0 -); -CREATE UNIQUE INDEX "tpolicy_modules_id_policy_name_idx" ON "tpolicy_modules"("id_policy", "name"); -CREATE INDEX "tpolicy_modules_id_policy_idx" ON "tpolicy_modules"("id_policy"); - - --- ----------------------------------------------------- --- Table "tpolicies" --- ----------------------------------------------------- --- 'status' could be 0 (without changes, updated), 1 (needy update only database) or 2 (needy update database and conf files) -CREATE TABLE "tpolicies" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "name" text NOT NULL default '', - "description" varchar(255) NOT NULL default '', - "id_group" INTEGER NOT NULL default 0, - "status" INTEGER NOT NULL default 0 -); - - --- ----------------------------------------------------- --- Table "tpolicy_alerts" --- ----------------------------------------------------- -CREATE TABLE "tpolicy_alerts" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_policy" INTEGER NOT NULL default 0 REFERENCES tpolicies("id") ON DELETE CASCADE ON UPDATE CASCADE, - "id_policy_module" INTEGER NOT NULL default 0, - "id_alert_template" INTEGER NOT NULL default 0 REFERENCES talert_templates("id") ON DELETE CASCADE ON UPDATE CASCADE, - "name_extern_module" TEXT NOT NULL default '', - "disabled" SMALLINT NOT NULL default 0, - "standby" SMALLINT NOT NULL default 0, - "pending_delete" SMALLINT NOT NULL default 0 -); - - --- ----------------------------------------------------- --- Table "tpolicy_agents" --- ----------------------------------------------------- -CREATE TABLE "tpolicy_agents" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_policy" INTEGER NOT NULL default 0, - "id_agent" INTEGER NOT NULL default 0, - "policy_applied" SMALLINT NOT NULL default 0, - "pending_delete" SMALLINT NOT NULL default 0, - "last_apply_utimestamp" INTEGER NOT NULL default 0 -); -CREATE UNIQUE INDEX "tpolicy_agents_id_policy_id_agent_idx" ON "tpolicy_agents"("id_policy", "id_agent"); - - --- ----------------------------------------------------- --- Table "tdashboard" --- ----------------------------------------------------- -CREATE TABLE "tdashboard" ( - "id" BIGSERIAL NOT NULL PRIMARY KEY, - "name" varchar(60) NOT NULL default '', - "id_user" varchar(60) NOT NULL default '', - "id_group" INTEGER NOT NULL default 0, - "active" SMALLINT NOT NULL default 0, - "cells" text default '' -); - - --- ----------------------------------------------------- --- Table "twidget" --- ----------------------------------------------------- -CREATE TABLE "twidget" ( - "id" BIGSERIAL NOT NULL PRIMARY KEY, - "class_name" varchar(60) NOT NULL default '', - "unique_name" varchar(60) NOT NULL default '', - "description" text NOT NULL default '', - "options" text NOT NULL default '', - "page" varchar(120) NOT NULL default '' -); - - --- ----------------------------------------------------- --- Table "twidget_dashboard" --- ----------------------------------------------------- -CREATE TABLE "twidget_dashboard" ( - "id" BIGSERIAL NOT NULL PRIMARY KEY, - "options" text NOT NULL default '', - "order" INTEGER NOT NULL default 0, - "id_dashboard" BIGINT NOT NULL default 0 REFERENCES tdashboard("id") ON DELETE CASCADE ON UPDATE CASCADE, - "id_widget" BIGINT NOT NULL default 0, - "prop_width" DOUBLE PRECISION NOT NULL default 0.32, - "prop_height" DOUBLE PRECISION NOT NULL default 0.32, -); - - --- ----------------------------------------------------- --- Table "tmodule_inventory" --- ----------------------------------------------------- -CREATE TABLE "tmodule_inventory" ( - "id_module_inventory"SERIAL NOT NULL PRIMARY KEY, - "id_os" INTEGER default NULL REFERENCES tconfig_os("id_os") ON UPDATE CASCADE ON DELETE CASCADE, - "name" varchar(100) default '', - "description" varchar(100) default '', - "interpreter" varchar(100) default '', - "data_format" varchar(100) default '', - "code" BYTEA NOT NULL -); - - --- --------------------------------------------------------------------- --- Table "tagent_module_inventory" --- --------------------------------------------------------------------- -CREATE TABLE "tagent_module_inventory" ( - "id_agent_module_inventory" SERIAL NOT NULL PRIMARY KEY, - "id_agente" INTEGER NOT NULL REFERENCES tagente("id_agente") ON UPDATE CASCADE ON DELETE CASCADE, - "id_module_inventory" INTEGER NOT NULL REFERENCES tmodule_inventory("id_module_inventory") ON UPDATE CASCADE ON DELETE CASCADE, - "target" varchar(100) default '', - "interval" INTEGER NOT NULL default 3600, - "username" varchar(100) default '', - "password" varchar(100) default '', - "data" BYTEA NOT NULL, - "timestamp" TIMESTAMP without time zone default '1970-01-01 00:00:00', - "utimestamp" INTEGER NOT NULL default 0, - "flag" SMALLINT NOT NULL default 1, - "id_policy_module_inventory" INTEGER NOT NULL default 0 -); - - --- ----------------------------------------------------- --- Table "tagente_datos_inventory" --- ----------------------------------------------------- -CREATE TABLE "tagente_datos_inventory" ( - "id_agent_module_inventory" SERIAL NOT NULL, - "data" BYTEA NOT NULL, - "utimestamp" INTEGER NOT NULL default 0, - "timestamp" TIMESTAMP without time zone default '1970-01-01 00:00:00' -); -CREATE UNIQUE INDEX "tagente_datos_inventory_id" ON "tagente_datos_inventory"("id_agent_module_inventory"); -CREATE UNIQUE INDEX "tagente_datos_inventory_ut" ON "tagente_datos_inventory"("utimestamp"); - - --- ----------------------------------------------------- --- Table "ttrap_custom_values" --- ----------------------------------------------------- -CREATE TABLE "ttrap_custom_values" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "oid" varchar(255) NOT NULL default '', - "custom_oid" varchar(255) NOT NULL default '', - "text" varchar(255) default '', - "description" varchar(255) default '', - "severity" INTEGER NOT NULL default 2 -); - - --- ----------------------------------------------------- --- Table "tmetaconsole_setup" --- ----------------------------------------------------- ---Table to store metaconsole sources -CREATE TABLE "tmetaconsole_setup" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "server_name" text default '', - "server_url" text default '', - "dbuser" text default '', - "dbpass" text default '', - "dbhost" text default '', - "dbport" text default '', - "dbname" text default '', - "auth_token" text default '', - "id_group" INTEGER NOT NULL default 0, - "api_password" text default '', - "disabled" SMALLINT NOT NULL default 0, - "last_event_replication" BIGINT NOT NULL default 0 -); - - --- ----------------------------------------------------- --- Table "tprofile_view" --- ----------------------------------------------------- ---Table to define by each profile defined in Pandora, to which sec/page has access independently of its ACL (for showing in the console or not). By default have access to all pages allowed by ACL, if forbidden here, then pages are not shown. -CREATE TABLE "tprofile_view" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_profile" INTEGER NOT NULL default 0, - "sec" text default '', - "sec2" text default '' -); - - --- --------------------------------------------------------------------- --- Table "tservice" --- --------------------------------------------------------------------- ---Table to define services to monitor -CREATE TABLE "tservice" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "name" varchar(100) NOT NULL default '', - "description" text NOT NULL default '', - "id_group" INTEGER NOT NULL default 0, - "critical" DOUBLE PRECISION NOT NULL default 0, - "warning" DOUBLE PRECISION NOT NULL default 0, - "service_interval" DOUBLE PRECISION NOT NULL default 0, - "service_value" DOUBLE PRECISION NOT NULL default 0, - "status" INTEGER NOT NULL default -1, - "utimestamp" INTEGER NOT NULL default 0, - "auto_calculate" INTEGER NOT NULL default 1, - "id_agent_module" INTEGER NOT NULL default 0, - "sla_interval" DOUBLE PRECISION NOT NULL default 0, - "sla_id_module" INTEGER NOT NULL default 0, - "sla_value_id_module" INTEGER NOT NULL default 0, - "sla_limit" DOUBLE PRECISION NOT NULL default 100, - "id_template_alert_warning" INTEGER NOT NULL default 0, - "id_template_alert_critical" INTEGER NOT NULL default 0, - "id_template_alert_unknown" INTEGER NOT NULL default 0, - "id_template_alert_critical_sla" INTEGER NOT NULL default 0 -); - - --- ----------------------------------------------------- --- Table "tservice_element" --- ----------------------------------------------------- ---Table to define the modules and the weights of the modules that define a service -CREATE TABLE "tservice_element" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_service" INTEGER NOT NULL, - "weight_ok" DOUBLE PRECISION NOT NULL default 0, - "weight_warning" DOUBLE PRECISION NOT NULL default 0, - "weight_critical" DOUBLE PRECISION NOT NULL default 0, - "weight_unknown" DOUBLE PRECISION NOT NULL default 0, - "description" text NOT NULL default '', - "id_agente_modulo" INTEGER NOT NULL default 0, - "id_agent" INTEGER NOT NULL default 0, - "id_service_child" INTEGER NOT NULL default 0, - "id_server_meta" INTEGER NOT NULL default 0 -); - - --- --------------------------------------------------------------------- --- Table "tcollection" --- --------------------------------------------------------------------- -CREATE TABLE "tcollection" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "name" varchar(100) NOT NULL default '', - "short_name" varchar(100) NOT NULL default '', - "id_group" INTEGER NOT NULL default 0, - "description" TEXT, - "status" INTEGER NOT NULL default 0 -); --- status: 0 - Not apply --- status: 1 - Applied - - --- ----------------------------------------------------- --- Table "tpolicy_collections" --- ----------------------------------------------------- -CREATE TABLE "tpolicy_collections" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_policy" INTEGER NOT NULL default 0 REFERENCES "tpolicies" ("id") ON DELETE CASCADE ON UPDATE CASCADE, - "id_collection" INTEGER NOT NULL default 0 REFERENCES "tcollection" ("id") ON DELETE CASCADE ON UPDATE CASCADE, - "pending_delete" SMALLINT NOT NULL default 0 -); - - --- ----------------------------------------------------- --- Table "tpolicy_alerts_actions" --- ----------------------------------------------------- -CREATE TABLE "tpolicy_alerts_actions" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_policy_alert" INTEGER NOT NULL default 0 REFERENCES "tpolicy_alerts" ("id") ON DELETE CASCADE ON UPDATE CASCADE, - "id_alert_action" INTEGER NOT NULL default 0 REFERENCES "talert_actions" ("id") ON DELETE CASCADE ON UPDATE CASCADE, - "fires_min" INTEGER default 0, - "fires_max" INTEGER default 0 -); - --- --------------------------------------------------------------------- --- Table "tpolicy_plugins" --- --------------------------------------------------------------------- -CREATE TABLE "tpolicy_plugins" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_policy" INTEGER NOT NULL default 0, - "plugin_exec" TEXT default '', - "pending_delete" SMALLINT NOT NULL default 0 -); - --- ----------------------------------------------------- --- Table "tsesion_extended" --- ----------------------------------------------------- -CREATE TABLE "tsesion_extended" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_sesion" INTEGER NOT NULL, - "extended_info" TEXT default '', - "hash" varchar(255) default '' -); - - --- ----------------------------------------------------- --- Table `tskin` --- ----------------------------------------------------- -CREATE TABLE "tskin" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "name" TEXT NOT NULL DEFAULT '', - "relative_path" TEXT NOT NULL DEFAULT '', - "description" text NOT NULL DEFAULT '', - "disabled" INTEGER NOT NULL default 0 -); - - --- --------------------------------------------------------------------- --- Table `tpolicy_queue` --- --------------------------------------------------------------------- -CREATE TABLE "tpolicy_queue" ( - "id" BIGSERIAL NOT NULL PRIMARY KEY, - "id_policy" INTEGER NOT NULL default 0, - "id_agent" INTEGER NOT NULL default 0, - "operation" varchar(15) NOT NULL default '', - "progress" INTEGER NOT NULL default 0, - "end_utimestamp" INTEGER NOT NULL default 0, - "priority" INTEGER NOT NULL default 0 -); - - --- ----------------------------------------------------- --- Table `tmodule_synth` --- ----------------------------------------------------- -CREATE TYPE type_tmodule_synth_operation AS ENUM ('ADD', 'SUB', 'DIV', 'MUL', 'AVG', 'NOP'); -CREATE TABLE "tmodule_synth" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_agent_module_source" INTEGER NOT NULL default 0, - "id_agent_module_target" INTEGER NOT NULL default 0 REFERENCES tagente_modulo("id_agente_modulo") ON UPDATE CASCADE ON DELETE CASCADE, - "fixed_value" float default NULL, - "operation" type_tmodule_synth_operation NOT NULL default 'NOP', - "order" INTEGER NOT NULL default 0 -); - - --- ----------------------------------------------------- --- Table `tevent_rule` --- ----------------------------------------------------- -CREATE TYPE type_tevent_rule_operation AS ENUM ('NOP', 'AND','OR','XOR','NAND','NOR','NXOR'); -CREATE TYPE type_tevent_rule_event_type AS ENUM ('','unknown','alert_fired','alert_recovered','alert_ceased','alert_manual_validation','recon_host_detected','system','error','new_agent','going_up_warning','going_up_critical','going_down_warning','going_down_normal','going_down_critical','going_up_normal'); -CREATE TABLE "tevent_rule" ( - "id_event_rule" SERIAL NOT NULL PRIMARY KEY, - "id_event_alert" INTEGER NOT NULL, - "operation" type_tevent_rule_operation NOT NULL, - "order" INTEGER default '0', - "window" INTEGER NOT NULL default '0', - "count" INTEGER NOT NULL default '1', - "agent" text default '', - "id_usuario" VARCHAR(100) NOT NULL default '', - "id_grupo" INTEGER NOT NULL default '0', - "evento" text NOT NULL default '', - "event_type" type_tevent_rule_event_type default 'unknown', - "module" text default '', - "alert" text default '', - "criticity" INTEGER NOT NULL default '0', - "user_comment" text NOT NULL, - "id_tag" INTEGER NOT NULL default '0', - "name" text default '' -); -CREATE INDEX "tevent_rule_id_event_alert_idx" ON "tevent_rule"("id_event_alert"); - - --- ----------------------------------------------------- --- Table `tevent_alert` --- ----------------------------------------------------- -CREATE TYPE type_tevent_alert_mode AS ENUM ('PASS','DROP'); -CREATE TYPE type_tevent_alert_group_by AS ENUM ('','id_agente','id_agentmodule','id_alert_am','id_grupo'); -CREATE TABLE "tevent_alert" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "name" text default '', - "description" text, - "order" INTEGER default 0, - "mode" type_tevent_alert_mode, - "field1" text NOT NULL default '', - "field2" text NOT NULL default '', - "field3" text NOT NULL default '', - "field4" text NOT NULL default '', - "field5" text NOT NULL default '', - "field6" text NOT NULL default '', - "field7" text NOT NULL default '', - "field8" text NOT NULL default '', - "field9" text NOT NULL default '', - "field10" text NOT NULL default '', - "time_threshold" INTEGER NOT NULL default '0', - "max_alerts" INTEGER NOT NULL default '1', - "min_alerts" INTEGER NOT NULL default '0', - "time_from" time default '00:00:00', - "time_to" time default '00:00:00', - "monday" INTEGER default 1, - "tuesday" INTEGER default 1, - "wednesday" INTEGER default 1, - "thursday" INTEGER default 1, - "friday" INTEGER default 1, - "saturday" INTEGER default 1, - "sunday" INTEGER default 1, - "recovery_notify" INTEGER default '0', - "field2_recovery" text NOT NULL default '', - "field3_recovery" text NOT NULL, - "id_group" INTEGER NULL default 0, - "internal_counter" INTEGER default '0', - "last_fired" BIGINT NOT NULL default '0', - "last_reference" BIGINT NOT NULL default '0', - "times_fired" INTEGER NOT NULL default '0', - "disabled" INTEGER default '0', - "standby" INTEGER default '0', - "priority" INTEGER default '0', - "force_execution" INTEGER default '0', - "group_by" type_tevent_alert_group_by default '' -); - --- ----------------------------------------------------- --- Table `tevent_alert_action` --- ----------------------------------------------------- -CREATE TABLE "tevent_alert_action" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_event_alert" INTEGER NOT NULL REFERENCES tevent_alert("id") ON DELETE CASCADE ON UPDATE CASCADE, - "id_alert_action" INTEGER NOT NULL REFERENCES talert_actions("id") ON DELETE CASCADE ON UPDATE CASCADE, - "fires_min" INTEGER default 0, - "fires_max" INTEGER default 0, - "module_action_threshold" INTEGER NOT NULL default '0', - "last_execution" BIGINT NOT NULL default '0' -); - - --- --------------------------------------------------------------------- --- Table `tpolicy_modules_inventory` --- --------------------------------------------------------------------- -CREATE TABLE "tpolicy_modules_inventory" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_policy" INTEGER NOT NULL REFERENCES tpolicies("id") ON UPDATE CASCADE ON DELETE CASCADE, - "id_module_inventory" INTEGER NOT NULL REFERENCES tmodule_inventory("id_module_inventory") ON UPDATE CASCADE ON DELETE CASCADE, - "interval" INTEGER NOT NULL default 3600, - "username" varchar(100) default '', - "password" varchar(100) default '', - "pending_delete" SMALLINT NOT NULL default 0 -); - - --- ----------------------------------------------------- --- Table `tnetworkmap_enterprise` --- ----------------------------------------------------- -CREATE TABLE "tnetworkmap_enterprise" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "name" varchar(500) default '', - "id_group" INTEGER NOT NULL default 0, - "options" TEXT default '' -); - - --- ----------------------------------------------------- --- Table `tnetworkmap_enterprise_nodes` --- ----------------------------------------------------- -CREATE TABLE "tnetworkmap_enterprise_nodes" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_networkmap_enterprise" INTEGER NOT NULL REFERENCES tnetworkmap_enterprise("id") ON UPDATE CASCADE ON DELETE CASCADE, - "x" INTEGER NOT NULL default 0, - "y" INTEGER NOT NULL default 0, - "z" INTEGER NOT NULL default 0, - "id_agent" INTEGER NOT NULL default 0, - "id_module" INTEGER NOT NULL default 0, - "id_agent_module" INTEGER NOT NULL default 0, - "parent" INTEGER default 0, - "options" text default '', - "deleted" text default '', - "state" TEXT default '' -); - - --- ----------------------------------------------------- --- Table `tnetworkmap_ent_rel_nodes` (Before `tnetworkmap_enterprise_relation_nodes`) --- ----------------------------------------------------- -CREATE TABLE "tnetworkmap_ent_rel_nodes" ( - "id" SERIAL NOT NULL PRIMARY KEY, - "id_networkmap_enterprise" INTEGER NOT NULL REFERENCES tnetworkmap_enterprise("id") ON UPDATE CASCADE ON DELETE CASCADE, - "parent" INTEGER default 0, - "parent_type" varchar(30) default 'node', - "child" INTEGER default 0, - "child_type" varchar(30) default 'node', - "deleted" text default '' -); - - --- ----------------------------------------------------- --- Table `treport_template` --- ----------------------------------------------------- -CREATE TABLE "treport_template" ( - "id_report" SERIAL NOT NULL PRIMARY KEY, - "id_user" varchar(100) NOT NULL default '', - "name" varchar(150) NOT NULL default '', - "description" TEXT NOT NULL, - "private" SMALLINT NOT NULL default 0, - "id_group" SMALLINT NULL default NULL, - "custom_logo" varchar(200) default NULL, - "header" TEXT default NULL, - "first_page" TEXT default NULL, - "footer" TEXT default NULL, - "custom_font" varchar(200) default NULL, - "metaconsole" SMALLINT DEFAULT 0 -); - - --- ----------------------------------------------------- --- Table `treport_content_template` --- ----------------------------------------------------- -CREATE TABLE "treport_content_template" ( - "id_rc" SERIAL NOT NULL PRIMARY KEY, - "id_report" INTEGER NOT NULL default 0 REFERENCES treport_template("id_report") ON DELETE CASCADE, - "id_gs" INTEGER NULL default NULL, - "text_agent_module" TEXT default NULL, - "type" varchar(30) default 'simple_graph', - "period" INTEGER NOT NULL default 0, - "order" INTEGER NOT NULL default 0, - "description" TEXT, - "text_agent" TEXT default '', - "text" TEXT default NULL, - "external_source" TEXT default NULL, - "treport_custom_sql_id" INTEGER default 0, - "header_definition" TEXT default NULL, - "column_separator" TEXT default NULL, - "line_separator" TEXT default NULL, - "time_from" TIME without time zone default '00:00:00', - "time_to" TIME without time zone default '00:00:00', - "monday" SMALLINT NOT NULL default 1, - "tuesday" SMALLINT NOT NULL default 1, - "wednesday" SMALLINT NOT NULL default 1, - "thursday" SMALLINT NOT NULL default 1, - "friday" SMALLINT NOT NULL default 1, - "saturday" SMALLINT NOT NULL default 1, - "sunday" SMALLINT NOT NULL default 1, - "only_display_wrong" SMALLINT not null default 0, - "top_n" INTEGER NOT NULL default 0, - "top_n_value" INTEGER NOT NULL default 10, - "exception_condition" INTEGER NOT NULL default 0, - "exception_condition_value" DOUBLE PRECISION NOT NULL default 0, - "show_resume" INTEGER NOT NULL default 0, - "order_uptodown" INTEGER NOT NULL default 0, - "show_graph" INTEGER NOT NULL default 0, - "group_by_agent" INTEGER NOT NULL default 0, - "style" TEXT NOT NULL DEFAULT '', - "id_group" INTEGER NOT NULL DEFAULT 0, - "id_module_group" INTEGER NOT NULL DEFAULT 0, - "server_name" text default '', - "exact_match" SMALLINT default 0, - "module_names" TEXT default NULL, - "module_free_text" TEXT default NULL, - "each_agent" SMALLINT NOT NULL default 1 -); - - --- ----------------------------------------------------- --- Table `treport_content_sla_com_temp` --- ----------------------------------------------------- -CREATE TABLE "treport_content_sla_com_temp" ( - "id" SERIAL NOT NULL, - "id_report_content" INTEGER NOT NULL REFERENCES treport_content_template("id_rc") ON DELETE CASCADE, - "text_agent" TEXT default '', - "text_agent_module" TEXT default '', - "sla_max" DOUBLE PRECISION NOT NULL default 0, - "sla_min" DOUBLE PRECISION NOT NULL default 0, - "sla_limit" DOUBLE PRECISION NOT NULL default 0, - "server_name" TEXT default '', - "exact_match" SMALLINT default 0 -); - - --- ----------------------------------------------------- --- Table `treport_content_item_temp` (treport_content_item_template) --- ----------------------------------------------------- -CREATE TABLE "treport_content_item_temp" ( - "id" SERIAL NOT NULL, - "id_report_content" INTEGER NOT NULL REFERENCES treport_content_template("id_rc") ON DELETE CASCADE, - "text_agent" TEXT default '', - "text_agent_module" TEXT default '', - "server_name" TEXT default '', - "exact_match" SMALLINT default 0, - "operation" TEXT -); - - --- ----------------------------------------------------- --- Table `tgraph_template` --- ----------------------------------------------------- -CREATE TABLE "tgraph_template" ( - "id_graph_template" SERIAL NOT NULL PRIMARY KEY, - "id_user" TEXT NOT NULL default '', - "name" TEXT NOT NULL default '', - "description" TEXT NOT NULL default '', - "period" INTEGER NOT NULL default 0, - "width" SMALLINT NOT NULL default 0, - "height" SMALLINT NOT NULL default 0, - "private" SMALLINT NOT NULL default 0, - "events" SMALLINT NOT NULL default 0, - "stacked" SMALLINT NOT NULL default 0, - "id_group" INTEGER NOT NULL default 0 - ); - - --- ----------------------------------------------------- --- Table `tgraph_source_template` --- ----------------------------------------------------- -CREATE TABLE "tgraph_source_template" ( - "id_gs_template" SERIAL NOT NULL PRIMARY KEY, - "id_template" INTEGER NOT NULL default 0, - "agent" TEXT NOT NULL default '', - "module" TEXT NOT NULL default '', - "period" INTEGER NOT NULL default 0, - "weight" DOUBLE PRECISION default 2.0, - "exact_match" SMALLINT NOT NULL default 0 - ); - --- --------------------------------------------------------------------- --- Table `tmetaconsole_event` --- --------------------------------------------------------------------- -CREATE TYPE type_tmetaconsole_event_event AS ENUM ('going_unknown','unknown','alert_fired','alert_recovered','alert_ceased','alert_manual_validation','recon_host_detected','system','error','new_agent','going_up_warning','going_up_critical','going_down_warning','going_down_normal','going_down_critical','going_up_normal', 'configuration_change'); -CREATE TABLE "tmetaconsole_event" ( - "id_evento" BIGSERIAL NOT NULL PRIMARY KEY, - "id_source_event" BIGSERIAL NOT NULL, - "id_agente" INTEGER NOT NULL default 0, - "agent_name" varchar(600) NOT NULL default '', - "id_usuario" varchar(100) NOT NULL default '0', - "id_grupo" INTEGER NOT NULL default 0, - "group_name" text NOT NULL default '', - "estado" INTEGER NOT NULL default 0, - "timestamp" TIMESTAMP without time zone default '1970-01-01 00:00:00', - "evento" text NOT NULL default '', - "utimestamp" BIGINT NOT NULL default 0, - "event_type" type_tmetaconsole_event_event default 'unknown', - "id_agentmodule" INTEGER NOT NULL default 0, - "module_name" TEXT NOT NULL default '', - "id_alert_am" INTEGER NOT NULL default 0, - "alert_template_name" text default '', - "criticity" INTEGER NOT NULL default 0, - "user_comment" text NOT NULL, - "tags" text NOT NULL, - "source" text NOT NULL default '', - "id_extra" text NOT NULL default '', - "critical_instructions" TEXT default '', - "warning_instructions" TEXT default '', - "unknown_instructions" TEXT default '', - "owner_user" varchar(100) NOT NULL default '0', - "ack_utimestamp" BIGINT NOT NULL default 0, - "server_id" INTEGER NOT NULL, - "custom_data" text NOT NULL -); -CREATE INDEX "tmetaconsole_event_id_1_idx" ON "tmetaconsole_event"("id_agente", "id_evento"); -CREATE INDEX "tmetaconsole_event_id_agentmodule_idx" ON "tmetaconsole_event"("id_agentmodule"); -CREATE INDEX "tmetaconsole_event_server_id_idx" ON "tmetaconsole_event"("server_id"); -CREATE INDEX "tmetaconsole_event_id_grupo_idx" ON "tmetaconsole_event"("id_grupo"); -CREATE INDEX "tmetaconsole_event_criticity_idx" ON "tmetaconsole_event"("criticity"); -CREATE INDEX "tmetaconsole_event_estado_idx" ON "tmetaconsole_event"("estado"); - - --- --------------------------------------------------------------------- --- Table `tmetaconsole_event_history` --- --------------------------------------------------------------------- -CREATE TYPE type_tmetaconsole_event_event_h AS ENUM ('going_unknown','unknown','alert_fired','alert_recovered','alert_ceased','alert_manual_validation','recon_host_detected','system','error','new_agent','going_up_warning','going_up_critical','going_down_warning','going_down_normal','going_down_critical','going_up_normal', 'configuration_change'); -CREATE TABLE "tmetaconsole_event_history" ( - "id_evento" BIGSERIAL NOT NULL PRIMARY KEY, - "id_source_event" BIGSERIAL NOT NULL, - "id_agente" INTEGER NOT NULL default 0, - "agent_name" varchar(600) NOT NULL default '', - "id_usuario" varchar(100) NOT NULL default '0', - "id_grupo" INTEGER NOT NULL default 0, - "group_name" text NOT NULL default '', - "estado" INTEGER NOT NULL default 0, - "timestamp" TIMESTAMP without time zone default '1970-01-01 00:00:00', - "evento" text NOT NULL default '', - "utimestamp" BIGINT NOT NULL default 0, - "event_type" type_tmetaconsole_event_event_h default 'unknown', - "id_agentmodule" INTEGER NOT NULL default 0, - "module_name" TEXT NOT NULL default '', - "id_alert_am" INTEGER NOT NULL default 0, - "alert_template_name" text default '', - "criticity" INTEGER NOT NULL default 0, - "user_comment" text NOT NULL, - "tags" text NOT NULL, - "source" text NOT NULL default '', - "id_extra" text NOT NULL default '', - "critical_instructions" TEXT default '', - "warning_instructions" TEXT default '', - "unknown_instructions" TEXT default '', - "owner_user" varchar(100) NOT NULL default '0', - "ack_utimestamp" BIGINT NOT NULL default 0, - "server_id" INTEGER NOT NULL, - "custom_data" text NOT NULL -); -CREATE INDEX "tmetaconsole_event_h_id_1_idx" ON "tmetaconsole_event_history"("id_agente", "id_evento"); -CREATE INDEX "tmetaconsole_event_h_id_agentmodule_idx" ON "tmetaconsole_event_history"("id_agentmodule"); -CREATE INDEX "tmetaconsole_event_h_server_id_idx" ON "tmetaconsole_event_history"("server_id"); -CREATE INDEX "tmetaconsole_event_h_id_grupo_idx" ON "tmetaconsole_event_history"("id_grupo"); -CREATE INDEX "tmetaconsole_event_h_criticity_idx" ON "tmetaconsole_event_history"("criticity"); -CREATE INDEX "tmetaconsole_event_h_estado_idx" ON "tmetaconsole_event_history"("estado"); - --- --------------------------------------------------------------------- --- Table `tagent_module_log` --- --------------------------------------------------------------------- -CREATE TABLE "tagent_module_log" ( - "id_agent_module_log" SERIAL NOT NULL PRIMARY KEY, - "id_agent" INTEGER NOT NULL REFERENCES tagente("id_agente") ON UPDATE CASCADE ON DELETE CASCADE, - "source" TEXT, - "timestamp" TIMESTAMP without time zone default '1970-01-01 00:00:00', - "utimestamp" BIGINT NOT NULL default 0 -); - --- --------------------------------------------------------------------- --- Table `tevent_custom_field` --- --------------------------------------------------------------------- -CREATE TABLE "tevent_custom_field" ( - "id_group" INTEGER NOT NULL default 0, - "value" text NOT NULL default '' -); \ No newline at end of file