svn merge -r523:547 branches/config-step trunk
[collectd.git] / src / ping.c
1 /**
2  * collectd - src/ping.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 "configfile.h"
27 #include "utils_debug.h"
28
29 #define MODULE_NAME "ping"
30
31 #include <netinet/in.h>
32 #include "liboping/liboping.h"
33
34 static pingobj_t *pingobj = NULL;
35
36 static char *file_template = "ping-%s.rrd";
37
38 static char *ds_def[] = 
39 {
40         "DS:ping:GAUGE:"COLLECTD_HEARTBEAT":0:65535",
41         NULL
42 };
43 static int ds_num = 1;
44
45 static char *config_keys[] =
46 {
47         "Host",
48         NULL
49 };
50 static int config_keys_num = 1;
51
52 static void ping_init (void)
53 {
54         return;
55 }
56
57 static int ping_config (char *key, char *value)
58 {
59         if (strcasecmp (key, "host"))
60         {
61                 return (-1);
62         }
63
64         if (pingobj == NULL)
65         {
66                 if ((pingobj = ping_construct ()) == NULL)
67                 {
68                         syslog (LOG_ERR, "ping: `ping_construct' failed.\n");
69                         return (-1);
70                 }
71         }
72
73         if (ping_host_add (pingobj, value) < 0)
74         {
75                 syslog (LOG_WARNING, "ping: `ping_host_add' failed.\n");
76         }
77
78         return (0);
79 }
80
81 static void ping_write (char *host, char *inst, char *val)
82 {
83         char file[512];
84         int status;
85
86         status = snprintf (file, 512, file_template, inst);
87         if (status < 1)
88                 return;
89         else if (status >= 512)
90                 return;
91
92         rrd_update_file (host, file, val, ds_def, ds_num);
93 }
94
95 #define BUFSIZE 256
96 static void ping_submit (char *host, double latency)
97 {
98         char buf[BUFSIZE];
99
100         if (snprintf (buf, BUFSIZE, "%u:%f", (unsigned int) curtime, latency) >= BUFSIZE)
101                 return;
102
103         plugin_submit (MODULE_NAME, host, buf);
104 }
105 #undef BUFSIZE
106
107 static void ping_read (void)
108 {
109         pingobj_iter_t *iter;
110
111         char   *host;
112         double  latency;
113
114         if (pingobj == NULL)
115                 return;
116
117         if (ping_send (pingobj) < 0)
118         {
119                 syslog (LOG_ERR, "ping: `ping_send' failed.");
120                 return;
121         }
122
123         for (iter = ping_iterator_get (pingobj); iter != NULL; iter = ping_iterator_next (iter))
124         {
125                 const char *tmp;
126
127                 if ((tmp = ping_iterator_get_host (iter)) == NULL)
128                         continue;
129                 if ((host = strdup (tmp)) == NULL)
130                         continue;
131
132                 latency = ping_iterator_get_latency (iter);
133
134                 DBG ("host = %s, latency = %f", host, latency);
135                 ping_submit (host, latency);
136
137                 free (host); host = NULL;
138         }
139 }
140
141 void module_register (void)
142 {
143         plugin_register (MODULE_NAME, ping_init, ping_read, ping_write);
144         cf_register (MODULE_NAME, ping_config, config_keys, config_keys_num);
145 }
146
147 #undef MODULE_NAME