X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Flibvirt.c;h=6f9e5f126d497b44ef2c42e2cd437cae3f5a1b49;hb=cba0f3fc0e50b9aa9c24e355926b290efa35e8a6;hp=6ba08fbca5ebc28249c5246e7a9030b49b94b242;hpb=3602864950048219eb2981be13d902cc60117da2;p=collectd.git diff --git a/src/libvirt.c b/src/libvirt.c index 6ba08fbc..6f9e5f12 100644 --- a/src/libvirt.c +++ b/src/libvirt.c @@ -24,6 +24,7 @@ #include "plugin.h" #include "configfile.h" #include "utils_ignorelist.h" +#include "utils_complain.h" #include #include @@ -50,7 +51,7 @@ static const char *config_keys[] = { /* Connection. */ static virConnectPtr conn = 0; static char *conn_string = NULL; -static int conn_count = 0; +static c_complain_t conn_complain = C_COMPLAIN_INIT_STATIC; /* Seconds between list refreshes, 0 disables completely. */ static int interval = 60; @@ -155,15 +156,13 @@ lv_config (const char *key, const char *value) il_interface_devices = ignorelist_create (1); if (strcasecmp (key, "Connection") == 0) { - if (conn_count++ != 0) { - ERROR ("Connection may only be given once in config file"); - return 1; - } - conn_string = strdup(value); - if (conn_string == NULL) { + char *tmp = strdup (value); + if (tmp == NULL) { ERROR ("libvirt plugin: Connection strdup failed."); - return -1; + return 1; } + sfree (conn_string); + conn_string = tmp; return 0; } @@ -255,12 +254,17 @@ lv_read (void) int i; if (conn == NULL) { + /* `conn_string == NULL' is acceptable. */ conn = virConnectOpenReadOnly (conn_string); if (conn == NULL) { - ERROR ("libvirt plugin: Not connected."); + c_complain (LOG_ERR, &conn_complain, + "libvirt plugin: Unable to connect: " + "virConnectOpenReadOnly failed."); return -1; } } + c_release (LOG_NOTICE, &conn_complain, + "libvirt plugin: Connection established."); time (&t);