X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=graph_list.h;h=c17d6fc08c17c220c2e911eeb85f1e5cd0ff75f5;hb=0a4d88e7530531c01324af54e881ca770edd10d2;hp=9fa1372738c551426b4f9d6d507dc61d66e5d51d;hpb=9e5770370bb085ccfb19f3dd14707542bf1475f1;p=collection4.git diff --git a/graph_list.h b/graph_list.h index 9fa1372..c17d6fc 100644 --- a/graph_list.h +++ b/graph_list.h @@ -1,21 +1,36 @@ #ifndef GRAPH_LIST_H #define GRAPH_LIST_H 1 -struct graph_list_s -{ - char *host; - char *plugin; - char *plugin_instance; - char *type; - char *type_instance; -}; -typedef struct graph_list_s graph_list_t; - -typedef int (*gl_callback) (const graph_list_t *, void *); +#include "graph_instance.h" -int gl_update (void); -int gl_foreach (gl_callback callback, void *user_data); +/* + * Callback types + */ +typedef int (*gl_cfg_callback) (graph_config_t *cfg, + void *user_data); + +typedef int (*gl_inst_callback) (graph_config_t *cfg, + graph_instance_t *inst, void *user_data); + +/* + * Functions + */ +int gl_add_graph (graph_config_t *cfg); + +int gl_config_submit (void); + +int gl_graph_get_all (gl_cfg_callback callback, + void *user_data); +graph_config_t *gl_graph_get_selected (void); + +int gl_graph_instance_get_all (graph_config_t *cfg, + gl_inst_callback callback, void *user_data); + +int gl_instance_get_all (gl_inst_callback callback, + void *user_data); + +int gl_update (void); #endif /* GRAPH_LIST_H */ /* vim: set sw=2 sts=2 et fdm=marker : */