Merge pull request #787 from GUVWAF/txDrop

Add number of dropped packets to LocalStats
This commit is contained in:
Ben Meadors 2025-10-04 05:24:27 -05:00 committed by GitHub
commit a1b8c3d171
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

View file

@ -7,6 +7,7 @@
*LocalStats.num_online_nodes int_size:16
*LocalStats.num_total_nodes int_size:16
*LocalStats.num_tx_dropped int_size:16
*HealthMetrics.heart_bpm int_size:8
*HealthMetrics.spO2 int_size:8

View file

@ -438,6 +438,11 @@ message LocalStats {
* Number of bytes free in the heap
*/
uint32 heap_free_bytes = 13;
/*
* Number of packets that were dropped because the transmit queue was full.
*/
uint32 num_tx_dropped = 14;
}
/*