X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fnfs.c;h=77c7f48f92e3aee3be927e4b34be9c1fa89b01d7;hb=fb475b66fb27f1c06f1d4ecfc910ccbd36216a41;hp=004c8f5e968a9305be5a4c7e2eafbb0f3438ab97;hpb=2d897a731bd23f7a33b89e7b7e3004b6b26b5a94;p=collectd.git diff --git a/src/nfs.c b/src/nfs.c index 004c8f5e..77c7f48f 100644 --- a/src/nfs.c +++ b/src/nfs.c @@ -23,15 +23,9 @@ #include "collectd.h" #include "common.h" #include "plugin.h" -#include "utils_debug.h" -#define MODULE_NAME "nfs" - -/* #if defined(KERNEL_LINUX) || defined(HAVE_LIBKSTAT) */ -#if KERNEL_LINUX -# define NFS_HAVE_READ 1 -#else -# define NFS_HAVE_READ 0 +#if !KERNEL_LINUX +# error "No applicable input method." #endif /* @@ -79,17 +73,6 @@ Number Procedures Procedures 21 commit */ -static data_source_t procedure_dsrc[1] = -{ - {"value", DS_TYPE_COUNTER, 0, 4294967295.0} -}; - -static data_set_t procedure_ds = -{ - "nfs_procedure", 1, procedure_dsrc -}; - -#if NFS_HAVE_READ static const char *nfs2_procedures_names[] = { "null", @@ -215,14 +198,13 @@ static void nfs_procedures_submit (const char *plugin_instance, values[0].counter = val[i]; strncpy (vl.type_instance, names[i], sizeof (vl.type_instance)); - DBG ("%s-%s/nfs_procedure-%s = %llu", + DEBUG ("%s-%s/nfs_procedure-%s = %llu", vl.plugin, vl.plugin_instance, vl.type_instance, val[i]); plugin_dispatch_values ("nfs_procedure", &vl); } } /* void nfs_procedures_submit */ -#if KERNEL_LINUX static void nfs_read_stats_file (FILE *fh, char *inst) { char buffer[BUFSIZE]; @@ -251,7 +233,7 @@ static void nfs_read_stats_file (FILE *fh, char *inst) if ((numfields - 2) != nfs2_procedures_names_num) { - syslog (LOG_WARNING, "nfs plugin: Wrong " + WARNING ("nfs plugin: Wrong " "number of fields (= %i) " "for NFSv2 statistics.", numfields - 2); @@ -265,9 +247,10 @@ static void nfs_read_stats_file (FILE *fh, char *inst) values = (unsigned long long *) malloc (nfs2_procedures_names_num * sizeof (unsigned long long)); if (values == NULL) { - syslog (LOG_ERR, "nfs plugin: malloc " + char errbuf[1024]; + ERROR ("nfs plugin: malloc " "failed: %s", - strerror (errno)); + sstrerror (errno, errbuf, sizeof (errbuf))); continue; } @@ -287,7 +270,7 @@ static void nfs_read_stats_file (FILE *fh, char *inst) if ((numfields - 2) != nfs3_procedures_names_num) { - syslog (LOG_WARNING, "nfs plugin: Wrong " + WARNING ("nfs plugin: Wrong " "number of fields (= %i) " "for NFSv3 statistics.", numfields - 2); @@ -301,9 +284,10 @@ static void nfs_read_stats_file (FILE *fh, char *inst) values = (unsigned long long *) malloc (nfs3_procedures_names_num * sizeof (unsigned long long)); if (values == NULL) { - syslog (LOG_ERR, "nfs plugin: malloc " + char errbuf[1024]; + ERROR ("nfs plugin: malloc " "failed: %s", - strerror (errno)); + sstrerror (errno, errbuf, sizeof (errbuf))); continue; } @@ -318,7 +302,6 @@ static void nfs_read_stats_file (FILE *fh, char *inst) } } /* while (fgets (buffer, BUFSIZE, fh) != NULL) */ } /* void nfs_read_stats_file */ -#endif /* defined(KERNEL_LINUX) */ #undef BUFSIZE #if HAVE_LIBKSTAT && 0 @@ -351,7 +334,6 @@ static void nfs2_read_kstat (kstat_t *ksp, char *inst) static int nfs_read (void) { -#if KERNEL_LINUX FILE *fh; if ((fh = fopen ("/proc/net/rpc/nfs", "r")) != NULL) @@ -366,9 +348,7 @@ static int nfs_read (void) fclose (fh); } -/* #endif defined(KERNEL_LINUX) */ - -#elif HAVE_LIBKSTAT && 0 +#if HAVE_LIBKSTAT && 0 if (nfs2_ksp_client != NULL) nfs2_read_kstat (nfs2_ksp_client, "client"); if (nfs2_ksp_server != NULL) @@ -377,15 +357,8 @@ static int nfs_read (void) return (0); } -#endif /* NFS_HAVE_READ */ void module_register (void) { - plugin_register_data_set (&procedure_ds); - -#if NFS_HAVE_READ plugin_register_read ("nfs", nfs_read); -#endif -} - -#undef MODULE_NAME +} /* void module_register */