summaryrefslogtreecommitdiffstats
path: root/src/libs
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-09-03 12:36:04 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-09-03 12:36:04 +0000
commiteba80e0cb8bc3ebeb32efea6d9e61c720456ab57 (patch)
tree922013863f0e4de3a586ceb7af6739635b2a82d2 /src/libs
parentda98bc505d3882c27f6100deb7cd0154e1494629 (diff)
downloadzabbix-eba80e0cb8bc3ebeb32efea6d9e61c720456ab57.tar.gz
zabbix-eba80e0cb8bc3ebeb32efea6d9e61c720456ab57.tar.xz
zabbix-eba80e0cb8bc3ebeb32efea6d9e61c720456ab57.zip
Minor changes.
git-svn-id: svn://svn.zabbix.com/trunk@2028 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'src/libs')
-rw-r--r--src/libs/zbxsysinfo/diskspace.c18
-rw-r--r--src/libs/zbxsysinfo/file.c10
-rw-r--r--src/libs/zbxsysinfo/sysinfo.c41
3 files changed, 37 insertions, 32 deletions
diff --git a/src/libs/zbxsysinfo/diskspace.c b/src/libs/zbxsysinfo/diskspace.c
index c03c6a9a..49351916 100644
--- a/src/libs/zbxsysinfo/diskspace.c
+++ b/src/libs/zbxsysinfo/diskspace.c
@@ -135,17 +135,17 @@
#include "common.h"
#include "sysinfo.h"
-int DISKUSED_PERC(const char *cmd, const char *mountPoint,double *value)
+int VFS_FS_PUSED(const char *cmd, const char *mountPoint,double *value)
{
double total;
double used;
- if(SYSINFO_RET_OK != DISKTOTAL(cmd, mountPoint, &total))
+ if(SYSINFO_RET_OK != VFS_FS_TOTAL(cmd, mountPoint, &total))
{
return SYSINFO_RET_FAIL;
}
- if(SYSINFO_RET_OK != DISKUSED(cmd, mountPoint, &used))
+ if(SYSINFO_RET_OK != VFS_FS_USED(cmd, mountPoint, &used))
{
return SYSINFO_RET_FAIL;
}
@@ -159,17 +159,17 @@ int DISKUSED_PERC(const char *cmd, const char *mountPoint,double *value)
return SYSINFO_RET_OK;
}
-int DISKFREE_PERC(const char *cmd, const char *mountPoint,double *value)
+int VFS_FS_PFREE(const char *cmd, const char *mountPoint,double *value)
{
double total;
double free;
- if(SYSINFO_RET_OK != DISKTOTAL(cmd, mountPoint, &total))
+ if(SYSINFO_RET_OK != VFS_FS_TOTAL(cmd, mountPoint, &total))
{
return SYSINFO_RET_FAIL;
}
- if(SYSINFO_RET_OK != DISKFREE(cmd, mountPoint, &free))
+ if(SYSINFO_RET_OK != VFS_FS_FREE(cmd, mountPoint, &free))
{
return SYSINFO_RET_FAIL;
}
@@ -183,7 +183,7 @@ int DISKFREE_PERC(const char *cmd, const char *mountPoint,double *value)
return SYSINFO_RET_OK;
}
-int DISKFREE(const char *cmd, const char *mountPoint,double *value)
+int VFS_FS_FREE(const char *cmd, const char *mountPoint,double *value)
{
#ifdef HAVE_SYS_STATVFS_H
struct statvfs s;
@@ -228,7 +228,7 @@ int DISKFREE(const char *cmd, const char *mountPoint,double *value)
#endif
}
-int DISKUSED(const char *cmd, const char *mountPoint,double *value)
+int VFS_FS_USED(const char *cmd, const char *mountPoint,double *value)
{
#ifdef HAVE_SYS_STATVFS_H
struct statvfs s;
@@ -273,7 +273,7 @@ int DISKUSED(const char *cmd, const char *mountPoint,double *value)
#endif
}
-int DISKTOTAL(const char *cmd, const char *mountPoint,double *value)
+int VFS_FS_TOTAL(const char *cmd, const char *mountPoint,double *value)
{
#ifdef HAVE_SYS_STATVFS_H
struct statvfs s;
diff --git a/src/libs/zbxsysinfo/file.c b/src/libs/zbxsysinfo/file.c
index 8c05ae6b..d7e8e6a7 100644
--- a/src/libs/zbxsysinfo/file.c
+++ b/src/libs/zbxsysinfo/file.c
@@ -82,7 +82,7 @@
#include "common.h"
#include "sysinfo.h"
-int FS_FILE_SIZE(const char *cmd, const char *filename,double *value)
+int VFS_FILE_SIZE(const char *cmd, const char *filename,double *value)
{
struct stat buf;
@@ -94,7 +94,7 @@ int FS_FILE_SIZE(const char *cmd, const char *filename,double *value)
return SYSINFO_RET_FAIL;
}
-int FS_FILE_ATIME(const char *cmd, const char *filename,double *value)
+int VFS_FILE_ATIME(const char *cmd, const char *filename,double *value)
{
struct stat buf;
@@ -106,7 +106,7 @@ int FS_FILE_ATIME(const char *cmd, const char *filename,double *value)
return SYSINFO_RET_FAIL;
}
-int FS_FILE_CTIME(const char *cmd, const char *filename,double *value)
+int VFS_FILE_CTIME(const char *cmd, const char *filename,double *value)
{
struct stat buf;
@@ -118,7 +118,7 @@ int FS_FILE_CTIME(const char *cmd, const char *filename,double *value)
return SYSINFO_RET_FAIL;
}
-int FS_FILE_MTIME(const char *cmd, const char *filename,double *value)
+int VFS_FILE_MTIME(const char *cmd, const char *filename,double *value)
{
struct stat buf;
@@ -130,7 +130,7 @@ int FS_FILE_MTIME(const char *cmd, const char *filename,double *value)
return SYSINFO_RET_FAIL;
}
-int FS_FILE_EXISTS(const char *cmd, const char *filename,double *value)
+int VFS_FILE_EXISTS(const char *cmd, const char *filename,double *value)
{
struct stat buf;
diff --git a/src/libs/zbxsysinfo/sysinfo.c b/src/libs/zbxsysinfo/sysinfo.c
index 0f8ecbb2..7f06b321 100644
--- a/src/libs/zbxsysinfo/sysinfo.c
+++ b/src/libs/zbxsysinfo/sysinfo.c
@@ -147,7 +147,7 @@ COMMAND agent_commands[]=
{
/* Outdated */
- {"cksum[*]" ,FS_FILE_CKSUM, 0, "/etc/services"},
+ {"cksum[*]" ,VFS_FILE_CKSUM, 0, "/etc/services"},
{"cpu[idle1]" ,SYSTEM_CPU_IDLE1, 0, 0},
{"cpu[idle5]" ,SYSTEM_CPU_IDLE5, 0, 0},
{"cpu[idle15]" ,SYSTEM_CPU_IDLE15, 0, 0},
@@ -160,9 +160,12 @@ COMMAND agent_commands[]=
{"cpu[user1]" ,SYSTEM_CPU_USER1, 0, 0},
{"cpu[user5]" ,SYSTEM_CPU_USER5, 0, 0},
{"cpu[user15]" ,SYSTEM_CPU_USER15, 0, 0},
- {"file[*]" ,FS_FILE_EXISTS, 0, "/etc/passwd"},
- {"filesize[*]" ,FS_FILE_SIZE, 0, "/etc/passwd"},
- {"md5sum[*]" ,0, FS_FILE_MD5SUM, "/etc/services"},
+ {"diskfree[*]" ,VFS_FS_FREE, 0, "/"},
+ {"disktotal[*]" ,VFS_FS_TOTAL, 0, "/"},
+ {"diskused[*]" ,VFS_FS_USED, 0, "/"},
+ {"file[*]" ,VFS_FILE_EXISTS, 0, "/etc/passwd"},
+ {"filesize[*]" ,VFS_FILE_SIZE, 0, "/etc/passwd"},
+ {"md5sum[*]" ,0, VFS_FILE_MD5SUM, "/etc/services"},
{"netloadin1[*]" ,NET_IF_IBYTES1, 0, "lo"},
{"netloadin5[*]" ,NET_IF_IBYTES5, 0, "lo"},
{"netloadin15[*]" ,NET_IF_IBYTES15, 0, "lo"},
@@ -194,12 +197,14 @@ COMMAND agent_commands[]=
{"agent.version", 0, AGENT_VERSION, 0},
- {"diskfree[*]" ,DISKFREE, 0, "/"},
- {"disktotal[*]" ,DISKTOTAL, 0, "/"},
- {"diskused[*]" ,DISKUSED, 0, "/"},
+ {"vfs.fs.free[*]" ,VFS_FS_FREE, 0, "/"},
+ {"vfs.fs.total[*]" ,VFS_FS_TOTAL, 0, "/"},
+ {"vfs.fs.used[*]" ,VFS_FS_USED, 0, "/"},
- {"diskfree_perc[*]" ,DISKFREE_PERC, 0, "/"},
- {"diskused_perc[*]" ,DISKUSED_PERC, 0, "/"},
+ {"diskfree_perc[*]" ,VFS_FS_PFREE, 0, "/"},
+ {"diskused_perc[*]" ,VFS_FS_PUSED, 0, "/"},
+ {"vfs.fs.pfree[*]" ,VFS_FS_PFREE, 0, "/"},
+ {"vfs.fs.pused[*]" ,VFS_FS_PUSED, 0, "/"},
{"inodefree[*]" ,INODEFREE, 0, "/"},
@@ -207,13 +212,13 @@ COMMAND agent_commands[]=
{"inodetotal[*]" ,INODETOTAL, 0, "/"},
- {"fs.file.atime[*]" ,FS_FILE_ATIME, 0, "/etc/passwd"},
- {"fs.file.cksum[*]" ,FS_FILE_CKSUM, 0, "/etc/services"},
- {"fs.file.ctime[*]" ,FS_FILE_CTIME, 0, "/etc/passwd"},
- {"fs.file.exists[*]" ,FS_FILE_EXISTS, 0, "/etc/passwd"},
- {"fs.file.md5sum[*]" ,0, FS_FILE_MD5SUM, "/etc/services"},
- {"fs.file.mtime[*]" ,FS_FILE_MTIME, 0, "/etc/passwd"},
- {"fs.file.size[*]" ,FS_FILE_SIZE, 0, "/etc/passwd"},
+ {"vfs.file.atime[*]" ,VFS_FILE_ATIME, 0, "/etc/passwd"},
+ {"vfs.file.cksum[*]" ,VFS_FILE_CKSUM, 0, "/etc/services"},
+ {"vfs.file.ctime[*]" ,VFS_FILE_CTIME, 0, "/etc/passwd"},
+ {"vfs.file.exists[*]" ,VFS_FILE_EXISTS, 0, "/etc/passwd"},
+ {"vfs.file.md5sum[*]" ,0, VFS_FILE_MD5SUM, "/etc/services"},
+ {"vfs.file.mtime[*]" ,VFS_FILE_MTIME, 0, "/etc/passwd"},
+ {"vfs.file.size[*]" ,VFS_FILE_SIZE, 0, "/etc/passwd"},
{"system.cpu.idle1" ,SYSTEM_CPU_IDLE1, 0, 0},
{"system.cpu.idle5" ,SYSTEM_CPU_IDLE5, 0, 0},
@@ -584,7 +589,7 @@ int process(char *command,char *value)
/* MD5 sum calculation */
-int FS_FILE_MD5SUM(const char *cmd, const char *filename, char **value)
+int VFS_FILE_MD5SUM(const char *cmd, const char *filename, char **value)
{
int fd;
int i,nr;
@@ -698,7 +703,7 @@ static u_long crctab[] = {
* on failure. Errno is set on failure.
*/
-int FS_FILE_CKSUM(const char *cmd, const char *filename,double *value)
+int VFS_FILE_CKSUM(const char *cmd, const char *filename,double *value)
{
register u_char *p;
register int nr;