summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6d9b17a)
raw | patch | inline | side by side (parent: 6d9b17a)
author | Ruben Kerkhof <ruben@rubenkerkhof.com> | |
Fri, 24 Jul 2015 20:40:11 +0000 (22:40 +0200) | ||
committer | Ruben Kerkhof <ruben@rubenkerkhof.com> | |
Fri, 24 Jul 2015 20:40:11 +0000 (22:40 +0200) |
This fixes the (null) I saw in an error message:
write_graphite plugin: send to localhost:(null) (udp) failed with status -1 (Connection refused)
write_graphite plugin: send to localhost:(null) (udp) failed with status -1 (Connection refused)
src/write_graphite.c | patch | blob | history |
diff --git a/src/write_graphite.c b/src/write_graphite.c
index 639b055d929fa4771de6f398ce9f98522b5d4750..f6c73ac80d8f616e698ec26893dbe489834b13e8 100644 (file)
--- a/src/write_graphite.c
+++ b/src/write_graphite.c
cdtime_t now;
int status;
- const char *service = cb->service ? cb->service : WG_DEFAULT_SERVICE;
const char *protocol = cb->protocol ? cb->protocol : WG_DEFAULT_PROTOCOL;
char connerr[1024] = "";
ai_list = NULL;
- status = getaddrinfo (cb->node, service, &ai_hints, &ai_list);
+ status = getaddrinfo (cb->node, cb->service, &ai_hints, &ai_list);
if (status != 0)
{
ERROR ("write_graphite plugin: getaddrinfo (%s, %s, %s) failed: %s",
- cb->node, service, protocol, gai_strerror (status));
+ cb->node, cb->service, protocol, gai_strerror (status));
return (-1);
}
sstrerror (errno, connerr, sizeof (connerr));
c_complain (LOG_ERR, &cb->init_complaint,
"write_graphite plugin: Connecting to %s:%s via %s failed. "
- "The last error was: %s", cb->node, service, protocol, connerr);
+ "The last error was: %s", cb->node, cb->service, protocol, connerr);
return (-1);
}
else
{
c_release (LOG_INFO, &cb->init_complaint,
"write_graphite plugin: Successfully connected to %s:%s via %s.",
- cb->node, service, protocol);
+ cb->node, cb->service, protocol);
}
wg_reset_buffer (cb);
cb->sock_fd = -1;
cb->name = NULL;
cb->node = strdup (WG_DEFAULT_NODE);
- cb->service = NULL;
+ cb->service = strdup (WG_DEFAULT_SERVICE);
cb->protocol = NULL;
cb->log_send_errors = WG_DEFAULT_LOG_SEND_ERRORS;
cb->prefix = NULL;
if (cb->name == NULL)
ssnprintf (callback_name, sizeof (callback_name), "write_graphite/%s/%s/%s",
cb->node,
- cb->service != NULL ? cb->service : WG_DEFAULT_SERVICE,
+ cb->service,
cb->protocol != NULL ? cb->protocol : WG_DEFAULT_PROTOCOL);
else
ssnprintf (callback_name, sizeof (callback_name), "write_graphite/%s",