Skip to content

Commit

Permalink
Merge pull request clearcontainers#886 from grahamwhaley/20181102_rep…
Browse files Browse the repository at this point in the history
…ort_lat

metrics: report: fio latency: improve lat graph
  • Loading branch information
GabyCT authored Nov 5, 2018
2 parents 46f4039 + f027000 commit aff2c79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions metrics/report/report_dockerfile/fio-reads.R
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ read_iops_line_plot <- ggplot() +
# 95 and 99 percentile box plot
read_clat_box_plot <- ggplot() +
geom_boxplot( data=all_ldata, aes(blocksize, percentile, color=runtime)) +
stat_summary( data=all_ldata, aes(blocksize, percentile, group=runtime, color=runtime), fun.y=mean, geom="line") +
ylim(0, NA) +
ggtitle("Random Read completion latency", subtitle="95&98 percentiles, boxplot over jobs") +
xlab("Blocksize") +
Expand Down
1 change: 1 addition & 0 deletions metrics/report/report_dockerfile/fio-writes.R
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ write_iops_line_plot <- ggplot() +
# the blocksizes.
write_clat_box_plot <- ggplot() +
geom_boxplot( data=all_ldata, aes(blocksize, percentile, color=runtime)) +
stat_summary( data=all_ldata, aes(blocksize, percentile, group=runtime, color=runtime), fun.y=mean, geom="line") +
ylim(0, NA) +
ggtitle("Random Write completion latency", subtitle="95&98 Percentiles, boxplot across jobs") +
xlab("Blocksize") +
Expand Down

0 comments on commit aff2c79

Please sign in to comment.