7753
7756 & 7757
Code:
CREATE TABLE globalmacro (
globalmacroid bigint unsigned DEFAULT '0' NOT NULL,
macro varchar(64) DEFAULT '' NOT NULL,
value varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (globalmacroid)
) type=InnoDB;
CREATE INDEX globalmacro_1 on globalmacro (macro);
CREATE TABLE hostmacro (
hostmacroid bigint unsigned DEFAULT '0' NOT NULL,
hostid bigint unsigned DEFAULT '0' NOT NULL,
macro varchar(64) DEFAULT '' NOT NULL,
value varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (hostmacroid)
) type=InnoDB;
CREATE INDEX hostmacro_1 on hostmacro (hostid,macro);
Code:
delete from zabbix.help_items where key_='icmpping'; delete from zabbix.help_items where key_='icmppingsec'; insert into help_items values (3,'icmpping[<ip>,<count>,<interval>,<size>,<timeout>]','Checks if server is accessible by ICMP ping 0 - ICMP ping fails 1 - ICMP ping successful One of zabbix_server processes performs ICMP pings once per PingerFrequency seconds.'); insert into help_items values (3,'icmppingloss[<ip>,<count>,<interval>,<size>,<timeout>]','Returns percentage of lost ICMP ping packets'); insert into help_items values (3,'icmppingsec[<ip>,<count>,<interval>,<size>,<timeout>,<type>]','Returns ICMP ping response time Number of seconds Example: 0.02'); insert into help_items values(0,'net.tcp.dns.query[ip, zone, type]','Performs a query for the record type specified by the parameter type');

Comment