mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-30 12:33:02 +02:00
Add counters from Ethtool groups to the operational datastore. The mapping from Linux / Ethtool to YANG is described in the included document eth-counters.md. Signed-off-by: Richard Alpe <richard@bit42.se>
32 lines
3.5 KiB
Markdown
32 lines
3.5 KiB
Markdown
# YANG to Ethtool Mapping
|
|
This column contains the mapping between YANG and Linux / Ethtool counters.
|
|
|
|
```
|
|
┌─────────────────────────────────┬──────────────────────────────────┐
|
|
│ YANG │ Linux / Ethtool │
|
|
├─────────────────────────────────┼──────────────────────────────────┤
|
|
│ out-frames │ FramesTransmittedOK │
|
|
├─────────────────────────────────┼──────────────────────────────────┤
|
|
│ out-multicast-frames │ MulticastFramesXmittedOK │
|
|
├─────────────────────────────────┼──────────────────────────────────┤
|
|
│ out-broadcast-frames │ BroadcastFramesXmittedOK │
|
|
├─────────────────────────────────┼──────────────────────────────────┤
|
|
│ in-total-frames │ FramesReceivedOK, │
|
|
│ │ FrameCheckSequenceErrors │
|
|
│ │ FramesLostDueToIntMACRcvError │
|
|
│ │ AlignmentErrors │
|
|
│ │ etherStatsOversizePkts │
|
|
│ │ etherStatsJabbers │
|
|
├─────────────────────────────────┼──────────────────────────────────┤
|
|
│ in-frames │ FramesReceivedOK │
|
|
├─────────────────────────────────┼──────────────────────────────────┤
|
|
│ in-multicast-frames │ MulticastFramesReceivedOK │
|
|
├─────────────────────────────────┼──────────────────────────────────┤
|
|
│ in-broadcast-frames │ BroadcastFramesReceivedOK │
|
|
├─────────────────────────────────┼──────────────────────────────────┤
|
|
│ in-error-undersize-frames │ undersize_pkts │
|
|
├─────────────────────────────────┼──────────────────────────────────┤
|
|
│ in-error-fcs-frames │ FrameCheckSequenceErrors │
|
|
└─────────────────────────────────┴──────────────────────────────────┘
|
|
```
|