X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fmemory.c;h=a4a9af3a2128fdce1343d90e7b6e85a24eb8b7dd;hb=a019b6c8144745db63c599680bd693ac02f11666;hp=47b3cb31a77377aa31362cc4bce187905158eef1;hpb=e4b274ed754af52196d3390b8ce101a7f94e318a;p=collectd.git diff --git a/src/memory.c b/src/memory.c index 47b3cb31..a4a9af3a 100644 --- a/src/memory.c +++ b/src/memory.c @@ -43,11 +43,15 @@ # include #endif +#if HAVE_STATGRAB_H +# include +#endif + /* vm_statistics_data_t */ -#if defined(HOST_VM_INFO) +#if HAVE_HOST_STATISTICS static mach_port_t port_host; static vm_size_t pagesize; -/* #endif HOST_VM_INFO */ +/* #endif HAVE_HOST_STATISTICS */ #elif HAVE_SYSCTLBYNAME /* no global variables */ @@ -62,16 +66,20 @@ static int pagesize; static kstat_t *ksp; /* #endif HAVE_LIBKSTAT */ +#elif HAVE_LIBSTATGRAB +/* no global variables */ +/* endif HAVE_LIBSTATGRAB */ + #else # error "No applicable input method." #endif static int memory_init (void) { -#if defined(HOST_VM_INFO) +#if HAVE_HOST_STATISTICS port_host = mach_host_self (); host_page_size (port_host, &pagesize); -/* #endif HOST_VM_INFO */ +/* #endif HAVE_HOST_STATISTICS */ #elif HAVE_SYSCTLBYNAME /* no init stuff */ @@ -101,8 +109,8 @@ static void memory_submit (const char *type_instance, gauge_t value) vl.values = values; vl.values_len = 1; vl.time = time (NULL); - strcpy (vl.host, hostname_g); - strcpy (vl.plugin, "memory"); + sstrncpy (vl.host, hostname_g, sizeof (vl.host)); + sstrncpy (vl.plugin, "memory", sizeof (vl.plugin)); strncpy (vl.type_instance, type_instance, sizeof (vl.type_instance)); vl.type_instance[sizeof (vl.type_instance) - 1] = '\0'; @@ -111,7 +119,7 @@ static void memory_submit (const char *type_instance, gauge_t value) static int memory_read (void) { -#if defined(HOST_VM_INFO) +#if HAVE_HOST_STATISTICS kern_return_t status; vm_statistics_data_t vm_data; mach_msg_type_number_t vm_data_len; @@ -162,7 +170,7 @@ static int memory_read (void) memory_submit ("active", active); memory_submit ("inactive", inactive); memory_submit ("free", free); -/* #endif HOST_VM_INFO */ +/* #endif HAVE_HOST_STATISTICS */ #elif HAVE_SYSCTLBYNAME /* @@ -218,7 +226,7 @@ static int memory_read (void) memory_submit ("cache", sysctl_vals[6]); /* #endif HAVE_SYSCTLBYNAME */ -#elif defined(KERNEL_LINUX) +#elif KERNEL_LINUX FILE *fh; char buffer[1024]; @@ -276,9 +284,9 @@ static int memory_read (void) memory_submit ("cached", mem_cached); memory_submit ("free", mem_free); } -/* #endif defined(KERNEL_LINUX) */ +/* #endif KERNEL_LINUX */ -#elif defined(HAVE_LIBKSTAT) +#elif HAVE_LIBKSTAT long long mem_used; long long mem_free; long long mem_lock; @@ -303,15 +311,15 @@ static int memory_read (void) memory_submit ("used", mem_used); memory_submit ("free", mem_free); memory_submit ("locked", mem_lock); -/* #endif defined(HAVE_LIBKSTAT) */ +/* #endif HAVE_LIBKSTAT */ -#elif defined(HAVE_LIBSTATGRAB) +#elif HAVE_LIBSTATGRAB sg_mem_stats *ios; if ((ios = sg_get_mem_stats ()) != NULL) { memory_submit ("used", ios->used); - memory_submit ("cached", ios->cached); + memory_submit ("cached", ios->cache); memory_submit ("free", ios->free); } #endif /* HAVE_LIBSTATGRAB */