X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Futils_cache.c;h=b9b896215be1cb631f5c1b0252bcf4c341af6846;hb=e7929dac268957cbbd9082717759c3917ac1b51e;hp=79989a07aedf0247712ca0805499e750de1bec35;hpb=64765bc4d41af1af14e1fb90c4ae2b81d9de39b5;p=collectd.git diff --git a/src/utils_cache.c b/src/utils_cache.c index 79989a07..b9b89621 100644 --- a/src/utils_cache.c +++ b/src/utils_cache.c @@ -23,6 +23,8 @@ #include "common.h" #include "plugin.h" #include "utils_avltree.h" +#include "utils_cache.h" +#include "utils_threshold.h" #include #include @@ -33,11 +35,20 @@ typedef struct cache_entry_s int values_num; gauge_t *values_gauge; counter_t *values_counter; + /* Time contained in the package + * (for calculating rates) */ + time_t last_time; + /* Time according to the local clock + * (for purging old entries) */ time_t last_update; + /* Interval in which the data is collected + * (for purding old entries) */ + int interval; + int state; } cache_entry_t; -static avl_tree_t *cache_tree = NULL; -static pthread_mutex_t cache_lock; +static c_avl_tree_t *cache_tree = NULL; +static pthread_mutex_t cache_lock = PTHREAD_MUTEX_INITIALIZER; static int cache_compare (const cache_entry_t *a, const cache_entry_t *b) { @@ -45,139 +56,409 @@ static int cache_compare (const cache_entry_t *a, const cache_entry_t *b) return (strcmp (a->name, b->name)); } /* int cache_compare */ -int uc_init (void) +static cache_entry_t *cache_alloc (int values_num) { - if (cache_tree == NULL) - cache_tree = avl_create ((int (*) (const void *, const void *)) - cache_compare); + cache_entry_t *ce; - return (0); -} /* int uc_init */ + ce = (cache_entry_t *) malloc (sizeof (cache_entry_t)); + if (ce == NULL) + { + ERROR ("utils_cache: cache_alloc: malloc failed."); + return (NULL); + } + memset (ce, '\0', sizeof (cache_entry_t)); + ce->values_num = values_num; -int uc_update (const data_set_t *ds, const value_list_t *vl) + ce->values_gauge = (gauge_t *) calloc (values_num, sizeof (gauge_t)); + ce->values_counter = (counter_t *) calloc (values_num, sizeof (counter_t)); + if ((ce->values_gauge == NULL) || (ce->values_counter == NULL)) + { + sfree (ce->values_gauge); + sfree (ce->values_counter); + sfree (ce); + ERROR ("utils_cache: cache_alloc: calloc failed."); + return (NULL); + } + + return (ce); +} /* cache_entry_t *cache_alloc */ + +static void cache_free (cache_entry_t *ce) +{ + if (ce == NULL) + return; + + sfree (ce->values_gauge); + sfree (ce->values_counter); + sfree (ce); +} /* void cache_free */ + +static int uc_send_notification (const char *name) { - char name[6 * DATA_MAX_NAME_LEN]; cache_entry_t *ce = NULL; + int status; - if (FORMAT_VL (name, sizeof (name), vl, ds) != 0) + char *name_copy; + char *host; + char *plugin; + char *plugin_instance; + char *type; + char *type_instance; + + notification_t n; + + name_copy = strdup (name); + if (name_copy == NULL) + { + ERROR ("uc_send_notification: strdup failed."); + return (-1); + } + + status = parse_identifier (name_copy, &host, + &plugin, &plugin_instance, + &type, &type_instance); + if (status != 0) { - ERROR ("uc_insert: FORMAT_VL failed."); + ERROR ("uc_send_notification: Cannot parse name `%s'", name); return (-1); } + /* Copy the associative members */ + notification_init (&n, NOTIF_FAILURE, /* host = */ NULL, + host, plugin, plugin_instance, type, type_instance); + + sfree (name_copy); + name_copy = host = plugin = plugin_instance = type = type_instance = NULL; + pthread_mutex_lock (&cache_lock); - if (avl_get (cache_tree, name, (void *) &ce) == 0) + /* + * Set the time _after_ getting the lock because we don't know how long + * acquiring the lock takes and we will use this time later to decide + * whether or not the state is OKAY. + */ + n.time = time (NULL); + + status = c_avl_get (cache_tree, name, (void *) &ce); + if (status != 0) { - int i; + pthread_mutex_unlock (&cache_lock); + sfree (name_copy); + return (-1); + } + + /* Check if the entry has been updated in the meantime */ + if ((n.time - ce->last_update) < (2 * ce->interval)) + { + ce->state = STATE_OKAY; + pthread_mutex_unlock (&cache_lock); + sfree (name_copy); + return (-1); + } - assert (ce != NULL); - assert (ce->values_num == ds->ds_num); + snprintf (n.message, sizeof (n.message), + "%s has not been updated for %i seconds.", name, + (int) (n.time - ce->last_update)); + + pthread_mutex_unlock (&cache_lock); + + n.message[sizeof (n.message) - 1] = '\0'; + plugin_dispatch_notification (&n); + + return (0); +} /* int uc_send_notification */ + +static int uc_insert (const data_set_t *ds, const value_list_t *vl, + const char *key) +{ + int i; + char *key_copy; + cache_entry_t *ce; + + /* `cache_lock' has been locked by `uc_update' */ - if (ce->last_update >= vl->time) + key_copy = strdup (key); + if (key_copy == NULL) + { + ERROR ("uc_insert: strdup failed."); + return (-1); + } + + ce = cache_alloc (ds->ds_num); + if (ce == NULL) + { + ERROR ("uc_insert: cache_alloc (%i) failed.", ds->ds_num); + return (-1); + } + + sstrncpy (ce->name, key, sizeof (ce->name)); + + for (i = 0; i < ds->ds_num; i++) + { + if (ds->ds[i].type == DS_TYPE_COUNTER) + { + ce->values_gauge[i] = NAN; + ce->values_counter[i] = vl->values[i].counter; + } + else /* if (ds->ds[i].type == DS_TYPE_GAUGE) */ { - pthread_mutex_unlock (&cache_lock); - NOTICE ("uc_insert: Value too old: name = %s; value time = %u; " - "last cache update = %u;", - name, (unsigned int) vl->time, (unsigned int) ce->last_update); - return (-1); + ce->values_gauge[i] = vl->values[i].gauge; } + } /* for (i) */ + + ce->last_time = vl->time; + ce->last_update = time (NULL); + ce->interval = vl->interval; + ce->state = STATE_OKAY; + + if (c_avl_insert (cache_tree, key_copy, ce) != 0) + { + sfree (key_copy); + ERROR ("uc_insert: c_avl_insert failed."); + return (-1); + } + + DEBUG ("uc_insert: Added %s to the cache.", key); + return (0); +} /* int uc_insert */ + +int uc_init (void) +{ + if (cache_tree == NULL) + cache_tree = c_avl_create ((int (*) (const void *, const void *)) + cache_compare); + + return (0); +} /* int uc_init */ + +int uc_check_timeout (void) +{ + time_t now; + cache_entry_t *ce; + + char **keys = NULL; + int keys_len = 0; + + char *key; + c_avl_iterator_t *iter; + int i; + + pthread_mutex_lock (&cache_lock); - for (i = 0; i < ds->ds_num; i++) + now = time (NULL); + + /* Build a list of entries to be flushed */ + iter = c_avl_get_iterator (cache_tree); + while (c_avl_iterator_next (iter, (void *) &key, (void *) &ce) == 0) + { + /* If entry has not been updated, add to `keys' array */ + if ((now - ce->last_update) >= (2 * ce->interval)) { - if (ds->ds[i].type == DS_TYPE_COUNTER) + char **tmp; + + tmp = (char **) realloc ((void *) keys, + (keys_len + 1) * sizeof (char *)); + if (tmp == NULL) { - counter_t diff; - - /* check if the counter has wrapped around */ - if (vl->values[i].counter < ce->values_counter[i]) - { - if (ce->values_counter[i] <= 4294967295U) - diff = (4294967295U - ce->values_counter[i]) - + vl->values[i].counter; - else - diff = (18446744073709551615ULL - ce->values_counter[i]) - + vl->values[i].counter; - } - else /* counter has NOT wrapped around */ - { - diff = vl->values[i].counter - ce->values_counter[i]; - } - - ce->values_gauge[i] = ((double) diff) - / ((double) (vl->time - ce->last_update)); - ce->values_counter[i] = vl->values[i].counter; + ERROR ("uc_purge: realloc failed."); + c_avl_iterator_destroy (iter); + return (-1); } - else /* if (ds->ds[i].type == DS_TYPE_GAUGE) */ + + keys = tmp; + keys[keys_len] = strdup (key); + if (keys[keys_len] == NULL) { - ce->values_gauge[i] = vl->values[i].gauge; + ERROR ("uc_check_timeout: strdup failed."); + continue; } - DEBUG ("uc_insert: %s: ds[%i] = %lf", name, i, ce->values_gauge[i]); - } /* for (i) */ + keys_len++; + } + } /* while (c_avl_iterator_next) */ - ce->last_update = vl->time; - } - else /* key is not found */ + for (i = 0; i < keys_len; i++) { - int i; - size_t ce_size = sizeof (cache_entry_t) - + ds->ds_num * (sizeof (counter_t) + sizeof (gauge_t)); - char *key; - - key = strdup (name); - if (key == NULL) + int status; + + status = ut_check_interesting (keys[i]); + + if (status < 0) { - pthread_mutex_unlock (&cache_lock); - ERROR ("uc_insert: strdup failed."); - return (-1); + ERROR ("uc_check_timeout: ut_check_interesting failed."); + sfree (keys[i]); } - - ce = (cache_entry_t *) malloc (ce_size); - if (ce == NULL) + else if (status == 0) /* ``service'' is uninteresting */ + { + ce = NULL; + DEBUG ("uc_check_timeout: %s is missing but ``uninteresting''", + keys[i]); + status = c_avl_remove (cache_tree, keys[i], + (void *) &key, (void *) &ce); + if (status != 0) + { + ERROR ("uc_check_timeout: c_avl_remove (%s) failed.", keys[i]); + } + sfree (keys[i]); + cache_free (ce); + } + else if (status == 1) /* persist */ + { + DEBUG ("uc_check_timeout: %s is missing, sending notification.", + keys[i]); + ce->state = STATE_MISSING; + } + else if (status == 2) /* do not persist */ + { + if (ce->state == STATE_MISSING) + { + DEBUG ("uc_check_timeout: %s is missing but " + "notification has already been sent.", + keys[i]); + sfree (keys[i]); + } + else /* (ce->state != STATE_MISSING) */ + { + DEBUG ("uc_check_timeout: %s is missing, sending one notification.", + keys[i]); + ce->state = STATE_MISSING; + } + } + else { - pthread_mutex_unlock (&cache_lock); - ERROR ("uc_insert: malloc (%u) failed.", (unsigned int) ce_size); - return (-1); + WARNING ("uc_check_timeout: ut_check_interesting (%s) returned ", + "invalid status %i.", + keys[i], status); } + } /* for (keys[i]) */ + + c_avl_iterator_destroy (iter); + + pthread_mutex_unlock (&cache_lock); + + for (i = 0; i < keys_len; i++) + { + if (keys[i] == NULL) + continue; + + uc_send_notification (keys[i]); + sfree (keys[i]); + } + + sfree (keys); + + return (0); +} /* int uc_check_timeout */ - memset (ce, '\0', ce_size); +int uc_update (const data_set_t *ds, const value_list_t *vl) +{ + char name[6 * DATA_MAX_NAME_LEN]; + cache_entry_t *ce = NULL; + int send_okay_notification = 0; + time_t update_delay = 0; + notification_t n; + int status; + int i; + + if (FORMAT_VL (name, sizeof (name), vl, ds) != 0) + { + ERROR ("uc_update: FORMAT_VL failed."); + return (-1); + } + + pthread_mutex_lock (&cache_lock); - strncpy (ce->name, name, sizeof (ce->name)); - ce->name[sizeof (ce->name) - 1] = '\0'; + status = c_avl_get (cache_tree, name, (void *) &ce); + if (status != 0) /* entry does not yet exist */ + { + status = uc_insert (ds, vl, name); + pthread_mutex_unlock (&cache_lock); + return (status); + } + + assert (ce != NULL); + assert (ce->values_num == ds->ds_num); - ce->values_num = ds->ds_num; - ce->values_gauge = (gauge_t *) (ce + 1); - ce->values_counter = (counter_t *) (ce->values_gauge + ce->values_num); + if (ce->last_time >= vl->time) + { + pthread_mutex_unlock (&cache_lock); + NOTICE ("uc_update: Value too old: name = %s; value time = %u; " + "last cache update = %u;", + name, (unsigned int) vl->time, (unsigned int) ce->last_time); + return (-1); + } - for (i = 0; i < ds->ds_num; i++) + /* Send a notification (after the lock has been released) if we switch the + * state from something else to `okay'. */ + if (ce->state == STATE_MISSING) + { + send_okay_notification = 1; + ce->state = STATE_OKAY; + update_delay = time (NULL) - ce->last_update; + } + + for (i = 0; i < ds->ds_num; i++) + { + if (ds->ds[i].type == DS_TYPE_COUNTER) { - if (ds->ds[i].type == DS_TYPE_COUNTER) + counter_t diff; + + /* check if the counter has wrapped around */ + if (vl->values[i].counter < ce->values_counter[i]) { - ce->values_gauge[i] = NAN; - ce->values_counter[i] = vl->values[i].counter; + if (ce->values_counter[i] <= 4294967295U) + diff = (4294967295U - ce->values_counter[i]) + + vl->values[i].counter; + else + diff = (18446744073709551615ULL - ce->values_counter[i]) + + vl->values[i].counter; } - else /* if (ds->ds[i].type == DS_TYPE_GAUGE) */ + else /* counter has NOT wrapped around */ { - ce->values_gauge[i] = vl->values[i].gauge; + diff = vl->values[i].counter - ce->values_counter[i]; } - } /* for (i) */ - ce->last_update = vl->time; - - if (avl_insert (cache_tree, key, ce) != 0) + ce->values_gauge[i] = ((double) diff) + / ((double) (vl->time - ce->last_time)); + ce->values_counter[i] = vl->values[i].counter; + } + else /* if (ds->ds[i].type == DS_TYPE_GAUGE) */ { - pthread_mutex_unlock (&cache_lock); - ERROR ("uc_insert: avl_insert failed."); - return (-1); + ce->values_gauge[i] = vl->values[i].gauge; } + DEBUG ("uc_update: %s: ds[%i] = %lf", name, i, ce->values_gauge[i]); + } /* for (i) */ - DEBUG ("uc_insert: Added %s to the cache.", name); - } /* if (key is not found) */ + ce->last_time = vl->time; + ce->last_update = time (NULL); + ce->interval = vl->interval; pthread_mutex_unlock (&cache_lock); + if (send_okay_notification == 0) + return (0); + + /* Do not send okay notifications for uninteresting values, i. e. values for + * which no threshold is configured. */ + status = ut_check_interesting (name); + if (status <= 0) + return (0); + + /* Initialize the notification */ + memset (&n, '\0', sizeof (n)); + NOTIFICATION_INIT_VL (&n, vl, ds); + + n.severity = NOTIF_OKAY; + n.time = vl->time; + + snprintf (n.message, sizeof (n.message), + "Received a value for %s. It was missing for %u seconds.", + name, (unsigned int) update_delay); + n.message[sizeof (n.message) - 1] = '\0'; + + plugin_dispatch_notification (&n); + return (0); -} /* int uc_insert */ +} /* int uc_update */ gauge_t *uc_get_rate (const data_set_t *ds, const value_list_t *vl) { @@ -187,13 +468,13 @@ gauge_t *uc_get_rate (const data_set_t *ds, const value_list_t *vl) if (FORMAT_VL (name, sizeof (name), vl, ds) != 0) { - ERROR ("uc_insert: FORMAT_VL failed."); + ERROR ("uc_get_rate: FORMAT_VL failed."); return (NULL); } pthread_mutex_lock (&cache_lock); - if (avl_get (cache_tree, name, (void *) &ce) == 0) + if (c_avl_get (cache_tree, name, (void *) &ce) == 0) { assert (ce != NULL); assert (ce->values_num == ds->ds_num); @@ -214,4 +495,54 @@ gauge_t *uc_get_rate (const data_set_t *ds, const value_list_t *vl) return (ret); } /* gauge_t *uc_get_rate */ +int uc_get_state (const data_set_t *ds, const value_list_t *vl) +{ + char name[6 * DATA_MAX_NAME_LEN]; + cache_entry_t *ce = NULL; + int ret = STATE_ERROR; + + if (FORMAT_VL (name, sizeof (name), vl, ds) != 0) + { + ERROR ("uc_get_state: FORMAT_VL failed."); + return (STATE_ERROR); + } + + pthread_mutex_lock (&cache_lock); + + if (c_avl_get (cache_tree, name, (void *) &ce) == 0) + { + assert (ce != NULL); + ret = ce->state; + } + + pthread_mutex_unlock (&cache_lock); + + return (ret); +} /* int uc_get_state */ + +int uc_set_state (const data_set_t *ds, const value_list_t *vl, int state) +{ + char name[6 * DATA_MAX_NAME_LEN]; + cache_entry_t *ce = NULL; + int ret = -1; + + if (FORMAT_VL (name, sizeof (name), vl, ds) != 0) + { + ERROR ("uc_get_state: FORMAT_VL failed."); + return (STATE_ERROR); + } + + pthread_mutex_lock (&cache_lock); + + if (c_avl_get (cache_tree, name, (void *) &ce) == 0) + { + assert (ce != NULL); + ret = ce->state; + ce->state = state; + } + + pthread_mutex_unlock (&cache_lock); + + return (ret); +} /* int uc_set_state */ /* vim: set sw=2 ts=8 sts=2 tw=78 : */