File ../create/mysql/schema.sql misse the entries for the tables escalation...
Compilation error when --enable-static :
In these files ../src/zabbix_server/Makefile ../src/zabbix_agentd/Makefile, misses -lresolv in several parts :
False : libzbxcommon.a
True : libzbxcommon.a -lresolv
Bug 1 : When you want to add a Hosts group, this error appear : No host groups with groupid=[0]
Bug 2 : When you want to add a connection between two elements in a map, this error appear :
Warning. Field [selementid1] is mandatory
Warning. Field [drawtype_off] is mandatory
Warning. Field [color_off] is mandatory
PHP Code:
--
-- Table structure for table 'escalations'
--
CREATE TABLE escalations (
escalationid int(4) NOT NULL auto_increment,
name varchar(64) DEFAULT '0' NOT NULL,
dflt int(2) DEFAULT '0' NOT NULL,
PRIMARY KEY (escalationid),
UNIQUE (name)
) type=InnoDB;
--
-- Table structure for table 'escalation_rules'
--
CREATE TABLE escalation_rules (
escalationruleid int(4) NOT NULL auto_increment,
escalationid int(4) DEFAULT '0' NOT NULL,
level int(4) DEFAULT '0' NOT NULL,
period varchar(100) DEFAULT '1-7,00:00-23:59' NOT NULL,
delay int(4) DEFAULT '0' NOT NULL,
actiontype int(4) DEFAULT '0' NOT NULL,
PRIMARY KEY (escalationruleid),
KEY (escalationid)
) type=InnoDB;
--
-- Table structure for table 'escalation_log'
--
CREATE TABLE escalation_log (
escalationlogid int(4) NOT NULL auto_increment,
triggerid int(4) DEFAULT '0' NOT NULL,
alarmid int(4) DEFAULT '0' NOT NULL,
escalationid int(4) DEFAULT '0' NOT NULL,
actiontype int(4) DEFAULT '0' NOT NULL,
level int(4) DEFAULT '0' NOT NULL,
adminlevel int(4) DEFAULT '0' NOT NULL,
nextcheck int(4) DEFAULT '0' NOT NULL,
status int(4) DEFAULT '0' NOT NULL,
PRIMARY KEY (escalationlogid),
KEY (alarmid,escalationid),
KEY (triggerid)
) type=InnoDB;
In these files ../src/zabbix_server/Makefile ../src/zabbix_agentd/Makefile, misses -lresolv in several parts :
False : libzbxcommon.a
True : libzbxcommon.a -lresolv
Bug 1 : When you want to add a Hosts group, this error appear : No host groups with groupid=[0]
Bug 2 : When you want to add a connection between two elements in a map, this error appear :
Warning. Field [selementid1] is mandatory
Warning. Field [drawtype_off] is mandatory
Warning. Field [color_off] is mandatory
Comment