@@ -2832,6 +2832,20 @@ network
2832
2832
clientSupported : <bool>,
2833
2833
accepted : Long("<num>")
2834
2834
},
2835
+ compression : {
2836
+ snappy : {
2837
+ compressor : { bytesIn : Long("<num>"), bytesOut : Long("<num>") },
2838
+ decompressor : { bytesIn : Long("<num>"), bytesOut : Long("<num>") }
2839
+ },
2840
+ zstd : {
2841
+ compressor : { bytesIn : Long("<num>"), bytesOut : Long("<num>") },
2842
+ decompressor : { bytesIn : Long("<num>"), bytesOut : Long("<num>") }
2843
+ },
2844
+ zlib : {
2845
+ compressor : { bytesIn : Long("<num>"), bytesOut : Long("<num>") },
2846
+ decompressor : { bytesIn : Long("<num>"), bytesOut : Long("<num>") }
2847
+ }
2848
+ },
2835
2849
serviceExecutors : {
2836
2850
passthrough : {
2837
2851
threadsRunning : <num>,
@@ -2846,7 +2860,7 @@ network
2846
2860
clientsWaitingForData : <num>
2847
2861
}
2848
2862
},
2849
- listenerProcessingTime : { durationMicros: <num> } // Added in MongoDB 6.3
2863
+ listenerProcessingTime : { durationMicros : <num> } // Added in MongoDB 6.3
2850
2864
}
2851
2865
2852
2866
.. serverstatus:: network
@@ -2946,6 +2960,26 @@ network
2946
2960
to the :binary:`~bin.mongod` or :binary:`~bin.mongos` since the
2947
2961
``mongod`` or ``mongos`` last started.
2948
2962
2963
+ .. serverstatus:: network.compression
2964
+
2965
+ A document that reports on the amount of data compressed and decompressed by
2966
+ each network compressor library.
2967
+
2968
+ .. serverstatus:: network.compression.snappy
2969
+
2970
+ A document that returns statistics on the number of bytes that have been
2971
+ compressed and decompressed with the :term:`snappy` library.
2972
+
2973
+ .. serverstatus:: network.compression.zstd
2974
+
2975
+ A document that returns statistics on the number of bytes that have been
2976
+ compressed and decompressed with the :term:`zstd` library.
2977
+
2978
+ .. serverstatus:: network.compression.zlib
2979
+
2980
+ A document that returns statistics on the number of bytes that have been
2981
+ compressed and decompressed with the :term:`zlib` library.
2982
+
2949
2983
.. serverstatus:: network.serviceExecutors
2950
2984
2951
2985
.. versionadded:: 5.0
0 commit comments