You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/API/statistics.md
+11-11
Original file line number
Diff line number
Diff line change
@@ -246,29 +246,29 @@ The total number of packets that failed to be decrypted at the receiver side. Av
246
246
247
247
#### pktSndFilterExtraTotal
248
248
249
-
The total number of packet filter control packets generated by the packet filter (refer to [SRT Packet Filtering & FEC](../packet-filtering-and-fec.md)). Available for sender.
249
+
The total number of packet filter control packets generated by the packet filter (refer to [SRT Packet Filtering & FEC](../features/packet-filtering-and-fec.md)). Available for sender.
250
250
251
251
Packet filter control packets contain only control information necessary for the packet filter. The type of these packets is DATA.
252
252
253
253
If the `SRTO_PACKETFILTER` socket option is disabled (refer to [SRT API Socket Options](API-socket-options.md)), this statistic is equal to 0. Introduced in SRT v1.4.0.
254
254
255
255
#### pktRcvFilterExtraTotal
256
256
257
-
The total number of packet filter control packets received by the packet filter (refer to [SRT Packet Filtering & FEC](../packet-filtering-and-fec.md)). Available for receiver.
257
+
The total number of packet filter control packets received by the packet filter (refer to [SRT Packet Filtering & FEC](../features/packet-filtering-and-fec.md)). Available for receiver.
258
258
259
259
Packet filter control packets contain only control information necessary for the packet filter. The type of these packets is DATA.
260
260
261
261
If the `SRTO_PACKETFILTER` socket option is disabled (refer to [SRT API Socket Options](API-socket-options.md)), this statistic is equal to 0. Introduced in SRT v1.4.0.
262
262
263
263
#### pktRcvFilterSupplyTotal
264
264
265
-
The total number of lost DATA packets recovered by the packet filter at the receiver side (e.g., FEC rebuilt packets; refer to [SRT Packet Filtering & FEC](../packet-filtering-and-fec.md)). Available for receiver.
265
+
The total number of lost DATA packets recovered by the packet filter at the receiver side (e.g., FEC rebuilt packets; refer to [SRT Packet Filtering & FEC](../features/packet-filtering-and-fec.md)). Available for receiver.
266
266
267
267
If the `SRTO_PACKETFILTER` socket option is disabled (refer to [SRT API Socket Options](API-socket-options.md)), this statistic is equal to 0. Introduced in SRT v1.4.0.
268
268
269
269
#### pktRcvFilterLossTotal
270
270
271
-
The total number of lost DATA packets **not** recovered by the packet filter at the receiver side (refer to [SRT Packet Filtering & FEC](../packet-filtering-and-fec.md)). Available for receiver.
271
+
The total number of lost DATA packets **not** recovered by the packet filter at the receiver side (refer to [SRT Packet Filtering & FEC](../features/packet-filtering-and-fec.md)). Available for receiver.
272
272
273
273
If the `SRTO_PACKETFILTER` socket option is disabled (refer to [SRT API Socket Options](API-socket-options.md)), this statistic is equal to 0. Introduced in SRT v1.4.0.
274
274
@@ -363,25 +363,25 @@ Same as [pktRecvNAKTotal](#pktRecvNAKTotal), but for a specified interval.
363
363
364
364
Same as [pktSndFilterExtraTotal](#pktSndFilterExtraTotal), but for a specified interval.
365
365
366
-
Introduced in v1.4.0. Refer to [SRT Packet Filtering & FEC](../packet-filtering-and-fec.md).
366
+
Introduced in v1.4.0. Refer to [SRT Packet Filtering & FEC](../features/packet-filtering-and-fec.md).
367
367
368
368
#### pktRcvFilterExtra
369
369
370
370
Same as [pktRcvFilterExtraTotal](#pktRcvFilterExtraTotal), but for a specified interval.
371
371
372
-
Introduced in v1.4.0. Refer to [SRT Packet Filtering & FEC](../packet-filtering-and-fec.md).
372
+
Introduced in v1.4.0. Refer to [SRT Packet Filtering & FEC](../features/packet-filtering-and-fec.md).
373
373
374
374
#### pktRcvFilterSupply
375
375
376
376
Same as [pktRcvFilterSupplyTotal](#pktRcvFilterSupplyTotal), but for a specified interval.
377
377
378
-
Introduced in v1.4.0. Refer to [SRT Packet Filtering & FEC](../packet-filtering-and-fec.md).
378
+
Introduced in v1.4.0. Refer to [SRT Packet Filtering & FEC](../features/packet-filtering-and-fec.md).
379
379
380
380
#### pktRcvFilterLoss
381
381
382
382
Same as [pktRcvFilterLossTotal](#pktRcvFilterLossTotal), but for a specified interval.
383
383
384
-
Introduced in v1.4.0. Refer to [SRT Packet Filtering & FEC](../packet-filtering-and-fec.md).
384
+
Introduced in v1.4.0. Refer to [SRT Packet Filtering & FEC](../features/packet-filtering-and-fec.md).
385
385
386
386
#### mbpsSendRate
387
387
@@ -727,12 +727,12 @@ that is received late.
727
727
728
728
SRT group statistics are implemented for SRT Connection Bonding feature and available since SRT v1.5.0. Check the following documentation and code examples for details:
729
729
730
-
-[Introduction in SRT Connection Bonding feature](../bonding-intro.md),
731
-
-[The concept of socket groups](../socket-groups.md). Here you will also find the information regarding `srt-test-live` application for testing Connection Bonding,
730
+
- Introduction in [SRT Connection Bonding](../features/bonding-intro.md),
731
+
- The concept of [SRT Socket Groups](../features/socket-groups.md). Here you will also find the information regarding the `srt-test-live` application for testing Connection Bonding,
732
732
- Check also [SRT API](API.md) and [SRT API Functions](API-functions.md) documentation for Connection Bonding related updates,
733
733
- Code examples: simple [client](https://github.com/Haivision/srt/blob/master/examples/test-c-client-bonding.c) and [server](https://github.com/Haivision/srt/blob/master/examples/test-c-server-bonding.c) implementation.
734
734
735
-
`srt_bistats(SRTSOCKET u, ...)` function can be used with a socket group ID as a first argument to get statistics for a group. Most values of the `SRT_TRACEBSTATS` will be filled with zeros except for the fields listed in [Summary Table](#group-summary-table) below. Refer to the documentation of the [API functions](API-functions.md) for usage instructions.
735
+
`srt_bistats(SRTSOCKET u, ...)` function can be used with a socket group ID as a first argument to get statistics for a group. Most values of the `SRT_TRACEBSTATS` will be filled with zeros except for the fields listed in [Summary Table](#group-summary-table) below. Refer to the documentation of the [SRT API Functions](API-functions.md) for usage instructions.
0 commit comments