From d80096a9cbed1e9f6ab5a7693e13f670cae24a97 Mon Sep 17 00:00:00 2001 From: Joshua Powers Date: Thu, 23 Jun 2022 10:31:23 -0600 Subject: [PATCH] docs: swap bytes sent/recv descriptions in nfsclient (#11376) --- plugins/inputs/nfsclient/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/inputs/nfsclient/README.md b/plugins/inputs/nfsclient/README.md index 61c4940f5..a02f0eb0d 100644 --- a/plugins/inputs/nfsclient/README.md +++ b/plugins/inputs/nfsclient/README.md @@ -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.