Skip to content

Commit

Permalink
fix: add incr_qps and duplicate_qps to total_write_qps (#721)
Browse files Browse the repository at this point in the history
  • Loading branch information
levy5307 authored Apr 16, 2021
1 parent 4ead103 commit c248f02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shell/command_helper.h
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ struct row_data
double get_total_write_qps() const
{
return put_qps + remove_qps + multi_put_qps + multi_remove_qps + check_and_set_qps +
check_and_mutate_qps;
check_and_mutate_qps + incr_qps + duplicate_qps;
}

double get_total_read_bytes() const { return get_bytes + multi_get_bytes + scan_bytes; }
Expand Down

0 comments on commit c248f02

Please sign in to comment.