X-Git-Url: https://git.octo.it/?p=collection4.git;a=blobdiff_plain;f=src%2Fgraph_instance.h;h=0279deb3da1781d49c860bb094f138b8db4b0782;hp=61d5ea43f67bc05dd187ac24030e12fd3cbd3715;hb=2ef734476e3511b6f1c2611875e340b6b8ca2d4c;hpb=8a3753760230b270c8f4615891cba2586a661d21 diff --git a/src/graph_instance.h b/src/graph_instance.h index 61d5ea4..0279deb 100644 --- a/src/graph_instance.h +++ b/src/graph_instance.h @@ -1,9 +1,35 @@ +/** + * collection4 - graph_instance.h + * Copyright (C) 2010 Florian octo Forster + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301 USA + * + * Authors: + * Florian octo Forster + **/ + #ifndef GRAPH_INSTANCE_H #define GRAPH_INSTANCE_H 1 #include +#include + #include "graph_types.h" +#include "data_provider.h" #include "graph_ident.h" #include "rrd_args.h" #include "utils_array.h" @@ -31,6 +57,8 @@ int inst_get_rrdargs (graph_config_t *cfg, graph_instance_t *inst, graph_ident_t *inst_get_selector (graph_instance_t *inst); +int inst_compare (const graph_instance_t *i0, const graph_instance_t *i1); + int inst_compare_ident (graph_instance_t *inst, const graph_ident_t *ident); /* Returns true if "ident" matches the instance's selector. */ @@ -52,6 +80,11 @@ _Bool inst_matches_string (graph_config_t *cfg, graph_instance_t *inst, _Bool inst_matches_field (graph_instance_t *inst, graph_ident_field_t field, const char *field_value); +int inst_to_json (const graph_instance_t *inst, yajl_gen handler); +int inst_data_to_json (const graph_instance_t *inst, + dp_time_t begin, dp_time_t end, + yajl_gen handler); + int inst_describe (graph_config_t *cfg, graph_instance_t *inst, char *buffer, size_t buffer_size);