From: Stephen M. Cameron Date: Wed, 7 Mar 2012 13:49:37 +0000 (+0100) Subject: gfio: add units to x-axis labels and remove redundant y-axis labels X-Git-Tag: gfio-0.1~232 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=b04ad8d1af96a011cf41c7c477fcddbb9e399b03;p=fio.git gfio: add units to x-axis labels and remove redundant y-axis labels Signed-off-by: Stephen M. Cameron Signed-off-by: Jens Axboe --- diff --git a/gfio.c b/gfio.c index b1caa678..fef58294 100644 --- a/gfio.c +++ b/gfio.c @@ -140,8 +140,7 @@ static void setup_iops_graph(struct gui *ui) ui->iops_graph = graph_new(DRAWING_AREA_XDIM / 2.0, DRAWING_AREA_YDIM, gfio_graph_font); graph_title(ui->iops_graph, "IOPS"); - graph_x_title(ui->iops_graph, "Time"); - graph_y_title(ui->iops_graph, "IOPS"); + graph_x_title(ui->iops_graph, "Time (secs)"); graph_add_label(ui->iops_graph, "Read IOPS"); graph_add_label(ui->iops_graph, "Write IOPS"); graph_set_color(ui->iops_graph, "Read IOPS", 0.7, 0.0, 0.0); @@ -156,8 +155,7 @@ static void setup_bandwidth_graph(struct gui *ui) ui->bandwidth_graph = graph_new(DRAWING_AREA_XDIM / 2.0, DRAWING_AREA_YDIM, gfio_graph_font); graph_title(ui->bandwidth_graph, "Bandwidth"); - graph_x_title(ui->bandwidth_graph, "Time"); - graph_y_title(ui->bandwidth_graph, "Bandwidth"); + graph_x_title(ui->bandwidth_graph, "Time (secs)"); graph_add_label(ui->bandwidth_graph, "Read Bandwidth"); graph_add_label(ui->bandwidth_graph, "Write Bandwidth"); graph_set_color(ui->bandwidth_graph, "Read Bandwidth", 0.7, 0.0, 0.0);