docs: swap bytes sent/recv descriptions in nfsclient (#11376)

This commit is contained in:
Joshua Powers 2022-06-23 10:31:23 -06:00 committed by GitHub
parent 897066f141
commit d80096a9cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -160,8 +160,8 @@ as it changes occasionally.
- ops (int, count): Total operations of this type.
- trans (int, count): Total transmissions of this type, including retransmissions: `OP_ops - OP_trans = total_retransmissions` (lower is better).
- timeouts (int, count): Number of major timeouts.
- bytes_sent (int, count): Bytes received, including headers (should also be close to on-wire size).
- bytes_recv (int, count): Bytes sent, including headers (should be close to on-wire size).
- bytes_sent (int, count): Bytes sent, including headers (should also be close to on-wire size).
- bytes_recv (int, count): Bytes received, including headers (should be close to on-wire size).
- queue_time (int, milliseconds): Cumulative time a request waited in the queue before sending this OP type.
- response_time (int, milliseconds): Cumulative time waiting for a response for this OP type.
- total_time (int, milliseconds): Cumulative time a request waited in the queue before sending.