2017-05-22 11:24:21 +02:00
--
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
--
-- NagiosQL
--
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
--
2019-04-17 11:40:50 +02:00
-- (c) 2005-2018 by Martin Willisegger
--
2017-05-22 11:24:21 +02:00
-- Project : NagiosQL
-- Component : Import samples build from Nagios 3.0.5 configuration samples
2019-04-17 11:40:50 +02:00
-- Website : https://sourceforge.net/projects/nagiosql/
-- Version : 3.4.0
-- GIT Repo : https://gitlab.com/wizonet/NagiosQL
2017-05-22 11:24:21 +02:00
--
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
SET SQL_MODE = " NO_AUTO_VALUE_ON_ZERO " ;
SET NAMES ' utf8 ' ;
--
--
-- Import commands
--
INSERT INTO ` tbl_command ` ( ` id ` , ` command_name ` , ` command_line ` , ` command_type ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 1 , ' notify-host-by-email ' , ' /usr/bin/printf "%b" "***** Nagios *****\\n\\nNotification Type: $NOTIFICATIONTYPE$\\nHost: $HOSTNAME$\\nState: $HOSTSTATE$\\nAddress: $HOSTADDRESS$\\nInfo: $HOSTOUTPUT$\\n\\nDate/Time: $LONGDATETIME$\\n" | /usr/bin/mail -s "** $NOTIFICATIONTYPE$ Host Alert: $HOSTNAME$ is $HOSTSTATE$ **" $CONTACTEMAIL$ ' , 2 , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_command ` ( ` id ` , ` command_name ` , ` command_line ` , ` command_type ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 2 , ' notify-service-by-email ' , ' /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$\\n" | /usr/bin/mail -s "** $NOTIFICATIONTYPE$ Service Alert: $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$ **" $CONTACTEMAIL$ ' , 2 , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_command ` ( ` id ` , ` command_name ` , ` command_line ` , ` command_type ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 3 , ' check-host-alive ' , ' $USER1$/check_ping -H $HOSTADDRESS$ -w 3000.0,80% -c 5000.0,100% -p 5 ' , 1 , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_command ` ( ` id ` , ` command_name ` , ` command_line ` , ` command_type ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 4 , ' check_local_disk ' , ' $USER1$/check_disk -w $ARG1$ -c $ARG2$ -p $ARG3$ ' , 1 , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_command ` ( ` id ` , ` command_name ` , ` command_line ` , ` command_type ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 5 , ' check_local_load ' , ' $USER1$/check_load -w $ARG1$ -c $ARG2$ ' , 1 , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_command ` ( ` id ` , ` command_name ` , ` command_line ` , ` command_type ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 6 , ' check_local_procs ' , ' $USER1$/check_procs -w $ARG1$ -c $ARG2$ -s $ARG3$ ' , 1 , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_command ` ( ` id ` , ` command_name ` , ` command_line ` , ` command_type ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 7 , ' check_local_users ' , ' $USER1$/check_users -w $ARG1$ -c $ARG2$ ' , 1 , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_command ` ( ` id ` , ` command_name ` , ` command_line ` , ` command_type ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 8 , ' check_local_swap ' , ' $USER1$/check_swap -w $ARG1$ -c $ARG2$ ' , 1 , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_command ` ( ` id ` , ` command_name ` , ` command_line ` , ` command_type ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 9 , ' check_local_mrtgtraf ' , ' $USER1$/check_mrtgtraf -F $ARG1$ -a $ARG2$ -w $ARG3$ -c $ARG4$ -e $ARG5$ ' , 1 , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_command ` ( ` id ` , ` command_name ` , ` command_line ` , ` command_type ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 10 , ' check_ftp ' , ' $USER1$/check_ftp -H $HOSTADDRESS$ $ARG1$ ' , 1 , ' 1 ' , ' 1 ' , ' 2012-02-24 09:51:09 ' , 0 , 1 ) ;
INSERT INTO ` tbl_command ` ( ` id ` , ` command_name ` , ` command_line ` , ` command_type ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 11 , ' check_hpjd ' , ' $USER1$/check_hpjd -H $HOSTADDRESS$ $ARG1$ ' , 1 , ' 1 ' , ' 1 ' , ' 2012-02-24 09:51:12 ' , 0 , 1 ) ;
INSERT INTO ` tbl_command ` ( ` id ` , ` command_name ` , ` command_line ` , ` command_type ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 12 , ' check_snmp ' , ' $USER1$/check_snmp -H $HOSTADDRESS$ $ARG1$ ' , 1 , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_command ` ( ` id ` , ` command_name ` , ` command_line ` , ` command_type ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 13 , ' check_http ' , ' $USER1$/check_http -I $HOSTADDRESS$ $ARG1$ ' , 1 , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_command ` ( ` id ` , ` command_name ` , ` command_line ` , ` command_type ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 14 , ' check_ssh ' , ' $USER1$/check_ssh $ARG1$ $HOSTADDRESS$ ' , 1 , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_command ` ( ` id ` , ` command_name ` , ` command_line ` , ` command_type ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 15 , ' check_dhcp ' , ' $USER1$/check_dhcp $ARG1$ ' , 1 , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_command ` ( ` id ` , ` command_name ` , ` command_line ` , ` command_type ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 16 , ' check_ping ' , ' $USER1$/check_ping -H $HOSTADDRESS$ -w $ARG1$ -c $ARG2$ -p 5 ' , 1 , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_command ` ( ` id ` , ` command_name ` , ` command_line ` , ` command_type ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 17 , ' check_pop ' , ' $USER1$/check_pop -H $HOSTADDRESS$ $ARG1$ ' , 1 , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_command ` ( ` id ` , ` command_name ` , ` command_line ` , ` command_type ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 18 , ' check_imap ' , ' $USER1$/check_imap -H $HOSTADDRESS$ $ARG1$ ' , 1 , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_command ` ( ` id ` , ` command_name ` , ` command_line ` , ` command_type ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 19 , ' check_smtp ' , ' $USER1$/check_smtp -H $HOSTADDRESS$ $ARG1$ ' , 1 , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_command ` ( ` id ` , ` command_name ` , ` command_line ` , ` command_type ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 20 , ' check_tcp ' , ' $USER1$/check_tcp -H $HOSTADDRESS$ -p $ARG1$ $ARG2$ ' , 1 , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_command ` ( ` id ` , ` command_name ` , ` command_line ` , ` command_type ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 21 , ' check_udp ' , ' $USER1$/check_udp -H $HOSTADDRESS$ -p $ARG1$ $ARG2$ ' , 1 , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_command ` ( ` id ` , ` command_name ` , ` command_line ` , ` command_type ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 22 , ' check_nt ' , ' $USER1$/check_nt -H $HOSTADDRESS$ -p 12489 -v $ARG1$ $ARG2$ ' , 1 , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_command ` ( ` id ` , ` command_name ` , ` command_line ` , ` command_type ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 23 , ' process-host-perfdata ' , ' /usr/bin/printf "%b" "$LASTHOSTCHECK$\\t$HOSTNAME$\\t$HOSTSTATE$\\t$HOSTATTEMPT$\\t$HOSTSTATETYPE$\\t$HOSTEXECUTIONTIME$\\t$HOSTOUTPUT$\\t$HOSTPERFDATA$\\n" >> /usr/local/nagios/var/host-perfdata.out ' , 2 , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_command ` ( ` id ` , ` command_name ` , ` command_line ` , ` command_type ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 24 , ' process-service-perfdata ' , ' /usr/bin/printf "%b" "$LASTSERVICECHECK$\\t$HOSTNAME$\\t$SERVICEDESC$\\t$SERVICESTATE$\\t$SERVICEATTEMPT$\\t$SERVICESTATETYPE$\\t$SERVICEEXECUTIONTIME$\\t$SERVICELATENCY$\\t$SERVICEOUTPUT$\\t$SERVICEPERFDATA$\\n" >> /usr/local/nagios/var/service-perfdata.out ' , 2 , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
--
-- Import timedefinitions
--
INSERT INTO ` tbl_lnkTimeperiodToTimeperiodUse ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 5 , 4 , 0 ) ;
--
INSERT INTO ` tbl_timedefinition ` ( ` id ` , ` tipId ` , ` definition ` , ` range ` , ` last_modified ` ) VALUES ( 28 , 1 , ' sunday ' , ' 00:00-24:00 ' , NOW ( ) ) ;
INSERT INTO ` tbl_timedefinition ` ( ` id ` , ` tipId ` , ` definition ` , ` range ` , ` last_modified ` ) VALUES ( 27 , 1 , ' saturday ' , ' 00:00-24:00 ' , NOW ( ) ) ;
INSERT INTO ` tbl_timedefinition ` ( ` id ` , ` tipId ` , ` definition ` , ` range ` , ` last_modified ` ) VALUES ( 26 , 1 , ' monday ' , ' 00:00-24:00 ' , NOW ( ) ) ;
INSERT INTO ` tbl_timedefinition ` ( ` id ` , ` tipId ` , ` definition ` , ` range ` , ` last_modified ` ) VALUES ( 25 , 1 , ' friday ' , ' 00:00-24:00 ' , NOW ( ) ) ;
INSERT INTO ` tbl_timedefinition ` ( ` id ` , ` tipId ` , ` definition ` , ` range ` , ` last_modified ` ) VALUES ( 46 , 2 , ' thursday ' , ' 09:00-17:00 ' , NOW ( ) ) ;
INSERT INTO ` tbl_timedefinition ` ( ` id ` , ` tipId ` , ` definition ` , ` range ` , ` last_modified ` ) VALUES ( 45 , 2 , ' monday ' , ' 09:00-17:00 ' , NOW ( ) ) ;
INSERT INTO ` tbl_timedefinition ` ( ` id ` , ` tipId ` , ` definition ` , ` range ` , ` last_modified ` ) VALUES ( 44 , 2 , ' friday ' , ' 09:00-17:00 ' , NOW ( ) ) ;
INSERT INTO ` tbl_timedefinition ` ( ` id ` , ` tipId ` , ` definition ` , ` range ` , ` last_modified ` ) VALUES ( 41 , 4 , ' july 4 ' , ' 00:00-00:00 ' , NOW ( ) ) ;
INSERT INTO ` tbl_timedefinition ` ( ` id ` , ` tipId ` , ` definition ` , ` range ` , ` last_modified ` ) VALUES ( 40 , 4 , ' january 1 ' , ' 00:00-00:00 ' , NOW ( ) ) ;
INSERT INTO ` tbl_timedefinition ` ( ` id ` , ` tipId ` , ` definition ` , ` range ` , ` last_modified ` ) VALUES ( 39 , 4 , ' december 25 ' , ' 00:00-00:00 ' , NOW ( ) ) ;
INSERT INTO ` tbl_timedefinition ` ( ` id ` , ` tipId ` , ` definition ` , ` range ` , ` last_modified ` ) VALUES ( 35 , 5 , ' sunday ' , ' 00:00-24:00 ' , NOW ( ) ) ;
INSERT INTO ` tbl_timedefinition ` ( ` id ` , ` tipId ` , ` definition ` , ` range ` , ` last_modified ` ) VALUES ( 34 , 5 , ' saturday ' , ' 00:00-24:00 ' , NOW ( ) ) ;
INSERT INTO ` tbl_timedefinition ` ( ` id ` , ` tipId ` , ` definition ` , ` range ` , ` last_modified ` ) VALUES ( 33 , 5 , ' monday ' , ' 00:00-24:00 ' , NOW ( ) ) ;
INSERT INTO ` tbl_timedefinition ` ( ` id ` , ` tipId ` , ` definition ` , ` range ` , ` last_modified ` ) VALUES ( 32 , 5 , ' friday ' , ' 00:00-24:00 ' , NOW ( ) ) ;
INSERT INTO ` tbl_timedefinition ` ( ` id ` , ` tipId ` , ` definition ` , ` range ` , ` last_modified ` ) VALUES ( 29 , 1 , ' thursday ' , ' 00:00-24:00 ' , NOW ( ) ) ;
INSERT INTO ` tbl_timedefinition ` ( ` id ` , ` tipId ` , ` definition ` , ` range ` , ` last_modified ` ) VALUES ( 30 , 1 , ' tuesday ' , ' 00:00-24:00 ' , NOW ( ) ) ;
INSERT INTO ` tbl_timedefinition ` ( ` id ` , ` tipId ` , ` definition ` , ` range ` , ` last_modified ` ) VALUES ( 31 , 1 , ' wednesday ' , ' 00:00-24:00 ' , NOW ( ) ) ;
INSERT INTO ` tbl_timedefinition ` ( ` id ` , ` tipId ` , ` definition ` , ` range ` , ` last_modified ` ) VALUES ( 36 , 5 , ' thursday ' , ' 00:00-24:00 ' , NOW ( ) ) ;
INSERT INTO ` tbl_timedefinition ` ( ` id ` , ` tipId ` , ` definition ` , ` range ` , ` last_modified ` ) VALUES ( 37 , 5 , ' tuesday ' , ' 00:00-24:00 ' , NOW ( ) ) ;
INSERT INTO ` tbl_timedefinition ` ( ` id ` , ` tipId ` , ` definition ` , ` range ` , ` last_modified ` ) VALUES ( 38 , 5 , ' wednesday ' , ' 00:00-24:00 ' , NOW ( ) ) ;
INSERT INTO ` tbl_timedefinition ` ( ` id ` , ` tipId ` , ` definition ` , ` range ` , ` last_modified ` ) VALUES ( 42 , 4 , ' monday 1 september ' , ' 00:00-00:00 ' , NOW ( ) ) ;
INSERT INTO ` tbl_timedefinition ` ( ` id ` , ` tipId ` , ` definition ` , ` range ` , ` last_modified ` ) VALUES ( 43 , 4 , ' thursday -1 november ' , ' 00:00-00:00 ' , NOW ( ) ) ;
INSERT INTO ` tbl_timedefinition ` ( ` id ` , ` tipId ` , ` definition ` , ` range ` , ` last_modified ` ) VALUES ( 47 , 2 , ' tuesday ' , ' 09:00-17:00 ' , NOW ( ) ) ;
INSERT INTO ` tbl_timedefinition ` ( ` id ` , ` tipId ` , ` definition ` , ` range ` , ` last_modified ` ) VALUES ( 48 , 2 , ' wednesday ' , ' 09:00-17:00 ' , NOW ( ) ) ;
--
INSERT INTO ` tbl_timeperiod ` ( ` id ` , ` timeperiod_name ` , ` alias ` , ` exclude ` , ` use_template ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 1 , ' 24x7 ' , ' 24 Hours A Day, 7 Days A Week ' , 0 , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_timeperiod ` ( ` id ` , ` timeperiod_name ` , ` alias ` , ` exclude ` , ` use_template ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 2 , ' workhours ' , ' Normal Work Hours ' , 0 , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_timeperiod ` ( ` id ` , ` timeperiod_name ` , ` alias ` , ` exclude ` , ` use_template ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 3 , ' none ' , ' No Time Is A Good Time ' , 0 , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_timeperiod ` ( ` id ` , ` timeperiod_name ` , ` alias ` , ` exclude ` , ` use_template ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 4 , ' us-holidays ' , ' U.S. Holidays ' , 0 , 0 , ' us-holidays ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_timeperiod ` ( ` id ` , ` timeperiod_name ` , ` alias ` , ` exclude ` , ` use_template ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 5 , ' 24x7_sans_holidays ' , ' 24x7 Sans Holidays ' , 0 , 1 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
--
-- Import contactgroup
--
INSERT INTO ` tbl_contactgroup ` ( ` id ` , ` contactgroup_name ` , ` alias ` , ` members ` , ` contactgroup_members ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 1 , ' admins ' , ' Nagios Administrators ' , 1 , 0 , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
--
-- Import hostgroup
--
INSERT INTO ` tbl_hostgroup ` ( ` id ` , ` hostgroup_name ` , ` alias ` , ` members ` , ` hostgroup_members ` , ` notes ` , ` notes_url ` , ` action_url ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 1 , ' windows-servers ' , ' Windows Servers ' , 1 , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_hostgroup ` ( ` id ` , ` hostgroup_name ` , ` alias ` , ` members ` , ` hostgroup_members ` , ` notes ` , ` notes_url ` , ` action_url ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 2 , ' switches ' , ' Network Switches ' , 1 , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_hostgroup ` ( ` id ` , ` hostgroup_name ` , ` alias ` , ` members ` , ` hostgroup_members ` , ` notes ` , ` notes_url ` , ` action_url ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 3 , ' network-printers ' , ' Network Printers ' , 1 , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_hostgroup ` ( ` id ` , ` hostgroup_name ` , ` alias ` , ` members ` , ` hostgroup_members ` , ` notes ` , ` notes_url ` , ` action_url ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 4 , ' linux-servers ' , ' Linux Servers ' , 1 , 0 , ' ' , ' ' , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
--
-- Import templates
--
INSERT INTO ` tbl_contacttemplate ` ( ` id ` , ` template_name ` , ` alias ` , ` contactgroups ` , ` contactgroups_tploptions ` , ` host_notifications_enabled ` , ` service_notifications_enabled ` , ` host_notification_period ` , ` service_notification_period ` , ` host_notification_options ` , ` service_notification_options ` , ` host_notification_commands ` , ` host_notification_commands_tploptions ` , ` service_notification_commands ` , ` service_notification_commands_tploptions ` , ` can_submit_commands ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` email ` , ` pager ` , ` address1 ` , ` address2 ` , ` address3 ` , ` address4 ` , ` address5 ` , ` address6 ` , ` use_variables ` , ` use_template ` , ` use_template_tploptions ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES
( 1 , ' generic-contact ' , ' ' , 0 , 2 , 2 , 2 , 1 , 1 , ' d,u,r,f,s ' , ' w,u,c,r,f,s ' , 1 , 2 , 1 , 2 , 2 , 2 , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , 0 , 2 , ' 0 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
--
INSERT INTO ` tbl_hosttemplate ` ( ` id ` , ` template_name ` , ` alias ` , ` parents ` , ` parents_tploptions ` , ` hostgroups ` , ` hostgroups_tploptions ` , ` check_command ` , ` use_template ` , ` use_template_tploptions ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` obsess_over_host ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` notification_interval ` , ` notification_period ` , ` first_notification_delay ` , ` notification_options ` , ` notifications_enabled ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` vrml_image ` , ` statusmap_image ` , ` 2 d_coords ` , ` 3 d_coords ` , ` use_variables ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 1 , ' generic-host ' , ' ' , 0 , 2 , 0 , 2 , ' 0 ' , 0 , 2 , ' ' , NULL , NULL , NULL , 2 , 2 , 0 , 2 , 2 , NULL , 0 , 1 , NULL , NULL , 1 , ' ' , 1 , 1 , 1 , 0 , 2 , 0 , 2 , NULL , 1 , NULL , ' ' , 1 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' 0 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_hosttemplate ` ( ` id ` , ` template_name ` , ` alias ` , ` parents ` , ` parents_tploptions ` , ` hostgroups ` , ` hostgroups_tploptions ` , ` check_command ` , ` use_template ` , ` use_template_tploptions ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` obsess_over_host ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` notification_interval ` , ` notification_period ` , ` first_notification_delay ` , ` notification_options ` , ` notifications_enabled ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` vrml_image ` , ` statusmap_image ` , ` 2 d_coords ` , ` 3 d_coords ` , ` use_variables ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 2 , ' linux-server ' , ' ' , 0 , 2 , 0 , 2 , ' 3 ' , 1 , 2 , ' ' , 10 , 5 , 1 , 2 , 2 , 1 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , 0 , 2 , 1 , 2 , 120 , 2 , NULL , ' d,u,r ' , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' 0 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_hosttemplate ` ( ` id ` , ` template_name ` , ` alias ` , ` parents ` , ` parents_tploptions ` , ` hostgroups ` , ` hostgroups_tploptions ` , ` check_command ` , ` use_template ` , ` use_template_tploptions ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` obsess_over_host ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` notification_interval ` , ` notification_period ` , ` first_notification_delay ` , ` notification_options ` , ` notifications_enabled ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` vrml_image ` , ` statusmap_image ` , ` 2 d_coords ` , ` 3 d_coords ` , ` use_variables ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 3 , ' windows-server ' , ' ' , 0 , 2 , 1 , 2 , ' 3 ' , 1 , 2 , ' ' , 10 , 5 , 1 , 2 , 2 , 1 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , 0 , 2 , 1 , 2 , 30 , 1 , NULL , ' d,r ' , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' 0 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_hosttemplate ` ( ` id ` , ` template_name ` , ` alias ` , ` parents ` , ` parents_tploptions ` , ` hostgroups ` , ` hostgroups_tploptions ` , ` check_command ` , ` use_template ` , ` use_template_tploptions ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` obsess_over_host ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` notification_interval ` , ` notification_period ` , ` first_notification_delay ` , ` notification_options ` , ` notifications_enabled ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` vrml_image ` , ` statusmap_image ` , ` 2 d_coords ` , ` 3 d_coords ` , ` use_variables ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 4 , ' generic-printer ' , ' ' , 0 , 2 , 0 , 2 , ' 3 ' , 1 , 2 , ' ' , 10 , 5 , 1 , 2 , 2 , 1 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , 0 , 2 , 1 , 2 , 30 , 2 , NULL , ' d,r ' , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' 0 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_hosttemplate ` ( ` id ` , ` template_name ` , ` alias ` , ` parents ` , ` parents_tploptions ` , ` hostgroups ` , ` hostgroups_tploptions ` , ` check_command ` , ` use_template ` , ` use_template_tploptions ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` obsess_over_host ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` notification_interval ` , ` notification_period ` , ` first_notification_delay ` , ` notification_options ` , ` notifications_enabled ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` vrml_image ` , ` statusmap_image ` , ` 2 d_coords ` , ` 3 d_coords ` , ` use_variables ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 5 , ' generic-switch ' , ' ' , 0 , 2 , 0 , 2 , ' 3 ' , 1 , 2 , ' ' , 10 , 5 , 1 , 2 , 2 , 1 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , 0 , 2 , 1 , 2 , 30 , 1 , NULL , ' d,r ' , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' 0 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
--
INSERT INTO ` tbl_lnkContacttemplateToCommandHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 1 , 1 , 0 ) ;
--
INSERT INTO ` tbl_lnkContacttemplateToCommandService ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 1 , 2 , 0 ) ;
--
INSERT INTO ` tbl_lnkHosttemplateToContactgroup ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 2 , 1 , 0 ) ;
INSERT INTO ` tbl_lnkHosttemplateToContactgroup ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 3 , 1 , 0 ) ;
INSERT INTO ` tbl_lnkHosttemplateToContactgroup ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 4 , 1 , 0 ) ;
INSERT INTO ` tbl_lnkHosttemplateToContactgroup ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 5 , 1 , 0 ) ;
--
INSERT INTO ` tbl_lnkHosttemplateToHostgroup ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 3 , 1 , 0 ) ;
--
INSERT INTO ` tbl_lnkHosttemplateToHosttemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 2 , 1 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkHosttemplateToHosttemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 3 , 1 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkHosttemplateToHosttemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 4 , 1 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkHosttemplateToHosttemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 5 , 1 , 1 , 1 ) ;
--
INSERT INTO ` tbl_lnkServicetemplateToContactgroup ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 1 , 1 , 0 ) ;
--
INSERT INTO ` tbl_lnkServicetemplateToServicetemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 2 , 1 , 1 , 1 ) ;
--
INSERT INTO ` tbl_servicetemplate ` ( ` id ` , ` template_name ` , ` host_name ` , ` host_name_tploptions ` , ` hostgroup_name ` , ` hostgroup_name_tploptions ` , ` service_description ` , ` display_name ` , ` servicegroups ` , ` servicegroups_tploptions ` , ` use_template ` , ` use_template_tploptions ` , ` check_command ` , ` is_volatile ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` parallelize_check ` , ` obsess_over_service ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` notification_interval ` , ` first_notification_delay ` , ` notification_period ` , ` notification_options ` , ` notifications_enabled ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` use_variables ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` , ` import_hash ` ) VALUES ( 1 , ' generic-service ' , 0 , 2 , 0 , 2 , ' ' , ' ' , 0 , 2 , 0 , 2 , ' 0 ' , 0 , ' ' , 3 , 10 , 2 , 1 , 1 , 1 , 1 , 1 , 0 , NULL , 0 , 1 , NULL , NULL , 1 , ' ' , 1 , 1 , 1 , 60 , NULL , 1 , ' w,u,c,r ' , 1 , 0 , 2 , 1 , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' 0 ' , ' 1 ' , NOW ( ) , 0 , 1 , ' ' ) ;
INSERT INTO ` tbl_servicetemplate ` ( ` id ` , ` template_name ` , ` host_name ` , ` host_name_tploptions ` , ` hostgroup_name ` , ` hostgroup_name_tploptions ` , ` service_description ` , ` display_name ` , ` servicegroups ` , ` servicegroups_tploptions ` , ` use_template ` , ` use_template_tploptions ` , ` check_command ` , ` is_volatile ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` parallelize_check ` , ` obsess_over_service ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` notification_interval ` , ` first_notification_delay ` , ` notification_period ` , ` notification_options ` , ` notifications_enabled ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` use_variables ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` , ` import_hash ` ) VALUES ( 2 , ' local-service ' , 0 , 2 , 0 , 2 , ' ' , ' ' , 0 , 2 , 1 , 2 , ' 0 ' , 2 , ' ' , 4 , 5 , 1 , 2 , 2 , 0 , 2 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , NULL , NULL , 0 , ' ' , 2 , 0 , 2 , 0 , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' 0 ' , ' 1 ' , NOW ( ) , 0 , 1 , ' ' ) ;
--
-- Import contacts
--
INSERT INTO ` tbl_contact ` ( ` id ` , ` contact_name ` , ` alias ` , ` contactgroups ` , ` contactgroups_tploptions ` , ` host_notifications_enabled ` , ` service_notifications_enabled ` , ` host_notification_period ` , ` service_notification_period ` , ` host_notification_options ` , ` service_notification_options ` , ` host_notification_commands ` , ` host_notification_commands_tploptions ` , ` service_notification_commands ` , ` service_notification_commands_tploptions ` , ` can_submit_commands ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` email ` , ` pager ` , ` address1 ` , ` address2 ` , ` address3 ` , ` address4 ` , ` address5 ` , ` address6 ` , ` name ` , ` use_variables ` , ` use_template ` , ` use_template_tploptions ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 1 , ' nagiosadmin ' , ' Nagios Admin ' , 0 , 2 , 2 , 2 , 0 , 0 , ' ' , ' ' , 0 , 2 , 0 , 2 , 2 , 2 , 2 , ' nagios@localhost ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , 1 , 2 , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_lnkContactToContacttemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 1 , 1 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkContactgroupToContact ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 1 , 1 , 0 ) ;
--
-- Import hosts and services
--
INSERT INTO ` tbl_host ` ( ` id ` , ` host_name ` , ` alias ` , ` display_name ` , ` address ` , ` parents ` , ` parents_tploptions ` , ` hostgroups ` , ` hostgroups_tploptions ` , ` check_command ` , ` use_template ` , ` use_template_tploptions ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` obsess_over_host ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` notification_interval ` , ` notification_period ` , ` first_notification_delay ` , ` notification_options ` , ` notifications_enabled ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` vrml_image ` , ` statusmap_image ` , ` 2 d_coords ` , ` 3 d_coords ` , ` use_variables ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 1 , ' winserver ' , ' My Windows Server ' , ' ' , ' 192.168.1.2 ' , 0 , 2 , 0 , 2 , ' 0 ' , 1 , 2 , ' ' , NULL , NULL , NULL , 2 , 2 , 0 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , 0 , 2 , 0 , 2 , NULL , 0 , NULL , ' ' , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_host ` ( ` id ` , ` host_name ` , ` alias ` , ` display_name ` , ` address ` , ` parents ` , ` parents_tploptions ` , ` hostgroups ` , ` hostgroups_tploptions ` , ` check_command ` , ` use_template ` , ` use_template_tploptions ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` obsess_over_host ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` notification_interval ` , ` notification_period ` , ` first_notification_delay ` , ` notification_options ` , ` notifications_enabled ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` vrml_image ` , ` statusmap_image ` , ` 2 d_coords ` , ` 3 d_coords ` , ` use_variables ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 2 , ' linksys-srw224p ' , ' Linksys SRW224P Switch ' , ' ' , ' 192.168.1.253 ' , 0 , 2 , 1 , 2 , ' 0 ' , 1 , 2 , ' ' , NULL , NULL , NULL , 2 , 2 , 0 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , 0 , 2 , 0 , 2 , NULL , 0 , NULL , ' ' , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_host ` ( ` id ` , ` host_name ` , ` alias ` , ` display_name ` , ` address ` , ` parents ` , ` parents_tploptions ` , ` hostgroups ` , ` hostgroups_tploptions ` , ` check_command ` , ` use_template ` , ` use_template_tploptions ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` obsess_over_host ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` notification_interval ` , ` notification_period ` , ` first_notification_delay ` , ` notification_options ` , ` notifications_enabled ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` vrml_image ` , ` statusmap_image ` , ` 2 d_coords ` , ` 3 d_coords ` , ` use_variables ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 3 , ' hplj2605dn ' , ' HP LaserJet 2605dn ' , ' ' , ' 192.168.1.30 ' , 0 , 2 , 1 , 2 , ' 0 ' , 1 , 2 , ' ' , NULL , NULL , NULL , 2 , 2 , 0 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , 0 , 2 , 0 , 2 , NULL , 0 , NULL , ' ' , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
INSERT INTO ` tbl_host ` ( ` id ` , ` host_name ` , ` alias ` , ` display_name ` , ` address ` , ` parents ` , ` parents_tploptions ` , ` hostgroups ` , ` hostgroups_tploptions ` , ` check_command ` , ` use_template ` , ` use_template_tploptions ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` obsess_over_host ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` notification_interval ` , ` notification_period ` , ` first_notification_delay ` , ` notification_options ` , ` notifications_enabled ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` vrml_image ` , ` statusmap_image ` , ` 2 d_coords ` , ` 3 d_coords ` , ` use_variables ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` ) VALUES ( 4 , ' localhost ' , ' localhost ' , ' ' , ' 127.0.0.1 ' , 0 , 2 , 0 , 2 , ' 0 ' , 1 , 2 , ' ' , NULL , NULL , NULL , 2 , 2 , 0 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , 0 , 2 , 0 , 2 , NULL , 0 , NULL , ' ' , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 ) ;
--
INSERT INTO ` tbl_lnkHostToHostgroup ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 2 , 2 , 0 ) ;
INSERT INTO ` tbl_lnkHostToHostgroup ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 3 , 3 , 0 ) ;
--
INSERT INTO ` tbl_lnkHostToHosttemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 1 , 3 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkHostToHosttemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 2 , 5 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkHostToHosttemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 3 , 4 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkHostToHosttemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 4 , 2 , 1 , 1 ) ;
--
INSERT INTO ` tbl_lnkHostgroupToHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 4 , 4 , 0 ) ;
INSERT INTO ` tbl_lnkHostgroupToHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 3 , 3 , 0 ) ;
INSERT INTO ` tbl_lnkHostgroupToHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 2 , 2 , 0 ) ;
INSERT INTO ` tbl_lnkHostgroupToHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 1 , 1 , 0 ) ;
--
INSERT INTO ` tbl_lnkServiceToHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 6 , 1 , 0 ) ;
INSERT INTO ` tbl_lnkServiceToHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 2 , 1 , 0 ) ;
INSERT INTO ` tbl_lnkServiceToHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 1 , 1 , 0 ) ;
INSERT INTO ` tbl_lnkServiceToHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 4 , 1 , 0 ) ;
INSERT INTO ` tbl_lnkServiceToHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 7 , 1 , 0 ) ;
INSERT INTO ` tbl_lnkServiceToHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 3 , 1 , 0 ) ;
INSERT INTO ` tbl_lnkServiceToHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 5 , 1 , 0 ) ;
INSERT INTO ` tbl_lnkServiceToHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 9 , 2 , 0 ) ;
INSERT INTO ` tbl_lnkServiceToHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 10 , 2 , 0 ) ;
INSERT INTO ` tbl_lnkServiceToHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 11 , 2 , 0 ) ;
INSERT INTO ` tbl_lnkServiceToHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 8 , 2 , 0 ) ;
INSERT INTO ` tbl_lnkServiceToHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 12 , 3 , 0 ) ;
INSERT INTO ` tbl_lnkServiceToHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 13 , 3 , 0 ) ;
INSERT INTO ` tbl_lnkServiceToHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 17 , 4 , 0 ) ;
INSERT INTO ` tbl_lnkServiceToHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 19 , 4 , 0 ) ;
INSERT INTO ` tbl_lnkServiceToHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 20 , 4 , 0 ) ;
INSERT INTO ` tbl_lnkServiceToHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 15 , 4 , 0 ) ;
INSERT INTO ` tbl_lnkServiceToHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 14 , 4 , 0 ) ;
INSERT INTO ` tbl_lnkServiceToHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 21 , 4 , 0 ) ;
INSERT INTO ` tbl_lnkServiceToHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 16 , 4 , 0 ) ;
INSERT INTO ` tbl_lnkServiceToHost ` ( ` idMaster ` , ` idSlave ` , ` exclude ` ) VALUES ( 18 , 4 , 0 ) ;
--
INSERT INTO ` tbl_lnkServiceToServicetemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 1 , 1 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkServiceToServicetemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 2 , 1 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkServiceToServicetemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 3 , 1 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkServiceToServicetemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 4 , 1 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkServiceToServicetemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 5 , 1 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkServiceToServicetemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 6 , 1 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkServiceToServicetemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 7 , 1 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkServiceToServicetemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 8 , 1 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkServiceToServicetemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 9 , 1 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkServiceToServicetemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 10 , 1 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkServiceToServicetemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 11 , 1 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkServiceToServicetemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 12 , 1 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkServiceToServicetemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 13 , 1 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkServiceToServicetemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 14 , 2 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkServiceToServicetemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 15 , 2 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkServiceToServicetemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 16 , 2 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkServiceToServicetemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 17 , 2 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkServiceToServicetemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 18 , 2 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkServiceToServicetemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 19 , 2 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkServiceToServicetemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 20 , 2 , 1 , 1 ) ;
INSERT INTO ` tbl_lnkServiceToServicetemplate ` ( ` idMaster ` , ` idSlave ` , ` idSort ` , ` idTable ` ) VALUES ( 21 , 2 , 1 , 1 ) ;
--
INSERT INTO ` tbl_service ` ( ` id ` , ` config_name ` , ` host_name ` , ` host_name_tploptions ` , ` hostgroup_name ` , ` hostgroup_name_tploptions ` , ` service_description ` , ` display_name ` , ` servicegroups ` , ` servicegroups_tploptions ` , ` use_template ` , ` use_template_tploptions ` , ` check_command ` , ` is_volatile ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` parallelize_check ` , ` obsess_over_service ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` notification_interval ` , ` first_notification_delay ` , ` notification_period ` , ` notification_options ` , ` notifications_enabled ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` use_variables ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` , ` import_hash ` ) VALUES ( 1 , ' winserver ' , 1 , 2 , 0 , 2 , ' NSClient++ Version ' , ' ' , 0 , 2 , 1 , 2 , ' 22!CLIENTVERSION ' , 2 , ' ' , NULL , NULL , NULL , 2 , 2 , 0 , 2 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , NULL , NULL , 0 , ' ' , 2 , 0 , 2 , 0 , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 , ' b7d611fe304406a192ea422e9fec890cd4a627da ' ) ;
INSERT INTO ` tbl_service ` ( ` id ` , ` config_name ` , ` host_name ` , ` host_name_tploptions ` , ` hostgroup_name ` , ` hostgroup_name_tploptions ` , ` service_description ` , ` display_name ` , ` servicegroups ` , ` servicegroups_tploptions ` , ` use_template ` , ` use_template_tploptions ` , ` check_command ` , ` is_volatile ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` parallelize_check ` , ` obsess_over_service ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` notification_interval ` , ` first_notification_delay ` , ` notification_period ` , ` notification_options ` , ` notifications_enabled ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` use_variables ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` , ` import_hash ` ) VALUES ( 2 , ' winserver ' , 1 , 2 , 0 , 2 , ' Uptime ' , ' ' , 0 , 2 , 1 , 2 , ' 22!UPTIME ' , 2 , ' ' , NULL , NULL , NULL , 2 , 2 , 0 , 2 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , NULL , NULL , 0 , ' ' , 2 , 0 , 2 , 0 , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 , ' 3e14f6480f98aa306d6dc3476ad07cabb084d944 ' ) ;
INSERT INTO ` tbl_service ` ( ` id ` , ` config_name ` , ` host_name ` , ` host_name_tploptions ` , ` hostgroup_name ` , ` hostgroup_name_tploptions ` , ` service_description ` , ` display_name ` , ` servicegroups ` , ` servicegroups_tploptions ` , ` use_template ` , ` use_template_tploptions ` , ` check_command ` , ` is_volatile ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` parallelize_check ` , ` obsess_over_service ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` notification_interval ` , ` first_notification_delay ` , ` notification_period ` , ` notification_options ` , ` notifications_enabled ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` use_variables ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` , ` import_hash ` ) VALUES ( 3 , ' winserver ' , 1 , 2 , 0 , 2 , ' CPU Load ' , ' ' , 0 , 2 , 1 , 2 , ' 22!CPULOAD!-l 5,80,90 ' , 2 , ' ' , NULL , NULL , NULL , 2 , 2 , 0 , 2 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , NULL , NULL , 0 , ' ' , 2 , 0 , 2 , 0 , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 , ' cdbd954fc0f8816eed6aadeac4f73d0e162130fb ' ) ;
INSERT INTO ` tbl_service ` ( ` id ` , ` config_name ` , ` host_name ` , ` host_name_tploptions ` , ` hostgroup_name ` , ` hostgroup_name_tploptions ` , ` service_description ` , ` display_name ` , ` servicegroups ` , ` servicegroups_tploptions ` , ` use_template ` , ` use_template_tploptions ` , ` check_command ` , ` is_volatile ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` parallelize_check ` , ` obsess_over_service ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` notification_interval ` , ` first_notification_delay ` , ` notification_period ` , ` notification_options ` , ` notifications_enabled ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` use_variables ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` , ` import_hash ` ) VALUES ( 4 , ' winserver ' , 1 , 2 , 0 , 2 , ' Memory Usage ' , ' ' , 0 , 2 , 1 , 2 , ' 22!MEMUSE!-w 80 -c 90 ' , 2 , ' ' , NULL , NULL , NULL , 2 , 2 , 0 , 2 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , NULL , NULL , 0 , ' ' , 2 , 0 , 2 , 0 , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 , ' 20f5bcc56c0e0d2452d2e4b39e1d8600fcada046 ' ) ;
INSERT INTO ` tbl_service ` ( ` id ` , ` config_name ` , ` host_name ` , ` host_name_tploptions ` , ` hostgroup_name ` , ` hostgroup_name_tploptions ` , ` service_description ` , ` display_name ` , ` servicegroups ` , ` servicegroups_tploptions ` , ` use_template ` , ` use_template_tploptions ` , ` check_command ` , ` is_volatile ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` parallelize_check ` , ` obsess_over_service ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` notification_interval ` , ` first_notification_delay ` , ` notification_period ` , ` notification_options ` , ` notifications_enabled ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` use_variables ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` , ` import_hash ` ) VALUES ( 5 , ' winserver ' , 1 , 2 , 0 , 2 , ' C:\\ Drive Space ' , ' ' , 0 , 2 , 1 , 2 , ' 22!USEDDISKSPACE!-l c -w 80 -c 90 ' , 2 , ' ' , NULL , NULL , NULL , 2 , 2 , 0 , 2 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , NULL , NULL , 0 , ' ' , 2 , 0 , 2 , 0 , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 , ' 51e82cb4027dfcd430039370538acc955d028e6f ' ) ;
INSERT INTO ` tbl_service ` ( ` id ` , ` config_name ` , ` host_name ` , ` host_name_tploptions ` , ` hostgroup_name ` , ` hostgroup_name_tploptions ` , ` service_description ` , ` display_name ` , ` servicegroups ` , ` servicegroups_tploptions ` , ` use_template ` , ` use_template_tploptions ` , ` check_command ` , ` is_volatile ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` parallelize_check ` , ` obsess_over_service ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` notification_interval ` , ` first_notification_delay ` , ` notification_period ` , ` notification_options ` , ` notifications_enabled ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` use_variables ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` , ` import_hash ` ) VALUES ( 6 , ' winserver ' , 1 , 2 , 0 , 2 , ' W3SVC ' , ' ' , 0 , 2 , 1 , 2 , ' 22!SERVICESTATE!-d SHOWALL -l W3SVC ' , 2 , ' ' , NULL , NULL , NULL , 2 , 2 , 0 , 2 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , NULL , NULL , 0 , ' ' , 2 , 0 , 2 , 0 , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 , ' ca8c3def8eb134790b665ea56d57ebc31c1201d4 ' ) ;
INSERT INTO ` tbl_service ` ( ` id ` , ` config_name ` , ` host_name ` , ` host_name_tploptions ` , ` hostgroup_name ` , ` hostgroup_name_tploptions ` , ` service_description ` , ` display_name ` , ` servicegroups ` , ` servicegroups_tploptions ` , ` use_template ` , ` use_template_tploptions ` , ` check_command ` , ` is_volatile ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` parallelize_check ` , ` obsess_over_service ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` notification_interval ` , ` first_notification_delay ` , ` notification_period ` , ` notification_options ` , ` notifications_enabled ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` use_variables ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` , ` import_hash ` ) VALUES ( 7 , ' winserver ' , 1 , 2 , 0 , 2 , ' Explorer ' , ' ' , 0 , 2 , 1 , 2 , ' 22!PROCSTATE!-d SHOWALL -l Explorer.exe ' , 2 , ' ' , NULL , NULL , NULL , 2 , 2 , 0 , 2 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , NULL , NULL , 0 , ' ' , 2 , 0 , 2 , 0 , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 , ' 90a2eeeeb2b99a2903d2c289bed9779eb4fcc494 ' ) ;
INSERT INTO ` tbl_service ` ( ` id ` , ` config_name ` , ` host_name ` , ` host_name_tploptions ` , ` hostgroup_name ` , ` hostgroup_name_tploptions ` , ` service_description ` , ` display_name ` , ` servicegroups ` , ` servicegroups_tploptions ` , ` use_template ` , ` use_template_tploptions ` , ` check_command ` , ` is_volatile ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` parallelize_check ` , ` obsess_over_service ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` notification_interval ` , ` first_notification_delay ` , ` notification_period ` , ` notification_options ` , ` notifications_enabled ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` use_variables ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` , ` import_hash ` ) VALUES ( 8 , ' linksys-srw224p ' , 1 , 2 , 0 , 2 , ' PING ' , ' ' , 0 , 2 , 1 , 2 , ' 16!200.0,20%!600.0,60% ' , 2 , ' ' , NULL , 5 , 1 , 2 , 2 , 0 , 2 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , NULL , NULL , 0 , ' ' , 2 , 0 , 2 , 0 , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 , ' fb722832723f2513617115ee984a079b22f19f13 ' ) ;
INSERT INTO ` tbl_service ` ( ` id ` , ` config_name ` , ` host_name ` , ` host_name_tploptions ` , ` hostgroup_name ` , ` hostgroup_name_tploptions ` , ` service_description ` , ` display_name ` , ` servicegroups ` , ` servicegroups_tploptions ` , ` use_template ` , ` use_template_tploptions ` , ` check_command ` , ` is_volatile ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` parallelize_check ` , ` obsess_over_service ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` notification_interval ` , ` first_notification_delay ` , ` notification_period ` , ` notification_options ` , ` notifications_enabled ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` use_variables ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` , ` import_hash ` ) VALUES ( 9 , ' linksys-srw224p ' , 1 , 2 , 0 , 2 , ' Uptime ' , ' ' , 0 , 2 , 1 , 2 , ' 12!-C public -o sysUpTime.0 ' , 2 , ' ' , NULL , NULL , NULL , 2 , 2 , 0 , 2 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , NULL , NULL , 0 , ' ' , 2 , 0 , 2 , 0 , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 , ' 9b4de38cda53e1fe5f308bb4fcf9cd2516f3c2de ' ) ;
INSERT INTO ` tbl_service ` ( ` id ` , ` config_name ` , ` host_name ` , ` host_name_tploptions ` , ` hostgroup_name ` , ` hostgroup_name_tploptions ` , ` service_description ` , ` display_name ` , ` servicegroups ` , ` servicegroups_tploptions ` , ` use_template ` , ` use_template_tploptions ` , ` check_command ` , ` is_volatile ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` parallelize_check ` , ` obsess_over_service ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` notification_interval ` , ` first_notification_delay ` , ` notification_period ` , ` notification_options ` , ` notifications_enabled ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` use_variables ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` , ` import_hash ` ) VALUES ( 10 , ' linksys-srw224p ' , 1 , 2 , 0 , 2 , ' Port 1 Link Status ' , ' ' , 0 , 2 , 1 , 2 , ' 12!-C public -o ifOperStatus.1 -r 1 -m RFC1213-MIB ' , 2 , ' ' , NULL , NULL , NULL , 2 , 2 , 0 , 2 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , NULL , NULL , 0 , ' ' , 2 , 0 , 2 , 0 , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 , ' 8fa5057d0b83c1266cd594aed0b695f1a1e95f5a ' ) ;
INSERT INTO ` tbl_service ` ( ` id ` , ` config_name ` , ` host_name ` , ` host_name_tploptions ` , ` hostgroup_name ` , ` hostgroup_name_tploptions ` , ` service_description ` , ` display_name ` , ` servicegroups ` , ` servicegroups_tploptions ` , ` use_template ` , ` use_template_tploptions ` , ` check_command ` , ` is_volatile ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` parallelize_check ` , ` obsess_over_service ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` notification_interval ` , ` first_notification_delay ` , ` notification_period ` , ` notification_options ` , ` notifications_enabled ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` use_variables ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` , ` import_hash ` ) VALUES ( 11 , ' linksys-srw224p ' , 1 , 2 , 0 , 2 , ' Port 1 Bandwidth Usage ' , ' ' , 0 , 2 , 1 , 2 , ' 9!/var/lib/mrtg/192.168.1.253_1.log!AVG!1000000,1000000!5000000,5000000!10 ' , 2 , ' ' , NULL , NULL , NULL , 2 , 2 , 0 , 2 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , NULL , NULL , 0 , ' ' , 2 , 0 , 2 , 0 , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 , ' 9defa942c3ab6c423ccec9ef249468e7598156cb ' ) ;
INSERT INTO ` tbl_service ` ( ` id ` , ` config_name ` , ` host_name ` , ` host_name_tploptions ` , ` hostgroup_name ` , ` hostgroup_name_tploptions ` , ` service_description ` , ` display_name ` , ` servicegroups ` , ` servicegroups_tploptions ` , ` use_template ` , ` use_template_tploptions ` , ` check_command ` , ` is_volatile ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` parallelize_check ` , ` obsess_over_service ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` notification_interval ` , ` first_notification_delay ` , ` notification_period ` , ` notification_options ` , ` notifications_enabled ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` use_variables ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` , ` import_hash ` ) VALUES ( 12 , ' hplj2605dn ' , 1 , 2 , 0 , 2 , ' Printer Status ' , ' ' , 0 , 2 , 1 , 2 , ' 11!-C public ' , 2 , ' ' , NULL , 10 , 1 , 2 , 2 , 0 , 2 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , NULL , NULL , 0 , ' ' , 2 , 0 , 2 , 0 , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 , ' 9cfea4eb4454bbf15dd4728fa1e225e88c18f9a8 ' ) ;
INSERT INTO ` tbl_service ` ( ` id ` , ` config_name ` , ` host_name ` , ` host_name_tploptions ` , ` hostgroup_name ` , ` hostgroup_name_tploptions ` , ` service_description ` , ` display_name ` , ` servicegroups ` , ` servicegroups_tploptions ` , ` use_template ` , ` use_template_tploptions ` , ` check_command ` , ` is_volatile ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` parallelize_check ` , ` obsess_over_service ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` notification_interval ` , ` first_notification_delay ` , ` notification_period ` , ` notification_options ` , ` notifications_enabled ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` use_variables ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` , ` import_hash ` ) VALUES ( 13 , ' hplj2605dn ' , 1 , 2 , 0 , 2 , ' PING ' , ' ' , 0 , 2 , 1 , 2 , ' 16!3000.0,80%!5000.0,100% ' , 2 , ' ' , NULL , 10 , 1 , 2 , 2 , 0 , 2 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , NULL , NULL , 0 , ' ' , 2 , 0 , 2 , 0 , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 , ' a7144cdfbc4a82acf24a933e5b3f2cd3d11e00c9 ' ) ;
INSERT INTO ` tbl_service ` ( ` id ` , ` config_name ` , ` host_name ` , ` host_name_tploptions ` , ` hostgroup_name ` , ` hostgroup_name_tploptions ` , ` service_description ` , ` display_name ` , ` servicegroups ` , ` servicegroups_tploptions ` , ` use_template ` , ` use_template_tploptions ` , ` check_command ` , ` is_volatile ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` parallelize_check ` , ` obsess_over_service ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` notification_interval ` , ` first_notification_delay ` , ` notification_period ` , ` notification_options ` , ` notifications_enabled ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` use_variables ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` , ` import_hash ` ) VALUES ( 14 , ' localhost ' , 1 , 2 , 0 , 2 , ' PING ' , ' ' , 0 , 2 , 1 , 2 , ' 16!100.0,20%!500.0,60% ' , 2 , ' ' , NULL , NULL , NULL , 2 , 2 , 0 , 2 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , NULL , NULL , 0 , ' ' , 2 , 0 , 2 , 0 , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 , ' 371481bf6b0d725f572e4d97bd4e9554517ff7c7 ' ) ;
INSERT INTO ` tbl_service ` ( ` id ` , ` config_name ` , ` host_name ` , ` host_name_tploptions ` , ` hostgroup_name ` , ` hostgroup_name_tploptions ` , ` service_description ` , ` display_name ` , ` servicegroups ` , ` servicegroups_tploptions ` , ` use_template ` , ` use_template_tploptions ` , ` check_command ` , ` is_volatile ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` parallelize_check ` , ` obsess_over_service ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` notification_interval ` , ` first_notification_delay ` , ` notification_period ` , ` notification_options ` , ` notifications_enabled ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` use_variables ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` , ` import_hash ` ) VALUES ( 15 , ' localhost ' , 1 , 2 , 0 , 2 , ' Root Partition ' , ' ' , 0 , 2 , 1 , 2 , ' 4!20%!10%!/ ' , 2 , ' ' , NULL , NULL , NULL , 2 , 2 , 0 , 2 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , NULL , NULL , 0 , ' ' , 2 , 0 , 2 , 0 , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 , ' 18a4fc9848cdec454e33ee61c0d56b7f6e2f2171 ' ) ;
INSERT INTO ` tbl_service ` ( ` id ` , ` config_name ` , ` host_name ` , ` host_name_tploptions ` , ` hostgroup_name ` , ` hostgroup_name_tploptions ` , ` service_description ` , ` display_name ` , ` servicegroups ` , ` servicegroups_tploptions ` , ` use_template ` , ` use_template_tploptions ` , ` check_command ` , ` is_volatile ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` parallelize_check ` , ` obsess_over_service ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` notification_interval ` , ` first_notification_delay ` , ` notification_period ` , ` notification_options ` , ` notifications_enabled ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` use_variables ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` , ` import_hash ` ) VALUES ( 16 , ' localhost ' , 1 , 2 , 0 , 2 , ' Current Users ' , ' ' , 0 , 2 , 1 , 2 , ' 7!20!50 ' , 2 , ' ' , NULL , NULL , NULL , 2 , 2 , 0 , 2 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , NULL , NULL , 0 , ' ' , 2 , 0 , 2 , 0 , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 , ' 062fbd69060679aa6152d4152dc66a7123a7f4dc ' ) ;
INSERT INTO ` tbl_service ` ( ` id ` , ` config_name ` , ` host_name ` , ` host_name_tploptions ` , ` hostgroup_name ` , ` hostgroup_name_tploptions ` , ` service_description ` , ` display_name ` , ` servicegroups ` , ` servicegroups_tploptions ` , ` use_template ` , ` use_template_tploptions ` , ` check_command ` , ` is_volatile ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` parallelize_check ` , ` obsess_over_service ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` notification_interval ` , ` first_notification_delay ` , ` notification_period ` , ` notification_options ` , ` notifications_enabled ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` use_variables ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` , ` import_hash ` ) VALUES ( 17 , ' localhost ' , 1 , 2 , 0 , 2 , ' Total Processes ' , ' ' , 0 , 2 , 1 , 2 , ' 6!250!400!RSZDT ' , 2 , ' ' , NULL , NULL , NULL , 2 , 2 , 0 , 2 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , NULL , NULL , 0 , ' ' , 2 , 0 , 2 , 0 , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 , ' fc250fa70d17061759af179d1852fc892f99a86f ' ) ;
INSERT INTO ` tbl_service ` ( ` id ` , ` config_name ` , ` host_name ` , ` host_name_tploptions ` , ` hostgroup_name ` , ` hostgroup_name_tploptions ` , ` service_description ` , ` display_name ` , ` servicegroups ` , ` servicegroups_tploptions ` , ` use_template ` , ` use_template_tploptions ` , ` check_command ` , ` is_volatile ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` parallelize_check ` , ` obsess_over_service ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` notification_interval ` , ` first_notification_delay ` , ` notification_period ` , ` notification_options ` , ` notifications_enabled ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` use_variables ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` , ` import_hash ` ) VALUES ( 18 , ' localhost ' , 1 , 2 , 0 , 2 , ' Current Load ' , ' ' , 0 , 2 , 1 , 2 , ' 5!5.0,4.0,3.0!10.0,6.0,4.0 ' , 2 , ' ' , NULL , NULL , NULL , 2 , 2 , 0 , 2 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , NULL , NULL , 0 , ' ' , 2 , 0 , 2 , 0 , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 , ' e327d173d7603018ef475966991f33f684789958 ' ) ;
INSERT INTO ` tbl_service ` ( ` id ` , ` config_name ` , ` host_name ` , ` host_name_tploptions ` , ` hostgroup_name ` , ` hostgroup_name_tploptions ` , ` service_description ` , ` display_name ` , ` servicegroups ` , ` servicegroups_tploptions ` , ` use_template ` , ` use_template_tploptions ` , ` check_command ` , ` is_volatile ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` parallelize_check ` , ` obsess_over_service ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` notification_interval ` , ` first_notification_delay ` , ` notification_period ` , ` notification_options ` , ` notifications_enabled ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` use_variables ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` , ` import_hash ` ) VALUES ( 19 , ' localhost ' , 1 , 2 , 0 , 2 , ' Swap Usage ' , ' ' , 0 , 2 , 1 , 2 , ' 8!20!10 ' , 2 , ' ' , NULL , NULL , NULL , 2 , 2 , 0 , 2 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , NULL , NULL , 0 , ' ' , 2 , 0 , 2 , 0 , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 , ' 2f4ac3091f19d55e0ee53364eb6eefbe36f1bba8 ' ) ;
INSERT INTO ` tbl_service ` ( ` id ` , ` config_name ` , ` host_name ` , ` host_name_tploptions ` , ` hostgroup_name ` , ` hostgroup_name_tploptions ` , ` service_description ` , ` display_name ` , ` servicegroups ` , ` servicegroups_tploptions ` , ` use_template ` , ` use_template_tploptions ` , ` check_command ` , ` is_volatile ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` parallelize_check ` , ` obsess_over_service ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` notification_interval ` , ` first_notification_delay ` , ` notification_period ` , ` notification_options ` , ` notifications_enabled ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` use_variables ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` , ` import_hash ` ) VALUES ( 20 , ' localhost ' , 1 , 2 , 0 , 2 , ' SSH ' , ' ' , 0 , 2 , 1 , 2 , ' 14 ' , 2 , ' ' , NULL , NULL , NULL , 2 , 2 , 0 , 2 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , NULL , NULL , 0 , ' ' , 0 , 0 , 2 , 0 , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 , ' 6722b40f8c9f4ac61890d28b5d09a2445962c552 ' ) ;
INSERT INTO ` tbl_service ` ( ` id ` , ` config_name ` , ` host_name ` , ` host_name_tploptions ` , ` hostgroup_name ` , ` hostgroup_name_tploptions ` , ` service_description ` , ` display_name ` , ` servicegroups ` , ` servicegroups_tploptions ` , ` use_template ` , ` use_template_tploptions ` , ` check_command ` , ` is_volatile ` , ` initial_state ` , ` max_check_attempts ` , ` check_interval ` , ` retry_interval ` , ` active_checks_enabled ` , ` passive_checks_enabled ` , ` check_period ` , ` parallelize_check ` , ` obsess_over_service ` , ` check_freshness ` , ` freshness_threshold ` , ` event_handler ` , ` event_handler_enabled ` , ` low_flap_threshold ` , ` high_flap_threshold ` , ` flap_detection_enabled ` , ` flap_detection_options ` , ` process_perf_data ` , ` retain_status_information ` , ` retain_nonstatus_information ` , ` notification_interval ` , ` first_notification_delay ` , ` notification_period ` , ` notification_options ` , ` notifications_enabled ` , ` contacts ` , ` contacts_tploptions ` , ` contact_groups ` , ` contact_groups_tploptions ` , ` stalking_options ` , ` notes ` , ` notes_url ` , ` action_url ` , ` icon_image ` , ` icon_image_alt ` , ` use_variables ` , ` name ` , ` register ` , ` active ` , ` last_modified ` , ` access_group ` , ` config_id ` , ` import_hash ` ) VALUES ( 21 , ' localhost ' , 1 , 2 , 0 , 2 , ' HTTP ' , ' ' , 0 , 2 , 1 , 2 , ' 13 ' , 2 , ' ' , NULL , NULL , NULL , 2 , 2 , 0 , 2 , 2 , 2 , NULL , 0 , 2 , NULL , NULL , 2 , ' ' , 2 , 2 , 2 , NULL , NULL , 0 , ' ' , 0 , 0 , 2 , 0 , 2 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , ' ' , ' 1 ' , ' 1 ' , NOW ( ) , 0 , 1 , ' 4bb45772cf3540dc6d72b91ed38716689354b29a ' ) ;