gfio: hide graph if all values are zero
[fio.git] / gfio.c
diff --git a/gfio.c b/gfio.c
index 274dea8f59998045bf6965936091351e1bfb1fe3..3a0aa8f447a46a1f1b3e313199b87f96f4698fe8 100644 (file)
--- a/gfio.c
+++ b/gfio.c
@@ -88,6 +88,7 @@ static struct graph *setup_iops_graph(void)
        graph_set_color(g, "Write IOPS", 1.0, 0.0, 0.0);
        line_graph_set_data_count_limit(g, gfio_graph_limit);
        graph_add_extra_space(g, 0.0, 0.0, 0.0, 0.0);
+       graph_set_graph_all_zeroes(g, 0);
        return g;
 }
 
@@ -105,6 +106,7 @@ static struct graph *setup_bandwidth_graph(void)
        graph_set_base_offset(g, 1);
        line_graph_set_data_count_limit(g, 100);
        graph_add_extra_space(g, 0.0, 0.0, 0.0, 0.0);
+       graph_set_graph_all_zeroes(g, 0);
        return g;
 }