Put all the arrays in `ping.c' into one struct.
[collectd.git] / src / df.c
1 /**
2  * collectd - src/df.c
3  * Copyright (C) 2005  Florian octo Forster
4  *
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.
9  *
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.
14  *
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
18  *
19  * Authors:
20  *   Florian octo Forster <octo at verplant.org>
21  **/
22
23 #include "collectd.h"
24 #include "common.h"
25 #include "plugin.h"
26 #include "utils_mount.h"
27
28 #define MODULE_NAME "df"
29
30 #if HAVE_STATFS || HAVE_STATVFS
31 # define DF_HAVE_READ 1
32 #else
33 # define DF_HAVE_READ 0
34 #endif
35
36 #if HAVE_STATFS
37 #define STATANYFS statfs
38 #define BLOCKSIZE(s) (s).f_bsize
39
40 #elif HAVE_STATVFS
41 #define STATANYFS statvfs
42 #define BLOCKSIZE(s) ((s).f_frsize ? (s).f_frsize : (s).f_bsize)
43 #endif
44
45 static char *filename_template = "df-%s.rrd";
46
47 static char *ds_def[] =
48 {
49         "DS:used:GAUGE:25:0:U",
50         "DS:free:GAUGE:25:0:U",
51         NULL
52 };
53 static int ds_num = 2;
54
55 #define BUFSIZE 512
56
57 static void df_init (void)
58 {
59         return;
60 }
61
62 static void df_write (char *host, char *inst, char *val)
63 {
64         char file[BUFSIZE];
65         int status;
66
67         status = snprintf (file, BUFSIZE, filename_template, inst);
68         if (status < 1)
69                 return;
70         else if (status >= BUFSIZE)
71                 return;
72
73         rrd_update_file (host, file, val, ds_def, ds_num);
74 }
75
76 #if DF_HAVE_READ
77 static void df_submit (char *df_name,
78                 unsigned long long df_used,
79                 unsigned long long df_free)
80 {
81         char buf[BUFSIZE];
82
83         if (snprintf (buf, BUFSIZE, "%u:%llu:%llu", (unsigned int) curtime,
84                                 df_used, df_free) >= BUFSIZE)
85                 return;
86
87         plugin_submit (MODULE_NAME, df_name, buf);
88 }
89
90 static void df_read (void)
91 {
92         struct STATANYFS statbuf;
93         cu_mount_t *mnt_list;
94         cu_mount_t *mnt_ptr;
95
96         unsigned long long blocksize;
97         unsigned long long df_free;
98         unsigned long long df_used;
99         char mnt_name[BUFSIZE];
100
101         mnt_list = NULL;
102         if (cu_mount_getlist (&mnt_list) == NULL)
103         {
104                 syslog (LOG_WARNING, "cu_mount_getlist returned `NULL'");
105                 return;
106         }
107
108         for (mnt_ptr = mnt_list; mnt_ptr != NULL; mnt_ptr = mnt_ptr->next)
109         {
110                 if (STATANYFS (mnt_ptr->dir, &statbuf) < 0)
111                 {
112                         syslog (LOG_ERR, "statv?fs failed: %s", strerror (errno));
113                         continue;
114                 }
115
116                 if (!statbuf.f_blocks)
117                         continue;
118
119                 blocksize = BLOCKSIZE(statbuf);
120                 df_free = statbuf.f_bfree * blocksize;
121                 df_used = (statbuf.f_blocks - statbuf.f_bfree) * blocksize;
122
123                 if (strcmp (mnt_ptr->dir, "/") == 0)
124                 {
125                         strncpy (mnt_name, "root", BUFSIZE);
126                 }
127                 else
128                 {
129                         int i, len;
130
131                         strncpy (mnt_name, mnt_ptr->dir + 1, BUFSIZE);
132                         len = strlen (mnt_name);
133
134                         for (i = 0; i < len; i++)
135                                 if (mnt_name[i] == '/')
136                                         mnt_name[i] = '-';
137                 }
138
139                 df_submit (mnt_name, df_used, df_free);
140         }
141
142         cu_mount_freelist (mnt_list);
143 } /* static void df_read (void) */
144 #else
145 # define df_read NULL
146 #endif /* DF_HAVE_READ */
147
148 void module_register (void)
149 {
150         plugin_register (MODULE_NAME, df_init, df_read, df_write);
151 }
152
153 #undef BUFSIZE
154 #undef MODULE_NAME