/* ** ZABBIX ** Copyright (C) 2000-2005 SIA Zabbix ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Foundation; either version 2 of the License, or ** (at your option) any later version. ** ** This program is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** GNU General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program; if not, write to the Free Software ** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. **/ #include "common.h" #include "sysinfo.h" #include "service.h" ZBX_METRIC parameters_specific[]= /* KEY FLAG FUNCTION ADD_PARAM TEST_PARAM */ { {"kernel.maxfiles", 0, KERNEL_MAXFILES, 0, 0}, {"kernel.maxproc", 0, KERNEL_MAXPROC, 0, 0}, {"vfs.fs.size", CF_USEUPARAM, VFS_FS_SIZE, 0, "c:,free"}, {"vfs.fs.inode", CF_USEUPARAM, VFS_FS_INODE, 0, "c:,free"}, {"vfs.dev.read", CF_USEUPARAM, VFS_DEV_READ, 0, "hda,ops,avg1"}, {"vfs.dev.write", CF_USEUPARAM, VFS_DEV_WRITE, 0, "hda,ops,avg1"}, {"net.tcp.listen", CF_USEUPARAM, NET_TCP_LISTEN, 0, "80"}, {"net.if.in", CF_USEUPARAM, NET_IF_IN, 0, "lo,bytes"}, {"net.if.out", CF_USEUPARAM, NET_IF_OUT, 0, "lo,bytes"}, {"net.if.total", CF_USEUPARAM, NET_IF_TOTAL, 0, "lo,bytes"}, {"net.if.collisions", CF_USEUPARAM, NET_IF_COLLISIONS, 0, "lo"}, {"vm.memory.size", CF_USEUPARAM, VM_MEMORY_SIZE, 0, "free"}, {"proc.num", CF_USEUPARAM, PROC_NUM, 0, "svchost.exe,"}, {"proc.mem", CF_USEUPARAM, PROC_MEMORY, 0, "svchost.exe,,"}, {"system.cpu.switches", 0, SYSTEM_CPU_SWITCHES, 0, 0}, {"system.cpu.intr", 0, SYSTEM_CPU_INTR, 0, 0}, {"system.cpu.util", CF_USEUPARAM, SYSTEM_CPU_UTIL, 0, "all,system,avg1"}, {"system.cpu.load", CF_USEUPARAM, SYSTEM_CPU_LOAD, 0, "all,avg1"}, {"system.swap.size", CF_USEUPARAM, SYSTEM_SWAP_SIZE, 0, "all,free"}, {"system.swap.in", CF_USEUPARAM, SYSTEM_SWAP_IN, 0, "all"}, {"system.swap.out", CF_USEUPARAM, SYSTEM_SWAP_OUT, 0, "all,count"}, {"system.uptime", 0, SYSTEM_UPTIME, 0, 0}, {"service_state", CF_USEUPARAM, SERVICE_STATE, 0, ZABBIX_SERVICE_NAME}, {"perf_counter", CF_USEUPARAM, PERF_MONITOR, 0, "\\System\\Processes"}, {"proc_info", CF_USEUPARAM, PROC_INFO, 0, "svchost.exe"}, {0} };