3 * Copyright (C) 2005 Florian octo Forster
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * Florian octo Forster <octo at verplant.org>
26 #include "utils_mount.h"
28 #define MODULE_NAME "df"
30 #if HAVE_STATFS || HAVE_STATVFS
31 # define DF_HAVE_READ 1
33 # define DF_HAVE_READ 0
37 # if HAVE_SYS_STATVFS_H
38 # include <sys/statvfs.h>
40 # define STATANYFS statvfs
41 # define BLOCKSIZE(s) ((s).f_frsize ? (s).f_frsize : (s).f_bsize)
43 # if HAVE_SYS_STATFS_H
44 # include <sys/statfs.h>
46 # define STATANYFS statfs
47 # define BLOCKSIZE(s) (s).f_bsize
50 static char *filename_template = "df-%s.rrd";
52 static char *ds_def[] =
54 "DS:used:GAUGE:"COLLECTD_HEARTBEAT":0:U",
55 "DS:free:GAUGE:"COLLECTD_HEARTBEAT":0:U",
58 static int ds_num = 2;
62 static void df_init (void)
67 static void df_write (char *host, char *inst, char *val)
72 status = snprintf (file, BUFSIZE, filename_template, inst);
75 else if (status >= BUFSIZE)
78 rrd_update_file (host, file, val, ds_def, ds_num);
82 static void df_submit (char *df_name,
83 unsigned long long df_used,
84 unsigned long long df_free)
88 if (snprintf (buf, BUFSIZE, "%u:%llu:%llu", (unsigned int) curtime,
89 df_used, df_free) >= BUFSIZE)
92 plugin_submit (MODULE_NAME, df_name, buf);
95 static void df_read (void)
98 struct statvfs statbuf;
100 struct statfs statbuf;
102 /* struct STATANYFS statbuf; */
103 cu_mount_t *mnt_list;
106 unsigned long long blocksize;
107 unsigned long long df_free;
108 unsigned long long df_used;
109 char mnt_name[BUFSIZE];
112 if (cu_mount_getlist (&mnt_list) == NULL)
114 syslog (LOG_WARNING, "cu_mount_getlist returned `NULL'");
118 for (mnt_ptr = mnt_list; mnt_ptr != NULL; mnt_ptr = mnt_ptr->next)
120 if (STATANYFS (mnt_ptr->dir, &statbuf) < 0)
122 syslog (LOG_ERR, "statv?fs failed: %s", strerror (errno));
126 if (!statbuf.f_blocks)
129 blocksize = BLOCKSIZE(statbuf);
130 df_free = statbuf.f_bfree * blocksize;
131 df_used = (statbuf.f_blocks - statbuf.f_bfree) * blocksize;
133 if (strcmp (mnt_ptr->dir, "/") == 0)
135 strncpy (mnt_name, "root", BUFSIZE);
141 strncpy (mnt_name, mnt_ptr->dir + 1, BUFSIZE);
142 len = strlen (mnt_name);
144 for (i = 0; i < len; i++)
145 if (mnt_name[i] == '/')
149 df_submit (mnt_name, df_used, df_free);
152 cu_mount_freelist (mnt_list);
153 } /* static void df_read (void) */
155 # define df_read NULL
156 #endif /* DF_HAVE_READ */
158 void module_register (void)
160 plugin_register (MODULE_NAME, df_init, df_read, df_write);