Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Vladishev <aleksander.vladishev@zabbix.com>2010-10-05 10:21:29 +0400
committerAlexander Vladishev <aleksander.vladishev@zabbix.com>2010-10-05 10:21:29 +0400
commit853a2dece36dd798070b9ae0e84d9860b1739f3b (patch)
treee6721234a05f870ba1b5183163e4557f10c67ac2 /include/sysinfo.h
parentcfcd37e9a5f94d733d8f8d05c35cf2213e35bbba (diff)
- [DEV-486] added support of net.if.discovery and vfs.fs.discivery for Linux, AIX and Windows agents
[code refactoring for net.if.in, net.if.out and net.if.collisions checks under Linux]
Diffstat (limited to 'include/sysinfo.h')
-rw-r--r--include/sysinfo.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/include/sysinfo.h b/include/sysinfo.h
index ae3d82576b6..5c9b57bae59 100644
--- a/include/sysinfo.h
+++ b/include/sysinfo.h
@@ -219,11 +219,15 @@ int KERNEL_MAXFILES(const char *cmd, const char *param, unsigned flags, AGENT_RE
int KERNEL_MAXPROC(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
int PROC_MEMORY(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
int PROC_NUM(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
+
int NET_IF_IN(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
int NET_IF_OUT(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
int NET_IF_TOTAL(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
+int NET_IF_COLLISIONS(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
+int NET_IF_DISCOVERY(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
int NET_TCP_LISTEN(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
int NET_UDP_LISTEN(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
+
int SYSTEM_CPU_LOAD(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
int SYSTEM_CPU_UTIL(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
int SYSTEM_SWAP_IN(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
@@ -235,14 +239,15 @@ int VFS_DEV_READ(const char *cmd, const char *param, unsigned flags, AGENT_RESUL
int VFS_DEV_WRITE(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
int VFS_FILE_SIZE(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
int VFS_FS_INODE(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
+
int VFS_FS_SIZE(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
+int VFS_FS_DISCOVERY(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
+
int VM_MEMORY_SIZE(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
-int NET_IF_COLLISIONS(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
int SYSTEM_CPU_SWITCHES(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
int SYSTEM_CPU_INTR(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
int SYSTEM_CPU_NUM(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
-int NET_TCP_LISTEN(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
#if defined(_WINDOWS)
int USER_PERFCOUNTER(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);