From: Florian Forster <o...@leeloo.lan.home.verplant.org>
Signed-off-by: Florian Forster <o...@leeloo.lan.home.verplant.org> --- src/rrd_graph.c | 65 +++++++++++++++++++++++------------------------------- 1 files changed, 28 insertions(+), 37 deletions(-) diff --git a/src/rrd_graph.c b/src/rrd_graph.c index 19e3c40..cca9a09 100644 --- a/src/rrd_graph.c +++ b/src/rrd_graph.c @@ -841,46 +841,37 @@ int data_fetch( if (!skip) { unsigned long ft_step = im->gdes[i].step; /* ft_step will record what we got from fetch */ - /* Flush the file if - * - a connection to the daemon has been established - * - this is the first occurrence of that RRD file - */ + /* If connected, use the daemon to fetch the data. */ if (rrdc_is_connected(im->daemon_addr)) { - int status; - - status = 0; - for (ii = 0; ii < i; ii++) - { - if (strcmp (im->gdes[i].rrd, im->gdes[ii].rrd) == 0) - { - status = 1; - break; - } - } - - if (status == 0) - { - status = rrdc_flush (im->gdes[i].rrd); - if (status != 0) - { - rrd_set_error ("rrdc_flush (%s) failed with status %i.", - im->gdes[i].rrd, status); - return (-1); - } - } - } /* if (rrdc_is_connected()) */ - - if ((rrd_fetch_fn(im->gdes[i].rrd, - im->gdes[i].cf, - &im->gdes[i].start, - &im->gdes[i].end, - &ft_step, - &im->gdes[i].ds_cnt, - &im->gdes[i].ds_namv, - &im->gdes[i].data)) == -1) { - return -1; + int status; + + status = rrd_fetch_fn (im->gdes[i].rrd, + im->gdes[i].cf, + &im->gdes[i].start, + &im->gdes[i].end, + &ft_step, + &im->gdes[i].ds_cnt, + &im->gdes[i].ds_namv, + &im->gdes[i].data); + if (status != 0) + return (status); } + else + { + int status; + + status = rrd_fetch_fn (im->gdes[i].rrd, + im->gdes[i].cf, + &im->gdes[i].start, + &im->gdes[i].end, + &ft_step, + &im->gdes[i].ds_cnt, + &im->gdes[i].ds_namv, + &im->gdes[i].data); + if (status != 0) + return (status); + } im->gdes[i].data_first = 1; if (ft_step < im->gdes[i].step) { -- 1.6.2 _______________________________________________ rrd-developers mailing list rrd-developers@lists.oetiker.ch https://lists.oetiker.ch/cgi-bin/listinfo/rrd-developers