@@ -2494,6 +2494,20 @@ network
2494
2494
clientSupported : <bool>,
2495
2495
accepted : Long("<num>")
2496
2496
},
2497
+ compression : {
2498
+ snappy : {
2499
+ compressor : { bytesIn : Long("<num>"), bytesOut : Long("<num>") },
2500
+ decompressor : { bytesIn : Long("<num>"), bytesOut : Long("<num>") }
2501
+ },
2502
+ zstd : {
2503
+ compressor : { bytesIn : Long("<num>"), bytesOut : Long("<num>") },
2504
+ decompressor : { bytesIn : Long("<num>"), bytesOut : Long("<num>") }
2505
+ },
2506
+ zlib : {
2507
+ compressor : { bytesIn : Long("<num>"), bytesOut : Long("<num>") },
2508
+ decompressor : { bytesIn : Long("<num>"), bytesOut : Long("<num>") }
2509
+ }
2510
+ },
2497
2511
serviceExecutors : {
2498
2512
passthrough : {
2499
2513
threadsRunning : <num>,
@@ -2607,6 +2621,26 @@ network
2607
2621
to the :binary:`~bin.mongod` or :binary:`~bin.mongos` since the
2608
2622
``mongod`` or ``mongos`` last started.
2609
2623
2624
+ .. serverstatus:: network.compression
2625
+
2626
+ A document that reports on the amount of data compressed and decompressed by
2627
+ each network compressor library.
2628
+
2629
+ .. serverstatus:: network.compression.snappy
2630
+
2631
+ A document that returns statistics on the number of bytes that have been
2632
+ compressed and decompressed with the :term:`snappy` library.
2633
+
2634
+ .. serverstatus:: network.compression.zstd
2635
+
2636
+ A document that returns statistics on the number of bytes that have been
2637
+ compressed and decompressed with the :term:`zstd` library.
2638
+
2639
+ .. serverstatus:: network.compression.zlib
2640
+
2641
+ A document that returns statistics on the number of bytes that have been
2642
+ compressed and decompressed with the :term:`zlib` library.
2643
+
2610
2644
.. serverstatus:: network.serviceExecutors
2611
2645
2612
2646
.. versionadded:: 5.0
0 commit comments