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:
authorRudolfs Kreicbergs <git-no-reply@zabbix.com>2011-04-11 18:00:33 +0400
committerRudolfs Kreicbergs <git-no-reply@zabbix.com>2011-04-11 18:00:33 +0400
commit3f03d1da7fa16c0aeb8dfb88e9d55a55ee8a1da3 (patch)
treeb44aed9549dfa59e9a5143e580e58351a089b669 /include/sysinfo.h
parenta57f11ea417aeca095d36cf200204ded92ffbd97 (diff)
- [ZBXNEXT-677] Added items for hostname, OS details, MAC addresses, CPU info and hardware info
Diffstat (limited to 'include/sysinfo.h')
-rw-r--r--include/sysinfo.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/sysinfo.h b/include/sysinfo.h
index 1bb7ab85c92..10366a13ad5 100644
--- a/include/sysinfo.h
+++ b/include/sysinfo.h
@@ -257,6 +257,7 @@ int SYSTEM_CPU_INTR(const char *cmd, const char *param, unsigned flags, AGENT_RE
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_CPU_NUM(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
+int SYSTEM_CPU_INFO(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);
int SYSTEM_SWAP_OUT(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
int SYSTEM_SWAP_SIZE(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
@@ -268,6 +269,12 @@ int VFS_FS_INODE(const char *cmd, const char *param, unsigned flags, AGENT_RESUL
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 HOST_DEVICE(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
+int HOST_LSPCI(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
+int HOST_MACS(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
+int HOST_NAME(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
+int HOST_OS(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
+int HOST_PACKAGES(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
#if defined(_WINDOWS)
int USER_PERF_COUNTER(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);