X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fping.c;h=2f7c064d1871363f3199a8deb581a2681e9ff51d;hb=c08e3ed48857ef9997e8ef3bb40c0a982319106b;hp=89fecc8d0ec2fffadec079340769bbb35dbbb953;hpb=c757543e3b835e8a67289ae04a082f93a82c3858;p=collectd.git diff --git a/src/ping.c b/src/ping.c index 89fecc8d..2f7c064d 100644 --- a/src/ping.c +++ b/src/ping.c @@ -45,16 +45,6 @@ typedef struct hostlist_s hostlist_t; static pingobj_t *pingobj = NULL; static hostlist_t *hosts = NULL; -static data_source_t dsrc[1] = -{ - {"ping", DS_TYPE_GAUGE, 0, 65535.0}, -}; - -static data_set_t ds = -{ - "ping", 1, dsrc -}; - static const char *config_keys[] = { "Host", @@ -96,7 +86,9 @@ static void add_hosts (void) } else { - DEBUG ("ping plugin: Failed adding host `%s'", hl_this->host); + WARNING ("ping plugin: Failed adding host " + "`%s': %s", hl_this->host, + ping_get_error (pingobj)); hl_this->wait_left = hl_this->wait_time; hl_this->wait_time *= 2; if (hl_this->wait_time > 86400) @@ -114,15 +106,18 @@ static void add_hosts (void) hl_this = hl_this->next; } } -} +} /* void add_hosts */ static int ping_init (void) { + if (pingobj == NULL) + return (-1); + if (hosts != NULL) add_hosts (); return (0); -} +} /* int ping_init */ static int ping_config (const char *key, const char *value) { @@ -130,8 +125,7 @@ static int ping_config (const char *key, const char *value) { if ((pingobj = ping_construct ()) == NULL) { - ERROR ("ping: `ping_construct' failed: %s", - ping_get_error (pingobj)); + ERROR ("ping plugin: `ping_construct' failed."); return (1); } } @@ -168,7 +162,7 @@ static int ping_config (const char *key, const char *value) else if (strcasecmp (key, "ttl") == 0) { int ttl = atoi (value); - if (ping_setopt (pingobj, PING_DEF_TIMEOUT, (void *) &ttl)) + if (ping_setopt (pingobj, PING_OPT_TTL, (void *) &ttl)) { WARNING ("ping: liboping did not accept the TTL value %i", ttl); return (1); @@ -217,7 +211,7 @@ static int ping_read (void) if (ping_send (pingobj) < 0) { - ERROR ("ping: `ping_send' failed: %s", + ERROR ("ping plugin: `ping_send' failed: %s", ping_get_error (pingobj)); return (-1); } @@ -230,31 +224,38 @@ static int ping_read (void) buf_len = sizeof (host); if (ping_iterator_get_info (iter, PING_INFO_HOSTNAME, host, &buf_len)) + { + WARNING ("ping plugin: ping_iterator_get_info " + "(PING_INFO_HOSTNAME) failed."); continue; + } buf_len = sizeof (latency); if (ping_iterator_get_info (iter, PING_INFO_LATENCY, &latency, &buf_len)) + { + WARNING ("ping plugin: ping_iterator_get_info (%s, " + "PING_INFO_LATENCY) failed.", host); continue; + } DEBUG ("ping plugin: host = %s, latency = %f", host, latency); ping_submit (host, latency); number_of_hosts++; } + if ((number_of_hosts == 0) && (getuid () != 0)) + { + ERROR ("ping plugin: All hosts failed. Try starting collectd as root."); + } + return (number_of_hosts == 0 ? -1 : 0); } /* int ping_read */ -void module_register (modreg_e load) +void module_register (void) { - if (load & MR_DATASETS) - plugin_register_data_set (&ds); - - if (load & MR_READ) - { - plugin_register_config ("ping", ping_config, - config_keys, config_keys_num); - plugin_register_init ("ping", ping_init); - plugin_register_read ("ping", ping_read); - } + plugin_register_config ("ping", ping_config, + config_keys, config_keys_num); + plugin_register_init ("ping", ping_init); + plugin_register_read ("ping", ping_read); } /* void module_register */