X-Git-Url: https://git.octo.it/?p=collection4.git;a=blobdiff_plain;f=src%2Fdp_rrdtool.c;h=f90b79e913a979194117c81078492ab8b54c7cce;hp=b72e512c9fe9a2a570050889470d35cfb045cf15;hb=2ef734476e3511b6f1c2611875e340b6b8ca2d4c;hpb=b578a6b9f331c11ebc70d153494c7b6113990ee7 diff --git a/src/dp_rrdtool.c b/src/dp_rrdtool.c index b72e512..f90b79e 100644 --- a/src/dp_rrdtool.c +++ b/src/dp_rrdtool.c @@ -23,7 +23,6 @@ #include "graph_types.h" #include "graph_ident.h" -#include "graph_list.h" #include "data_provider.h" #include "filesystem.h" #include "oconfig.h" @@ -285,6 +284,9 @@ static int get_ident_data (void *priv, unsigned long data_index; unsigned long data_length; + dp_data_point_t *dp = NULL; + size_t dp_num = 0; + status = ident_to_rrdfile (ident, config, filename, sizeof (filename)); if (status != 0) return (status); @@ -309,6 +311,7 @@ static int get_ident_data (void *priv, free (ds_namv[i]); \ free (ds_namv); \ free (data); \ + free (dp); \ return (ret_status); \ } while (0) @@ -322,21 +325,24 @@ static int get_ident_data (void *priv, /* Number of data points returned. */ data_length = (rrd_end - rrd_start) / step; + dp_num = (size_t) data_length; + dp = calloc (dp_num, sizeof (*dp)); + if (dp == NULL) + BAIL_OUT (ENOMEM); + for (data_index = 0; data_index < data_length; data_index++) { - dp_data_point_t dp; unsigned long index = (ds_count * data_index) + ds_index; - memset (&dp, 0, sizeof (dp)); - dp.time.tv_sec = rrd_start + (data_index * step); - dp.time.tv_nsec = 0; - dp.value = (double) data[index]; - - status = (*cb) (ident, ds_name, &dp, ud); - if (status != 0) - BAIL_OUT (status); + dp[data_index].time.tv_sec = rrd_start + (data_index * step); + dp[data_index].time.tv_nsec = 0; + dp[data_index].value = (double) data[index]; } + status = (*cb) (ident, ds_name, dp, dp_num, ud); + if (status != 0) + BAIL_OUT (status); + BAIL_OUT (0); #undef BAIL_OUT } /* }}} int get_ident_data */ @@ -371,7 +377,7 @@ int dp_rrdtool_config (const oconfig_item_t *ci) dp.private_data = conf; - gl_register_data_provider ("rrdtool", &dp); + data_provider_register ("rrdtool", &dp); return (0); } /* }}} int dp_rrdtool_config */