Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion orchagent/portsorch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,20 @@ const vector<sai_port_stat_t> port_stat_ids =
SAI_PORT_STAT_IF_IN_FEC_CORRECTED_BITS,
SAI_PORT_STAT_TRIM_PACKETS,
SAI_PORT_STAT_DROPPED_TRIM_PACKETS,
SAI_PORT_STAT_TX_TRIM_PACKETS
SAI_PORT_STAT_TX_TRIM_PACKETS,
SAI_PORT_STAT_DOT3_STATS_ALIGNMENT_ERRORS,
SAI_PORT_STAT_DOT3_STATS_FCS_ERRORS,
SAI_PORT_STAT_DOT3_STATS_SINGLE_COLLISION_FRAMES,
SAI_PORT_STAT_DOT3_STATS_MULTIPLE_COLLISION_FRAMES,
SAI_PORT_STAT_DOT3_STATS_SQE_TEST_ERRORS,
SAI_PORT_STAT_DOT3_STATS_DEFERRED_TRANSMISSIONS,
SAI_PORT_STAT_DOT3_STATS_LATE_COLLISIONS,
SAI_PORT_STAT_DOT3_STATS_EXCESSIVE_COLLISIONS,
SAI_PORT_STAT_DOT3_STATS_INTERNAL_MAC_TRANSMIT_ERRORS,
SAI_PORT_STAT_DOT3_STATS_CARRIER_SENSE_ERRORS,
SAI_PORT_STAT_DOT3_STATS_FRAME_TOO_LONGS,
SAI_PORT_STAT_DOT3_STATS_INTERNAL_MAC_RECEIVE_ERRORS,
SAI_PORT_STAT_DOT3_STATS_SYMBOL_ERRORS
};

const vector<sai_port_stat_t> gbport_stat_ids =
Expand Down
Loading