-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnconf_base.sql
218 lines (191 loc) · 67.1 KB
/
nconf_base.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
-- MySQL dump 10.13 Distrib 5.5.54, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: nconf_db
-- ------------------------------------------------------
-- Server version 5.5.54-0+deb8u1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `ConfigAttrs`
--
DROP TABLE IF EXISTS `ConfigAttrs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ConfigAttrs` (
`id_attr` int(10) unsigned NOT NULL AUTO_INCREMENT,
`attr_name` varchar(60) NOT NULL DEFAULT '',
`friendly_name` varchar(80) NOT NULL DEFAULT '',
`description` varchar(250) DEFAULT NULL,
`datatype` enum('text','password','select','assign_one','assign_many','assign_cust_order') NOT NULL DEFAULT 'text',
`max_length` int(11) DEFAULT NULL,
`poss_values` text,
`predef_value` varchar(1024) DEFAULT NULL,
`mandatory` enum('yes','no') NOT NULL DEFAULT 'no',
`ordering` int(11) NOT NULL DEFAULT '0',
`visible` enum('yes','no') NOT NULL DEFAULT 'yes',
`write_to_conf` enum('yes','no') NOT NULL DEFAULT 'yes',
`naming_attr` enum('yes','no') NOT NULL DEFAULT 'no',
`link_as_child` enum('yes','no') NOT NULL DEFAULT 'no',
`link_bidirectional` enum('yes','no') NOT NULL DEFAULT 'no',
`fk_show_class_items` int(10) unsigned DEFAULT NULL,
`fk_id_class` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id_attr`),
KEY `fk_show_class_items` (`fk_show_class_items`),
KEY `fk_id_class` (`fk_id_class`),
CONSTRAINT `ConfigAttrs_ibfk_1` FOREIGN KEY (`fk_show_class_items`) REFERENCES `ConfigClasses` (`id_class`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `ConfigAttrs_ibfk_2` FOREIGN KEY (`fk_id_class`) REFERENCES `ConfigClasses` (`id_class`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=236 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ConfigAttrs`
--
LOCK TABLES `ConfigAttrs` WRITE;
/*!40000 ALTER TABLE `ConfigAttrs` DISABLE KEYS */;
INSERT INTO `ConfigAttrs` VALUES (1,'server_name','server name',NULL,'text',255,'','','yes',1,'yes','no','yes','no','no',NULL,10),(6,'server_name','server name',NULL,'text',255,'','','yes',1,'yes','no','yes','no','no',NULL,11),(12,'icon_image_alt','OS description',NULL,'text',255,'','','yes',1,'yes','yes','yes','no','no',NULL,9),(13,'icon_image','icon image','img/logos/...','text',255,'','base/linux40.gif','no',2,'yes','yes','no','no','no',NULL,9),(14,'statusmap_image','statusmap image','img/logos/...','text',255,'','base/linux40.gd2','no',3,'yes','yes','no','no','no',NULL,9),(15,'host_name','hostname',NULL,'text',255,'','','yes',1,'yes','yes','yes','no','no',NULL,1),(16,'alias','alias','alias or FQDN','text',255,'','','no',2,'yes','yes','no','no','no',NULL,1),(17,'address','address','IP-address / DNS name','text',255,'','','yes',3,'yes','yes','no','no','no',NULL,1),(18,'os','OS','','assign_one',0,'','Linux','yes',4,'yes','no','no','no','no',9,1),(19,'check_period','check period','time period to run checks','assign_one',0,'','24x7','no',8,'yes','yes','no','no','no',7,1),(20,'notification_period','notification period','time period to alarm','assign_one',0,'','24x7','no',9,'yes','yes','no','no','no',7,1),(22,'contact_groups','contact groups','responsible group','assign_many',0,'','','no',12,'yes','yes','no','no','no',6,1),(23,'parents','parent hosts','','assign_many',0,'','','no',14,'yes','yes','no','no','no',1,1),(24,'notes','notes',NULL,'text',1024,'','','no',15,'yes','yes','no','no','no',NULL,1),(25,'notes_url','notes URL',NULL,'text',1024,'','','no',16,'yes','yes','no','no','no',NULL,1),(26,'monitored_by','monitored by','monitoring server (empty = not monitored)','assign_one',0,'','','no',6,'yes','no','no','no','no',10,1),(27,'hostgroup_name','hostgroup name',NULL,'text',255,'','','yes',1,'yes','yes','yes','no','no',NULL,2),(28,'alias','alias',NULL,'text',255,'','','yes',2,'yes','yes','no','no','no',NULL,2),(29,'members','assign host to hostgroup',NULL,'assign_many',0,'','','no',3,'yes','yes','no','yes','yes',1,2),(30,'command_name','check command name',NULL,'text',255,'','','yes',1,'yes','yes','yes','no','no',NULL,8),(31,'command_line','check command line',NULL,'text',1024,'','','yes',3,'yes','yes','no','no','no',NULL,8),(32,'timeperiod_name','timeperiod name',NULL,'text',255,'','','yes',1,'yes','yes','yes','no','no',NULL,7),(33,'alias','alias',NULL,'text',255,'','','yes',2,'yes','yes','no','no','no',NULL,7),(34,'sunday','sunday timeperiod','00:00-24:00','text',255,'','','no',3,'yes','yes','no','no','no',NULL,7),(35,'monday','monday timeperiod','00:00-24:00','text',255,'','','no',4,'yes','yes','no','no','no',NULL,7),(36,'tuesday','tuesday timeperiod','00:00-24:00','text',255,'','','no',5,'yes','yes','no','no','no',NULL,7),(37,'wednesday','wednesday timeperiod','00:00-24:00','text',255,'','','no',6,'yes','yes','no','no','no',NULL,7),(38,'thursday','thursday timeperiod','00:00-24:00','text',255,'','','no',7,'yes','yes','no','no','no',NULL,7),(39,'friday','friday timeperiod','00:00-24:00','text',255,'','','no',8,'yes','yes','no','no','no',NULL,7),(40,'saturday','saturday timeperiod','00:00-24:00','text',255,'','','no',9,'yes','yes','no','no','no',NULL,7),(47,'contact_name','contact name','username','text',255,'','','yes',1,'yes','yes','yes','no','no',NULL,5),(48,'alias','alias','firstname lastname','text',255,'','','yes',2,'yes','yes','no','no','no',NULL,5),(49,'host_notification_period','host notification period','host alarming timeperiod','assign_one',0,'','','no',3,'yes','yes','no','no','no',7,5),(50,'service_notification_period','service notification period','service alarming timeperiod','assign_one',0,'','','no',4,'yes','yes','no','no','no',7,5),(51,'host_notification_options','host notification options','possible values: d,u,r,f,[n]','text',20,'','d','no',5,'yes','yes','no','no','no',NULL,5),(52,'service_notification_options','service notification options','possible values: w,u,c,r,f,[n]','text',20,'','c','no',6,'yes','yes','no','no','no',NULL,5),(53,'host_notification_commands','host notification commands','default: notify-host-by-email','assign_many',0,'','notify-host-by-email','no',9,'yes','yes','no','no','no',13,5),(54,'service_notification_commands','service notification commands','default: notify-service-by-email','assign_many',0,'','notify-service-by-email','no',10,'yes','yes','no','no','no',13,5),(55,'email','e-mail address',NULL,'text',255,'','','yes',7,'yes','yes','no','no','no',NULL,5),(56,'pager','pager / phone nr.','(country code) + (prefix) + (number)','text',255,'','','no',8,'yes','yes','no','no','no',NULL,5),(57,'contactgroup_name','contactgroup name',NULL,'text',255,'','','yes',1,'yes','yes','yes','no','no',NULL,6),(58,'alias','alias',NULL,'text',255,'','','yes',2,'yes','yes','no','no','no',NULL,6),(59,'members','assign contact to contactgroup',NULL,'assign_many',0,'','','no',3,'yes','yes','no','yes','yes',5,6),(60,'service_description','service name',NULL,'text',255,'','','yes',1,'yes','yes','yes','no','no',NULL,3),(61,'check_command','check command',NULL,'assign_one',0,'','','yes',3,'yes','yes','no','no','no',8,3),(62,'host_name','assigned to host',NULL,'assign_one',0,'','','yes',4,'yes','yes','no','no','no',1,3),(63,'check_period','check period','time period to run checks','assign_one',0,'','24x7','no',5,'yes','yes','no','no','no',7,3),(64,'notification_period','notification period','time period to alarm','assign_one',0,'','','no',6,'yes','yes','no','no','no',7,3),(65,'contact_groups','contact groups','responsible group','assign_many',0,'','','no',8,'yes','yes','no','no','no',6,3),(67,'notes','notes',NULL,'text',1024,'','','no',9,'yes','yes','no','no','no',NULL,3),(68,'notes_url','notes URL',NULL,'text',1024,'','','no',10,'yes','yes','no','no','no',NULL,3),(69,'event_handler_enabled','event-handler enabled','','select',0,'0::1','0','no',23,'yes','yes','no','no','no',NULL,3),(70,'servicegroup_name','servicegroup name',NULL,'text',255,'','','yes',1,'yes','yes','yes','no','no',NULL,4),(71,'alias','alias',NULL,'text',255,'','','yes',2,'yes','yes','no','no','no',NULL,4),(72,'members','assign service to servicegroup',NULL,'assign_many',0,'','','no',3,'yes','yes','no','yes','yes',3,4),(73,'template_name','host preset name',NULL,'text',255,'','','yes',1,'yes','no','yes','no','no',NULL,12),(74,'command_name','host preset commands','auto-create services for a new host based on these checkcommands','assign_many',0,'','','no',3,'yes','no','no','yes','no',8,12),(75,'host-preset','host preset','predefined services / host-alive check','assign_one',0,'','linux-server','yes',5,'yes','no','no','no','no',12,1),(79,'check_params','params for check command',NULL,'text',1024,'','!','no',24,'yes','no','no','no','no',NULL,3),(81,'hostalive_check','host-alive check','','assign_one',0,'','check-host-alive','yes',2,'yes','yes','no','no','no',13,12),(86,'command_syntax','params description','short description of each parameter (comma separated, same order)','text',1024,'','','no',5,'yes','no','no','no','no',NULL,8),(87,'default_params','default command params','separated by \"!\"','text',1024,'','!','no',4,'yes','no','no','no','no',NULL,8),(91,'collector_check_freshness','check freshness (of collectors)','value is applied to \"check_ssh\" service on \"host is collector\" flagged hosts','select',0,'0::1','1','yes',2,'yes','no','no','no','no',NULL,11),(92,'collector_freshness_threshold','freshness threshold (of collectors)','value is applied to \"check_ssh\" service on \"host is collector\" flagged hosts; sets the time until service becomes \"stale\" (useful to verify connection between collectors and monitors)','text',5,'','900','yes',3,'yes','no','no','no','no',NULL,11),(93,'host_is_collector','host is collector','is this host a collector itself?','select',0,'no::yes','no','yes',7,'yes','no','no','no','no',NULL,1),(94,'command_param_count','amount of params','','select',0,'0::1::2::3::4::5::6::7::8::9::10','1','yes',6,'yes','no','no','no','no',NULL,8),(95,'user_password','user password','password for NConf & Nagios GUI','password',255,'','','no',11,'no','no','no','no','no',NULL,5),(96,'nc_permission','nconf permissions','defines the permissions in NConf','select',0,'no access::user::admin','user','no',12,'no','no','no','no','no',NULL,5),(97,'nagios_access','nagios access','defines access to the Nagios GUI','select',0,'enabled::disabled','enabled','no',13,'no','no','no','no','no',NULL,5),(98,'command_name','misc command name','','text',255,'','','yes',1,'yes','yes','yes','no','no',NULL,13),(99,'command_line','misc command line','','text',1024,'','','yes',2,'yes','yes','no','no','no',NULL,13),(101,'action_url','action URL','PNP URL (if installed)','select',0,'/pnp4nagios/graph?host=$HOSTNAME$','/pnp4nagios/graph?host=$HOSTNAME$','yes',17,'yes','yes','no','no','no',NULL,1),(102,'action_url','action URL','PNP URL (if installed)','select',0,'/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$','/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$','yes',11,'yes','yes','no','no','no',NULL,3),(103,'default_service_name','default service name','default name to use for new services','text',255,NULL,NULL,'no',2,'yes','no','no','no','no',NULL,8),(104,'notes','notes',NULL,'text',1024,NULL,NULL,'no',5,'yes','yes','no','no','no',NULL,2),(105,'notes_url','notes URL',NULL,'text',1024,NULL,NULL,'no',6,'yes','yes','no','no','no',NULL,2),(106,'notes','notes',NULL,'text',1024,NULL,NULL,'no',5,'yes','yes','no','no','no',NULL,4),(107,'notes_url','notes URL',NULL,'text',1024,NULL,NULL,'no',6,'yes','yes','no','no','no',NULL,4),(108,'name','template name','','text',255,'','','yes',1,'yes','yes','yes','no','no',NULL,14),(109,'host_name','host name','mandatory if \"register\" = 1','text',255,'','','no',2,'no','no','no','no','no',NULL,14),(110,'register','register','display this template as a host in Nagios','select',0,'0::1','0','yes',3,'no','yes','no','no','no',NULL,14),(111,'check_period','check period','time period to run checks','assign_one',0,'','','no',4,'yes','yes','no','no','no',7,14),(112,'notification_period','notification period','time period to alarm','assign_one',0,'','','no',5,'yes','yes','no','no','no',7,14),(113,'check_command','check command','host-alive check','assign_one',0,'','','no',6,'yes','yes','no','no','no',13,14),(114,'use','parent template(s)','parent template(s) to inherit from','assign_cust_order',0,'','','no',7,'yes','yes','no','no','no',14,14),(115,'contact_groups','contact groups','responsible group','assign_many',0,'','','no',8,'yes','yes','no','no','no',6,14),(116,'notes','notes',NULL,'text',1024,'','','no',9,'yes','yes','no','no','no',NULL,14),(117,'notes_url','notes URL',NULL,'text',1024,'','','no',10,'yes','yes','no','no','no',NULL,14),(118,'action_url','action URL','PNP URL (if installed)','select',0,'/pnp4nagios/graph?host=$HOSTNAME$','/pnp4nagios/graph?host=$HOSTNAME$','yes',11,'yes','yes','no','no','no',NULL,14),(119,'max_check_attempts','max check attempts','number of times to retry checking','text',4,'','','no',12,'yes','yes','no','no','no',NULL,14),(120,'check_interval','check interval','number of [min.] between regularly scheduled checks','text',4,'','','no',13,'yes','yes','no','no','no',NULL,14),(121,'retry_interval','retry interval','number of [min.] to wait before scheduling a re-check','text',4,'','','no',14,'yes','yes','no','no','no',NULL,14),(122,'notification_interval','notification interval','number of [min.] to wait before re-notifying a contact','text',4,'','','no',16,'yes','yes','no','no','no',NULL,14),(123,'notification_options','notification options','possible values: d,u,r,f,s,[n]','text',20,'','','no',17,'yes','yes','no','no','no',NULL,14),(124,'active_checks_enabled','active checking','do active checking of hosts','select',0,'0::1','','no',18,'yes','yes','no','no','no',NULL,14),(125,'passive_checks_enabled','passive checking','do passive checking of hosts','select',0,'0::1','','no',19,'yes','yes','no','no','no',NULL,14),(126,'notifications_enabled','notification enabled','send notifications for hosts','select',0,'0::1','','no',20,'yes','yes','no','no','no',NULL,14),(127,'check_freshness','check freshness','check age of last check results','select',0,'0::1','','no',21,'yes','yes','no','no','no',NULL,14),(128,'freshness_threshold','freshness threshold','age threshold in [sec.]','text',5,'','','no',22,'yes','yes','no','no','no',NULL,14),(129,'name','template name','','text',255,'','','yes',1,'yes','yes','yes','no','no',NULL,15),(130,'service_description','service name','mandatory if \"register\" = 1','text',255,'','','no',2,'no','no','no','no','no',NULL,15),(131,'register','register','display this template as a service in Nagios','select',0,'0::1','0','yes',3,'no','yes','no','no','no',NULL,15),(132,'check_period','check period','time period to run checks','assign_one',0,'','','no',4,'yes','yes','no','no','no',7,15),(133,'notification_period','notification period','time period to alarm','assign_one',0,'','','no',5,'yes','yes','no','no','no',7,15),(134,'use','parent template(s)','parent template(s) to inherit from','assign_cust_order',0,'','','no',6,'yes','yes','no','no','no',15,15),(135,'contact_groups','contact groups','responsible group','assign_many',0,'','','no',7,'yes','yes','no','no','no',6,15),(136,'notes','notes',NULL,'text',1024,'','','no',8,'yes','yes','no','no','no',NULL,15),(137,'notes_url','notes URL',NULL,'text',1024,'','','no',9,'yes','yes','no','no','no',NULL,15),(138,'action_url','action URL','PNP URL (if installed)','select',0,'/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$','/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$','yes',10,'yes','yes','no','no','no',NULL,15),(139,'max_check_attempts','max check attempts','number of times to retry checking','text',4,'','','no',11,'yes','yes','no','no','no',NULL,15),(140,'check_interval','check interval','number of [min.] between regularly scheduled checks','text',4,'','','no',12,'yes','yes','no','no','no',NULL,15),(141,'retry_interval','retry interval','number of [min.] to wait before scheduling a re-check','text',4,'','','no',13,'yes','yes','no','no','no',NULL,15),(142,'notification_interval','notification interval','number of [min.] to wait before re-notifying a contact','text',4,'','','no',15,'yes','yes','no','no','no',NULL,15),(143,'notification_options','notification options','possible values: w,u,c,r,f,s,[n]','text',20,'','','no',16,'yes','yes','no','no','no',NULL,15),(144,'active_checks_enabled','active checking','do active checking of services','select',0,'0::1','','no',17,'yes','yes','no','no','no',NULL,15),(145,'passive_checks_enabled','passive checking','do passive checking of services','select',0,'0::1','','no',18,'yes','yes','no','no','no',NULL,15),(146,'notifications_enabled','notification enabled','send notifications for services','select',0,'0::1','','no',19,'yes','yes','no','no','no',NULL,15),(147,'check_freshness','check freshness','check age of last check results','select',0,'0::1','','no',20,'yes','yes','no','no','no',NULL,15),(148,'freshness_threshold','freshness threshold','age threshold in [sec.]','text',5,'','','no',21,'yes','yes','no','no','no',NULL,15),(149,'use','host template(s)','host template(s) to inherit properties from','assign_cust_order',NULL,NULL,NULL,'no',10,'yes','yes','no','no','no',14,1),(150,'use','service template(s)','service template(s) to inherit properties from','assign_cust_order',NULL,NULL,NULL,'no',7,'yes','yes','no','no','no',15,3),(151,'host_template','host template(s)','add the following template(s) to all hosts monitored by this server','assign_cust_order',NULL,NULL,'Default_collector_server','no',2,'yes','no','no','no','no',14,10),(152,'service_template','service template(s)','add the following template(s) to all services monitored by this server','assign_cust_order',NULL,NULL,'Default_collector_server','no',3,'yes','no','no','no','no',15,10),(153,'stale_service_command','stale service command','\"dummy\" command to run for stale services','assign_one',NULL,NULL,'service_is_stale','no',4,'yes','no','no','no','no',13,11),(154,'host_template','host template(s)','add the following template(s) to all hosts monitored by this server','assign_cust_order',NULL,NULL,'Default_monitor_server','no',5,'yes','no','no','no','no',14,11),(155,'service_template','service template(s)','add the following template(s) to all services monitored by this server','assign_cust_order',NULL,NULL,'Default_monitor_server','no',6,'yes','no','no','no','no',15,11),(156,'host_template','host template(s)','add the following template(s) to all hosts linked with this timeperiod','assign_cust_order',NULL,NULL,'','no',10,'yes','no','no','no','no',14,7),(157,'service_template','service template(s)','add the following template(s) to all services linked with this timeperiod','assign_cust_order',NULL,NULL,'','no',11,'yes','no','no','no','no',15,7),(158,'dependency_name','dependency name','description for the dependency definition','text',1024,'','','yes',1,'yes','no','yes','no','no',NULL,16),(159,'execution_failure_criteria','execution failure criteria','possible values: o,d,u,p,n','text',20,'','','no',2,'yes','yes','no','no','no',NULL,16),(160,'notification_failure_criteria','notification failure criteria','possible values: o,d,u,p,n','text',20,'','','no',3,'yes','yes','no','no','no',NULL,16),(161,'dependency_period','dependency time period','restrict dependency to this time period','assign_one',0,'','','no',4,'yes','yes','no','no','no',7,16),(162,'inherits_parent','inherit dependencies','inherit dependencies from host(s) depended on','select',0,'0::1','0','no',5,'yes','yes','no','no','no',NULL,16),(163,'host_name','master host(s)','host(s) being depended upon','assign_many',0,'','','no',6,'yes','yes','no','no','no',1,16),(164,'hostgroup_name','master hostgroup(s)','hostgroup(s) being depended upon','assign_many',0,'','','no',7,'yes','yes','no','no','no',2,16),(165,'dependent_host_name','dependent host(s)','the dependent host(s)','assign_many',0,'','','no',8,'yes','yes','no','no','no',1,16),(166,'dependent_hostgroup_name','dependent hostgroup(s)','the dependent hostgroup(s)','assign_many',0,'','','no',9,'yes','yes','no','no','no',2,16),(167,'dependency_name','dependency name','description for the dependency definition','text',1024,'','','yes',1,'yes','no','yes','no','no',NULL,17),(168,'execution_failure_criteria','execution failure criteria','possible values: o,w,u,c,p,n','text',20,'','','no',2,'yes','yes','no','no','no',NULL,17),(169,'notification_failure_criteria','notification failure criteria','possible values: o,w,u,c,p,n','text',20,'','','no',3,'yes','yes','no','no','no',NULL,17),(170,'dependency_period','dependency time period','restrict dependency to this time period','assign_one',0,'','','no',4,'yes','yes','no','no','no',7,17),(171,'inherits_parent','inherit dependencies','inherit dependencies from service(s) depended on','select',0,'0::1','0','no',5,'yes','yes','no','no','no',NULL,17),(172,'service_description','master service(s)','service(s) being depended upon','assign_many',0,'','','yes',6,'yes','yes','no','no','no',3,17),(173,'dependent_service_description','dependent service(s)','the dependent service(s)','assign_many',0,'','','yes',7,'yes','yes','no','no','no',3,17),(174,'service_enabled','service enabled','enable / disable this service','select',NULL,'yes::no','yes','yes',2,'yes','no','no','no','no',NULL,3),(175,'hostgroup_members','assign hostgroup to hostgroup','','assign_many',0,'','','no',4,'yes','yes','no','yes','no',2,2),(176,'servicegroup_members','assign servicegroup to servicegroup','','assign_many',0,'','','no',4,'yes','yes','no','yes','no',4,4),(177,'contactgroup_members','assign contactgroup to contactgroup','','assign_many',0,'','','no',4,'yes','yes','no','yes','no',6,6),(178,'service_template','default service template(s)','add the following template(s) to all advanced-/services linked with this checkcommand (linked templates are not visible in the GUI because they are linked when the config is generated)','assign_cust_order',NULL,NULL,'','no',7,'yes','no','no','no','no',15,8),(179,'default_service_dependency','default command to depend upon','make all services using the current command dependent on services on the same host using this command selected here','assign_one',NULL,NULL,'','no',8,'yes','no','no','no','no',8,8),(180,'dependency_execution_failure_criteria','execution_failure_criteria for dependency','the \'execution_failure_criteria\' value to use for the dependency; possible values: o,w,u,c,p,[n]','text',20,'','','no',9,'yes','no','no','no','no',NULL,8),(181,'dependency_notification_failure_criteria','notification_failure_criteria for dependency','the \'notification_failure_criteria\' value to use for the dependency; possible values: o,w,u,c,p,[n]','text',20,'','','no',10,'yes','no','no','no','no',NULL,8),(182,'advanced_service_name','advanced service name','NConf internal service name','text',255,'','','yes',1,'yes','no','yes','no','no',NULL,18),(183,'service_description','service description','Nagios specific service description','text',255,'','','yes',2,'yes','yes','no','no','no',NULL,18),(184,'check_command','check command','','assign_one',0,'','','yes',3,'yes','yes','no','no','no',8,18),(185,'check_period','check period','time period to run checks','assign_one',0,'','','no',4,'yes','yes','no','no','no',7,18),(186,'notification_period','notification period','time period to alarm','assign_one',0,'','','no',5,'yes','yes','no','no','no',7,18),(187,'host_name','assign advanced-service to host','','assign_many',0,'','','no',6,'yes','yes','no','no','no',1,18),(188,'hostgroup_name','assign advanced-service to hostgroup','','assign_many',0,'','','no',7,'yes','yes','no','no','yes',2,18),(189,'servicegroups','assign advanced-service to servicegroup','','assign_many',0,'','','no',8,'yes','yes','no','no','yes',4,18),(190,'use','service template(s)','parent template(s) to inherit from','assign_cust_order',0,'','','no',9,'yes','yes','no','no','no',15,18),(191,'contact_groups','contact groups','responsible group','assign_many',0,'','','no',10,'yes','yes','no','no','no',6,18),(192,'notes','notes','','text',1024,'','','no',11,'yes','yes','no','no','no',NULL,18),(193,'notes_url','notes URL','','text',1024,'','','no',12,'yes','yes','no','no','no',NULL,18),(194,'action_url','action URL','PNP URL (if installed)','select',0,'/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$','/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$','yes',13,'yes','yes','no','no','no',NULL,18),(195,'max_check_attempts','max check attempts','number of times to retry checking','text',4,'','','no',14,'yes','yes','no','no','no',NULL,18),(196,'check_interval','check interval','number of [min.] between regularly scheduled checks','text',4,'','','no',15,'yes','yes','no','no','no',NULL,18),(197,'retry_interval','retry interval','number of [min.] to wait before scheduling a re-check','text',4,'','','no',16,'yes','yes','no','no','no',NULL,18),(198,'first_notification_delay','first notification delay','number of [min.] to wait before sending the first notification','text',4,'','','no',17,'yes','yes','no','no','no',NULL,18),(199,'notification_interval','notification interval','number of [min.] to wait before re-notifying a contact','text',4,'','','no',18,'yes','yes','no','no','no',NULL,18),(200,'notification_options','notification options','possible values: w,u,c,r,f,s,[n]','text',20,'','','no',19,'yes','yes','no','no','no',NULL,18),(201,'active_checks_enabled','active checking','do active checking of services','select',0,'0::1','','no',20,'yes','yes','no','no','no',NULL,18),(202,'passive_checks_enabled','passive checking','do passive checking of services','select',0,'0::1','','no',21,'yes','yes','no','no','no',NULL,18),(203,'notifications_enabled','notification enabled','send notifications for services','select',0,'0::1','','no',22,'yes','yes','no','no','no',NULL,18),(204,'check_freshness','check freshness','check age of last check results','select',0,'0::1','','no',23,'yes','yes','no','no','no',NULL,18),(205,'freshness_threshold','freshness threshold','age threshold in [sec.]','text',5,'','','no',24,'yes','yes','no','no','no',NULL,18),(206,'check_params','params for check command','','text',1024,'','!','no',25,'yes','no','no','no','no',NULL,18),(207,'max_check_attempts','max check attempts','number of times to retry checking','text',4,'','','no',18,'yes','yes','no','no','no',NULL,1),(208,'check_interval','check interval','number of [min.] between regularly scheduled checks','text',4,'','','no',19,'yes','yes','no','no','no',NULL,1),(209,'retry_interval','retry interval','number of [min.] to wait before scheduling a re-check','text',4,'','','no',20,'yes','yes','no','no','no',NULL,1),(210,'first_notification_delay','first notification delay','number of [min.] to wait before sending the first notification','text',4,'','','no',21,'yes','yes','no','no','no',NULL,1),(211,'notification_interval','notification interval','number of [min.] to wait before re-notifying a contact','text',4,'','','no',22,'yes','yes','no','no','no',NULL,1),(212,'notification_options','notification options','possible values: d,u,r,f,s,[n]','text',20,'','','no',23,'yes','yes','no','no','no',NULL,1),(213,'active_checks_enabled','active checking','do active checking of hosts','select',0,'0::1','','no',24,'yes','yes','no','no','no',NULL,1),(214,'passive_checks_enabled','passive checking','do passive checking of hosts','select',0,'0::1','','no',25,'yes','yes','no','no','no',NULL,1),(215,'notifications_enabled','notification enabled','send notifications for hosts','select',0,'0::1','','no',26,'yes','yes','no','no','no',NULL,1),(216,'check_freshness','check freshness','check age of last check results','select',0,'0::1','','no',27,'yes','yes','no','no','no',NULL,1),(217,'freshness_threshold','freshness threshold','age threshold in [sec.]','text',5,'','','no',28,'yes','yes','no','no','no',NULL,1),(218,'max_check_attempts','max check attempts','number of times to retry checking','text',4,'','','no',12,'yes','yes','no','no','no',NULL,3),(219,'check_interval','check interval','number of [min.] between regularly scheduled checks','text',4,'','','no',13,'yes','yes','no','no','no',NULL,3),(220,'retry_interval','retry interval','number of [min.] to wait before scheduling a re-check','text',4,'','','no',14,'yes','yes','no','no','no',NULL,3),(221,'first_notification_delay','first notification delay','number of [min.] to wait before sending the first notification','text',4,'','','no',15,'yes','yes','no','no','no',NULL,3),(222,'notification_interval','notification interval','number of [min.] to wait before re-notifying a contact','text',4,'','','no',16,'yes','yes','no','no','no',NULL,3),(223,'notification_options','notification options','possible values: w,u,c,r,f,s,[n]','text',20,'','','no',17,'yes','yes','no','no','no',NULL,3),(224,'active_checks_enabled','active checking','do active checking of services','select',0,'0::1','','no',18,'yes','yes','no','no','no',NULL,3),(225,'passive_checks_enabled','passive checking','do passive checking of services','select',0,'0::1','','no',19,'yes','yes','no','no','no',NULL,3),(226,'notifications_enabled','notification enabled','send notifications for services','select',0,'0::1','','no',20,'yes','yes','no','no','no',NULL,3),(227,'check_freshness','check freshness','check age of last check results','select',0,'0::1','','no',21,'yes','yes','no','no','no',NULL,3),(228,'freshness_threshold','freshness threshold','age threshold in [sec.]','text',5,'','','no',22,'yes','yes','no','no','no',NULL,3),(229,'first_notification_delay','first notification delay','number of [min.] to wait before sending the first notification','text',4,'','','no',15,'yes','yes','no','no','no',NULL,14),(230,'first_notification_delay','first notification delay','number of [min.] to wait before sending the first notification','text',4,'','','no',14,'yes','yes','no','no','no',NULL,15),(231,'register','register','','select',1,'0::1','0','yes',26,'yes','yes','no','no','no',NULL,18),(234,'_NRPE-collectorserver','_NRPE-collectorserver','','text',1024,'','','no',29,'yes','yes','no','no','no',NULL,1),(235,'event_handler','event_handler','','text',1024,'','','no',25,'yes','yes','no','no','no',NULL,3);
/*!40000 ALTER TABLE `ConfigAttrs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ConfigClasses`
--
DROP TABLE IF EXISTS `ConfigClasses`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ConfigClasses` (
`id_class` int(10) unsigned NOT NULL AUTO_INCREMENT,
`config_class` varchar(50) NOT NULL DEFAULT '',
`friendly_name` varchar(80) NOT NULL,
`nav_visible` enum('yes','no') NOT NULL DEFAULT 'yes',
`ordering` int(11) NOT NULL DEFAULT '0',
`grouping` varchar(30) NOT NULL,
`nav_links` varchar(512) NOT NULL,
`nav_privs` enum('user','admin') NOT NULL DEFAULT 'admin',
`class_type` enum('global','monitor','collector') NOT NULL DEFAULT 'global',
`out_file` varchar(50) DEFAULT NULL,
`nagios_object` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id_class`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ConfigClasses`
--
LOCK TABLES `ConfigClasses` WRITE;
/*!40000 ALTER TABLE `ConfigClasses` DISABLE KEYS */;
INSERT INTO `ConfigClasses` VALUES (1,'host','Hosts','yes',1,'','Show::overview.php?class=host;;Add::handle_item.php?item=host','user','collector','hosts.cfg','host'),(2,'hostgroup','Hostgroups','yes',2,'','Show::overview.php?class=hostgroup;;Add::handle_item.php?item=hostgroup','user','collector','hostgroups.cfg','hostgroup'),(3,'service','Services','yes',3,'','Show::overview.php?class=service;;Add::handle_item.php?item=service','user','collector','services.cfg','service'),(4,'servicegroup','Servicegroups','yes',5,'','Show::overview.php?class=servicegroup;;Add::handle_item.php?item=servicegroup','user','collector','servicegroups.cfg','servicegroup'),(5,'contact','Contacts','yes',2,'','Show::overview.php?class=contact;;Add::handle_item.php?item=contact','admin','global','contacts.cfg','contact'),(6,'contactgroup','Contactgroups','yes',3,'','Show::overview.php?class=contactgroup;;Add::handle_item.php?item=contactgroup','admin','global','contactgroups.cfg','contactgroup'),(7,'timeperiod','Timeperiods','yes',6,'','Show::overview.php?class=timeperiod;;Add::handle_item.php?item=timeperiod','admin','global','timeperiods.cfg','timeperiod'),(8,'checkcommand','Checkcommands','yes',4,'','Show::overview.php?class=checkcommand;;Add::handle_item.php?item=checkcommand','admin','global','checkcommands.cfg','command'),(9,'os','OS','yes',1,'','Show::overview.php?class=os;;Add::handle_item.php?item=os','admin','global',NULL,NULL),(10,'nagios-collector','Distrib. collectors','yes',2,'Nagios servers','Show::overview.php?class=nagios-collector;;Add::handle_item.php?item=nagios-collector','admin','global',NULL,NULL),(11,'nagios-monitor','Central monitors','yes',1,'Nagios servers','Show::overview.php?class=nagios-monitor;;Add::handle_item.php?item=nagios-monitor','admin','global',NULL,NULL),(12,'host-preset','Host presets','yes',1,'Advanced Items','Show::overview.php?class=host-preset;;Add::handle_item.php?item=host-preset','admin','global',NULL,NULL),(13,'misccommand','Misccommands','yes',5,'','Show::overview.php?class=misccommand;;Add::handle_item.php?item=misccommand','admin','global','misccommands.cfg','command'),(14,'host-template','Host templates','yes',2,'Advanced Items','Show::overview.php?class=host-template;;Add::handle_item.php?item=host-template','admin','global','host_templates.cfg','host'),(15,'service-template','Service templates','yes',3,'Advanced Items','Show::overview.php?class=service-template;;Add::handle_item.php?item=service-template','admin','global','service_templates.cfg','service'),(16,'host-dependency','Host deps.','yes',4,'Advanced Items','Show::overview.php?class=host-dependency;;Add::handle_item.php?item=host-dependency','admin','collector','host_dependencies.cfg','hostdependency'),(17,'service-dependency','Service deps.','yes',5,'Advanced Items','Show::overview.php?class=service-dependency;;Add::handle_item.php?item=service-dependency','admin','collector','service_dependencies.cfg','servicedependency'),(18,'advanced-service','Advanced Services','yes',4,'','Show::overview.php?class=advanced-service;;Add::handle_item.php?item=advanced-service','user','collector','advanced_services.cfg','service');
/*!40000 ALTER TABLE `ConfigClasses` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ConfigItems`
--
DROP TABLE IF EXISTS `ConfigItems`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ConfigItems` (
`id_item` int(10) unsigned NOT NULL AUTO_INCREMENT,
`fk_id_class` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id_item`),
KEY `fk_id_class` (`fk_id_class`),
CONSTRAINT `ConfigItems_ibfk_1` FOREIGN KEY (`fk_id_class`) REFERENCES `ConfigClasses` (`id_class`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6087 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ConfigItems`
--
LOCK TABLES `ConfigItems` WRITE;
/*!40000 ALTER TABLE `ConfigItems` DISABLE KEYS */;
INSERT INTO `ConfigItems` VALUES (5397,1),(5402,1),(6060,1),(5779,2),(5403,3),(5406,3),(5407,3),(5409,3),(5495,3),(5499,3),(6064,3),(6065,3),(6066,3),(6067,3),(6068,3),(6069,3),(6070,3),(6071,3),(6072,3),(6073,3),(6084,3),(6085,3),(6086,3),(5275,4),(5333,5),(5930,5),(5334,6),(5305,7),(5306,7),(5307,7),(5496,7),(5699,7),(5308,8),(5309,8),(5310,8),(5311,8),(5312,8),(5313,8),(5314,8),(5315,8),(5316,8),(5317,8),(5318,8),(5319,8),(5320,8),(5321,8),(5322,8),(5323,8),(5324,8),(5325,8),(5326,8),(5373,8),(5376,8),(5380,8),(5391,8),(5395,8),(5449,8),(5469,8),(5486,8),(5551,8),(5606,8),(5947,8),(6045,8),(6063,8),(6078,8),(5,9),(7,9),(2528,9),(5254,9),(5255,9),(5256,9),(5257,9),(5277,9),(5446,9),(5587,9),(1,10),(5231,12),(5258,12),(5259,12),(5276,12),(5388,12),(5553,12),(5605,12),(5951,12),(5296,13),(5327,13),(5328,13),(5331,13),(5371,13),(5372,13),(5387,13),(5552,13),(5603,13),(5703,13),(5704,13),(5756,13),(5757,13),(5948,13),(5964,13),(6059,13),(5297,14),(5298,14),(5335,14),(5336,14),(5337,14),(5338,14),(5339,14),(5950,14),(5301,15),(5302,15),(5348,15),(5349,15),(5459,15),(5535,15),(5949,15);
/*!40000 ALTER TABLE `ConfigItems` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ConfigValues`
--
DROP TABLE IF EXISTS `ConfigValues`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ConfigValues` (
`attr_value` varchar(1024) DEFAULT NULL,
`fk_id_attr` int(10) unsigned NOT NULL DEFAULT '0',
`fk_id_item` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`fk_id_attr`,`fk_id_item`),
KEY `fk_id_item` (`fk_id_item`),
CONSTRAINT `ConfigValues_ibfk_1` FOREIGN KEY (`fk_id_attr`) REFERENCES `ConfigAttrs` (`id_attr`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `ConfigValues_ibfk_2` FOREIGN KEY (`fk_id_item`) REFERENCES `ConfigItems` (`id_item`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ConfigValues`
--
LOCK TABLES `ConfigValues` WRITE;
/*!40000 ALTER TABLE `ConfigValues` DISABLE KEYS */;
INSERT INTO `ConfigValues` VALUES ('server',1,1),('Linux',12,5),('Windows',12,7),('Sun Solaris',12,2528),('HP Unix',12,5254),('Free BSD',12,5255),('Router',12,5256),('Switch',12,5257),('HP Printer',12,5277),('Generic',12,5446),('FortiOS',12,5587),('linux40.gif',13,5),('win40.gif',13,7),('sunlogo.gif',13,2528),('hpux.gif',13,5254),('freebsd40.gif',13,5255),('router40.gif',13,5256),('switch40.gif',13,5257),('hp-printer40.gif',13,5277),('',13,5446),('other/com.fortinet.forticlient_vpn.jpg',13,5587),('linux40.gd2',14,5),('win40.gd2',14,7),('sunlogo.gd2',14,2528),('hpux.gd2',14,5254),('freebsd40.gd2',14,5255),('router40.gd2',14,5256),('switch40.gd2',14,5257),('hp-printer40.gd2',14,5277),('',14,5446),('other/com.fortinet.forticlient_vpn.jpg',14,5587),('google.com',15,5397),('nagioscore',15,5402),('windowsserver',15,6060),('',16,5397),('nagioscore',16,5402),('windowsserver',16,6060),('google.com',17,5397),('127.0.0.1',17,5402),('192.168.55.101',17,6060),('',24,5397),('Servidor Principal de Monitoreo',24,5402),('',24,6060),('',25,5397),('',25,5402),('',25,6060),('nagios.servers',27,5779),('nagios.servers',28,5779),('check_local_disk',30,5308),('check_local_load',30,5309),('check_local_procs',30,5310),('check_local_users',30,5311),('check_local_swap',30,5312),('check_local_mrtgtraf',30,5313),('check_ftp',30,5314),('check_hpjd',30,5315),('check_snmp',30,5316),('check_http',30,5317),('check_ssh',30,5318),('check_dhcp',30,5319),('check_ping',30,5320),('check_pop',30,5321),('check_imap',30,5322),('check_smtp',30,5323),('check_tcp',30,5324),('check_udp',30,5325),('check_nt',30,5326),('check_nrpe',30,5373),('check_nrpe_diskfree',30,5376),('check_nrpe_mem',30,5380),('check_dns',30,5391),('check_domainexpiration',30,5395),('check_mobile_registered',30,5449),('check_host_mobile',30,5469),('check_snmp_netint',30,5486),('check_nrpe_ver',30,5551),('check_nrpe_remote',30,5606),('check_pasivo',30,5947),('check_smtps',30,6045),('check_nsclient',30,6063),('check_grpint',30,6078),('$USER1$/check_disk -w $ARG1$ -c $ARG2$ -p $ARG3$',31,5308),('$USER1$/check_load -w $ARG1$ -c $ARG2$',31,5309),('$USER1$/check_procs -w $ARG1$ -c $ARG2$ -s $ARG3$',31,5310),('$USER1$/check_users -w $ARG1$ -c $ARG2$',31,5311),('$USER1$/check_swap -w $ARG1$ -c $ARG2$',31,5312),('$USER1$/check_mrtgtraf -F $ARG1$ -a $ARG2$ -w $ARG3$ -c $ARG4$ -e $ARG5$',31,5313),('$USER1$/check_ftp -H $HOSTADDRESS$ $ARG1$',31,5314),('$USER1$/check_hpjd -H $HOSTADDRESS$ $ARG1$',31,5315),('$USER1$/check_snmp -H $HOSTADDRESS$ $ARG1$',31,5316),('$USER1$/check_http -H $HOSTADDRESS$ $ARG1$',31,5317),('$USER1$/check_ssh $ARG1$ $HOSTADDRESS$',31,5318),('$USER1$/check_dhcp $ARG1$',31,5319),('$USER1$/check_ping -H $HOSTADDRESS$ -w $ARG1$ -c $ARG2$ -p 5',31,5320),('$USER1$/check_pop -H $HOSTADDRESS$ $ARG1$',31,5321),('$USER1$/check_imap -H $HOSTADDRESS$ $ARG1$',31,5322),('$USER1$/check_smtp -H $HOSTADDRESS$ $ARG1$',31,5323),('$USER1$/check_tcp -H $HOSTADDRESS$ -p $ARG1$ $ARG2$',31,5324),('$USER1$/check_udp -H $HOSTADDRESS$ -p $ARG1$ $ARG2$',31,5325),('$USER1$/check_nt -H $HOSTADDRESS$ -p 12489 -v $ARG1$ $ARG2$',31,5326),('$USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$ $ARG2$',31,5373),('$USER1$/check_nrpe -H $HOSTADDRESS$ -c check_disk -a $ARG1$ $ARG2$ $ARG3$',31,5376),('$USER1$/check_nrpe -H $HOSTADDRESS$ -c check_mem -a $ARG1$ $ARG2$',31,5380),('$USER1$/check_dns -H $ARG1$ -s $ARG2$ -a $ARG3$ $ARG4$',31,5391),('$USER1$/other/check_expiration.sh -d $ARG1$ -w $ARG2$ -c $ARG3$',31,5395),('$USER1$/other/check_mobile_registered.sh -H $HOSTADDRESS$ -u $ARG1$ -p $ARG2$ -P $ARG3$',31,5449),('$USER1$/check_nrpe -H 104.152.212.216 -c check_host_mobile -a $ARG1$ $ARG2$ $ARG3$ $ARG4$',31,5469),('$USER1$/other/check_netint.pl -H $HOSTADDRESS$ -C $ARG1$ --label -Y -n \"$ARG2$\" -k $ARG7$ -w $ARG3$,$ARG4$ -c $ARG5$,$ARG6$',31,5486),('$USER1$/check_nrpe -H $HOSTADDRESS$',31,5551),('$USER1$/check_nrpe -u -t 60 -H $_HOSTNRPE-COLLECTORSERVER$ -c $ARG1$ -a $HOSTADDRESS$ $ARG2$',31,5606),('$USER1$/check_dummy $ARG1$ $ARG2$',31,5947),('$USER1$/check_smtp -H $ARG1$ $ARG2$',31,6045),('$USER1$/check_nrpe -H $HOSTADDRESS$ -d2 -c $ARG1$ $ARG2$',31,6063),('$USER1$/other/check_netint.pl -H $HOSTADDRESS$ -C $ARG1$ --label -Y -n \"$ARG2$\" -k -2 -I -o 1024 -w 0,0 -c 0,0',31,6078),('24x7',32,5305),('workhours',32,5306),('none',32,5307),('18x7',32,5496),('8x5',32,5699),('24 Hours A Day, 7 Days A Week',33,5305),('Normal Work Hours',33,5306),('No Time Is A Good Time',33,5307),('18x7',33,5496),('8x5',33,5699),('00:00-24:00',34,5305),('06:00-24:00',34,5496),('',34,5699),('00:00-24:00',35,5305),('09:00-17:00',35,5306),('06:00-24:00',35,5496),('8:00-17:00',35,5699),('00:00-24:00',36,5305),('09:00-17:00',36,5306),('06:00-24:00',36,5496),('8:00-17:00',36,5699),('00:00-24:00',37,5305),('09:00-17:00',37,5306),('06:00-24:00',37,5496),('8:00-17:00',37,5699),('00:00-24:00',38,5305),('09:00-17:00',38,5306),('06:00-24:00',38,5496),('8:00-17:00',38,5699),('00:00-24:00',39,5305),('09:00-17:00',39,5306),('06:00-24:00',39,5496),('8:00-17:00',39,5699),('00:00-24:00',40,5305),('06:00-24:00',40,5496),('',40,5699),('nagiosadmin',47,5333),('dorancemc',47,5930),('Nagios Admin',48,5333),('dorancemc',48,5930),('d,u,r,f,s',51,5333),('d,r',51,5930),('w,u,c,r,f,s',52,5333),('w,c,r',52,5930),('[email protected]',55,5333),('[email protected]',55,5930),('',56,5333),('',56,5930),('admins',57,5334),('Nagios Administrators',58,5334),('check_cpu',60,5403),('check_mem',60,5406),('check_uptime',60,5407),('debian_updates',60,5409),('check_users',60,5495),('check_load',60,5499),('check_cpu',60,6064),('check_disk',60,6065),('check_ifacenet',60,6066),('check_mem',60,6067),('check_nscp_version',60,6068),('check_uptime',60,6069),('check_os_version',60,6070),('check_updates',60,6071),('check_process_explorer',60,6072),('check_service_nscp',60,6073),('check_disk',60,6084),('check_ifacenet',60,6085),('check_npcd',60,6086),('',67,5403),('',67,5406),('',67,5407),('',67,5409),('',67,5495),('',67,5499),('',67,6064),('',67,6065),('',67,6066),('',67,6067),('',67,6068),('',67,6069),('',67,6070),('',67,6071),('',67,6072),('',67,6073),('',67,6084),('',67,6085),('',67,6086),('',68,5403),('',68,5406),('',68,5407),('',68,5409),('',68,5495),('',68,5499),('',68,6064),('',68,6065),('',68,6066),('',68,6067),('',68,6068),('',68,6069),('',68,6070),('',68,6071),('',68,6072),('',68,6073),('',68,6084),('',68,6085),('',68,6086),('0',69,5403),('0',69,5406),('0',69,5407),('0',69,5409),('0',69,5495),('0',69,5499),('0',69,6064),('0',69,6065),('0',69,6066),('0',69,6067),('0',69,6068),('0',69,6069),('0',69,6070),('0',69,6071),('0',69,6072),('0',69,6073),('0',69,6084),('0',69,6085),('0',69,6086),('web-services',70,5275),('Web Services',71,5275),('linux-server',73,5231),('windows-server',73,5258),('generic-switch',73,5259),('generic-printer',73,5276),('http-server',73,5388),('nrpe-server',73,5553),('host-remote_alive',73,5605),('preset-host-pasive',73,5951),('!check_cpu!',79,5403),('!90!95',79,5406),('!check_uptime!',79,5407),('!check_debian_apt!',79,5409),('!check_users!-a 2 5',79,5495),('!check_load!-a 0.5,0.6,0.9 1,1,1',79,5499),('!check_cpu!',79,6064),('!check_drivesize!',79,6065),('!check_network!',79,6066),('!check_memory!-a type=physical',79,6067),('!check_nscp_version!',79,6068),('!alias_uptime!',79,6069),('!check_os_version!',79,6070),('!check_updates!',79,6071),('!check_process!-a process=explorer.exe',79,6072),('!check_service!-a service=nscp',79,6073),('!check_disk!-a 20% 10%',79,6084),('!check_grpifacenet!-a 0,0,0,0,0,0 0,0,0,0,0,0',79,6085),('!check_procs_proc!-a 1:10 1:20 npcd',79,6086),('ARG1=% warning threshold, ARG2=% critical threshold, ARG3=path',86,5308),('ARG1=warning LOAD1,LOAD5,LOAD15, ARG2=critical LOAD1,LOAD5,LOAD15',86,5309),('ARG1=warning range,ARG2=critical range,ARG3=state',86,5310),('ARG1=warning users,ARG2=critical users',86,5311),('ARG1=warning free [% | bytes],ARG2=critical free [% | bytes]',86,5312),('ARG1=log_file,ARG2=[AVG | MAX],ARG3=warning_pair,ARG4=critical_pair,ARG5=expire minutes',86,5313),('ARG1=Multiple options - see command syntax',86,5314),('ARG1=Multiple options - see command syntax',86,5315),('ARG1=Multiple options - see command syntax',86,5316),('ARG1=Multiple options - see command syntax',86,5317),('ARG1=Multiple options - see command syntax',86,5318),('ARG1=Multiple options - see command syntax',86,5319),('ARG1=warning rta [ms],wpl [%],ARG2=critical rta [ms],wpl [%]',86,5320),('ARG1=Multiple options - see command syntax',86,5321),('ARG1=Multiple options - see command syntax',86,5322),('ARG1=Multiple options - see command syntax',86,5323),('ARG1=TCP port,ARG2=Multiple options - see command syntax',86,5324),('ARG1=UDP port,ARG2=Multiple options - see command syntax',86,5325),('ARG1=Variable,ARG2=Multiple options - see command syntax',86,5326),('ARG1=command,ARG2=arguments',86,5373),('ARG1=mount poing,ARG2=warning,ARG3=critical',86,5376),('ARG1=warning,ARG2=critical',86,5380),('ARG1=domain2check,ARG2=dns.server,ARG3=ip.address',86,5391),('',86,5395),('ARG1=username,ARG2=password,ARG3=port',86,5449),('ARG1=folder,ARG2=host,ARG3=port,ARG4=minutes',86,5469),('ARG1=community,ARG2=interface,ARG3=in_warning,ARG4=out_warning,ARG5=in_critical,ARG6=out_critical,ARG7=other',86,5486),('',86,5551),('ARG1=command,ARG2=arguments',86,5606),('ARG1=0:OK-1:WARNING-2:CRITICAL-3:UKNOWN,ARG2=Mensaje entre comillas dobles',86,5947),('ARG1= Ip host, ARG2= Multiple Options',86,6045),('ARG1=command,ARG2=arguments',86,6063),('community,interface',86,6078),('!10%!5%!/',87,5308),('!5.0,4.0,3.0!10.0,6.0,4.0',87,5309),('!',87,5310),('!',87,5311),('!',87,5312),('!',87,5313),('!',87,5314),('!',87,5315),('!',87,5316),('!',87,5317),('!',87,5318),('!',87,5319),('!3000.0,80%!5000.0,100%',87,5320),('!',87,5321),('!',87,5322),('!',87,5323),('!',87,5324),('!',87,5325),('!',87,5326),('!!',87,5373),('!/!10%!5%',87,5376),('!90!95',87,5380),('!domain.com!dnsserver!ipaddress',87,5391),('!domain!90!30',87,5395),('!!!',87,5449),('!!!!',87,5469),('!nagios!eth0!0!0!0!0!-2 -I -r ',87,5486),('',87,5551),('!command!arguments',87,5606),('!1!\"No se ha recibido resultado por parte del servicio configurado\"',87,5947),('!',87,6045),('!!',87,6063),('!community!interface',87,6078),('no',93,5397),('no',93,5402),('no',93,6060),('3',94,5308),('2',94,5309),('3',94,5310),('2',94,5311),('2',94,5312),('5',94,5313),('1',94,5314),('1',94,5315),('1',94,5316),('1',94,5317),('1',94,5318),('1',94,5319),('2',94,5320),('1',94,5321),('1',94,5322),('1',94,5323),('2',94,5324),('2',94,5325),('2',94,5326),('2',94,5373),('3',94,5376),('2',94,5380),('4',94,5391),('3',94,5395),('3',94,5449),('4',94,5469),('7',94,5486),('0',94,5551),('2',94,5606),('2',94,5947),('2',94,6045),('2',94,6063),('2',94,6078),('user',96,5333),('user',96,5930),('enabled',97,5333),('enabled',97,5930),('service_is_stale',98,5296),('notify-host-by-email',98,5327),('notify-service-by-email',98,5328),('check-host-alive',98,5331),('process-service-perfdata-file',98,5371),('process-host-perfdata-file',98,5372),('check_http_alive',98,5387),('check_host_nrpe_alive',98,5552),('check_host_remote_alive',98,5603),('notificacion-de-servicio-x-correo',98,5703),('notificacion-host-x-correo',98,5704),('notify-host-by-hipchat',98,5756),('notify-service-by-hipchat',98,5757),('misc_check_pasivo',98,5948),('stop_ossec',98,5964),('event_handler_parentProcess',98,6059),('/usr/lib/nagios/plugins/eventhandlers/stale_service.sh',99,5296),('/usr/bin/printf \"%b\" \"***** Nagios *****\\n\\nNotification Type: $NOTIFICATIONTYPE$\\nHost: $HOSTNAME$\\nState: $HOSTSTATE$\\nAddress: $HOSTADDRESS$\\nInfo: $HOSTOUTPUT$\\n\\nDate/Time: $LONGDATETIME$\\n\" | /bin/mail -s \"** $NOTIFICATIONTYPE$ Host Alert: $HOSTNAME$ is $HOSTSTATE$ **\" $CONTACTEMAIL$',99,5327),('/usr/bin/printf \"%b\" \"***** Nagios *****\\n\\nNotification Type: $NOTIFICATIONTYPE$\\n\\nService: $SERVICEDESC$\\nHost: $HOSTALIAS$\\nAddress: $HOSTADDRESS$\\nState: $SERVICESTATE$\\n\\nDate/Time: $LONGDATETIME$\\n\\nAdditional Info:\\n\\n$SERVICEOUTPUT$\\nhttp://nagios1.dmci.co/nagios/cgi-bin/extinfo.cgi?type=2&host=$HOSTNAME$&service=$SERVICEDESC$\\n\" | /bin/mail -s \"** $NOTIFICATIONTYPE$ Service Alert: $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$ **\" $CONTACTEMAIL$',99,5328),('$USER1$/check_ping -H $HOSTADDRESS$ -4 -w 3000.0,80% -c 5000.0,100% -p 5',99,5331),('/bin/mv /opt/pnp4nagios/var/service-perfdata /opt/pnp4nagios/var/spool/service-perfdata.$TIMET',99,5371),('/bin/mv /opt/pnp4nagios/var/host-perfdata /opt/pnp4nagios/var/spool/host-perfdata.$TIMET$',99,5372),('$USER1$/check_http -t 60 -H $HOSTADDRESS$',99,5387),('$USER1$/check_nrpe -H $HOSTADDRESS$',99,5552),('$USER1$/check_nrpe -H $_HOSTNRPE-COLLECTORSERVER$ -t 60 -c check_client_ping -a $HOSTADDRESS$ 100 10% 500 50%',99,5603),('/usr/bin/printf \"%b\" \"***** Notificacion de servicio *****\\n\\nTipo de notificacion: $NOTIFICATIONTYPE$\\n\\nServicio: $SERVICEDESC$\\nHost: $HOSTALIAS$\\nIP: $HOSTADDRESS$\\nEstado del servicio: $SERVICESTATE$\\n\\nFecha/Hora: $LONGDATETIME$\\n\\nInformacion Adicional:\\n\\n$SERVICEOUTPUT$\\nhttp://nagios1.dmci.co/nagios/cgi-bin/extinfo.cgi?type=2&host=$HOSTNAME$&service=$SERVICEDESC$\\n\" | /bin/mail -r $ADMINEMAIL$ -s \"** $NOTIFICATIONTYPE$ Alerta de servicio: $HOSTALIAS$/$SERVICEDESC$ = $SERVICESTATE$ **\" $CONTACTEMAIL$',99,5703),('/usr/bin/printf \"%b\" \"***** Notificacion de host *****\\n\\nTipo de notificacion: $NOTIFICATIONTYPE$\\nHost: $HOSTNAME$\\nEstado: $HOSTSTATE$\\nIP: $HOSTADDRESS$\\nInfo: $HOSTOUTPUT$\\n\\nFecha/Hora: $LONGDATETIME$\\n\\n\\n Informacion Adicional:\\n\\nhttp://nagios1.dmci.co/nagios/cgi-bin/status.cgi?host=$HOSTNAME$\" | /bin/mail -r $ADMINEMAIL$ -s \"** $NOTIFICATIONTYPE$ Estado de host: $HOSTNAME$ = $HOSTSTATE$ **\" $CONTACTEMAIL$',99,5704),('hipsaint --token=K0NwEY2B7ffcV2hTecF3C4tQTbXfyR9suKKZbyQy --room=1110870 --type=host --inputs=\"$HOSTNAME$|$LONGDATETIME$|$NOTIFICATIONTYPE$|$HOSTADDRESS$|$HOSTSTATE$|$HOSTOUTPUT$\" -n',99,5756),('hipsaint --token=K0NwEY2B7ffcV2hTecF3C4tQTbXfyR9suKKZbyQy --room=1110870 --type=service --inputs=\"$SERVICEDESC$|$HOSTALIAS$|$LONGDATETIME$|$NOTIFICATIONTYPE$|$HOSTADDRESS$|$SERVICESTATE$|$SERVICEOUTPUT$\" -n',99,5757),('$USER1$/check_dummy 1 \"No se ha recibido resultado por parte del host configurado\"',99,5948),('/opt/nagios/libexec/event_handler/stop_ossec.sh $SERVICESTATE$ $SERVICESTATETYPE$ $SERVICEATTEMPT$',99,5964),('/opt/nagios/libexec/event_handler/event_handler_parentProcess.sh $SERVICESTATE$ $SERVICESTATETYPE$ $SERVICEATTEMPT$',99,6059),('/pnp4nagios/graph?host=$HOSTNAME$',101,5397),('/pnp4nagios/graph?host=$HOSTNAME$',101,5402),('/pnp4nagios/graph?host=$HOSTNAME$',101,6060),('/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$',102,5403),('/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$',102,5406),('/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$',102,5407),('/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$',102,5409),('/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$',102,5495),('/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$',102,5499),('/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$',102,6064),('/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$',102,6065),('/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$',102,6066),('/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$',102,6067),('/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$',102,6068),('/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$',102,6069),('/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$',102,6070),('/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$',102,6071),('/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$',102,6072),('/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$',102,6073),('/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$',102,6084),('/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$',102,6085),('/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$',102,6086),('',103,5308),('',103,5309),('',103,5310),('',103,5311),('',103,5312),('',103,5313),('',103,5314),('',103,5315),('',103,5316),('',103,5317),('',103,5318),('',103,5319),('',103,5320),('',103,5321),('',103,5322),('',103,5323),('',103,5324),('',103,5325),('',103,5326),('',103,5373),('',103,5376),('',103,5380),('',103,5391),('',103,5395),('',103,5449),('',103,5469),('',103,5486),('',103,5551),('',103,5606),('',103,5947),('',103,6045),('',103,6063),('',103,6078),('',104,5779),('',105,5779),('',106,5275),('',107,5275),('Default_collector_server',108,5297),('Default_monitor_server',108,5298),('generic-host',108,5335),('linux-server',108,5336),('windows-server',108,5337),('generic-printer',108,5338),('generic-switch',108,5339),('generic-host-pasivo',108,5950),('',109,5950),('0',110,5297),('0',110,5298),('0',110,5335),('0',110,5336),('0',110,5337),('0',110,5338),('0',110,5339),('0',110,5950),('',116,5335),('',116,5336),('',116,5337),('',116,5950),('',117,5335),('',117,5336),('',117,5337),('',117,5950),('/pnp4nagios/graph?host=$HOSTNAME$',118,5335),('/pnp4nagios/graph?host=$HOSTNAME$',118,5336),('/pnp4nagios/graph?host=$HOSTNAME$',118,5337),('/pnp4nagios/graph?host=$HOSTNAME$',118,5950),('3',119,5335),('',119,5336),('',119,5337),('10',119,5338),('10',119,5339),('3',119,5950),('5',120,5335),('',120,5336),('',120,5337),('5',120,5338),('5',120,5339),('8640',120,5950),('1',121,5335),('',121,5336),('',121,5337),('1',121,5338),('1',121,5339),('60',121,5950),('60',122,5335),('',122,5336),('',122,5337),('30',122,5338),('30',122,5339),('60',122,5950),('d,r',123,5335),('',123,5336),('',123,5337),('d,r',123,5338),('d,r',123,5339),('d,r',123,5950),('1',124,5297),('0',124,5298),('',124,5335),('',124,5336),('',124,5337),('1',124,5950),('0',125,5297),('1',125,5298),('',125,5335),('',125,5336),('',125,5337),('1',125,5950),('1',126,5297),('1',126,5298),('1',126,5335),('',126,5336),('1',126,5337),('1',126,5950),('0',127,5297),('0',127,5298),('',127,5335),('',127,5336),('',127,5337),('1',127,5950),('86400',128,5297),('86400',128,5298),('',128,5335),('',128,5336),('',128,5337),('60480',128,5950),('Default_collector_server',129,5301),('Default_monitor_server',129,5302),('generic-service',129,5348),('local-service',129,5349),('passive_check',129,5459),('check_domainexpiration',129,5535),('generic-service-pasivo',129,5949),('',130,5459),('',130,5535),('',130,5949),('0',131,5301),('0',131,5302),('0',131,5348),('0',131,5349),('0',131,5459),('0',131,5535),('0',131,5949),('',136,5348),('',136,5459),('',136,5535),('',136,5949),('https://sites.google.com/a/dmcingenieria.net/knowledbase/nagios/plugins/$SERVICEDESC$',137,5348),('',137,5459),('',137,5535),('',137,5949),('/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$',138,5348),('/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$',138,5459),('/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$',138,5535),('/pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$',138,5949),('3',139,5348),('4',139,5349),('',139,5459),('1',139,5535),('3',139,5949),('5',140,5348),('5',140,5349),('',140,5459),('1440',140,5535),('8640',140,5949),('1',141,5348),('1',141,5349),('',141,5459),('1440',141,5535),('60',141,5949),('60',142,5348),('',142,5459),('60',142,5535),('60',142,5949),('w,u,c,r',143,5348),('',143,5459),('w,u,c,r',143,5535),('w,u,c,r',143,5949),('1',144,5301),('0',144,5302),('1',144,5348),('0',144,5459),('',144,5535),('1',144,5949),('0',145,5301),('1',145,5302),('1',145,5348),('1',145,5459),('',145,5535),('1',145,5949),('1',146,5301),('1',146,5302),('1',146,5348),('1',146,5459),('',146,5535),('1',146,5949),('0',147,5301),('0',147,5302),('0',147,5348),('1',147,5459),('',147,5535),('1',147,5949),('86400',148,5301),('86400',148,5302),('',148,5348),('600',148,5459),('',148,5535),('60480',148,5949),('yes',174,5403),('yes',174,5406),('yes',174,5407),('yes',174,5409),('yes',174,5495),('yes',174,5499),('yes',174,6064),('yes',174,6065),('yes',174,6066),('yes',174,6067),('yes',174,6068),('yes',174,6069),('yes',174,6070),('yes',174,6071),('yes',174,6072),('yes',174,6073),('yes',174,6084),('yes',174,6085),('yes',174,6086),('',180,5308),('',180,5309),('',180,5310),('',180,5311),('',180,5312),('',180,5313),('',180,5314),('',180,5315),('',180,5316),('',180,5317),('',180,5318),('',180,5319),('',180,5320),('',180,5321),('',180,5322),('',180,5323),('',180,5324),('',180,5325),('',180,5326),('',180,5373),('',180,5376),('',180,5380),('',180,5391),('',180,5395),('',180,5449),('',180,5469),('',180,5486),('',180,5551),('',180,5606),('',180,5947),('',180,6045),('',180,6063),('',180,6078),('',181,5308),('',181,5309),('',181,5310),('',181,5311),('',181,5312),('',181,5313),('',181,5314),('',181,5315),('',181,5316),('',181,5317),('',181,5318),('',181,5319),('',181,5320),('',181,5321),('',181,5322),('',181,5323),('',181,5324),('',181,5325),('',181,5326),('',181,5373),('',181,5376),('',181,5380),('',181,5391),('',181,5395),('',181,5449),('',181,5469),('',181,5486),('',181,5551),('',181,5606),('',181,5947),('',181,6045),('',181,6063),('',181,6078),('',207,5397),('',207,5402),('',207,6060),('1',208,5397),('',208,5402),('',208,6060),('',209,5397),('',209,5402),('',209,6060),('',210,5397),('',210,5402),('',210,6060),('',211,5397),('',211,5402),('',211,6060),('',212,5397),('',212,5402),('',212,6060),('',213,5397),('',213,5402),('',213,6060),('',214,5397),('',214,5402),('',214,6060),('',215,5397),('',215,5402),('',215,6060),('',216,5397),('',216,5402),('',216,6060),('',217,5397),('',217,5402),('',217,6060),('',218,5403),('',218,5406),('',218,5407),('',218,5409),('',218,5495),('',218,5499),('',218,6064),('',218,6065),('',218,6066),('',218,6067),('',218,6068),('',218,6069),('',218,6070),('',218,6071),('',218,6072),('',218,6073),('',218,6084),('',218,6085),('',218,6086),('',219,5403),('',219,5406),('',219,5407),('',219,5409),('',219,5495),('',219,5499),('',219,6064),('',219,6065),('',219,6066),('',219,6067),('',219,6068),('',219,6069),('',219,6070),('',219,6071),('',219,6072),('',219,6073),('',219,6084),('',219,6085),('',219,6086),('',220,5403),('',220,5406),('',220,5407),('',220,5409),('',220,5495),('',220,5499),('',220,6064),('',220,6065),('',220,6066),('',220,6067),('',220,6068),('',220,6069),('',220,6070),('',220,6071),('',220,6072),('',220,6073),('',220,6084),('',220,6085),('',220,6086),('',221,5403),('',221,5406),('',221,5407),('',221,5409),('',221,5495),('',221,5499),('',221,6064),('',221,6065),('',221,6066),('',221,6067),('',221,6068),('',221,6069),('',221,6070),('',221,6071),('',221,6072),('',221,6073),('',221,6084),('',221,6085),('',221,6086),('',222,5403),('',222,5406),('',222,5407),('',222,5409),('',222,5495),('',222,5499),('',222,6064),('',222,6065),('',222,6066),('',222,6067),('',222,6068),('',222,6069),('',222,6070),('',222,6071),('',222,6072),('',222,6073),('',222,6084),('',222,6085),('',222,6086),('',223,5403),('',223,5406),('',223,5407),('',223,5409),('',223,5495),('',223,5499),('',223,6064),('',223,6065),('',223,6066),('',223,6067),('',223,6068),('',223,6069),('',223,6070),('',223,6071),('',223,6072),('',223,6073),('',223,6084),('',223,6085),('',223,6086),('',224,5403),('',224,5406),('',224,5407),('',224,5409),('',224,5495),('',224,5499),('',224,6064),('',224,6065),('',224,6066),('',224,6067),('',224,6068),('',224,6069),('',224,6070),('',224,6071),('',224,6072),('',224,6073),('',224,6084),('',224,6085),('',224,6086),('',225,5403),('',225,5406),('',225,5407),('',225,5409),('',225,5495),('',225,5499),('',225,6064),('',225,6065),('',225,6066),('',225,6067),('',225,6068),('',225,6069),('',225,6070),('',225,6071),('',225,6072),('',225,6073),('',225,6084),('',225,6085),('',225,6086),('',226,5403),('',226,5406),('',226,5407),('',226,5409),('',226,5495),('',226,5499),('',226,6064),('',226,6065),('',226,6066),('',226,6067),('',226,6068),('',226,6069),('',226,6070),('',226,6071),('',226,6072),('',226,6073),('',226,6084),('',226,6085),('',226,6086),('',227,5403),('',227,5406),('',227,5407),('',227,5409),('',227,5495),('',227,5499),('',227,6064),('',227,6065),('',227,6066),('',227,6067),('',227,6068),('',227,6069),('',227,6070),('',227,6071),('',227,6072),('',227,6073),('',227,6084),('',227,6085),('',227,6086),('',228,5403),('',228,5406),('',228,5407),('',228,5409),('',228,5495),('',228,5499),('',228,6064),('',228,6065),('',228,6066),('',228,6067),('',228,6068),('',228,6069),('',228,6070),('',228,6071),('',228,6072),('',228,6073),('',228,6084),('',228,6085),('',228,6086),('',229,5335),('',229,5336),('',229,5337),('',229,5950),('',230,5348),('',230,5459),('',230,5535),('',230,5949),('',234,5397),('',234,5402),('',234,6060),('',235,5495),('',235,5499),('',235,6064),('',235,6065),('',235,6066),('',235,6067),('',235,6068),('',235,6069),('',235,6070),('',235,6071),('',235,6072),('',235,6073),('',235,6084),('',235,6085),('',235,6086);
/*!40000 ALTER TABLE `ConfigValues` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `History`
--
DROP TABLE IF EXISTS `History`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `History` (
`id_hist` int(10) unsigned NOT NULL AUTO_INCREMENT,
`timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`user_str` varchar(250) NOT NULL,
`action` enum('created','added','assigned','unassigned','modified','edited','removed','general','module') NOT NULL,
`attr_name` varchar(80) NOT NULL,
`attr_value` varchar(1024) DEFAULT NULL,
`fk_id_item` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`id_hist`),
KEY `fk_id_item` (`fk_id_item`),
CONSTRAINT `History_ibfk_1` FOREIGN KEY (`fk_id_item`) REFERENCES `ConfigItems` (`id_item`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `History`
--
LOCK TABLES `History` WRITE;
/*!40000 ALTER TABLE `History` DISABLE KEYS */;
/*!40000 ALTER TABLE `History` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ItemLinks`
--
DROP TABLE IF EXISTS `ItemLinks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ItemLinks` (
`fk_id_item` int(10) unsigned NOT NULL DEFAULT '0',
`fk_item_linked2` int(10) unsigned NOT NULL DEFAULT '0',
`fk_id_attr` int(10) unsigned NOT NULL DEFAULT '0',
`cust_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`fk_id_item`,`fk_item_linked2`,`fk_id_attr`),
KEY `fk_item_linked2` (`fk_item_linked2`),
KEY `fk_id_attr` (`fk_id_attr`),
CONSTRAINT `ItemLinks_ibfk_1` FOREIGN KEY (`fk_id_item`) REFERENCES `ConfigItems` (`id_item`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `ItemLinks_ibfk_2` FOREIGN KEY (`fk_item_linked2`) REFERENCES `ConfigItems` (`id_item`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `ItemLinks_ibfk_3` FOREIGN KEY (`fk_id_attr`) REFERENCES `ConfigAttrs` (`id_attr`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ItemLinks`
--
LOCK TABLES `ItemLinks` WRITE;
/*!40000 ALTER TABLE `ItemLinks` DISABLE KEYS */;
INSERT INTO `ItemLinks` VALUES (5231,5331,81,0),(5258,5331,81,0),(5259,5331,81,0),(5276,5331,81,0),(5333,5307,49,0),(5333,5307,50,0),(5333,5334,59,0),(5333,5703,54,0),(5333,5704,53,0),(5335,5305,111,0),(5335,5305,112,0),(5335,5331,113,0),(5336,5305,111,0),(5336,5305,112,0),(5336,5331,113,0),(5336,5334,115,0),(5336,5335,114,1),(5337,5305,111,0),(5337,5305,112,0),(5337,5331,113,0),(5337,5334,115,0),(5337,5335,114,1),(5338,5305,111,0),(5338,5306,112,0),(5338,5331,113,0),(5338,5334,115,0),(5338,5335,114,1),(5339,5305,111,0),(5339,5305,112,0),(5339,5331,113,0),(5339,5334,115,0),(5339,5335,114,1),(5348,5305,132,0),(5348,5305,133,0),(5348,5334,135,0),(5349,5348,134,1),(5373,5348,178,0),(5376,5348,178,0),(5380,5348,178,0),(5388,5387,81,0),(5397,1,26,0),(5397,5,18,0),(5397,5305,19,0),(5397,5305,20,0),(5397,5335,149,0),(5397,5388,75,0),(5402,1,26,0),(5402,5,18,0),(5402,5231,75,0),(5402,5336,149,1),(5402,5397,23,0),(5402,5779,29,0),(5403,5305,63,0),(5403,5305,64,0),(5403,5373,61,0),(5403,5402,62,0),(5406,5305,63,0),(5406,5305,64,0),(5406,5380,61,0),(5406,5402,62,0),(5407,5305,63,0),(5407,5305,64,0),(5407,5373,61,0),(5407,5402,62,0),(5409,5305,63,0),(5409,5305,64,0),(5409,5373,61,0),(5409,5402,62,0),(5449,5348,178,0),(5459,5305,133,0),(5459,5307,132,0),(5459,5348,134,0),(5469,5348,178,0),(5486,5348,178,0),(5495,5305,63,0),(5495,5305,64,0),(5495,5348,150,0),(5495,5373,61,0),(5495,5402,62,0),(5499,5305,63,0),(5499,5305,64,0),(5499,5348,150,0),(5499,5373,61,0),(5499,5402,62,0),(5535,5305,132,0),(5535,5348,134,0),(5535,5496,133,0),(5551,5348,178,0),(5553,5552,81,0),(5605,5603,81,0),(5606,5348,178,0),(5930,5307,49,0),(5930,5307,50,0),(5930,5703,54,0),(5930,5704,53,0),(5949,5305,132,0),(5949,5305,133,0),(5949,5334,135,0),(5950,5305,111,0),(5950,5305,112,0),(5950,5334,115,0),(5951,5948,81,0),(6060,7,18,0),(6060,5258,75,0),(6060,5305,19,0),(6060,5305,20,0),(6060,5337,149,0),(6060,5397,23,0),(6063,5348,178,0),(6064,5305,63,0),(6064,5305,64,0),(6064,5348,150,0),(6064,6060,62,0),(6064,6063,61,0),(6065,5305,63,0),(6065,5305,64,0),(6065,5348,150,0),(6065,6060,62,0),(6065,6063,61,0),(6066,5305,63,0),(6066,5305,64,0),(6066,5348,150,0),(6066,6060,62,0),(6066,6063,61,0),(6067,5305,63,0),(6067,5305,64,0),(6067,5348,150,0),(6067,6060,62,0),(6067,6063,61,0),(6068,5305,63,0),(6068,5305,64,0),(6068,5348,150,0),(6068,6060,62,0),(6068,6063,61,0),(6069,5305,63,0),(6069,5305,64,0),(6069,5348,150,0),(6069,6060,62,0),(6069,6063,61,0),(6070,5305,63,0),(6070,5305,64,0),(6070,5348,150,0),(6070,6060,62,0),(6070,6063,61,0),(6071,5305,63,0),(6071,5305,64,0),(6071,5348,150,0),(6071,6060,62,0),(6071,6063,61,0),(6072,5305,63,0),(6072,5305,64,0),(6072,5348,150,0),(6072,6060,62,0),(6072,6063,61,0),(6073,5305,63,0),(6073,5305,64,0),(6073,5348,150,0),(6073,6060,62,0),(6073,6063,61,0),(6078,5348,178,0),(6084,5305,63,0),(6084,5305,64,0),(6084,5373,61,0),(6084,5402,62,0),(6085,5305,63,0),(6085,5305,64,0),(6085,5348,150,0),(6085,5373,61,0),(6085,5402,62,0),(6086,5305,63,0),(6086,5305,64,0),(6086,5373,61,0),(6086,5402,62,0);
/*!40000 ALTER TABLE `ItemLinks` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2017-04-19 23:12:52