X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=graph_list.c;h=5b37f2d33162075ebf0a15778cd759204a6f3ec8;hb=816c38cf8560599b827df4edc01227c4348162c3;hp=8c5e7158208f57077e81886f2044d367e68dc090;hpb=379b04abccb88f539f4532c825537831cc6660dc;p=collection4.git diff --git a/graph_list.c b/graph_list.c index 8c5e715..5b37f2d 100644 --- a/graph_list.c +++ b/graph_list.c @@ -9,6 +9,8 @@ #include "graph_list.h" #include "graph_ident.h" +#include "graph_def.h" +#include "graph_config.h" #include "common.h" #include "utils_params.h" @@ -23,9 +25,6 @@ #define ANY_TOKEN "/any/" #define ALL_TOKEN "/all/" -#define IS_ANY(str) (((str) != NULL) && (strcmp (ANY_TOKEN, (str)) == 0)) -#define IS_ALL(str) (((str) != NULL) && (strcmp (ALL_TOKEN, (str)) == 0)) - /* * Data types */ @@ -39,32 +38,6 @@ struct gl_ident_stage_s /* {{{ */ }; /* }}} */ typedef struct gl_ident_stage_s gl_ident_stage_t; -struct graph_instance_s /* {{{ */ -{ - graph_ident_t *select; - - graph_ident_t **files; - size_t files_num; - - graph_instance_t *next; -}; /* }}} struct graph_instance_s */ - -struct graph_def_s; -typedef struct graph_def_s graph_def_t; -struct graph_def_s /* {{{ */ -{ - graph_ident_t *select; - - char *name; - char *legend; - double scale; - _Bool nan_to_zero; - _Bool draw_area; - uint32_t color; - - graph_def_t *next; -}; /* }}} struct graph_def_s */ - struct graph_config_s /* {{{ */ { graph_ident_t *select; @@ -72,6 +45,8 @@ struct graph_config_s /* {{{ */ char *title; char *vertical_label; + graph_def_t *defs; + graph_instance_t *instances; graph_config_t *next; @@ -81,67 +56,13 @@ struct graph_config_s /* {{{ */ * Global variables */ static graph_config_t *graph_config_head = NULL; +static graph_config_t *graph_config_staging = NULL; static time_t gl_last_update = 0; /* * Private functions */ -/* FIXME: These "print_*" functions are used for debugging. They should be - * removed at some point. */ -static int print_files (const graph_instance_t *inst) /* {{{ */ -{ - size_t i; - - for (i = 0; i < inst->files_num; i++) - { - graph_ident_t *ident = inst->files[i]; - char *file; - - file = ident_to_file (ident); - printf (" File \"%s\"\n", file); - free (file); - } - - return (0); -} /* }}} int print_instances */ - -static int print_instances (const graph_config_t *cfg) /* {{{ */ -{ - graph_instance_t *inst; - - for (inst = cfg->instances; inst != NULL; inst = inst->next) - { - char *str; - - str = ident_to_string (inst->select); - printf (" Instance \"%s\"\n", str); - free (str); - - print_files (inst); - } - - return (0); -} /* }}} int print_instances */ - -static int print_graphs (void) /* {{{ */ -{ - graph_config_t *cfg; - - for (cfg = graph_config_head; cfg != NULL; cfg = cfg->next) - { - char *str; - - str = ident_to_string (cfg->select); - printf ("Graph \"%s\"\n", str); - free (str); - - print_instances (cfg); - } - - return (0); -} /* }}} int print_graphs */ - #if 0 /* "Safe" version of strcmp(3): Either or both pointers may be NULL. */ static int strcmp_s (const char *s1, const char *s2) /* {{{ */ @@ -158,120 +79,19 @@ static int strcmp_s (const char *s1, const char *s2) /* {{{ */ } /* }}} int strcmp_s */ #endif -static void instance_destroy (graph_instance_t *inst) /* {{{ */ -{ - graph_instance_t *next; - size_t i; - - if (inst == NULL) - return; - - next = inst->next; - - ident_destroy (inst->select); - - for (i = 0; i < inst->files_num; i++) - ident_destroy (inst->files[i]); - free (inst->files); - - free (inst); - - instance_destroy (next); -} /* }}} void instance_destroy */ - -static void graph_destroy (graph_config_t *cfg) /* {{{ */ -{ - graph_config_t *next; - - if (cfg == NULL) - return; - - next = cfg->next; - - ident_destroy (cfg->select); - - free (cfg->title); - free (cfg->vertical_label); - - instance_destroy (cfg->instances); - - graph_destroy (next); -} /* }}} void graph_destroy */ - /* * Copy part of an identifier. If the "template" value is ANY_TOKEN, "value" is * copied and returned. This function is used when creating graph_instance_t * from graph_config_t. */ -static graph_instance_t *instance_create (graph_config_t *cfg, /* {{{ */ - const graph_ident_t *file) -{ - graph_instance_t *i; - - if ((cfg == NULL) || (file == NULL)) - return (NULL); - - i = malloc (sizeof (*i)); - if (i == NULL) - return (NULL); - memset (i, 0, sizeof (*i)); - - i->select = ident_copy_with_selector (cfg->select, file, - IDENT_FLAG_REPLACE_ANY); - - i->files = NULL; - i->files_num = 0; - - i->next = NULL; - - if (cfg->instances == NULL) - cfg->instances = i; - else - { - graph_instance_t *last; - - last = cfg->instances; - while (last->next != NULL) - last = last->next; - - last->next = i; - } - - return (i); -} /* }}} graph_instance_t *instance_create */ - -static int instance_add_file (graph_instance_t *inst, /* {{{ */ - const graph_ident_t *file) -{ - graph_ident_t **tmp; - - tmp = realloc (inst->files, sizeof (*inst->files) * (inst->files_num + 1)); - if (tmp == NULL) - return (ENOMEM); - inst->files = tmp; - - inst->files[inst->files_num] = ident_clone (file); - if (inst->files[inst->files_num] == NULL) - return (ENOMEM); - - inst->files_num++; - - return (0); -} /* }}} int instance_add_file */ static graph_instance_t *graph_find_instance (graph_config_t *cfg, /* {{{ */ - const graph_ident_t *file) + const graph_ident_t *ident) { - graph_instance_t *i; - - if ((cfg == NULL) || (file == NULL)) + if ((cfg == NULL) || (ident == NULL)) return (NULL); - for (i = cfg->instances; i != NULL; i = i->next) - if (ident_matches (i->select, file)) - return (i); - - return (NULL); + return (inst_find_matching (cfg->instances, ident)); } /* }}} graph_instance_t *graph_find_instance */ static int graph_add_file (graph_config_t *cfg, const graph_ident_t *file) /* {{{ */ @@ -281,28 +101,37 @@ static int graph_add_file (graph_config_t *cfg, const graph_ident_t *file) /* {{ inst = graph_find_instance (cfg, file); if (inst == NULL) { - inst = instance_create (cfg, file); + inst = inst_create (cfg, file); if (inst == NULL) return (ENOMEM); + + if (cfg->instances == NULL) + cfg->instances = inst; + else + inst_append (cfg->instances, inst); } - return (instance_add_file (inst, file)); + return (inst_add_file (inst, file)); } /* }}} int graph_add_file */ -static int graph_append (graph_config_t *cfg) /* {{{ */ +static int graph_append (graph_config_t **head, /* {{{ */ + graph_config_t *cfg) { graph_config_t *last; if (cfg == NULL) return (EINVAL); - if (graph_config_head == NULL) + if (head == NULL) + head = &graph_config_head; + + if (*head == NULL) { - graph_config_head = cfg; + *head = cfg; return (0); } - last = graph_config_head; + last = *head; while (last->next != NULL) last = last->next; @@ -311,26 +140,48 @@ static int graph_append (graph_config_t *cfg) /* {{{ */ return (0); } /* }}} int graph_append */ -static int graph_create_from_file (const graph_ident_t *file) /* {{{ */ +static graph_config_t *graph_create (const graph_ident_t *selector) /* {{{ */ { graph_config_t *cfg; cfg = malloc (sizeof (*cfg)); if (cfg == NULL) - return (ENOMEM); + return (NULL); memset (cfg, 0, sizeof (*cfg)); - cfg->select = ident_clone (file); + if (selector != NULL) + cfg->select = ident_clone (selector); + else + cfg->select = NULL; cfg->title = NULL; cfg->vertical_label = NULL; + cfg->defs = NULL; cfg->instances = NULL; cfg->next = NULL; - graph_append (cfg); + return (cfg); +} /* }}} int graph_create */ + +static void graph_destroy (graph_config_t *cfg) /* {{{ */ +{ + graph_config_t *next; + + if (cfg == NULL) + return; + + next = cfg->next; + + ident_destroy (cfg->select); + + free (cfg->title); + free (cfg->vertical_label); + + def_destroy (cfg->defs); + inst_destroy (cfg->instances); - return (graph_add_file (cfg, file)); -} /* }}} int graph_create_from_file */ + graph_destroy (next); +} /* }}} void graph_destroy */ static int register_file (const graph_ident_t *file) /* {{{ */ { @@ -356,68 +207,15 @@ static int register_file (const graph_ident_t *file) /* {{{ */ } if (num_graphs == 0) - graph_create_from_file (file); + { + cfg = graph_create (file); + graph_append (/* head = */ NULL, cfg); + graph_add_file (cfg, file); + } return (0); } /* }}} int register_file */ -static int FIXME_graph_create_from_file (const char *host, /* {{{ */ - const char *plugin, const char *plugin_instance, - const char *type, const char *type_instance, - const char *title) -{ - graph_config_t *cfg; - - cfg = malloc (sizeof (*cfg)); - if (cfg == NULL) - return (ENOMEM); - memset (cfg, 0, sizeof (*cfg)); - - cfg->select = ident_create (host, plugin, plugin_instance, type, type_instance); - - cfg->title = NULL; - if (title != NULL) - cfg->title = strdup (title); - cfg->vertical_label = NULL; - cfg->instances = NULL; - cfg->next = NULL; - - graph_append (cfg); - - return (0); -} /* }}} int FIXME_graph_create_from_file */ - -/* FIXME: Actually read the config file here. */ -static int read_graph_config (void) /* {{{ */ -{ - if (graph_config_head != NULL) - return (0); - - FIXME_graph_create_from_file (ANY_TOKEN, "cpu", ANY_TOKEN, "cpu", ALL_TOKEN, - "CPU {instance} usage"); - FIXME_graph_create_from_file (ANY_TOKEN, "memory", "", "memory", ALL_TOKEN, - "Memory usage"); - FIXME_graph_create_from_file (ANY_TOKEN, "swap", "", "swap", ALL_TOKEN, - "Swap"); - FIXME_graph_create_from_file (ANY_TOKEN, ANY_TOKEN, ANY_TOKEN, "ps_state", ALL_TOKEN, - "Processes"); - FIXME_graph_create_from_file (ANY_TOKEN, "cpu", ALL_TOKEN, "cpu", "idle", - "CPU idle overview"); - - return (0); -} /* }}} int read_graph_config */ - -static void gl_clear (void) /* {{{ */ -{ - graph_config_t *cfg; - - cfg = graph_config_head; - graph_config_head = NULL; - graph_destroy (cfg); - - gl_last_update = 0; -} /* }}} void gl_clear */ - static int callback_type (const char *type, void *user_data) /* {{{ */ { gl_ident_stage_t *gl; @@ -538,169 +336,113 @@ static const char *get_part_from_param (const char *prim_key, /* {{{ */ return (param (sec_key)); } /* }}} const char *get_part_from_param */ -int gl_ident_get_rrdargs (graph_config_t *cfg, /* {{{ */ - graph_instance_t *inst, - graph_ident_t *ident, - str_array_t *args) +static int gl_clear_instances (void) /* {{{ */ { - char *file; - char **dses = NULL; - size_t dses_num = 0; - int status; - size_t i; - - if ((cfg == NULL) || (inst == NULL) || (ident == NULL) || (args == NULL)) - return (EINVAL); + graph_config_t *cfg; - file = ident_to_file (ident); - if (file == NULL) + for (cfg = graph_config_head; cfg != NULL; cfg = cfg->next) { - DEBUG ("gl_ident_get_rrdargs: ident_to_file returned NULL.\n"); - return (-1); + inst_destroy (cfg->instances); + cfg->instances = NULL; } - DEBUG ("gl_ident_get_rrdargs: file = %s;\n", file); - - status = ds_list_from_rrd_file (file, &dses_num, &dses); - if (status != 0) - { - free (file); - return (status); - } + return (0); +} /* }}} int gl_clear_instances */ - for (i = 0; i < dses_num; i++) - { - int index; - - DEBUG ("gl_ident_get_rrdargs: ds[%lu] = %s;\n", (unsigned long) i, dses[i]); - - index = array_argc (args); - - /* CDEFs */ - array_append_format (args, "DEF:def_%04i_min=%s:%s:MIN", - index, file, dses[i]); - array_append_format (args, "DEF:def_%04i_avg=%s:%s:AVERAGE", - index, file, dses[i]); - array_append_format (args, "DEF:def_%04i_max=%s:%s:MAX", - index, file, dses[i]); - /* VDEFs */ - array_append_format (args, "VDEF:vdef_%04i_min=def_%04i_min,MINIMUM", - index, index); - array_append_format (args, "VDEF:vdef_%04i_avg=def_%04i_avg,AVERAGE", - index, index); - array_append_format (args, "VDEF:vdef_%04i_max=def_%04i_max,MAXIMUM", - index, index); - array_append_format (args, "VDEF:vdef_%04i_lst=def_%04i_avg,LAST", - index, index); - - /* Graph part */ - array_append_format (args, "LINE1:def_%04i_avg#%06"PRIx32":%s", - index, get_random_color (), dses[i]); - array_append_format (args, "GPRINT:vdef_%04i_min:%%lg min,", index); - array_append_format (args, "GPRINT:vdef_%04i_avg:%%lg avg,", index); - array_append_format (args, "GPRINT:vdef_%04i_max:%%lg max,", index); - array_append_format (args, "GPRINT:vdef_%04i_lst:%%lg last\\l", index); - - free (dses[i]); - } - free (dses); - free (file); +/* + * Config functions + */ +static graph_ident_t *graph_config_get_selector (const oconfig_item_t *ci) /* {{{ */ +{ + char *host = NULL; + char *plugin = NULL; + char *plugin_instance = NULL; + char *type = NULL; + char *type_instance = NULL; + graph_ident_t *ret; + int i; - return (0); -} /* }}} int gl_ident_get_rrdargs */ + for (i = 0; i < ci->children_num; i++) + { + oconfig_item_t *child; + + child = ci->children + i; + + if (strcasecmp ("Host", child->key) == 0) + graph_config_get_string (child, &host); + else if (strcasecmp ("Plugin", child->key) == 0) + graph_config_get_string (child, &plugin); + else if (strcasecmp ("PluginInstance", child->key) == 0) + graph_config_get_string (child, &plugin_instance); + else if (strcasecmp ("Type", child->key) == 0) + graph_config_get_string (child, &type); + else if (strcasecmp ("TypeInstance", child->key) == 0) + graph_config_get_string (child, &type_instance); + /* else: ignore all other directives here. */ + } /* for */ + + ret = ident_create (host, plugin, plugin_instance, type, type_instance); + + free (host); + free (plugin); + free (plugin_instance); + free (type); + free (type_instance); + + return (ret); +} /* }}} int graph_config_get_selector */ /* * Global functions */ -int gl_instance_get_params (graph_config_t *cfg, graph_instance_t *inst, /* {{{ */ - char *buffer, size_t buffer_size) +int graph_config_add (const oconfig_item_t *ci) /* {{{ */ { - if ((inst == NULL) || (buffer == NULL) || (buffer_size < 1)) + graph_ident_t *select; + graph_config_t *cfg = NULL; + int i; + + select = graph_config_get_selector (ci); + if (select == NULL) return (EINVAL); - buffer[0] = 0; - -#define COPY_FIELD(field) do { \ - const char *cfg_f = ident_get_##field (cfg->select); \ - const char *inst_f = ident_get_##field (inst->select); \ - if (strcmp (cfg_f, inst_f) == 0) \ - { \ - strlcat (buffer, #field, buffer_size); \ - strlcat (buffer, "=", buffer_size); \ - strlcat (buffer, cfg_f, buffer_size); \ - } \ - else \ - { \ - strlcat (buffer, "graph_", buffer_size); \ - strlcat (buffer, #field, buffer_size); \ - strlcat (buffer, "=", buffer_size); \ - strlcat (buffer, cfg_f, buffer_size); \ - strlcat (buffer, ";", buffer_size); \ - strlcat (buffer, "inst_", buffer_size); \ - strlcat (buffer, #field, buffer_size); \ - strlcat (buffer, "=", buffer_size); \ - strlcat (buffer, inst_f, buffer_size); \ - } \ -} while (0) - - COPY_FIELD(host); - strlcat (buffer, ";", buffer_size); - COPY_FIELD(plugin); - strlcat (buffer, ";", buffer_size); - COPY_FIELD(plugin_instance); - strlcat (buffer, ";", buffer_size); - COPY_FIELD(type); - strlcat (buffer, ";", buffer_size); - COPY_FIELD(type_instance); - -#undef COPY_FIELD + cfg = graph_create (/* selector = */ NULL); + if (cfg == NULL) + return (ENOMEM); - return (0); -} /* }}} int gl_instance_get_params */ + cfg->select = select; -graph_instance_t *inst_get_selected (graph_config_t *cfg) /* {{{ */ -{ - const char *host = get_part_from_param ("inst_host", "host"); - const char *plugin = get_part_from_param ("inst_plugin", "plugin"); - const char *plugin_instance = get_part_from_param ("inst_plugin_instance", "plugin_instance"); - const char *type = get_part_from_param ("inst_type", "type"); - const char *type_instance = get_part_from_param ("inst_type_instance", "type_instance"); - graph_ident_t *ident; - graph_instance_t *inst; + for (i = 0; i < ci->children_num; i++) + { + oconfig_item_t *child; - if (cfg == NULL) - cfg = graph_get_selected (); + child = ci->children + i; - if (cfg == NULL) - { - DEBUG ("inst_get_selected: cfg == NULL;\n"); - return (NULL); - } + if (strcasecmp ("Title", child->key) == 0) + graph_config_get_string (child, &cfg->title); + else if (strcasecmp ("VerticalLabel", child->key) == 0) + graph_config_get_string (child, &cfg->vertical_label); + else if (strcasecmp ("DEF", child->key) == 0) + def_config (cfg, child); + } /* for */ - if ((host == NULL) - || (plugin == NULL) || (plugin_instance == NULL) - || (type == NULL) || (type_instance == NULL)) - { - DEBUG ("inst_get_selected: A parameter is NULL.\n"); - return (NULL); - } + graph_append (&graph_config_staging, cfg); - ident = ident_create (host, plugin, plugin_instance, type, type_instance); + return (0); +} /* }}} graph_config_add */ - for (inst = cfg->instances; inst != NULL; inst = inst->next) - { - if (ident_compare (ident, inst->select) != 0) - continue; +int graph_config_submit (void) /* {{{ */ +{ + graph_config_t *tmp; - ident_destroy (ident); - return (inst); - } + tmp = graph_config_head; + graph_config_head = graph_config_staging; + graph_config_staging = NULL; - DEBUG ("inst_get_selected: No match found.\n"); - ident_destroy (ident); - return (NULL); -} /* }}} graph_instance_t *inst_get_selected */ + graph_destroy (tmp); + + return (0); +} /* }}} int graph_config_submit */ int gl_graph_get_all (gl_cfg_callback callback, /* {{{ */ void *user_data) @@ -756,47 +498,73 @@ graph_config_t *graph_get_selected (void) /* {{{ */ return (NULL); } /* }}} graph_config_t *graph_get_selected */ +/* gl_instance_get_all, gl_graph_instance_get_all {{{ */ +struct gl_inst_callback_data /* {{{ */ +{ + graph_config_t *cfg; + gl_inst_callback callback; + void *user_data; +}; /* }}} struct gl_inst_callback_data */ + +static int gl_inst_callback_handler (graph_instance_t *inst, /* {{{ */ + void *user_data) +{ + struct gl_inst_callback_data *data = user_data; + + return ((*data->callback) (data->cfg, inst, data->user_data)); +} /* }}} int gl_inst_callback_handler */ + int gl_graph_instance_get_all (graph_config_t *cfg, /* {{{ */ gl_inst_callback callback, void *user_data) { - graph_instance_t *inst; + struct gl_inst_callback_data data = + { + cfg, + callback, + user_data + }; if ((cfg == NULL) || (callback == NULL)) return (EINVAL); - for (inst = cfg->instances; inst != NULL; inst = inst->next) + return (inst_foreach (cfg->instances, gl_inst_callback_handler, &data)); +} /* }}} int gl_graph_instance_get_all */ + +int gl_instance_get_all (gl_inst_callback callback, /* {{{ */ + void *user_data) +{ + graph_config_t *cfg; + + gl_update (); + + for (cfg = graph_config_head; cfg != NULL; cfg = cfg->next) { int status; - status = (*callback) (cfg, inst, user_data); + status = gl_graph_instance_get_all (cfg, callback, user_data); if (status != 0) return (status); } return (0); -} /* }}} int gl_graph_instance_get_all */ +} /* }}} int gl_instance_get_all */ +/* }}} gl_instance_get_all, gl_graph_instance_get_all */ int gl_graph_get_title (graph_config_t *cfg, /* {{{ */ char *buffer, size_t buffer_size) { - char *str; - if ((cfg == NULL) || (buffer == NULL) || (buffer_size < 1)) return (EINVAL); - if (cfg->title != NULL) - str = cfg->title; - else - str = ident_to_string (cfg->select); + if (cfg->title == NULL) + cfg->title = ident_to_string (cfg->select); - if (str == NULL) + if (cfg->title == NULL) return (ENOMEM); - strncpy (buffer, str, buffer_size); + strncpy (buffer, cfg->title, buffer_size); buffer[buffer_size - 1] = 0; - free (str); - return (0); } /* }}} int gl_graph_get_title */ @@ -808,66 +576,35 @@ graph_ident_t *gl_graph_get_selector (graph_config_t *cfg) /* {{{ */ return (ident_clone (cfg->select)); } /* }}} graph_ident_t *gl_graph_get_selector */ -int gl_instance_get_all (gl_inst_callback callback, /* {{{ */ - void *user_data) +graph_instance_t *gl_graph_get_instances (graph_config_t *cfg) /* {{{ */ { - graph_config_t *cfg; - - gl_update (); - - for (cfg = graph_config_head; cfg != NULL; cfg = cfg->next) - { - graph_instance_t *inst; + if (cfg == NULL) + return (NULL); - for (inst = cfg->instances; inst != NULL; inst = inst->next) - { - int status; + return (cfg->instances); +} /* }}} graph_instance_t *gl_graph_get_instances */ - status = (*callback) (cfg, inst, user_data); - if (status != 0) - return (status); - } - } +graph_def_t *gl_graph_get_defs (graph_config_t *cfg) /* {{{ */ +{ + if (cfg == NULL) + return (NULL); - return (0); -} /* }}} int gl_instance_get_all */ + return (cfg->defs); +} /* }}} graph_def_t *gl_graph_get_defs */ -int gl_instance_get_rrdargs (graph_config_t *cfg, /* {{{ */ - graph_instance_t *inst, - str_array_t *args) +int gl_graph_add_def (graph_config_t *cfg, graph_def_t *def) /* {{{ */ { - size_t i; - - if ((cfg == NULL) || (inst == NULL) || (args == NULL)) + if ((cfg == NULL) || (def == NULL)) return (EINVAL); - if (cfg->title != NULL) + if (cfg->defs == NULL) { - array_append (args, "-t"); - array_append (args, cfg->title); - } - - for (i = 0; i < inst->files_num; i++) - { - int status; - - status = gl_ident_get_rrdargs (cfg, inst, inst->files[i], args); - if (status != 0) - return (status); + cfg->defs = def; + return (0); } - return (0); -} /* }}} int gl_instance_get_rrdargs */ - -graph_ident_t *gl_instance_get_selector (graph_instance_t *inst) /* {{{ */ -{ - if (inst == NULL) - return (NULL); - - return (ident_clone (inst->select)); -} /* }}} graph_ident_t *gl_instance_get_selector */ - -/* DELETEME */ + return (def_append (cfg->defs, def)); +} /* }}} int gl_graph_add_def */ int gl_update (void) /* {{{ */ { @@ -884,9 +621,7 @@ int gl_update (void) /* {{{ */ if ((gl_last_update + UPDATE_INTERVAL) >= now) return (0); - gl_clear (); - - read_graph_config (); + graph_read_config (); memset (&gl, 0, sizeof (gl)); gl.host = NULL; @@ -895,9 +630,10 @@ int gl_update (void) /* {{{ */ gl.type = NULL; gl.type_instance = NULL; + gl_clear_instances (); status = foreach_host (callback_host, &gl); - /* print_graphs (); */ + gl_last_update = now; return (status); } /* }}} int gl_update */