diff options
author | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2001-04-17 18:46:21 +0000 |
---|---|---|
committer | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2001-04-17 18:46:21 +0000 |
commit | 759ee1510c05c835395fd483f84bb363f524e087 (patch) | |
tree | 1f31c7761076e6902bfdc5731e0f0572620fe139 /create | |
parent | 1e8cee240464ccd4e623a29eea8805e3f7662bbf (diff) | |
download | zabbix-759ee1510c05c835395fd483f84bb363f524e087.tar.gz zabbix-759ee1510c05c835395fd483f84bb363f524e087.tar.xz zabbix-759ee1510c05c835395fd483f84bb363f524e087.zip |
Added several new parameters to monitor (io,system).
git-svn-id: svn://svn.zabbix.com/trunk@45 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'create')
-rw-r--r-- | create/mysql/schema.sql | 12 | ||||
-rw-r--r-- | create/postgresql/schema.sql | 12 |
2 files changed, 24 insertions, 0 deletions
diff --git a/create/mysql/schema.sql b/create/mysql/schema.sql index 42caaae2..c489c757 100644 --- a/create/mysql/schema.sql +++ b/create/mysql/schema.sql @@ -207,6 +207,18 @@ insert into items_template (itemtemplateid,platformid,description,key_,delay) values (31,1,"Cached memory (kB)","memory[cached]", 30); insert into items_template (itemtemplateid,platformid,description,key_,delay) values (32,1,"Total swap space (Kb)","swap[total]", 1800); +insert into items_template (itemtemplateid,platformid,description,key_,delay) + values (33,1,"Amount of memory swapped in from disk (kB/s)","swap[in]", 30); +insert into items_template (itemtemplateid,platformid,description,key_,delay) + values (34,1,"Amount of memory swapped to disk (kB/s)","swap[out]", 30); +insert into items_template (itemtemplateid,platformid,description,key_,delay) + values (35,1,"Blocks sent to a block device (blocks/s)","io[in]", 30); +insert into items_template (itemtemplateid,platformid,description,key_,delay) + values (36,1,"Blocks received from a block device (blocks/s)","io[out]", 30); +insert into items_template (itemtemplateid,platformid,description,key_,delay) + values (37,1,"The number of interrupts per second, including the clock","system[interrupts]", 30); +insert into items_template (itemtemplateid,platformid,description,key_,delay) + values (38,1,"The number of context switches per second","system[switches]", 30); # # Table structure for table 'triggers_template' diff --git a/create/postgresql/schema.sql b/create/postgresql/schema.sql index 9b6fd060..e46c10a4 100644 --- a/create/postgresql/schema.sql +++ b/create/postgresql/schema.sql @@ -280,6 +280,18 @@ insert into items_template (itemtemplateid,platformid,description,key_,delay) values (31,1,'Cached memory (kB)','memory[cached]', 30); insert into items_template (itemtemplateid,platformid,description,key_,delay) values (32,1,'Total swap space (Kb)','swap[total]', 1800); +insert into items_template (itemtemplateid,platformid,description,key_,delay) + values (33,1,'Amount of memory swapped in from disk (kB/s)','swap[in]', 30); +insert into items_template (itemtemplateid,platformid,description,key_,delay) + values (34,1,'Amount of memory swapped to disk (kB/s)','swap[out]', 30); +insert into items_template (itemtemplateid,platformid,description,key_,delay) + values (35,1,'Blocks sent to a block device (blocks/s)','io[in]', 30); +insert into items_template (itemtemplateid,platformid,description,key_,delay) + values (36,1,'Blocks received from a block device (blocks/s)','io[out]', 30); +insert into items_template (itemtemplateid,platformid,description,key_,delay) + values (37,1,'The number of interrupts per second, including the clock','system[interrupts]', 30); +insert into items_template (itemtemplateid,platformid,description,key_,delay) + values (38,1,'The number of context switches per second','system[switches]', 30); -- -- Table structure for table 'triggers_template' |