From d9b409ec0d49aa84438b1bde79416770fc0e1c6b Mon Sep 17 00:00:00 2001 From: Mihir Patel Date: Fri, 11 Oct 2024 06:18:44 +0000 Subject: [PATCH 01/12] HLD for diagnostic monitoring of CMIS based transceivers Signed-off-by: Mihir Patel --- ...Diagnostic_Monitoring_Overview_in_SONiC.md | 971 ++++++++++++++++++ 1 file changed, 971 insertions(+) create mode 100644 doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md diff --git a/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md b/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md new file mode 100644 index 0000000000..bd6e051cc7 --- /dev/null +++ b/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md @@ -0,0 +1,971 @@ +# CMIS Diagnostic Monitoring Overview in SONiC + +## 1. Overview + +The CMIS (Common Management Interface Specification) diagnostic monitoring feature is a standard for monitoring the performance of optical transceivers. It provides a way to monitor the performance of optical transceivers in real time. SONiC periodically reads the diagnostic monitoring data from the optical transceivers and stores the data in the database. The data can be retrieved using the SONiC CLI or by querying the database directly. + +The current scope of the CMIS diagnostic monitoring feature in SONiC includes the following parameters: + +- **DOM (Digital Optical Monitoring) data:** Provides real-time monitoring of optical transceiver parameters such as temperature, voltage, and optical power. +- **VDM (Vendor Diagnostic Monitoring) data:** Offers vendor-specific diagnostic information for enhanced monitoring and troubleshooting. +- **PM (Performance Monitoring) data:** Applicable only for C-CMIS transceivers, this includes performance metrics such as error counts and signal quality indicators. + +## 2. STATE_DB Schema for CMIS Diagnostic Monitoring + +The CMIS diagnostic monitoring data is stored in the `STATE_DB` database. The `STATE_DB` schema for the CMIS diagnostic monitoring feature includes the following tables: + +- `TRANSCEIVER_DOM_SENSOR`: Stores real-time DOM data for the optical transceivers. +- `TRANSCEIVER_DOM_THRESHOLD`: Contains threshold values for DOM parameters. +- `TRANSCEIVER_DOM_FLAG`: Stores flags indicating the status of various DOM parameters. +- `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`: Keeps a count of how many times each DOM flag has changed. +- `TRANSCEIVER_DOM_FLAG_TIME_SET`: Records the timestamp when each DOM flag was set. +- `TRANSCEIVER_DOM_FLAG_TIME_CLEAR`: Records the timestamp when each DOM flag was cleared. +- `TRANSCEIVER_VDM_SAMPLE`: Stores VDM sample data. +- `TRANSCEIVER_VDM_THRESHOLD`: Contains threshold values for VDM parameters. +- `TRANSCEIVER_VDM_FLAG`: Stores flags indicating the status of various VDM parameters. +- `TRANSCEIVER_VDM_FLAG_CHANGE_COUNT`: Keeps a count of how many times each VDM flag has changed. +- `TRANSCEIVER_VDM_FLAG_TIME_SET`: Records the timestamp when each VDM flag was set. +- `TRANSCEIVER_VDM_FLAG_TIME_CLEAR`: Records the timestamp when each VDM flag was cleared. +- `TRANSCEIVER_PM`: Stores performance monitoring data. +- `TRANSCEIVER_PM_THRESHOLD`: Contains threshold values for PM parameters. +- `TRANSCEIVER_PM_FLAG`: Stores flags indicating the status of various PM parameters. +- `TRANSCEIVER_PM_FLAG_CHANGE_COUNT`: Keeps a count of how many times each PM flag has changed. +- `TRANSCEIVER_PM_FLAG_TIME_SET`: Records the timestamp when each PM flag was set. +- `TRANSCEIVER_PM_FLAG_TIME_CLEAR`: Records the timestamp when each PM flag was cleared. +- `TRANSCEIVER_STATUS`: Stores the status data of the transceivers. + +### 2.1 Transceiver DOM Sensor Data + +The `TRANSCEIVER_DOM_SENSOR` table stores the real-time DOM data for the optical transceivers. + +lane_num: Represents the lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ; Defines Transceiver DOM sensor information for a port + key = TRANSCEIVER_DOM_SENSOR|ifname ; information module DOM sensors on port + ; field = value + temperature = FLOAT ; temperature value in Celsius + voltage = FLOAT ; voltage value in V + tx{lane_num}power = FLOAT ; tx power in dBm for each lane + rx{lane_num}power = FLOAT ; rx power in dBm for each lane + tx{lane_num}bias = FLOAT ; tx bias in mA for each lane + laser_temperature = FLOAT ; laser temperature value in Celsius +``` + +### 2.2 Transceiver DOM threshold data + +The `TRANSCEIVER_DOM_THRESHOLD` table stores the threshold values for the DOM data. + +```plaintext + ; Defines Transceiver DOM threshold info for a port + key = TRANSCEIVER_DOM_THRESHOLD|ifname ; DOM threshold information for module on port + ; field = value + temphighalarm = FLOAT ; temperature high alarm threshold in Celsius + temphighwarning = FLOAT ; temperature high warning threshold in Celsius + templowalarm = FLOAT ; temperature low alarm threshold in Celsius + templowwarning = FLOAT ; temperature low warning threshold in Celsius + vcchighalarm = FLOAT ; vcc high alarm threshold in V + vcchighwarning = FLOAT ; vcc high warning threshold in V + vcclowalarm = FLOAT ; vcc low alarm threshold in V + vcclowwarning = FLOAT ; vcc low warning threshold in V + txpowerhighalarm = FLOAT ; tx power high alarm threshold in dBm + txpowerlowalarm = FLOAT ; tx power low alarm threshold in dBm + txpowerhighwarning = FLOAT ; tx power high warning threshold in dBm + txpowerlowwarning = FLOAT ; tx power low alarm threshold in dBm + rxpowerhighalarm = FLOAT ; rx power high alarm threshold in dBm + rxpowerlowalarm = FLOAT ; rx power low alarm threshold in dBm + rxpowerhighwarning = FLOAT ; rx power high warning threshold in dBm + rxpowerlowwarning = FLOAT ; rx power low warning threshold in dBm + txbiashighalarm = FLOAT ; tx bias high alarm threshold in mA + txbiaslowalarm = FLOAT ; tx bias low alarm threshold in mA + txbiashighwarning = FLOAT ; tx bias high warning threshold in mA + txbiaslowwarning = FLOAT ; tx bias low warning threshold in mA + lasertemphighalarm = FLOAT ; laser temperature high alarm threshold in Celsius + lasertemplowalarm = FLOAT ; laser temperature low alarm threshold in Celsius + lasertemphighwarning = FLOAT ; laser temperature high warning threshold in Celsius + lasertemplowwarning = FLOAT ; laser temperature low warning threshold in Celsius +``` + +### 2.3 Transceiver DOM flag data + +The `TRANSCEIVER_DOM_FLAG` table stores the flag status for the DOM data. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ;Defines Transceiver DOM flags for a port + key = TRANSCEIVER_DOM_FLAG|ifname ; information module DOM flags on port + ; field = value + temphighalarm_flag = BOOLEAN ; temperature high alarm flag + temphighwarning_flag = BOOLEAN ; temperature high warning flag + templowalarm_flag = BOOLEAN ; temperature low alarm flag + templowwarning_flag = BOOLEAN ; temperature low warning flag + vcchighalarm_flag = BOOLEAN ; vcc high alarm flag + vcchighwarning_flag = BOOLEAN ; vcc high warning flag + vcclowalarm_flag = BOOLEAN ; vcc low alarm flag + vcclowwarning_flag = BOOLEAN ; vcc low warning flag + txpowerhighalarm_flag{lane_num} = BOOLEAN ; tx power high alarm flag + txpowerlowalarm_flag{lane_num} = BOOLEAN ; tx power low alarm flag + txpowerhighwarning_flag{lane_num} = BOOLEAN ; tx power high warning flag + txpowerlowwarning_flag{lane_num} = BOOLEAN ; tx power low alarm flag + rxpowerhighalarm_flag{lane_num} = BOOLEAN ; rx power high alarm flag + rxpowerlowalarm_flag{lane_num} = BOOLEAN ; rx power low alarm flag + rxpowerhighwarning_flag{lane_num} = BOOLEAN ; rx power high warning flag + rxpowerlowwarning_flag{lane_num} = BOOLEAN ; rx power low warning flag + txbiashighalarm_flag{lane_num} = BOOLEAN ; tx bias high alarm flag + txbiaslowalarm_flag{lane_num} = BOOLEAN ; tx bias low alarm flag + txbiashighwarning_flag{lane_num} = BOOLEAN ; tx bias high warning flag + txbiaslowwarning_flag{lane_num} = BOOLEAN ; tx bias low warning flag + lasertemphighalarm_flag = BOOLEAN ; laser temperature high alarm flag + lasertemplowalarm_flag = BOOLEAN ; laser temperature low alarm flag + lasertemphighwarning_flag = BOOLEAN ; laser temperature high warning flag + lasertemplowwarning_flag = BOOLEAN ; laser temperature low warning flag + + txfault{lane_num} = BOOLEAN ; tx fault flag on media lane {lane_num} + txlos_hostlane{lane_num} = BOOLEAN ; tx loss of signal flag on host lane {lane_num} + txcdrlol_hostlane{lane_num} = BOOLEAN ; tx clock and data recovery loss of lock flag on host lane {lane_num} + tx_eq_fault{lane_num} = BOOLEAN ; tx equalization fault flag on host lane {lane_num} + rxlos{lane_num} = BOOLEAN ; rx loss of signal flag on media lane {lane_num} + rxcdrlol{lane_num} = BOOLEAN ; rx clock and data recovery loss of lock flag on media lane {lane_num} +``` + +### 2.4 Transceiver DOM flag change count data + +The `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT` table stores the flag change count for the DOM flags. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ;Defines Transceiver DOM flag change count for a port + key = TRANSCEIVER_DOM_FLAG_CHANGE|ifname ; information module DOM flags change count on port + ; field = value + temphighalarm_change_count = INTEGER ; temperature high alarm change count + temphighwarning_change_count = INTEGER ; temperature high warning change count + templowalarm_change_count = INTEGER ; temperature low alarm change count + templowwarning_change_count = INTEGER ; temperature low warning change count + vcchighalarm_change_count = INTEGER ; vcc high alarm change count + vcchighwarning_change_count = INTEGER ; vcc high warning change count + vcclowalarm_change_count = INTEGER ; vcc low alarm change count + vcclowwarning_change_count = INTEGER ; vcc low warning change count + txpowerhighalarm_change_count{lane_num} = INTEGER ; tx power high alarm change count + txpowerlowalarm_change_count{lane_num} = INTEGER ; tx power low alarm change count + txpowerhighwarning_change_count{lane_num} = INTEGER ; tx power high warning change count + txpowerlowwarning_change_count{lane_num} = INTEGER ; tx power low alarm change count + rxpowerhighalarm_change_count{lane_num} = INTEGER ; rx power high alarm change count + rxpowerlowalarm_change_count{lane_num} = INTEGER ; rx power low alarm change count + rxpowerhighwarning_change_count{lane_num} = INTEGER ; rx power high warning change count + rxpowerlowwarning_change_count{lane_num} = INTEGER ; rx power low warning change count + txbiashighalarm_change_count{lane_num} = INTEGER ; tx bias high alarm change count + txbiaslowalarm_change_count{lane_num} = INTEGER ; tx bias low alarm change count + txbiashighwarning_change_count{lane_num} = INTEGER ; tx bias high warning change count + txbiaslowwarning_change_count{lane_num} = INTEGER ; tx bias low warning change count + lasertemphighalarm_change_count = INTEGER ; laser temperature high alarm change count + lasertemplowalarm_change_count = INTEGER ; laser temperature low alarm change count + lasertemphighwarning_change_count = INTEGER ; laser temperature high warning change count + lasertemplowwarning_change_count = INTEGER ; laser temperature low warning change count + + txfault_change_count{lane_num} = INTEGER ; tx fault change count on media lane {lane_num} + txlos_hostlane_change_count{lane_num} = INTEGER ; tx loss of signal change count on host lane {lane_num} + txcdrlol_hostlane_change_count{lane_num} = INTEGER ; tx clock and data recovery loss of lock change count on host lane {lane_num} + tx_eq_fault_change_count{lane_num} = INTEGER ; tx equalization fault change count on host lane {lane_num} + rxlos_change_count{lane_num} = INTEGER ; rx loss of signal change count on media lane {lane_num} + rxcdrlol_change_count{lane_num} = INTEGER ; rx clock and data recovery loss of lock change count on media lane {lane_num} +``` + +### 2.5 Transceiver DOM flag time set data + +The `TRANSCEIVER_DOM_FLAG_TIME_SET` table stores the last set time for the corresponding DOM flag. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ;Defines Transceiver DOM flag time set for a port + key = TRANSCEIVER_DOM_FLAG_TIME_SET|ifname ; information module DOM flag time set on port + ; field = value + temphighalarm_last_set_time = STR ; temperature high alarm last set time + temphighwarning_last_set_time = STR ; temperature high warning last set time + templowalarm_last_set_time = STR ; temperature low alarm last set time + templowwarning_last_set_time = STR ; temperature low warning last set time + vcchighalarm_last_set_time = STR ; vcc high alarm last set time + vcchighwarning_last_set_time = STR ; vcc high warning last set time + vcclowalarm_last_set_time = STR ; vcc low alarm last set time + vcclowwarning_last_set_time = STR ; vcc low warning last set time + txpowerhighalarm_last_set_time{lane_num} = STR ; tx power high alarm last set time + txpowerlowalarm_last_set_time{lane_num} = STR ; tx power low alarm last set time + txpowerhighwarning_last_set_time{lane_num} = STR ; tx power high warning last set time + txpowerlowwarning_last_set_time{lane_num} = STR ; tx power low warning last set time + rxpowerhighalarm_last_set_time{lane_num} = STR ; rx power high alarm last set time + rxpowerlowalarm_last_set_time{lane_num} = STR ; rx power low alarm last set time + rxpowerhighwarning_last_set_time{lane_num} = STR ; rx power high warning last set time + rxpowerlowwarning_last_set_time{lane_num} = STR ; rx power low warning last set time + txbiashighalarm_last_set_time{lane_num} = STR ; tx bias high alarm last set time + txbiaslowalarm_last_set_time{lane_num} = STR ; tx bias low alarm last set time + txbiashighwarning_last_set_time{lane_num} = STR ; tx bias high warning last set time + txbiaslowwarning_last_set_time{lane_num} = STR ; tx bias low warning last set time + lasertemphighalarm_last_set_time = STR ; laser temperature high alarm last set time + lasertemplowalarm_last_set_time = STR ; laser temperature low alarm last set time + lasertemphighwarning_last_set_time = STR ; laser temperature high warning last set time + lasertemplowwarning_last_set_time = STR ; laser temperature low warning last set time + + txfault_last_set_time{lane_num} = STR ; tx fault last set time on media lane {lane_num} + txlos_hostlane_last_set_time{lane_num} = STR ; tx loss of signal last set time on host lane {lane_num} + txcdrlol_hostlane_last_set_time{lane_num} = STR ; tx clock and data recovery loss of lock last set time on host lane {lane_num} + tx_eq_fault_last_set_time{lane_num} = STR ; tx equalization fault last set time on host lane {lane_num} + rxlos_last_set_time{lane_num} = STR ; rx loss of signal last set time on media lane {lane_num} + rxcdrlol_last_set_time{lane_num} = STR ; rx clock and data recovery loss of lock last set time on media lane {lane_num} +``` + +### 2.6 Transceiver DOM flag time clear data + +The `TRANSCEIVER_DOM_FLAG_TIME_CLEAR` table stores the last clear time for the corresponding DOM flag. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ;Defines Transceiver DOM flag time clear for a port + key = TRANSCEIVER_DOM_FLAG_TIME_CLEAR|ifname ; information module DOM flag time clear on port + ; field = value + temphighalarm_last_clear_time = STR ; temperature high alarm last clear time + temphighwarning_last_clear_time = STR ; temperature high warning last clear time + templowalarm_last_clear_time = STR ; temperature low alarm last clear time + templowwarning_last_clear_time = STR ; temperature low warning last clear time + vcchighalarm_last_clear_time = STR ; vcc high alarm last clear time + vcchighwarning_last_clear_time = STR ; vcc high warning last clear time + vcclowalarm_last_clear_time = STR ; vcc low alarm last clear time + vcclowwarning_last_clear_time = STR ; vcc low warning last clear time + txpowerhighalarm_last_clear_time{lane_num} = STR ; tx power high alarm last clear time + txpowerlowalarm_last_clear_time{lane_num} = STR ; tx power low alarm last clear time + txpowerhighwarning_last_clear_time{lane_num} = STR ; tx power high warning last clear time + txpowerlowwarning_last_clear_time{lane_num} = STR ; tx power low warning last clear time + rxpowerhighalarm_last_clear_time{lane_num} = STR ; rx power high alarm last clear time + rxpowerlowalarm_last_clear_time{lane_num} = STR ; rx power low alarm last clear time + rxpowerhighwarning_last_clear_time{lane_num} = STR ; rx power high warning last clear time + rxpowerlowwarning_last_clear_time{lane_num} = STR ; rx power low warning last clear time + txbiashighalarm_last_clear_time{lane_num} = STR ; tx bias high alarm last clear time + txbiaslowalarm_last_clear_time{lane_num} = STR ; tx bias low alarm last clear time + txbiashighwarning_last_clear_time{lane_num} = STR ; tx bias high warning last clear time + txbiaslowwarning_last_clear_time{lane_num} = STR ; tx bias low warning last clear time + lasertemphighalarm_last_clear_time = STR ; laser temperature high alarm last clear time + lasertemplowalarm_last_clear_time = STR ; laser temperature low alarm last clear time + lasertemphighwarning_last_clear_time = STR ; laser temperature high warning last clear time + lasertemplowwarning_last_clear_time = STR ; laser temperature low warning last clear time + + txfault_last_clear_time{lane_num} = STR ; tx fault last clear time on media lane {lane_num} + txlos_hostlane_last_clear_time{lane_num} = STR ; tx loss of signal last clear time on host lane {lane_num} + txcdrlol_hostlane_last_clear_time{lane_num} = STR ; tx clock and data recovery loss of lock last clear time on host lane {lane_num} + tx_eq_fault_last_clear_time{lane_num} = STR ; tx equalization fault last clear time on host lane {lane_num} + rxlos_last_clear_time{lane_num} = STR ; rx loss of signal last clear time on media lane {lane_num} + rxcdrlol_last_clear_time{lane_num} = STR ; rx clock and data recovery loss of lock last clear time on media lane {lane_num} +``` + +### 2.7 Transceiver VDM sample data + +The `TRANSCEIVER_VDM_SAMPLE` table stores the real time VDM data + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ;Defines Transceiver VDM sample for a port + key = TRANSCEIVER_VDM_SAMPLE|ifname ; information module VDM sample on port + ; field = value + esnr_media_input{lane_num} = FLOAT ; eSNR value in dB for media input + esnr_host_input{lane_num} = FLOAT ; eSNR value in dB for host input + pam4_level_transition_media_input{lane_num} = FLOAT ; PAM4 level transition parameter in dB for media input + pam4_level_transition_host_input{lane_num} = FLOAT ; PAM4 level transition parameter in dB for host input + prefec_ber_min_media_input{lane_num} = FLOAT ; Pre-FEC BER minimum value for media input + prefec_ber_max_media_input{lane_num} = FLOAT ; Pre-FEC BER maximum value for media input + prefec_ber_avg_media_input{lane_num} = FLOAT ; Pre-FEC BER average value for media input + prefec_ber_curr_media_input{lane_num} = FLOAT ; Pre-FEC BER current value for media input + prefec_ber_min_host_input{lane_num} = FLOAT ; Pre-FEC BER minimum value for host input + prefec_ber_max_host_input{lane_num} = FLOAT ; Pre-FEC BER maximum value for host input + prefec_ber_avg_host_input{lane_num} = FLOAT ; Pre-FEC BER average value for host input + prefec_ber_curr_host_input{lane_num} = FLOAT ; Pre-FEC BER current value for host input + errored_frames_min_media_input{lane_num} = FLOAT ; Errored frames minimum value for media input + errored_frames_max_media_input{lane_num} = FLOAT ; Errored frames maximum value for media input + errored_frames_avg_media_input{lane_num} = FLOAT ; Errored frames average value for media input + errored_frames_curr_media_input{lane_num} = FLOAT ; Errored frames current value for media input + errored_frames_min_host_input{lane_num} = FLOAT ; Errored frames minimum value for host input + errored_frames_max_host_input{lane_num} = FLOAT ; Errored frames maximum value for host input + errored_frames_avg_host_input{lane_num} = FLOAT ; Errored frames average value for host input + errored_frames_curr_host_input{lane_num} = FLOAT ; Errored frames current value for host input +``` + +### 2.8 Transceiver VDM threshold data + +The `TRANSCEIVER_VDM_THRESHOLD` table stores the threshold values for the VDM data + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ;Defines Transceiver VDM sample for a port + key = TRANSCEIVER_VDM_THRESHOLD|ifname ; information module VDM sample on port + ; field = value + esnr_media_input_highalarm{lane_num} = FLOAT ; eSNR high alarm value in dB for media input + esnr_media_input_lowalarm{lane_num} = FLOAT ; eSNR low alarm value in dB for media input + esnr_media_input_highwarning{lane_num} = FLOAT ; eSNR high warning value in dB for media input + esnr_media_input_lowwarning{lane_num} = FLOAT ; eSNR low warning value in dB for media input + esnr_host_input_highalarm{lane_num} = FLOAT ; eSNR high alarm value in dB for host input + esnr_host_input_lowalarm{lane_num} = FLOAT ; eSNR low alarm value in dB for host input + esnr_host_input_highwarning{lane_num} = FLOAT ; eSNR high warning value in dB for host input + esnr_host_input_lowwarning{lane_num} = FLOAT ; eSNR low warning value in dB for host input + pam4_level_transition_media_input_highalarm{lane_num} = FLOAT ; PAM4 level transition high alarm value in dB for media input + pam4_level_transition_media_input_lowalarm{lane_num} = FLOAT ; PAM4 level transition low alarm value in dB for media input + pam4_level_transition_media_input_highwarning{lane_num} = FLOAT ; PAM4 level transition high warning value in dB for media input + pam4_level_transition_media_input_lowwarning{lane_num} = FLOAT ; PAM4 level transition low warning value in dB for media input + pam4_level_transition_host_input_highalarm{lane_num} = FLOAT ; PAM4 level transition high alarm value in dB for host input + pam4_level_transition_host_input_lowalarm{lane_num} = FLOAT ; PAM4 level transition low alarm value in dB for host input + pam4_level_transition_host_input_highwarning{lane_num} = FLOAT ; PAM4 level transition high warning value in dB for host input + pam4_level_transition_host_input_lowwarning{lane_num} = FLOAT ; PAM4 level transition low warning value in dB for host input + prefec_ber_min_media_input_highalarm{lane_num} = FLOAT ; Pre-FEC BER minimum high alarm value for media input + prefec_ber_min_media_input_lowalarm{lane_num} = FLOAT ; Pre-FEC BER minimum low alarm value for media input + prefec_ber_min_media_input_highwarning{lane_num} = FLOAT ; Pre-FEC BER minimum high warning value for media input + prefec_ber_min_media_input_lowwarning{lane_num} = FLOAT ; Pre-FEC BER minimum low warning value for media input + prefec_ber_max_media_input_highalarm{lane_num} = FLOAT ; Pre-FEC BER maximum high alarm value for media input + prefec_ber_max_media_input_lowalarm{lane_num} = FLOAT ; Pre-FEC BER maximum low alarm value for media input + prefec_ber_max_media_input_highwarning{lane_num} = FLOAT ; Pre-FEC BER maximum high warning value for media input + prefec_ber_max_media_input_lowwarning{lane_num} = FLOAT ; Pre-FEC BER maximum low warning value for media input + prefec_ber_avg_media_input_highalarm{lane_num} = FLOAT ; Pre-FEC BER average high alarm value for media input + prefec_ber_avg_media_input_lowalarm{lane_num} = FLOAT ; Pre-FEC BER average low alarm value for media input + prefec_ber_avg_media_input_highwarning{lane_num} = FLOAT ; Pre-FEC BER average high warning value for media input + prefec_ber_avg_media_input_lowwarning{lane_num} = FLOAT ; Pre-FEC BER average low warning value for media input + prefec_ber_curr_media_input_highalarm{lane_num} = FLOAT ; Pre-FEC BER current high alarm value for media input + prefec_ber_curr_media_input_lowalarm{lane_num} = FLOAT ; Pre-FEC BER current low alarm value for media input + prefec_ber_curr_media_input_highwarning{lane_num} = FLOAT ; Pre-FEC BER current high warning value for media input + prefec_ber_curr_media_input_lowwarning{lane_num} = FLOAT ; Pre-FEC BER current low warning value for media input + prefec_ber_min_host_input_highalarm{lane_num} = FLOAT ; Pre-FEC BER minimum high alarm value for host input + prefec_ber_min_host_input_lowalarm{lane_num} = FLOAT ; Pre-FEC BER minimum low alarm value for host input + prefec_ber_min_host_input_highwarning{lane_num} = FLOAT ; Pre-FEC BER minimum high warning value for host input + prefec_ber_min_host_input_lowwarning{lane_num} = FLOAT ; Pre-FEC BER minimum low warning value for host input + prefec_ber_max_host_input_highalarm{lane_num} = FLOAT ; Pre-FEC BER maximum high alarm value for host input + prefec_ber_max_host_input_lowalarm{lane_num} = FLOAT ; Pre-FEC BER maximum low alarm value for host input + prefec_ber_max_host_input_highwarning{lane_num} = FLOAT ; Pre-FEC BER maximum high warning value for host input + prefec_ber_max_host_input_lowwarning{lane_num} = FLOAT ; Pre-FEC BER maximum low warning value for host input + prefec_ber_avg_host_input_highalarm{lane_num} = FLOAT ; Pre-FEC BER average high alarm value for host input + prefec_ber_avg_host_input_lowalarm{lane_num} = FLOAT ; Pre-FEC BER average low alarm value for host input + prefec_ber_avg_host_input_highwarning{lane_num} = FLOAT ; Pre-FEC BER average high warning value for host input + prefec_ber_avg_host_input_lowwarning{lane_num} = FLOAT ; Pre-FEC BER average low warning value for host input + prefec_ber_curr_host_input_highalarm{lane_num} = FLOAT ; Pre-FEC BER current high alarm value for host input + prefec_ber_curr_host_input_lowalarm{lane_num} = FLOAT ; Pre-FEC BER current low alarm value for host input + prefec_ber_curr_host_input_highwarning{lane_num} = FLOAT ; Pre-FEC BER current high warning value for host input + prefec_ber_curr_host_input_lowwarning{lane_num} = FLOAT ; Pre-FEC BER current low warning value for host input + errored_frames_min_media_input_highalarm{lane_num} = FLOAT ; Errored frames minimum high alarm value for media input + errored_frames_min_media_input_lowalarm{lane_num} = FLOAT ; Errored frames minimum low alarm value for media input + errored_frames_min_media_input_highwarning{lane_num} = FLOAT ; Errored frames minimum high warning value for media input + errored_frames_min_media_input_lowwarning{lane_num} = FLOAT ; Errored frames minimum low warning value for media input + errored_frames_max_media_input_highalarm{lane_num} = FLOAT ; Errored frames maximum high alarm value for media input + errored_frames_max_media_input_lowalarm{lane_num} = FLOAT ; Errored frames maximum low alarm value for media input + errored_frames_max_media_input_highwarning{lane_num} = FLOAT ; Errored frames maximum high warning value for media input + errored_frames_max_media_input_lowwarning{lane_num} = FLOAT ; Errored frames maximum low warning value for media input + errored_frames_avg_media_input_highalarm{lane_num} = FLOAT ; Errored frames average high alarm value for media input + errored_frames_avg_media_input_lowalarm{lane_num} = FLOAT ; Errored frames average low alarm value for media input + errored_frames_avg_media_input_highwarning{lane_num} = FLOAT ; Errored frames average high warning value for media input + errored_frames_avg_media_input_lowwarning{lane_num} = FLOAT ; Errored frames average low warning value for media input + errored_frames_curr_media_input_highalarm{lane_num} = FLOAT ; Errored frames current high alarm value for media input + errored_frames_curr_media_input_lowalarm{lane_num} = FLOAT ; Errored frames current low alarm value for media input + errored_frames_curr_media_input_highwarning{lane_num} = FLOAT ; Errored frames current high warning value for media input + errored_frames_curr_media_input_lowwarning{lane_num} = FLOAT ; Errored frames current low warning value for media input + errored_frames_min_host_input_highalarm{lane_num} = FLOAT ; Errored frames minimum high alarm value for host input + errored_frames_min_host_input_lowalarm{lane_num} = FLOAT ; Errored frames minimum low alarm value for host input + errored_frames_min_host_input_highwarning{lane_num} = FLOAT ; Errored frames minimum high warning value for host input + errored_frames_min_host_input_lowwarning{lane_num} = FLOAT ; Errored frames minimum low warning value for host input + errored_frames_max_host_input_highalarm{lane_num} = FLOAT ; Errored frames maximum high alarm value for host input + errored_frames_max_host_input_lowalarm{lane_num} = FLOAT ; Errored frames maximum low alarm value for host input + errored_frames_max_host_input_highwarning{lane_num} = FLOAT ; Errored frames maximum high warning value for host input + errored_frames_max_host_input_lowwarning{lane_num} = FLOAT ; Errored frames maximum low warning value for host input + errored_frames_avg_host_input_highalarm{lane_num} = FLOAT ; Errored frames average high alarm value for host input + errored_frames_avg_host_input_lowalarm{lane_num} = FLOAT ; Errored frames average low alarm value for host input + errored_frames_avg_host_input_highwarning{lane_num} = FLOAT ; Errored frames average high warning value for host input + errored_frames_avg_host_input_lowwarning{lane_num} = FLOAT ; Errored frames average low warning value for host input + errored_frames_curr_host_input_highalarm{lane_num} = FLOAT ; Errored frames current high alarm value for host input + errored_frames_curr_host_input_lowalarm{lane_num} = FLOAT ; Errored frames current low alarm value for host input + errored_frames_curr_host_input_highwarning{lane_num} = FLOAT ; Errored frames current high warning value for host input + errored_frames_curr_host_input_lowwarning{lane_num} = FLOAT ; Errored frames current low warning value for host input + +### 2.9 Transceiver VDM flag data + +The `TRANSCEIVER_VDM_FLAG` table stores the flag status for the VDM data. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + + ;Defines Transceiver VDM flag for a port + key = TRANSCEIVER_VDM_FLAG|ifname ; information module VDM flag on port + ; field = value + esnr_media_input_highalarm_flag{lane_num} = BOOLEAN ; eSNR high alarm flag for media input + esnr_media_input_lowalarm_flag{lane_num} = BOOLEAN ; eSNR low alarm flag for media input + esnr_media_input_highwarning_flag{lane_num} = BOOLEAN ; eSNR high warning flag for media input + esnr_media_input_lowwarning_flag{lane_num} = BOOLEAN ; eSNR low warning flag for media input + esnr_host_input_highalarm_flag{lane_num} = BOOLEAN ; eSNR high alarm flag for host input + esnr_host_input_lowalarm_flag{lane_num} = BOOLEAN ; eSNR low alarm flag for host input + esnr_host_input_highwarning_flag{lane_num} = BOOLEAN ; eSNR high warning flag for host input + esnr_host_input_lowwarning_flag{lane_num} = BOOLEAN ; eSNR low warning flag for host input + pam4_level_transition_media_input_highalarm_flag{lane_num} = BOOLEAN ; PAM4 level transition high alarm flag for media input + pam4_level_transition_media_input_lowalarm_flag{lane_num} = BOOLEAN ; PAM4 level transition low alarm flag for media input + pam4_level_transition_media_input_highwarning_flag{lane_num} = BOOLEAN ; PAM4 level transition high warning flag for media input + pam4_level_transition_media_input_lowwarning_flag{lane_num} = BOOLEAN ; PAM4 level transition low warning flag for media input + pam4_level_transition_host_input_highalarm_flag{lane_num} = BOOLEAN ; PAM4 level transition high alarm flag for host input + pam4_level_transition_host_input_lowalarm_flag{lane_num} = BOOLEAN ; PAM4 level transition low alarm flag for host input + pam4_level_transition_host_input_highwarning_flag{lane_num} = BOOLEAN ; PAM4 level transition high warning flag for host input + pam4_level_transition_host_input_lowwarning_flag{lane_num} = BOOLEAN ; PAM4 level transition low warning flag for host input + prefec_ber_min_media_input_highalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum high alarm flag for media input + prefec_ber_min_media_input_lowalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum low alarm flag for media input + prefec_ber_min_media_input_highwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum high warning flag for media input + prefec_ber_min_media_input_lowwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum low warning flag for media input + prefec_ber_max_media_input_highalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum high alarm flag for media input + prefec_ber_max_media_input_lowalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum low alarm flag for media input + prefec_ber_max_media_input_highwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum high warning flag for media input + prefec_ber_max_media_input_lowwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum low warning flag for media input + prefec_ber_avg_media_input_highalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER average high alarm flag for media input + prefec_ber_avg_media_input_lowalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER average low alarm flag for media input + prefec_ber_avg_media_input_highwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER average high warning flag for media input + prefec_ber_avg_media_input_lowwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER average low warning flag for media input + prefec_ber_curr_media_input_highalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER current high alarm flag for media input + prefec_ber_curr_media_input_lowalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER current low alarm flag for media input + prefec_ber_curr_media_input_highwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER current high warning flag for media input + prefec_ber_curr_media_input_lowwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER current low warning flag for media input + prefec_ber_min_host_input_highalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum high alarm flag for host input + prefec_ber_min_host_input_lowalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum low alarm flag for host input + prefec_ber_min_host_input_highwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum high warning flag for host input + prefec_ber_min_host_input_lowwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum low warning flag for host input + prefec_ber_max_host_input_highalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum high alarm flag for host input + prefec_ber_max_host_input_lowalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum low alarm flag for host input + prefec_ber_max_host_input_highwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum high warning flag for host input + prefec_ber_max_host_input_lowwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum low warning flag for host input + prefec_ber_avg_host_input_highalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER average high alarm flag for host input + prefec_ber_avg_host_input_lowalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER average low alarm flag for host input + prefec_ber_avg_host_input_highwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER average high warning flag for host input + prefec_ber_avg_host_input_lowwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER average low warning flag for host input + prefec_ber_curr_host_input_highalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER current high alarm flag for host input + prefec_ber_curr_host_input_lowalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER current low alarm flag for host input + prefec_ber_curr_host_input_highwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER current high warning flag for host input + prefec_ber_curr_host_input_lowwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER current low warning flag for host input + errored_frames_min_media_input_highalarm_flag{lane_num} = BOOLEAN ; Errored frames minimum high alarm flag for media input + errored_frames_min_media_input_lowalarm_flag{lane_num} = BOOLEAN ; Errored frames minimum low alarm flag for media input + errored_frames_min_media_input_highwarning_flag{lane_num} = BOOLEAN ; Errored frames minimum high warning flag for media input + errored_frames_min_media_input_lowwarning_flag{lane_num} = BOOLEAN ; Errored frames minimum low warning flag for media input + errored_frames_max_media_input_highalarm_flag{lane_num} = BOOLEAN ; Errored frames maximum high alarm flag for media input + errored_frames_max_media_input_lowalarm_flag{lane_num} = BOOLEAN ; Errored frames maximum low alarm flag for media input + errored_frames_max_media_input_highwarning_flag{lane_num} = BOOLEAN ; Errored frames maximum high warning flag for media input + errored_frames_max_media_input_lowwarning_flag{lane_num} = BOOLEAN ; Errored frames maximum low warning flag for media input + errored_frames_avg_media_input_highalarm_flag{lane_num} = BOOLEAN ; Errored frames average high alarm flag for media input + errored_frames_avg_media_input_lowalarm_flag{lane_num} = BOOLEAN ; Errored frames average low alarm flag for media input + errored_frames_avg_media_input_highwarning_flag{lane_num} = BOOLEAN ; Errored frames average high warning flag for media input + errored_frames_avg_media_input_lowwarning_flag{lane_num} = BOOLEAN ; Errored frames average low warning flag for media input + errored_frames_curr_media_input_highalarm_flag{lane_num} = BOOLEAN ; Errored frames current high alarm flag for media input + errored_frames_curr_media_input_lowalarm_flag{lane_num} = BOOLEAN ; Errored frames current low alarm flag for media input + errored_frames_curr_media_input_highwarning_flag{lane_num} = BOOLEAN ; Errored frames current high warning flag for media input + errored_frames_curr_media_input_lowwarning_flag{lane_num} = BOOLEAN ; Errored frames current low warning flag for media input + errored_frames_min_host_input_highalarm_flag{lane_num} = BOOLEAN ; Errored frames minimum high alarm flag for host input + errored_frames_min_host_input_lowalarm_flag{lane_num} = BOOLEAN ; Errored frames minimum low alarm flag for host input + errored_frames_min_host_input_highwarning_flag{lane_num} = BOOLEAN ; Errored frames minimum high warning flag for host input + errored_frames_min_host_input_lowwarning_flag{lane_num} = BOOLEAN ; Errored frames minimum low warning flag for host input + errored_frames_max_host_input_highalarm_flag{lane_num} = BOOLEAN ; Errored frames maximum high alarm flag for host input + errored_frames_max_host_input_lowalarm_flag{lane_num} = BOOLEAN ; Errored frames maximum low alarm flag for host input + errored_frames_max_host_input_highwarning_flag{lane_num} = BOOLEAN ; Errored frames maximum high warning flag for host input + errored_frames_max_host_input_lowwarning_flag{lane_num} = BOOLEAN ; Errored frames maximum low warning flag for host input + errored_frames_avg_host_input_highalarm_flag{lane_num} = BOOLEAN ; Errored frames average high alarm flag for host input + errored_frames_avg_host_input_lowalarm_flag{lane_num} = BOOLEAN ; Errored frames average low alarm flag for host input + errored_frames_avg_host_input_highwarning_flag{lane_num} = BOOLEAN ; Errored frames average high warning flag for host input + errored_frames_avg_host_input_lowwarning_flag{lane_num} = BOOLEAN ; Errored frames average low warning flag for host input + errored_frames_curr_host_input_highalarm_flag{lane_num} = BOOLEAN ; Errored frames current high alarm flag for host input + errored_frames_curr_host_input_lowalarm_flag{lane_num} = BOOLEAN ; Errored frames current low alarm flag for host input + errored_frames_curr_host_input_highwarning_flag{lane_num} = BOOLEAN ; Errored frames current high warning flag for host input + errored_frames_curr_host_input_lowwarning_flag{lane_num} = BOOLEAN ; Errored frames current low warning flag for host input +``` + +### 2.10 Transceiver VDM flag change count data + +The `TRANSCEIVER_VDM_FLAG_CHANGE_COUNT` table stores the flag change count for the VDM flags. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ;Defines Transceiver VDM flag change count for a port + key = TRANSCEIVER_VDM_FLAG_CHANGE_COUNT|ifname ; information module VDM flags change count on port + ; field = value + esnr_media_input_highalarm_change_count{lane_num} = INTEGER ; eSNR high alarm change count for media input + esnr_media_input_lowalarm_change_count{lane_num} = INTEGER ; eSNR low alarm change count for media input + esnr_media_input_highwarning_change_count{lane_num} = INTEGER ; eSNR high warning change count for media input + esnr_media_input_lowwarning_change_count{lane_num} = INTEGER ; eSNR low warning change count for media input + esnr_host_input_highalarm_change_count{lane_num} = INTEGER ; eSNR high alarm change count for host input + esnr_host_input_lowalarm_change_count{lane_num} = INTEGER ; eSNR low alarm change count for host input + esnr_host_input_highwarning_change_count{lane_num} = INTEGER ; eSNR high warning change count for host input + esnr_host_input_lowwarning_change_count{lane_num} = INTEGER ; eSNR low warning change count for host input + pam4_level_transition_media_input_highalarm_change_count{lane_num} = INTEGER ; PAM4 level transition high alarm change count for media input + pam4_level_transition_media_input_lowalarm_change_count{lane_num} = INTEGER ; PAM4 level transition low alarm change count for media input + pam4_level_transition_media_input_highwarning_change_count{lane_num} = INTEGER ; PAM4 level transition high warning change count for media input + pam4_level_transition_media_input_lowwarning_change_count{lane_num} = INTEGER ; PAM4 level transition low warning change count for media input + pam4_level_transition_host_input_highalarm_change_count{lane_num} = INTEGER ; PAM4 level transition high alarm change count for host input + pam4_level_transition_host_input_lowalarm_change_count{lane_num} = INTEGER ; PAM4 level transition low alarm change count for host input + pam4_level_transition_host_input_highwarning_change_count{lane_num} = INTEGER ; PAM4 level transition high warning change count + pam4_level_transition_host_input_lowwarning_change_count{lane_num} = INTEGER ; PAM4 level transition low warning change count for host input + prefec_ber_min_media_input_highalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER minimum high alarm change count for media input + prefec_ber_min_media_input_lowalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER minimum low alarm change count for media input + prefec_ber_min_media_input_highwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER minimum high warning change count for media input + prefec_ber_min_media_input_lowwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER minimum low warning change count for media input + prefec_ber_max_media_input_highalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER maximum high alarm change count for media input + prefec_ber_max_media_input_lowalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER maximum low alarm change count for media input + prefec_ber_max_media_input_highwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER maximum high warning change count for media input + prefec_ber_max_media_input_lowwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER maximum low warning change count for media input + prefec_ber_avg_media_input_highalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER average high alarm change count for media input + prefec_ber_avg_media_input_lowalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER average low alarm change count for media input + prefec_ber_avg_media_input_highwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER average high warning change count for media input + prefec_ber_avg_media_input_lowwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER average low warning change count for media input + prefec_ber_curr_media_input_highalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER current high alarm change count for media input + prefec_ber_curr_media_input_lowalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER current low alarm change count for media input + prefec_ber_curr_media_input_highwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER current high warning change count for media input + prefec_ber_curr_media_input_lowwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER current low warning change count for media input + prefec_ber_min_host_input_highalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER minimum high alarm change count for host input + prefec_ber_min_host_input_lowalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER minimum low alarm change count for host input + prefec_ber_min_host_input_highwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER minimum high warning change count for host input + prefec_ber_min_host_input_lowwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER minimum low warning change count for host input + prefec_ber_max_host_input_highalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER maximum high alarm change count for host input + prefec_ber_max_host_input_lowalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER maximum low alarm change count for host input + prefec_ber_max_host_input_highwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER maximum high warning change count for host input + prefec_ber_max_host_input_lowwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER maximum low warning change count for host input + prefec_ber_avg_host_input_highalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER average high alarm change count for host input + prefec_ber_avg_host_input_lowalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER average low alarm change count for host input + prefec_ber_avg_host_input_highwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER average high warning change count for host input + prefec_ber_avg_host_input_lowwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER average low warning change count for host input + prefec_ber_curr_host_input_highalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER current high alarm change count for host input + prefec_ber_curr_host_input_lowalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER current low alarm change count for host input + prefec_ber_curr_host_input_highwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER current high warning change count for host input + prefec_ber_curr_host_input_lowwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER current low warning change count for host input + errored_frames_min_media_input_highalarm_change_count{lane_num} = INTEGER ; Errored frames minimum high alarm change count for media input + errored_frames_min_media_input_lowalarm_change_count{lane_num} = INTEGER ; Errored frames minimum low alarm change count for media input + errored_frames_min_media_input_highwarning_change_count{lane_num} = INTEGER ; Errored frames minimum high warning change count for media input + errored_frames_min_media_input_lowwarning_change_count{lane_num} = INTEGER ; Errored frames minimum low warning change count for media input + errored_frames_max_media_input_highalarm_change_count{lane_num} = INTEGER ; Errored frames maximum high alarm change count for media input + errored_frames_max_media_input_lowalarm_change_count{lane_num} = INTEGER ; Errored frames maximum low alarm change count for media input + errored_frames_max_media_input_highwarning_change_count{lane_num} = INTEGER ; Errored frames maximum high warning change count for media input + errored_frames_max_media_input_lowwarning_change_count{lane_num} = INTEGER ; Errored frames maximum low warning change count for media input + errored_frames_avg_media_input_highalarm_change_count{lane_num} = INTEGER ; Errored frames average high alarm change count for media input + errored_frames_avg_media_input_lowalarm_change_count{lane_num} = INTEGER ; Errored frames average low alarm change count for media input + errored_frames_avg_media_input_highwarning_change_count{lane_num} = INTEGER ; Errored frames average high warning change count for media input + errored_frames_avg_media_input_lowwarning_change_count{lane_num} = INTEGER ; Errored frames average low warning change count for media input + errored_frames_curr_media_input_highalarm_change_count{lane_num} = INTEGER ; Errored frames current high alarm change count for media input + errored_frames_curr_media_input_lowalarm_change_count{lane_num} = INTEGER ; Errored frames current low alarm change count for media input + errored_frames_curr_media_input_highwarning_change_count{lane_num} = INTEGER ; Errored frames current high warning change count for media input + errored_frames_curr_media_input_lowwarning_change_count{lane_num} = INTEGER ; Errored frames current low warning change count for media input + errored_frames_min_host_input_highalarm_change_count{lane_num} = INTEGER ; Errored frames minimum high alarm change count for host input + errored_frames_min_host_input_lowalarm_change_count{lane_num} = INTEGER ; Errored frames minimum low alarm change count for host input + errored_frames_min_host_input_highwarning_change_count{lane_num} = INTEGER ; Errored frames minimum high warning change count for host input + errored_frames_min_host_input_lowwarning_change_count{lane_num} = INTEGER ; Errored frames minimum low warning change count for host input + errored_frames_max_host_input_highalarm_change_count{lane_num} = INTEGER ; Errored frames maximum high alarm change count for host input + errored_frames_max_host_input_lowalarm_change_count{lane_num} = INTEGER ; Errored frames maximum low alarm change count for host input + errored_frames_max_host_input_highwarning_change_count{lane_num} = INTEGER ; Errored frames maximum high warning change count for host input + errored_frames_max_host_input_lowwarning_change_count{lane_num} = INTEGER ; Errored frames maximum low warning change count for host input + errored_frames_avg_host_input_highalarm_change_count{lane_num} = INTEGER ; Errored frames average high alarm change count for host input + errored_frames_avg_host_input_lowalarm_change_count{lane_num} = INTEGER ; Errored frames average low alarm change count for host input + errored_frames_avg_host_input_highwarning_change_count{lane_num} = INTEGER ; Errored frames average high warning change count for host input + errored_frames_avg_host_input_lowwarning_change_count{lane_num} = INTEGER ; Errored frames average low warning change count for host input + errored_frames_curr_host_input_highalarm_change_count{lane_num} = INTEGER ; Errored frames current high alarm change count for host input + errored_frames_curr_host_input_lowalarm_change_count{lane_num} = INTEGER ; Errored frames current low alarm change count for host input + errored_frames_curr_host_input_highwarning_change_count{lane_num} = INTEGER ; Errored frames current high warning change count for host input + errored_frames_curr_host_input_lowwarning_change_count{lane_num} = INTEGER ; Errored frames current low warning change count for host input +``` + +### 2.11 Transceiver VDM flag time set data + +The `TRANSCEIVER_VDM_FLAG_TIME_SET` table stores the flag time set for the VDM flags. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ;Defines Transceiver VDM flag time set for a port + key = TRANSCEIVER_VDM_FLAG_TIME_SET|ifname ; information module VDM flags time set on port + ; field = value + esnr_media_input_highalarm_last_set_time{lane_num} = STR ; eSNR high alarm last set time for media input + esnr_media_input_lowalarm_last_set_time{lane_num} = STR ; eSNR low alarm last set time for media input + esnr_media_input_highwarning_last_set_time{lane_num} = STR ; eSNR high warning last set time for media input + esnr_media_input_lowwarning_last_set_time{lane_num} = STR ; eSNR low warning last set time for media input + esnr_host_input_highalarm_last_set_time{lane_num} = STR ; eSNR high alarm last set time for host input + esnr_host_input_lowalarm_last_set_time{lane_num} = STR ; eSNR low alarm last set time for host input + esnr_host_input_highwarning_last_set_time{lane_num} = STR ; eSNR high warning last set time for host input + esnr_host_input_lowwarning_last_set_time{lane_num} = STR ; eSNR low warning last set time for host input + pam4_level_transition_media_input_highalarm_last_set_time{lane_num} = STR ; PAM4 level transition high alarm last set time for media input + pam4_level_transition_media_input_lowalarm_last_set_time{lane_num} = STR ; PAM4 level transition low alarm last set time for media input + pam4_level_transition_media_input_highwarning_last_set_time{lane_num} = STR ; PAM4 level transition high warning last set time for media input + pam4_level_transition_media_input_lowwarning_last_set_time{lane_num} = STR ; PAM4 level transition low warning last set time for media input + pam4_level_transition_host_input_highalarm_last_set_time{lane_num} = STR ; PAM4 level transition high alarm last set time for host input + pam4_level_transition_host_input_lowalarm_last_set_time{lane_num} = STR ; PAM4 level transition low alarm last set time for host input + pam4_level_transition_host_input_highwarning_last_set_time{lane_num} = STR ; PAM4 level transition high warning last set time for host input + pam4_level_transition_host_input_lowwarning_last_set_time{lane_num} = STR ; PAM4 level transition low warning last set time for host input + prefec_ber_min_media_input_highalarm_last_set_time{lane_num} = STR ; Pre-FEC BER minimum high alarm last set time for media input + prefec_ber_min_media_input_lowalarm_last_set_time{lane_num} = STR ; Pre-FEC BER minimum low alarm last set time for media input + prefec_ber_min_media_input_highwarning_last_set_time{lane_num} = STR ; Pre-FEC BER minimum high warning last set time for media input + prefec_ber_min_media_input_lowwarning_last_set_time{lane_num} = STR ; Pre-FEC BER minimum low warning last set time for media input + prefec_ber_max_media_input_highalarm_last_set_time{lane_num} = STR ; Pre-FEC BER maximum high alarm last set time for media input + prefec_ber_max_media_input_lowalarm_last_set_time{lane_num} = STR ; Pre-FEC BER maximum low alarm last set time for media input + prefec_ber_max_media_input_highwarning_last_set_time{lane_num} = STR ; Pre-FEC BER maximum high warning last set time for media input + prefec_ber_max_media_input_lowwarning_last_set_time{lane_num} = STR ; Pre-FEC BER maximum low warning last set time for media input + prefec_ber_avg_media_input_highalarm_last_set_time{lane_num} = STR ; Pre-FEC BER average high alarm last set time for media input + prefec_ber_avg_media_input_lowalarm_last_set_time{lane_num} = STR ; Pre-FEC BER average low alarm last set time for media input + prefec_ber_avg_media_input_highwarning_last_set_time{lane_num} = STR ; Pre-FEC BER average high warning last set time for media input + prefec_ber_avg_media_input_lowwarning_last_set_time{lane_num} = STR ; Pre-FEC BER average low warning last set time for media input + prefec_ber_curr_media_input_highalarm_last_set_time{lane_num} = STR ; Pre-FEC BER current high alarm last set time for media input + prefec_ber_curr_media_input_lowalarm_last_set_time{lane_num} = STR ; Pre-FEC BER current low alarm last set time for media input + prefec_ber_curr_media_input_highwarning_last_set_time{lane_num} = STR ; Pre-FEC BER current high warning last set time for media input + prefec_ber_curr_media_input_lowwarning_last_set_time{lane_num} = STR ; Pre-FEC BER current low warning last set time for media input + prefec_ber_min_host_input_highalarm_last_set_time{lane_num} = STR ; Pre-FEC BER minimum high alarm last set time for host input + prefec_ber_min_host_input_lowalarm_last_set_time{lane_num} = STR ; Pre-FEC BER minimum low alarm last set time for host input + prefec_ber_min_host_input_highwarning_last_set_time{lane_num} = STR ; Pre-FEC BER minimum high warning last set time for host input + prefec_ber_min_host_input_lowwarning_last_set_time{lane_num} = STR ; Pre-FEC BER minimum low warning last set time for host input + prefec_ber_max_host_input_highalarm_last_set_time{lane_num} = STR ; Pre-FEC BER maximum high alarm last set time for host input + prefec_ber_max_host_input_lowalarm_last_set_time{lane_num} = STR ; Pre-FEC BER maximum low alarm last set time for host input + prefec_ber_max_host_input_highwarning_last_set_time{lane_num} = STR ; Pre-FEC BER maximum high warning last set time for host input + prefec_ber_max_host_input_lowwarning_last_set_time{lane_num} = STR ; Pre-FEC BER maximum low warning last set time for host input + prefec_ber_avg_host_input_highalarm_last_set_time{lane_num} = STR ; Pre-FEC BER average high alarm last set time for host input + prefec_ber_avg_host_input_lowalarm_last_set_time{lane_num} = STR ; Pre-FEC BER average low alarm last set time for host input + prefec_ber_avg_host_input_highwarning_last_set_time{lane_num} = STR ; Pre-FEC BER average high warning last set time for host input + prefec_ber_avg_host_input_lowwarning_last_set_time{lane_num} = STR ; Pre-FEC BER average low warning last set time for host input + prefec_ber_curr_host_input_highalarm_last_set_time{lane_num} = STR ; Pre-FEC BER current high alarm last set time for host input + prefec_ber_curr_host_input_lowalarm_last_set_time{lane_num} = STR ; Pre-FEC BER current low alarm last set time for host input + prefec_ber_curr_host_input_highwarning_last_set_time{lane_num} = STR ; Pre-FEC BER current high warning last set time for host input + prefec_ber_curr_host_input_lowwarning_last_set_time{lane_num} = STR ; Pre-FEC BER current low warning last set time for host input + errored_frames_min_media_input_highalarm_last_set_time{lane_num} = STR ; Errored frames minimum high alarm last set time for media input + errored_frames_min_media_input_lowalarm_last_set_time{lane_num} = STR ; Errored frames minimum low alarm last set time for media input + errored_frames_min_media_input_highwarning_last_set_time{lane_num} = STR ; Errored frames minimum high warning last set time for media input + errored_frames_min_media_input_lowwarning_last_set_time{lane_num} = STR ; Errored frames minimum low warning last set time for media input + errored_frames_max_media_input_highalarm_last_set_time{lane_num} = STR ; Errored frames maximum high alarm last set time for media input + errored_frames_max_media_input_lowalarm_last_set_time{lane_num} = STR ; Errored frames maximum low alarm last set time for media input + errored_frames_max_media_input_highwarning_last_set_time{lane_num} = STR ; Errored frames maximum high warning last set time for media input + errored_frames_max_media_input_lowwarning_last_set_time{lane_num} = STR ; Errored frames maximum low warning last set time for media input + errored_frames_avg_media_input_highalarm_last_set_time{lane_num} = STR ; Errored frames average high alarm last set time for media input + errored_frames_avg_media_input_lowalarm_last_set_time{lane_num} = STR ; Errored frames average low alarm last set time for media input + errored_frames_avg_media_input_highwarning_last_set_time{lane_num} = STR ; Errored frames average high warning last set time for media input + errored_frames_avg_media_input_lowwarning_last_set_time{lane_num} = STR ; Errored frames average low warning last set time for media input + errored_frames_curr_media_input_highalarm_last_set_time{lane_num} = STR ; Errored frames current high alarm last set time for media input + errored_frames_curr_media_input_lowalarm_last_set_time{lane_num} = STR ; Errored frames current low alarm last set time for media input + errored_frames_curr_media_input_highwarning_last_set_time{lane_num} = STR ; Errored frames current high warning last set time for media input + errored_frames_curr_media_input_lowwarning_last_set_time{lane_num} = STR ; Errored frames current low warning last set time for media input + errored_frames_min_host_input_highalarm_last_set_time{lane_num} = STR ; Errored frames minimum high alarm last set time for host input + errored_frames_min_host_input_lowalarm_last_set_time{lane_num} = STR ; Errored frames minimum low alarm last set time for host input + errored_frames_min_host_input_highwarning_last_set_time{lane_num} = STR ; Errored frames minimum high warning last set time for host input + errored_frames_min_host_input_lowwarning_last_set_time{lane_num} = STR ; Errored frames minimum low warning last set time for host input + errored_frames_max_host_input_highalarm_last_set_time{lane_num} = STR ; Errored frames maximum high alarm last set time for host input + errored_frames_max_host_input_lowalarm_last_set_time{lane_num} = STR ; Errored frames maximum low alarm last set time for host input + errored_frames_max_host_input_highwarning_last_set_time{lane_num} = STR ; Errored frames maximum high warning last set time for host input + errored_frames_max_host_input_lowwarning_last_set_time{lane_num} = STR ; Errored frames maximum low warning last set time for host input + errored_frames_avg_host_input_highalarm_last_set_time{lane_num} = STR ; Errored frames average high alarm last set time for host input + errored_frames_avg_host_input_lowalarm_last_set_time{lane_num} = STR ; Errored frames average low alarm last set time for host input + errored_frames_avg_host_input_highwarning_last_set_time{lane_num} = STR ; Errored frames average high warning last set time for host input + errored_frames_avg_host_input_lowwarning_last_set_time{lane_num} = STR ; Errored frames average low warning last set time for host input + errored_frames_curr_host_input_highalarm_last_set_time{lane_num} = STR ; Errored frames current high alarm last set time for host input + errored_frames_curr_host_input_lowalarm_last_set_time{lane_num} = STR ; Errored frames current low alarm last set time for host input + errored_frames_curr_host_input_highwarning_last_set_time{lane_num} = STR ; Errored frames current high warning last set time for host input + errored_frames_curr_host_input_lowwarning_last_set_time{lane_num} = STR ; Errored frames current low warning last set time for host input +``` + +### 2.12 Transceiver VDM flag time clear data + +The `TRANSCEIVER_VDM_FLAG_TIME_CLEAR` table stores the flag time clear for the VDM flags. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ;Defines Transceiver VDM flag time clear for a port + key = TRANSCEIVER_VDM_FLAG_TIME_CLEAR|ifname ; information module VDM flags time clear on port + ; field = value + esnr_media_input_highalarm_last_clear_time{lane_num} = STR ; eSNR high alarm last clear time for media input + esnr_media_input_lowalarm_last_clear_time{lane_num} = STR ; eSNR low alarm last clear time for media input + esnr_media_input_highwarning_last_clear_time{lane_num} = STR ; eSNR high warning last clear time for media input + esnr_media_input_lowwarning_last_clear_time{lane_num} = STR ; eSNR low warning last clear time for media input + esnr_host_input_highalarm_last_clear_time{lane_num} = STR ; eSNR high alarm last clear time for host input + esnr_host_input_lowalarm_last_clear_time{lane_num} = STR ; eSNR low alarm last clear time for host input + esnr_host_input_highwarning_last_clear_time{lane_num} = STR ; eSNR high warning last clear time for host input + esnr_host_input_lowwarning_last_clear_time{lane_num} = STR ; eSNR low warning last clear time for host input + pam4_level_transition_media_input_highalarm_last_clear_time{lane_num} = STR ; PAM4 level transition high alarm last clear time for media input + pam4_level_transition_media_input_lowalarm_last_clear_time{lane_num} = STR ; PAM4 level transition low alarm last clear time for media input + pam4_level_transition_media_input_highwarning_last_clear_time{lane_num} = STR ; PAM4 level transition high warning last clear time for media input + pam4_level_transition_media_input_lowwarning_last_clear_time{lane_num} = STR ; PAM4 level transition low warning last clear time for media input + pam4_level_transition_host_input_highalarm_last_clear_time{lane_num} = STR ; PAM4 level transition high alarm last clear time for host input + pam4_level_transition_host_input_lowalarm_last_clear_time{lane_num} = STR ; PAM4 level transition low alarm last clear time for host input + pam4_level_transition_host_input_highwarning_last_clear_time{lane_num} = STR ; PAM4 level transition high warning last clear time for host input + pam4_level_transition_host_input_lowwarning_last_clear_time{lane_num} = STR ; PAM4 level transition low warning last clear time for host input + prefec_ber_min_media_input_highalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum high alarm last clear time for media input + prefec_ber_min_media_input_lowalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum low alarm last clear time for media input + prefec_ber_min_media_input_highwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum high warning last clear time for media input + prefec_ber_min_media_input_lowwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum low warning last clear time for media input + prefec_ber_max_media_input_highalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum high alarm last clear time for media input + prefec_ber_max_media_input_lowalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum low alarm last clear time for media input + prefec_ber_max_media_input_highwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum high warning last clear time for media input + prefec_ber_max_media_input_lowwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum low warning last clear time for media input + prefec_ber_avg_media_input_highalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER average high alarm last clear time for media input + prefec_ber_avg_media_input_lowalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER average low alarm last clear time for media input + prefec_ber_avg_media_input_highwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER average high warning last clear time for media input + prefec_ber_avg_media_input_lowwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER average low warning last clear time for media input + prefec_ber_curr_media_input_highalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER current high alarm last clear time for media input + prefec_ber_curr_media_input_lowalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER current low alarm last clear time for media input + prefec_ber_curr_media_input_highwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER current high warning last clear time for media input + prefec_ber_curr_media_input_lowwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER current low warning last clear time for media input + prefec_ber_min_host_input_highalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum high alarm last clear time for host input + prefec_ber_min_host_input_lowalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum low alarm last clear time for host input + prefec_ber_min_host_input_highwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum high warning last clear time for host input + prefec_ber_min_host_input_lowwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum low warning last clear time for host input + prefec_ber_max_host_input_highalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum high alarm last clear time for host input + prefec_ber_max_host_input_lowalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum low alarm last clear time for host input + prefec_ber_max_host_input_highwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum high warning last clear time for host input + prefec_ber_max_host_input_lowwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum low warning last clear time for host input + prefec_ber_avg_host_input_highalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER average high alarm last clear time for host input + prefec_ber_avg_host_input_lowalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER average low alarm last clear time for host input + prefec_ber_avg_host_input_highwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER average high warning last clear time for host input + prefec_ber_avg_host_input_lowwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER average low warning last clear time for host input + prefec_ber_curr_host_input_highalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER current high alarm last clear time for host input + prefec_ber_curr_host_input_lowalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER current low alarm last clear time for host input + prefec_ber_curr_host_input_highwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER current high warning last clear time for host input + prefec_ber_curr_host_input_lowwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER current low warning last clear time for host input + errored_frames_min_media_input_highalarm_last_clear_time{lane_num} = STR ; Errored frames minimum high alarm last clear time for media input + errored_frames_min_media_input_lowalarm_last_clear_time{lane_num} = STR ; Errored frames minimum low alarm last clear time for media input + errored_frames_min_media_input_highwarning_last_clear_time{lane_num} = STR ; Errored frames minimum high warning last clear time for media input + errored_frames_min_media_input_lowwarning_last_clear_time{lane_num} = STR ; Errored frames minimum low warning last clear time for media input + errored_frames_max_media_input_highalarm_last_clear_time{lane_num} = STR ; Errored frames maximum high alarm last clear time for media input + errored_frames_max_media_input_lowalarm_last_clear_time{lane_num} = STR ; Errored frames maximum low alarm last clear time for media input + errored_frames_max_media_input_highwarning_last_clear_time{lane_num} = STR ; Errored frames maximum high warning last clear time for media input + errored_frames_max_media_input_lowwarning_last_clear_time{lane_num} = STR ; Errored frames maximum low warning last clear time for media input + errored_frames_avg_media_input_highalarm_last_clear_time{lane_num} = STR ; Errored frames average high alarm last clear time for media input + errored_frames_avg_media_input_lowalarm_last_clear_time{lane_num} = STR ; Errored frames average low alarm last clear time for media input + errored_frames_avg_media_input_highwarning_last_clear_time{lane_num} = STR ; Errored frames average high warning last clear time for media input + errored_frames_avg_media_input_lowwarning_last_clear_time{lane_num} = STR ; Errored frames average low warning last clear time for media input + errored_frames_curr_media_input_highalarm_last_clear_time{lane_num} = STR ; Errored frames current high alarm last clear time for media input + errored_frames_curr_media_input_lowalarm_last_clear_time{lane_num} = STR ; Errored frames current low alarm last clear time for media input + errored_frames_curr_media_input_highwarning_last_clear_time{lane_num} = STR ; Errored frames current high warning last clear time for media input + errored_frames_curr_media_input_lowwarning_last_clear_time{lane_num} = STR ; Errored frames current low warning last clear time for media input + errored_frames_min_host_input_highalarm_last_clear_time{lane_num} = STR ; Errored frames minimum high alarm last clear time for host input + errored_frames_min_host_input_lowalarm_last_clear_time{lane_num} = STR ; Errored frames minimum low alarm last clear time for host input + errored_frames_min_host_input_highwarning_last_clear_time{lane_num} = STR ; Errored frames minimum high warning last clear time for host input + errored_frames_min_host_input_lowwarning_last_clear_time{lane_num} = STR ; Errored frames minimum low warning last clear time for host input + errored_frames_max_host_input_highalarm_last_clear_time{lane_num} = STR ; Errored frames maximum high alarm last clear time for host input + errored_frames_max_host_input_lowalarm_last_clear_time{lane_num} = STR ; Errored frames maximum low alarm last clear time for host input + errored_frames_max_host_input_highwarning_last_clear_time{lane_num} = STR ; Errored frames maximum high warning last clear time for host input + errored_frames_max_host_input_lowwarning_last_clear_time{lane_num} = STR ; Errored frames maximum low warning last clear time for host input + errored_frames_avg_host_input_highalarm_last_clear_time{lane_num} = STR ; Errored frames average high alarm last clear time for host input + errored_frames_avg_host_input_lowalarm_last_clear_time{lane_num} = STR ; Errored frames average low alarm last clear time for host input + errored_frames_avg_host_input_highwarning_last_clear_time{lane_num} = STR ; Errored frames average high warning last clear time for host input + errored_frames_avg_host_input_lowwarning_last_clear_time{lane_num} = STR ; Errored frames average low warning last clear time for host input + errored_frames_curr_host_input_highalarm_last_clear_time{lane_num} = STR ; Errored frames current high alarm last clear time for host input + errored_frames_curr_host_input_lowalarm_last_clear_time{lane_num} = STR ; Errored frames current low alarm last clear time for host input + errored_frames_curr_host_input_highwarning_last_clear_time{lane_num} = STR ; Errored frames current high warning last clear time for host input + errored_frames_curr_host_input_lowwarning_last_clear_time{lane_num} = STR ; Errored frames current low warning last clear time for host input +``` + +### 2.13 Transceiver status data + +The `TRANSCEIVER_STATUS` table stores the status of the transceiver. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ; Defines Transceiver Status info for a port + key = TRANSCEIVER_STATUS|ifname ; Error information for module on port + ; field = value + status = 1*255VCHAR ; code of the module status (plug in, plug out) + error = 1*255VCHAR ; module error (N/A or a string consisting of error descriptions joined by "|", like "error1 | error2" ) + module_state = 1*255VCHAR ; current module state (ModuleLowPwr, ModulePwrUp, ModuleReady, ModulePwrDn, Fault) + module_fault_cause = 1*255VCHAR ; reason of entering the module fault state + datapath_firmware_fault = BOOLEAN ; datapath (DSP) firmware fault + module_firmware_fault = BOOLEAN ; module firmware fault + module_state_changed = BOOLEAN ; module state changed + DP{lane_num}State = 1*255VCHAR ; data path state indicator on host lane {lane_num} + txoutput_status{lane_num} = BOOLEAN ; tx output status on media lane {lane_num} + rxoutput_status_hostlane{lane_num} = BOOLEAN ; rx output status on host lane {lane_num} + tx{lane_num}disable = BOOLEAN ; TX disable state on media lane {lane_num} + tx_disabled_channel = INTEGER ; TX disable field + config_state_hostlane{lane_num} = 1*255VCHAR ; configuration status for the data path of host line {lane_num} + dpinit_pending_hostlane{lane_num} = BOOLEAN ; data path configuration updated on host lane {lane_num} + tuning_in_progress = BOOLEAN ; tuning in progress status + wavelength_unlock_status = BOOLEAN ; laser unlocked status + target_output_power_oor = BOOLEAN ; target output power out of range flag + fine_tuning_oor = BOOLEAN ; fine tuning out of range flag + tuning_not_accepted = BOOLEAN ; tuning not accepted flag + invalid_channel_num = BOOLEAN ; invalid channel number flag + tuning_complete = BOOLEAN ; tuning complete flag + +### 2.14 Transceiver PM data + +The `TRANSCEIVER_PM` table stores the performance monitoring data of the transceiver. This table is exists only for C-CMIS transceivers. + + ; Defines Transceiver PM information for a port + key = TRANSCEIVER_PM|ifname ; information of PM on port + ; field = value + prefec_ber_avg = FLOAT ; prefec ber avg + prefec_ber_min = FLOAT ; prefec ber min + prefec_ber_max = FLOAT ; prefec ber max + uncorr_frames_avg = FLOAT ; uncorrected frames ratio avg + uncorr_frames_min = FLOAT ; uncorrected frames ratio min + uncorr_frames_max = FLOAT ; uncorrected frames ratio max + cd_avg = FLOAT ; chromatic dispersion avg + cd_min = FLOAT ; chromatic dispersion min + cd_max = FLOAT ; chromatic dispersion max + dgd_avg = FLOAT ; differential group delay avg + dgd_min = FLOAT ; differential group delay min + dgd_max = FLOAT ; differential group delay max + sopmd_avg = FLOAT ; second order polarization mode dispersion avg + sopmd_min = FLOAT ; second order polarization mode dispersion min + sopmd_max = FLOAT ; second order polarization mode dispersion max + pdl_avg = FLOAT ; polarization dependent loss avg + pdl_min = FLOAT ; polarization dependent loss min + pdl_max = FLOAT ; polarization dependent loss max + osnr_avg = FLOAT ; optical signal to noise ratio avg + osnr_min = FLOAT ; optical signal to noise ratio min + osnr_max = FLOAT ; optical signal to noise ratio max + esnr_avg = FLOAT ; electrical signal to noise ratio avg + esnr_min = FLOAT ; electrical signal to noise ratio min + esnr_max = FLOAT ; electrical signal to noise ratio max + cfo_avg = FLOAT ; carrier frequency offset avg + cfo_min = FLOAT ; carrier frequency offset min + cfo_max = FLOAT ; carrier frequency offset max + soproc_avg = FLOAT ; state of polarization rate of change avg + soproc_min = FLOAT ; state of polarization rate of change min + soproc_max = FLOAT ; state of polarization rate of change max + tx_power_avg = FLOAT ; tx output power avg + tx_power_min = FLOAT ; tx output power min + tx_power_max = FLOAT ; tx output power max + rx_tot_power_avg = FLOAT ; rx total power avg + rx_tot_power_min = FLOAT ; rx total power min + rx_tot_power_max = FLOAT ; rx total power max + rx_sig_power_avg = FLOAT ; rx signal power avg + rx_sig_power_min = FLOAT ; rx signal power min + rx_sig_power_max = FLOAT ; rx signal power max +``` + +## 3. CLI Commands for CMIS Diagnostic Monitoring + +### 3.1 CLI Commands for DOM Monitoring + +#### 3.1.1 `show interfaces transceiver dom PORT` + +This CLI shows the transceiver DOM and threshold values for a given port. + +```plaintext +CLI output format: + High Alarm High Warning Low Warning Low Alarm + Paramter_Name Threshold Threshold Threshold Threshold +Port (Unit) (Unit) (Unit) (Unit) (Unit) +----------- --------------- -------- -------- -------- -------- + +Example: +admin@sonic#show interfaces transceiver dom Ethernet1 + High Alarm High Warning Low Warning Low Alarm + Temperature Threshold Threshold Threshold Threshold +Port (Celsius) (Celsius) (Celsius) (Celsius) (Celsius) +----------- --------------- -------- -------- -------- -------- +Ethernet1 100 90 80 -10 -20 +``` + +#### 3.1.2 `show interfaces transceiver dom flag PORT` + +This CLI shows the transceiver DOM flags for a given port. + +```plaintext +CLI output format: + High Alarm High Warning Low Warning Low Alarm +Port Paramter_Name Flag Flag Flag Flag +----------- --------------- -------- -------- -------- -------- + +Example: +admin@sonic#show interfaces transceiver dom flag Ethernet1 + High Alarm High Warning Low Warning Low Alarm +Port Paramter_Name Flag Flag Flag Flag +----------- --------------- -------- -------- -------- -------- +Ethernet1 Temperature False False False False +``` + +### 3.2 CLI Commands for VDM Monitoring + +#### 3.2.1 `show interfaces transceiver vdm PORT` + +This CLI shows the transceiver VDM and threshold values for a given port. + +```plaintext +CLI output format: + High Alarm High Warning Low Warning Low Alarm + Paramter_Name Threshold Threshold Threshold Threshold +Port (Unit) (Unit) (Unit) (Unit) (Unit) +----------- --------------- -------- -------- -------- -------- + +Example: +admin@sonic#show interfaces transceiver vdm Ethernet1 +Basic Values: + High Alarm High Warning Low Warning Low Alarm + eSNR Media Input Threshold Threshold Threshold Threshold +Port (dB) (dB) (dB) (dB) (dB) +----------- --------------- -------- -------- -------- -------- +Ethernet1 23.48046875 0 0 0 0 +``` + +#### 3.2.2 `show interfaces transceiver vdm flag PORT` + +This CLI shows the transceiver VDM flags for a given port. + +```plaintext +CLI output format: + High Alarm High Warning Low Warning Low Alarm +Port Paramter_Name Flag Flag Flag Flag +----------- --------------- -------- -------- -------- -------- + +Example: +admin@sonic#show interfaces transceiver vdm flag Ethernet1 + High Alarm High Warning Low Warning Low Alarm +Port Paramter_Name Flag Flag Flag Flag +----------- --------------- -------- -------- -------- -------- +Ethernet1 eSNR Media Input False False False False +``` + +## 4. SONiC CMIS diagnostic monitoring workflow + +### 4.1 Static Diagnostic Information + +The `SfpStateUpdateTask` thread is responsible for updating the static diagnostic information for all the transceivers in the system. The static diagnostic information, such as threshold values for DOM, VDM and PM, are read from the transceiver and updated in the `redis-db` during `xcvrd` boot-up and during transceiver removal and insertion. + +The following tables are updated by the `SfpStateUpdateTask` thread: + +1. `TRANSCEIVER_DOM_THRESHOLD` +2. `TRANSCEIVER_VDM_THRESHOLD` +3. `TRANSCEIVER_PM_THRESHOLD` + +### 4.2 Dynamic Diagnostic Information + +The `DomInfoUpdateTask` thread is responsible for updating the dynamic diagnostic information for all the transceivers in the system. The `DomInfoUpdateTask` thread is triggered by a timer (`DOM_INFO_UPDATE_PERIOD_SECS`), which is set to 60 seconds by default. The `DomInfoUpdateTask` thread reads the diagnostic information from the transceiver and updates the relevant tables in `redis-db`. + +#### 4.2.1 High-Level Steps for Updating Dynamic Diagnostic Information + +1. The `DomInfoUpdateTask` thread is created by the `xcvrd` process. +2. A timer (`DOM_INFO_UPDATE_PERIOD_SECS`) is set to read the diagnostic information from the transceiver every 60 seconds. +3. With every timer expiry, the `DomInfoUpdateTask` thread reads the diagnostic information from the transceiver and updates the relevant tables in `redis-db` for all the ports. The steps performed to update the diagnostic information for a port are as follows: + 1. Ensure DOM monitoring is enabled for the port. If DOM monitoring is disabled, skip updating the diagnostic information for the port. + 2. If the current port is the first port from its breakout port group to be polled, clear the cached diagnostic information. For all subsequent ports in the breakout port group, use the cached diagnostic information to update the `redis-db`. + 3. Read the transceiver firmware information from the module and update the `TRANSCEIVER_FIRMWARE_INFO` table. + 4. Read the transceiver DOM sensor data from the module and update the `TRANSCEIVER_DOM_SENSOR` table. + 5. Read the transceiver DOM flag data from the module, record the timestamp, and update the `TRANSCEIVER_DOM_FLAG` table. + 6. Analyze the transceiver DOM flag data by comparing the current flag data with the previous flag data and update the `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`, `TRANSCEIVER_DOM_FLAG_TIME_SET`, and `TRANSCEIVER_DOM_FLAG_TIME_CLEAR` tables. + 7. Read the transceiver status data from the module and update the `TRANSCEIVER_STATUS` table. + 8. If the transceiver supports VDM monitoring, perform the following steps: + 1. Freeze the statistics by calling the CMIS API and wait for `FreezeDone`. Once the statistics are frozen, record the timestamp and copy the VDM and PM statistics from the transceiver. + 2. Unfreeze the statistics by calling the CMIS API. + 3. Update the `TRANSCEIVER_VDM_SAMPLE` and `TRANSCEIVER_PM` tables with the VDM and PM statistics respectively. + 4. Analyze the VDM flags by comparing the current statistics with the previous statistics and update the `TRANSCEIVER_VDM_FLAG`, `TRANSCEIVER_VDM_FLAG_CHANGE_COUNT`, `TRANSCEIVER_VDM_FLAG_TIME_SET`, and `TRANSCEIVER_VDM_FLAG_TIME_CLEAR` tables. + 5. Analyze the PM flags by comparing the current statistics with the previous statistics and update the `TRANSCEIVER_PM_FLAG`, `TRANSCEIVER_PM_FLAG_CHANGE_COUNT`, `TRANSCEIVER_PM_FLAG_TIME_SET`, and `TRANSCEIVER_PM_FLAG_TIME_CLEAR` tables. + +#### 4.2.2 Details of Flag Analysis of Tables + +**Note**: For simplicity, this section uses VDM as an example. However, the same analysis is applicable for DOM and PM as well. + +**Purpose of Flag Analysis:** + +The purpose of flag analysis is to track the status of various parameters and to count the number of times each VDM flag has changed. It also records the timestamp when each VDM flag was set and cleared. + +**Tables Used for Flag Analysis:** + +- `TRANSCEIVER_VDM_FLAG`: This table stores flags indicating the status of various VDM parameters. +- `TRANSCEIVER_VDM_FLAG_CHANGE_COUNT`: This table keeps a count of how many times each VDM flag has changed. +- `TRANSCEIVER_VDM_FLAG_TIME_SET`: This table records the timestamp when each VDM flag was set. +- `TRANSCEIVER_VDM_FLAG_TIME_CLEAR`: This table records the timestamp when each VDM flag was cleared. + +**Example of Table Updates:** + +- **TRANSCEIVER_VDM_FLAG_CHANGE_COUNT:** + - Each time a flag in the `TRANSCEIVER_VDM_FLAG` table changes (either set or cleared), the corresponding count in this table is incremented. +- **TRANSCEIVER_VDM_FLAG_TIME_SET:** + - When a flag is set in the `TRANSCEIVER_VDM_FLAG` table, the current timestamp is recorded in this table. +- **TRANSCEIVER_VDM_FLAG_TIME_CLEAR:** + - When a flag is cleared in the `TRANSCEIVER_VDM_FLAG` table, the current timestamp is recorded in this table. From 4efaeffad369b42193a29d40c7c00eb046af59cc Mon Sep 17 00:00:00 2001 From: Mihir Patel Date: Wed, 16 Oct 2024 03:07:46 +0000 Subject: [PATCH 02/12] Addressed review comments --- ...Diagnostic_Monitoring_Overview_in_SONiC.md | 1796 ++++++++++++----- 1 file changed, 1255 insertions(+), 541 deletions(-) diff --git a/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md b/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md index bd6e051cc7..399bb740a6 100644 --- a/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md +++ b/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md @@ -7,7 +7,7 @@ The CMIS (Common Management Interface Specification) diagnostic monitoring featu The current scope of the CMIS diagnostic monitoring feature in SONiC includes the following parameters: - **DOM (Digital Optical Monitoring) data:** Provides real-time monitoring of optical transceiver parameters such as temperature, voltage, and optical power. -- **VDM (Vendor Diagnostic Monitoring) data:** Offers vendor-specific diagnostic information for enhanced monitoring and troubleshooting. +- **VDM (Versatile Diagnostics Monitoring) data:** Offers versatile diagnostic information for enhanced monitoring and troubleshooting. - **PM (Performance Monitoring) data:** Applicable only for C-CMIS transceivers, this includes performance metrics such as error counts and signal quality indicators. ## 2. STATE_DB Schema for CMIS Diagnostic Monitoring @@ -18,23 +18,39 @@ The CMIS diagnostic monitoring data is stored in the `STATE_DB` database. The `S - `TRANSCEIVER_DOM_THRESHOLD`: Contains threshold values for DOM parameters. - `TRANSCEIVER_DOM_FLAG`: Stores flags indicating the status of various DOM parameters. - `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`: Keeps a count of how many times each DOM flag has changed. -- `TRANSCEIVER_DOM_FLAG_TIME_SET`: Records the timestamp when each DOM flag was set. -- `TRANSCEIVER_DOM_FLAG_TIME_CLEAR`: Records the timestamp when each DOM flag was cleared. -- `TRANSCEIVER_VDM_SAMPLE`: Stores VDM sample data. +- `TRANSCEIVER_DOM_FLAG_SET_TIME`: Records the timestamp when each DOM flag was set. +- `TRANSCEIVER_DOM_FLAG_CLEAR_TIME`: Records the timestamp when each DOM flag was cleared. +- `TRANSCEIVER_VDM_CURRENT_SAMPLE`: Stores VDM sample data. - `TRANSCEIVER_VDM_THRESHOLD`: Contains threshold values for VDM parameters. -- `TRANSCEIVER_VDM_FLAG`: Stores flags indicating the status of various VDM parameters. -- `TRANSCEIVER_VDM_FLAG_CHANGE_COUNT`: Keeps a count of how many times each VDM flag has changed. -- `TRANSCEIVER_VDM_FLAG_TIME_SET`: Records the timestamp when each VDM flag was set. -- `TRANSCEIVER_VDM_FLAG_TIME_CLEAR`: Records the timestamp when each VDM flag was cleared. -- `TRANSCEIVER_PM`: Stores performance monitoring data. -- `TRANSCEIVER_PM_THRESHOLD`: Contains threshold values for PM parameters. -- `TRANSCEIVER_PM_FLAG`: Stores flags indicating the status of various PM parameters. -- `TRANSCEIVER_PM_FLAG_CHANGE_COUNT`: Keeps a count of how many times each PM flag has changed. -- `TRANSCEIVER_PM_FLAG_TIME_SET`: Records the timestamp when each PM flag was set. -- `TRANSCEIVER_PM_FLAG_TIME_CLEAR`: Records the timestamp when each PM flag was cleared. +- `TRANSCEIVER_VDM_HALARM_THRESHOLD`: Stores the high alarm threshold values for the VDM data. +- `TRANSCEIVER_VDM_LALARM_THRESHOLD`: Stores the high alarm threshold values for the VDM data. +- `TRANSCEIVER_VDM_HWARN_THRESHOLD`: Stores the high warning threshold values for the VDM data. +- `TRANSCEIVER_VDM_LWARN_THRESHOLD`: Stores the high warning threshold values for the VDM data. +- `TRANSCEIVER_VDM_HALARM_FLAG`: Stores the high alarm flag for the VDM data. +- `TRANSCEIVER_VDM_LALARM_FLAG`: Stores the low alarm flag for the VDM data. +- `TRANSCEIVER_VDM_HWARN_FLAG`: Stores the high warning flag for the VDM data. +- `TRANSCEIVER_VDM_LWARN_FLAG`: Stores the low warning flag for the VDM data. +- `TRANSCEIVER_VDM_HALARM_FLAG_CHANGE_COUNT`: Keeps a count of how many times each VDM flag has changed for high alarm flags. +- `TRANSCEIVER_VDM_LALARM_FLAG_CHANGE_COUNT`: Keeps a count of how many times each VDM flag has changed for low alarm flags. +- `TRANSCEIVER_VDM_HWARN_FLAG_CHANGE_COUNT`: Keeps a count of how many times each VDM flag has changed for high warning flags. +- `TRANSCEIVER_VDM_LWARN_FLAG_CHANGE_COUNT`: Keeps a count of how many times each VDM flag has changed for low warning flags. +- `TRANSCEIVER_VDM_HALARM_SET_TIME`: Records the timestamp when each VDM high alarm flag was set. +- `TRANSCEIVER_VDM_LALARM_SET_TIME`: Records the timestamp when each VDM low alarm flag was set. +- `TRANSCEIVER_VDM_HWARN_SET_TIME`: Records the timestamp when each VDM high warning flag was set. +- `TRANSCEIVER_VDM_LWARN_SET_TIME`: Records the timestamp when each VDM low warning flag was set. +- `TRANSCEIVER_VDM_HALM_CLEAR_TIME`: Records the timestamp when each VDM high alarm flag was cleared. +- `TRANSCEIVER_VDM_LALM_CLEAR_TIME`: Records the timestamp when each VDM low alarm flag was cleared. +- `TRANSCEIVER_VDM_HWARN_CLEAR_TIME`: Records the timestamp when each VDM high warning flag was cleared. +- `TRANSCEIVER_VDM_LWARN_CLEAR_TIME`: Records the timestamp when each VDM low warning flag was cleared. - `TRANSCEIVER_STATUS`: Stores the status data of the transceivers. +- `TRANSCEIVER_STATUS_FLAG_CHANGE_COUNT`: Stores the count of times the transceiver status flag has changed. +- `TRANSCEIVER_STATUS_FLAG_SET_TIME`: Records the timestamp when the transceiver status flag was set. +- `TRANSCEIVER_STATUS_FLAG_CLEAR_TIME`: Records the timestamp when the transceiver status flag was cleared. +- `TRANSCEIVER_PM`: Stores performance monitoring data. -### 2.1 Transceiver DOM Sensor Data +### 2.1 Transceiver DOM + +#### 2.1.1 Transceiver DOM sensor data The `TRANSCEIVER_DOM_SENSOR` table stores the real-time DOM data for the optical transceivers. @@ -50,9 +66,13 @@ lane_num: Represents the lane number of the field. The lane number is an integer rx{lane_num}power = FLOAT ; rx power in dBm for each lane tx{lane_num}bias = FLOAT ; tx bias in mA for each lane laser_temperature = FLOAT ; laser temperature value in Celsius + + laser_config_freq = FLOAT ; laser configured frequency in MHz + laser_curr_freq = FLOAT ; laser current frequency in MHz + tx_config_power = FLOAT ; configured tx output power in dbm ``` -### 2.2 Transceiver DOM threshold data +#### 2.1.2 Transceiver DOM threshold data The `TRANSCEIVER_DOM_THRESHOLD` table stores the threshold values for the DOM data. @@ -86,7 +106,7 @@ The `TRANSCEIVER_DOM_THRESHOLD` table stores the threshold values for the DOM da lasertemplowwarning = FLOAT ; laser temperature low warning threshold in Celsius ``` -### 2.3 Transceiver DOM flag data +#### 2.1.3 Transceiver DOM flag data The `TRANSCEIVER_DOM_FLAG` table stores the flag status for the DOM data. @@ -120,16 +140,9 @@ lane_num: Represents lane number of the field. The lane number is an integer val lasertemplowalarm_flag = BOOLEAN ; laser temperature low alarm flag lasertemphighwarning_flag = BOOLEAN ; laser temperature high warning flag lasertemplowwarning_flag = BOOLEAN ; laser temperature low warning flag - - txfault{lane_num} = BOOLEAN ; tx fault flag on media lane {lane_num} - txlos_hostlane{lane_num} = BOOLEAN ; tx loss of signal flag on host lane {lane_num} - txcdrlol_hostlane{lane_num} = BOOLEAN ; tx clock and data recovery loss of lock flag on host lane {lane_num} - tx_eq_fault{lane_num} = BOOLEAN ; tx equalization fault flag on host lane {lane_num} - rxlos{lane_num} = BOOLEAN ; rx loss of signal flag on media lane {lane_num} - rxcdrlol{lane_num} = BOOLEAN ; rx clock and data recovery loss of lock flag on media lane {lane_num} ``` -### 2.4 Transceiver DOM flag change count data +#### 2.1.4 Transceiver DOM flag change count data The `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT` table stores the flag change count for the DOM flags. @@ -139,48 +152,41 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver DOM flag change count for a port key = TRANSCEIVER_DOM_FLAG_CHANGE|ifname ; information module DOM flags change count on port ; field = value - temphighalarm_change_count = INTEGER ; temperature high alarm change count - temphighwarning_change_count = INTEGER ; temperature high warning change count - templowalarm_change_count = INTEGER ; temperature low alarm change count - templowwarning_change_count = INTEGER ; temperature low warning change count - vcchighalarm_change_count = INTEGER ; vcc high alarm change count - vcchighwarning_change_count = INTEGER ; vcc high warning change count - vcclowalarm_change_count = INTEGER ; vcc low alarm change count - vcclowwarning_change_count = INTEGER ; vcc low warning change count - txpowerhighalarm_change_count{lane_num} = INTEGER ; tx power high alarm change count - txpowerlowalarm_change_count{lane_num} = INTEGER ; tx power low alarm change count - txpowerhighwarning_change_count{lane_num} = INTEGER ; tx power high warning change count - txpowerlowwarning_change_count{lane_num} = INTEGER ; tx power low alarm change count - rxpowerhighalarm_change_count{lane_num} = INTEGER ; rx power high alarm change count - rxpowerlowalarm_change_count{lane_num} = INTEGER ; rx power low alarm change count - rxpowerhighwarning_change_count{lane_num} = INTEGER ; rx power high warning change count - rxpowerlowwarning_change_count{lane_num} = INTEGER ; rx power low warning change count - txbiashighalarm_change_count{lane_num} = INTEGER ; tx bias high alarm change count - txbiaslowalarm_change_count{lane_num} = INTEGER ; tx bias low alarm change count - txbiashighwarning_change_count{lane_num} = INTEGER ; tx bias high warning change count - txbiaslowwarning_change_count{lane_num} = INTEGER ; tx bias low warning change count - lasertemphighalarm_change_count = INTEGER ; laser temperature high alarm change count - lasertemplowalarm_change_count = INTEGER ; laser temperature low alarm change count - lasertemphighwarning_change_count = INTEGER ; laser temperature high warning change count - lasertemplowwarning_change_count = INTEGER ; laser temperature low warning change count - - txfault_change_count{lane_num} = INTEGER ; tx fault change count on media lane {lane_num} - txlos_hostlane_change_count{lane_num} = INTEGER ; tx loss of signal change count on host lane {lane_num} - txcdrlol_hostlane_change_count{lane_num} = INTEGER ; tx clock and data recovery loss of lock change count on host lane {lane_num} - tx_eq_fault_change_count{lane_num} = INTEGER ; tx equalization fault change count on host lane {lane_num} - rxlos_change_count{lane_num} = INTEGER ; rx loss of signal change count on media lane {lane_num} - rxcdrlol_change_count{lane_num} = INTEGER ; rx clock and data recovery loss of lock change count on media lane {lane_num} -``` - -### 2.5 Transceiver DOM flag time set data - -The `TRANSCEIVER_DOM_FLAG_TIME_SET` table stores the last set time for the corresponding DOM flag. + temphighalarm_chg_cnt = INTEGER ; temperature high alarm change count + temphighwarning_chg_cnt = INTEGER ; temperature high warning change count + templowalarm_chg_cnt = INTEGER ; temperature low alarm change count + templowwarning_chg_cnt = INTEGER ; temperature low warning change count + vcchighalarm_chg_cnt = INTEGER ; vcc high alarm change count + vcchighwarning_chg_cnt = INTEGER ; vcc high warning change count + vcclowalarm_chg_cnt = INTEGER ; vcc low alarm change count + vcclowwarning_chg_cnt = INTEGER ; vcc low warning change count + txpowerhighalarm_chg_cnt{lane_num} = INTEGER ; tx power high alarm change count + txpowerlowalarm_chg_cnt{lane_num} = INTEGER ; tx power low alarm change count + txpowerhighwarning_chg_cnt{lane_num} = INTEGER ; tx power high warning change count + txpowerlowwarning_chg_cnt{lane_num} = INTEGER ; tx power low alarm change count + rxpowerhighalarm_chg_cnt{lane_num} = INTEGER ; rx power high alarm change count + rxpowerlowalarm_chg_cnt{lane_num} = INTEGER ; rx power low alarm change count + rxpowerhighwarning_chg_cnt{lane_num} = INTEGER ; rx power high warning change count + rxpowerlowwarning_chg_cnt{lane_num} = INTEGER ; rx power low warning change count + txbiashighalarm_chg_cnt{lane_num} = INTEGER ; tx bias high alarm change count + txbiaslowalarm_chg_cnt{lane_num} = INTEGER ; tx bias low alarm change count + txbiashighwarning_chg_cnt{lane_num} = INTEGER ; tx bias high warning change count + txbiaslowwarning_chg_cnt{lane_num} = INTEGER ; tx bias low warning change count + lasertemphighalarm_chg_cnt = INTEGER ; laser temperature high alarm change count + lasertemplowalarm_chg_cnt = INTEGER ; laser temperature low alarm change count + lasertemphighwarning_chg_cnt = INTEGER ; laser temperature high warning change count + lasertemplowwarning_chg_cnt = INTEGER ; laser temperature low warning change count +``` + +#### 2.1.5 Transceiver DOM flag time set data + +The `TRANSCEIVER_DOM_FLAG_SET_TIME` table stores the last set time for the corresponding DOM flag. lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. ```plaintext ;Defines Transceiver DOM flag time set for a port - key = TRANSCEIVER_DOM_FLAG_TIME_SET|ifname ; information module DOM flag time set on port + key = TRANSCEIVER_DOM_FLAG_SET_TIME|ifname ; information module DOM flag time set on port ; field = value temphighalarm_last_set_time = STR ; temperature high alarm last set time temphighwarning_last_set_time = STR ; temperature high warning last set time @@ -206,24 +212,17 @@ lane_num: Represents lane number of the field. The lane number is an integer val lasertemplowalarm_last_set_time = STR ; laser temperature low alarm last set time lasertemphighwarning_last_set_time = STR ; laser temperature high warning last set time lasertemplowwarning_last_set_time = STR ; laser temperature low warning last set time - - txfault_last_set_time{lane_num} = STR ; tx fault last set time on media lane {lane_num} - txlos_hostlane_last_set_time{lane_num} = STR ; tx loss of signal last set time on host lane {lane_num} - txcdrlol_hostlane_last_set_time{lane_num} = STR ; tx clock and data recovery loss of lock last set time on host lane {lane_num} - tx_eq_fault_last_set_time{lane_num} = STR ; tx equalization fault last set time on host lane {lane_num} - rxlos_last_set_time{lane_num} = STR ; rx loss of signal last set time on media lane {lane_num} - rxcdrlol_last_set_time{lane_num} = STR ; rx clock and data recovery loss of lock last set time on media lane {lane_num} ``` -### 2.6 Transceiver DOM flag time clear data +#### 2.1.6 Transceiver DOM flag time clear data -The `TRANSCEIVER_DOM_FLAG_TIME_CLEAR` table stores the last clear time for the corresponding DOM flag. +The `TRANSCEIVER_DOM_FLAG_CLEAR_TIME` table stores the last clear time for the corresponding DOM flag. lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. ```plaintext ;Defines Transceiver DOM flag time clear for a port - key = TRANSCEIVER_DOM_FLAG_TIME_CLEAR|ifname ; information module DOM flag time clear on port + key = TRANSCEIVER_DOM_FLAG_CLEAR_TIME|ifname ; information module DOM flag time clear on port ; field = value temphighalarm_last_clear_time = STR ; temperature high alarm last clear time temphighwarning_last_clear_time = STR ; temperature high warning last clear time @@ -249,24 +248,19 @@ lane_num: Represents lane number of the field. The lane number is an integer val lasertemplowalarm_last_clear_time = STR ; laser temperature low alarm last clear time lasertemphighwarning_last_clear_time = STR ; laser temperature high warning last clear time lasertemplowwarning_last_clear_time = STR ; laser temperature low warning last clear time - - txfault_last_clear_time{lane_num} = STR ; tx fault last clear time on media lane {lane_num} - txlos_hostlane_last_clear_time{lane_num} = STR ; tx loss of signal last clear time on host lane {lane_num} - txcdrlol_hostlane_last_clear_time{lane_num} = STR ; tx clock and data recovery loss of lock last clear time on host lane {lane_num} - tx_eq_fault_last_clear_time{lane_num} = STR ; tx equalization fault last clear time on host lane {lane_num} - rxlos_last_clear_time{lane_num} = STR ; rx loss of signal last clear time on media lane {lane_num} - rxcdrlol_last_clear_time{lane_num} = STR ; rx clock and data recovery loss of lock last clear time on media lane {lane_num} ``` -### 2.7 Transceiver VDM sample data +### 2.2 Transceiver VDM -The `TRANSCEIVER_VDM_SAMPLE` table stores the real time VDM data +#### 2.2.1 Transceiver VDM sample data + +The `TRANSCEIVER_VDM_CURRENT_SAMPLE` table stores the real time VDM data lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. ```plaintext ;Defines Transceiver VDM sample for a port - key = TRANSCEIVER_VDM_SAMPLE|ifname ; information module VDM sample on port + key = TRANSCEIVER_VDM_CURRENT_SAMPLE|ifname ; information module VDM sample on port ; field = value esnr_media_input{lane_num} = FLOAT ; eSNR value in dB for media input esnr_host_input{lane_num} = FLOAT ; eSNR value in dB for host input @@ -288,467 +282,1081 @@ lane_num: Represents lane number of the field. The lane number is an integer val errored_frames_max_host_input{lane_num} = FLOAT ; Errored frames maximum value for host input errored_frames_avg_host_input{lane_num} = FLOAT ; Errored frames average value for host input errored_frames_curr_host_input{lane_num} = FLOAT ; Errored frames current value for host input + + ;C-CMIS specific fields + biasxi = FLOAT ; modulator bias xi in percentage + biasxq = FLOAT ; modulator bias xq in percentage + biasxp = FLOAT ; modulator bias xp in percentage + biasyi = FLOAT ; modulator bias yi in percentage + biasyq = FLOAT ; modulator bias yq in percentage + biasyp = FLOAT ; modulator bias yq in percentage + cdshort = FLOAT ; chromatic dispersion, high granularity, short link in ps/nm + cdlong = FLOAT ; chromatic dispersion, high granularity, long link in ps/nm + dgd = FLOAT ; differential group delay in ps + sopmd = FLOAT ; second order polarization mode dispersion in ps^2 + soproc = FLOAT ; state of polarization rate of change in krad/s + pdl = FLOAT ; polarization dependent loss in db + osnr = FLOAT ; optical signal to noise ratio in db + esnr = FLOAT ; electrical signal to noise ratio in db + cfo = FLOAT ; carrier frequency offset in Hz + txcurrpower = FLOAT ; tx current output power in dbm + rxtotpower = FLOAT ; rx total power in dbm + rxsigpower = FLOAT ; rx signal power in dbm ``` -### 2.8 Transceiver VDM threshold data +#### 2.2.2 Transceiver VDM threshold data + +##### 2.2.2.1 Transceiver VDM high alarm threshold data -The `TRANSCEIVER_VDM_THRESHOLD` table stores the threshold values for the VDM data +The `TRANSCEIVER_VDM_HALARM_THRESHOLD` table stores the high alarm threshold values for the VDM data lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. ```plaintext - ;Defines Transceiver VDM sample for a port - key = TRANSCEIVER_VDM_THRESHOLD|ifname ; information module VDM sample on port + ;Defines Transceiver VDM high alarm threshold for a port + key = TRANSCEIVER_VDM_HALARM_THRESHOLD|ifname ; information module VDM high alarm threshold on port ; field = value - esnr_media_input_highalarm{lane_num} = FLOAT ; eSNR high alarm value in dB for media input - esnr_media_input_lowalarm{lane_num} = FLOAT ; eSNR low alarm value in dB for media input - esnr_media_input_highwarning{lane_num} = FLOAT ; eSNR high warning value in dB for media input - esnr_media_input_lowwarning{lane_num} = FLOAT ; eSNR low warning value in dB for media input - esnr_host_input_highalarm{lane_num} = FLOAT ; eSNR high alarm value in dB for host input - esnr_host_input_lowalarm{lane_num} = FLOAT ; eSNR low alarm value in dB for host input - esnr_host_input_highwarning{lane_num} = FLOAT ; eSNR high warning value in dB for host input - esnr_host_input_lowwarning{lane_num} = FLOAT ; eSNR low warning value in dB for host input - pam4_level_transition_media_input_highalarm{lane_num} = FLOAT ; PAM4 level transition high alarm value in dB for media input - pam4_level_transition_media_input_lowalarm{lane_num} = FLOAT ; PAM4 level transition low alarm value in dB for media input - pam4_level_transition_media_input_highwarning{lane_num} = FLOAT ; PAM4 level transition high warning value in dB for media input - pam4_level_transition_media_input_lowwarning{lane_num} = FLOAT ; PAM4 level transition low warning value in dB for media input - pam4_level_transition_host_input_highalarm{lane_num} = FLOAT ; PAM4 level transition high alarm value in dB for host input - pam4_level_transition_host_input_lowalarm{lane_num} = FLOAT ; PAM4 level transition low alarm value in dB for host input - pam4_level_transition_host_input_highwarning{lane_num} = FLOAT ; PAM4 level transition high warning value in dB for host input - pam4_level_transition_host_input_lowwarning{lane_num} = FLOAT ; PAM4 level transition low warning value in dB for host input - prefec_ber_min_media_input_highalarm{lane_num} = FLOAT ; Pre-FEC BER minimum high alarm value for media input - prefec_ber_min_media_input_lowalarm{lane_num} = FLOAT ; Pre-FEC BER minimum low alarm value for media input - prefec_ber_min_media_input_highwarning{lane_num} = FLOAT ; Pre-FEC BER minimum high warning value for media input - prefec_ber_min_media_input_lowwarning{lane_num} = FLOAT ; Pre-FEC BER minimum low warning value for media input - prefec_ber_max_media_input_highalarm{lane_num} = FLOAT ; Pre-FEC BER maximum high alarm value for media input - prefec_ber_max_media_input_lowalarm{lane_num} = FLOAT ; Pre-FEC BER maximum low alarm value for media input - prefec_ber_max_media_input_highwarning{lane_num} = FLOAT ; Pre-FEC BER maximum high warning value for media input - prefec_ber_max_media_input_lowwarning{lane_num} = FLOAT ; Pre-FEC BER maximum low warning value for media input - prefec_ber_avg_media_input_highalarm{lane_num} = FLOAT ; Pre-FEC BER average high alarm value for media input - prefec_ber_avg_media_input_lowalarm{lane_num} = FLOAT ; Pre-FEC BER average low alarm value for media input - prefec_ber_avg_media_input_highwarning{lane_num} = FLOAT ; Pre-FEC BER average high warning value for media input - prefec_ber_avg_media_input_lowwarning{lane_num} = FLOAT ; Pre-FEC BER average low warning value for media input - prefec_ber_curr_media_input_highalarm{lane_num} = FLOAT ; Pre-FEC BER current high alarm value for media input - prefec_ber_curr_media_input_lowalarm{lane_num} = FLOAT ; Pre-FEC BER current low alarm value for media input - prefec_ber_curr_media_input_highwarning{lane_num} = FLOAT ; Pre-FEC BER current high warning value for media input - prefec_ber_curr_media_input_lowwarning{lane_num} = FLOAT ; Pre-FEC BER current low warning value for media input - prefec_ber_min_host_input_highalarm{lane_num} = FLOAT ; Pre-FEC BER minimum high alarm value for host input - prefec_ber_min_host_input_lowalarm{lane_num} = FLOAT ; Pre-FEC BER minimum low alarm value for host input - prefec_ber_min_host_input_highwarning{lane_num} = FLOAT ; Pre-FEC BER minimum high warning value for host input - prefec_ber_min_host_input_lowwarning{lane_num} = FLOAT ; Pre-FEC BER minimum low warning value for host input - prefec_ber_max_host_input_highalarm{lane_num} = FLOAT ; Pre-FEC BER maximum high alarm value for host input - prefec_ber_max_host_input_lowalarm{lane_num} = FLOAT ; Pre-FEC BER maximum low alarm value for host input - prefec_ber_max_host_input_highwarning{lane_num} = FLOAT ; Pre-FEC BER maximum high warning value for host input - prefec_ber_max_host_input_lowwarning{lane_num} = FLOAT ; Pre-FEC BER maximum low warning value for host input - prefec_ber_avg_host_input_highalarm{lane_num} = FLOAT ; Pre-FEC BER average high alarm value for host input - prefec_ber_avg_host_input_lowalarm{lane_num} = FLOAT ; Pre-FEC BER average low alarm value for host input - prefec_ber_avg_host_input_highwarning{lane_num} = FLOAT ; Pre-FEC BER average high warning value for host input - prefec_ber_avg_host_input_lowwarning{lane_num} = FLOAT ; Pre-FEC BER average low warning value for host input - prefec_ber_curr_host_input_highalarm{lane_num} = FLOAT ; Pre-FEC BER current high alarm value for host input - prefec_ber_curr_host_input_lowalarm{lane_num} = FLOAT ; Pre-FEC BER current low alarm value for host input - prefec_ber_curr_host_input_highwarning{lane_num} = FLOAT ; Pre-FEC BER current high warning value for host input - prefec_ber_curr_host_input_lowwarning{lane_num} = FLOAT ; Pre-FEC BER current low warning value for host input - errored_frames_min_media_input_highalarm{lane_num} = FLOAT ; Errored frames minimum high alarm value for media input - errored_frames_min_media_input_lowalarm{lane_num} = FLOAT ; Errored frames minimum low alarm value for media input - errored_frames_min_media_input_highwarning{lane_num} = FLOAT ; Errored frames minimum high warning value for media input - errored_frames_min_media_input_lowwarning{lane_num} = FLOAT ; Errored frames minimum low warning value for media input - errored_frames_max_media_input_highalarm{lane_num} = FLOAT ; Errored frames maximum high alarm value for media input - errored_frames_max_media_input_lowalarm{lane_num} = FLOAT ; Errored frames maximum low alarm value for media input - errored_frames_max_media_input_highwarning{lane_num} = FLOAT ; Errored frames maximum high warning value for media input - errored_frames_max_media_input_lowwarning{lane_num} = FLOAT ; Errored frames maximum low warning value for media input - errored_frames_avg_media_input_highalarm{lane_num} = FLOAT ; Errored frames average high alarm value for media input - errored_frames_avg_media_input_lowalarm{lane_num} = FLOAT ; Errored frames average low alarm value for media input - errored_frames_avg_media_input_highwarning{lane_num} = FLOAT ; Errored frames average high warning value for media input - errored_frames_avg_media_input_lowwarning{lane_num} = FLOAT ; Errored frames average low warning value for media input - errored_frames_curr_media_input_highalarm{lane_num} = FLOAT ; Errored frames current high alarm value for media input - errored_frames_curr_media_input_lowalarm{lane_num} = FLOAT ; Errored frames current low alarm value for media input - errored_frames_curr_media_input_highwarning{lane_num} = FLOAT ; Errored frames current high warning value for media input - errored_frames_curr_media_input_lowwarning{lane_num} = FLOAT ; Errored frames current low warning value for media input - errored_frames_min_host_input_highalarm{lane_num} = FLOAT ; Errored frames minimum high alarm value for host input - errored_frames_min_host_input_lowalarm{lane_num} = FLOAT ; Errored frames minimum low alarm value for host input - errored_frames_min_host_input_highwarning{lane_num} = FLOAT ; Errored frames minimum high warning value for host input - errored_frames_min_host_input_lowwarning{lane_num} = FLOAT ; Errored frames minimum low warning value for host input - errored_frames_max_host_input_highalarm{lane_num} = FLOAT ; Errored frames maximum high alarm value for host input - errored_frames_max_host_input_lowalarm{lane_num} = FLOAT ; Errored frames maximum low alarm value for host input - errored_frames_max_host_input_highwarning{lane_num} = FLOAT ; Errored frames maximum high warning value for host input - errored_frames_max_host_input_lowwarning{lane_num} = FLOAT ; Errored frames maximum low warning value for host input - errored_frames_avg_host_input_highalarm{lane_num} = FLOAT ; Errored frames average high alarm value for host input - errored_frames_avg_host_input_lowalarm{lane_num} = FLOAT ; Errored frames average low alarm value for host input - errored_frames_avg_host_input_highwarning{lane_num} = FLOAT ; Errored frames average high warning value for host input - errored_frames_avg_host_input_lowwarning{lane_num} = FLOAT ; Errored frames average low warning value for host input - errored_frames_curr_host_input_highalarm{lane_num} = FLOAT ; Errored frames current high alarm value for host input - errored_frames_curr_host_input_lowalarm{lane_num} = FLOAT ; Errored frames current low alarm value for host input - errored_frames_curr_host_input_highwarning{lane_num} = FLOAT ; Errored frames current high warning value for host input - errored_frames_curr_host_input_lowwarning{lane_num} = FLOAT ; Errored frames current low warning value for host input - -### 2.9 Transceiver VDM flag data - -The `TRANSCEIVER_VDM_FLAG` table stores the flag status for the VDM data. + esnr_media_input_halarm{lane_num} = FLOAT ; eSNR high alarm value in dB for media input + esnr_host_input_halarm{lane_num} = FLOAT ; eSNR high alarm value in dB for host input + pam4_level_transition_media_input_halarm{lane_num} = FLOAT ; PAM4 level transition high alarm value in dB for media input + pam4_level_transition_host_input_halarm{lane_num} = FLOAT ; PAM4 level transition high alarm value in dB for host input + prefec_ber_min_media_input_halarm{lane_num} = FLOAT ; Pre-FEC BER minimum high alarm value for media input + prefec_ber_max_media_input_halarm{lane_num} = FLOAT ; Pre-FEC BER maximum high alarm value for media input + prefec_ber_avg_media_input_halarm{lane_num} = FLOAT ; Pre-FEC BER average high alarm value for media input + prefec_ber_curr_media_input_halarm{lane_num} = FLOAT ; Pre-FEC BER current high alarm value for media input + prefec_ber_min_host_input_halarm{lane_num} = FLOAT ; Pre-FEC BER minimum high alarm value for host input + prefec_ber_max_host_input_halarm{lane_num} = FLOAT ; Pre-FEC BER maximum high alarm value for host input + prefec_ber_avg_host_input_halarm{lane_num} = FLOAT ; Pre-FEC BER average high alarm value for host input + prefec_ber_curr_host_input_halarm{lane_num} = FLOAT ; Pre-FEC BER current high alarm value for host input + errored_frames_min_media_input_halarm{lane_num} = FLOAT ; Errored frames minimum high alarm value for media input + errored_frames_max_media_input_halarm{lane_num} = FLOAT ; Errored frames maximum high alarm value for media input + errored_frames_avg_media_input_halarm{lane_num} = FLOAT ; Errored frames average high alarm value for media input + errored_frames_curr_media_input_halarm{lane_num} = FLOAT ; Errored frames current high alarm value for media input + errored_frames_min_host_input_halarm{lane_num} = FLOAT ; Errored frames minimum high alarm value for host input + errored_frames_max_host_input_halarm{lane_num} = FLOAT ; Errored frames maximum high alarm value for host input + errored_frames_avg_host_input_halarm{lane_num} = FLOAT ; Errored frames average high alarm value for host input + errored_frames_curr_host_input_halarm{lane_num} = FLOAT ; Errored frames current high alarm value for host input + + ;C-CMIS specific fields + biasxi_halarm = FLOAT ; modulator bias xi in percentage (high alarm) + biasxq_halarm = FLOAT ; modulator bias xq in percentage (high alarm) + biasxp_halarm = FLOAT ; modulator bias xp in percentage (high alarm) + biasyi_halarm = FLOAT ; modulator bias yi in percentage (high alarm) + biasyq_halarm = FLOAT ; modulator bias yq in percentage (high alarm) + biasyp_halarm = FLOAT ; modulator bias yq in percentage (high alarm) + cdshort_halarm = FLOAT ; chromatic dispersion, high granularity, short link in ps/nm (high alarm) + cdlong_halarm = FLOAT ; chromatic dispersion, high granularity, long link in ps/nm (high alarm) + dgd_halarm = FLOAT ; differential group delay in ps (high alarm) + sopmd_halarm = FLOAT ; second order polarization mode dispersion in ps^2 (high alarm) + soproc_halarm = FLOAT ; state of polarization rate of change in krad/s (high alarm) + pdl_halarm = FLOAT ; polarization dependent loss in db (high alarm) + osnr_halarm = FLOAT ; optical signal to noise ratio in db (high alarm) + esnr_halarm = FLOAT ; electrical signal to noise ratio in db (high alarm) + cfo_halarm = FLOAT ; carrier frequency offset in Hz (high alarm) + txcurrpower_halarm = FLOAT ; tx current output power in dbm (high alarm) + rxtotpower_halarm = FLOAT ; rx total power in dbm (high alarm) + rxsigpower_halarm = FLOAT ; rx signal power in dbm (high alarm) +``` -lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. +##### 2.2.2.2 Transceiver VDM low alarm threshold data - ;Defines Transceiver VDM flag for a port - key = TRANSCEIVER_VDM_FLAG|ifname ; information module VDM flag on port - ; field = value - esnr_media_input_highalarm_flag{lane_num} = BOOLEAN ; eSNR high alarm flag for media input - esnr_media_input_lowalarm_flag{lane_num} = BOOLEAN ; eSNR low alarm flag for media input - esnr_media_input_highwarning_flag{lane_num} = BOOLEAN ; eSNR high warning flag for media input - esnr_media_input_lowwarning_flag{lane_num} = BOOLEAN ; eSNR low warning flag for media input - esnr_host_input_highalarm_flag{lane_num} = BOOLEAN ; eSNR high alarm flag for host input - esnr_host_input_lowalarm_flag{lane_num} = BOOLEAN ; eSNR low alarm flag for host input - esnr_host_input_highwarning_flag{lane_num} = BOOLEAN ; eSNR high warning flag for host input - esnr_host_input_lowwarning_flag{lane_num} = BOOLEAN ; eSNR low warning flag for host input - pam4_level_transition_media_input_highalarm_flag{lane_num} = BOOLEAN ; PAM4 level transition high alarm flag for media input - pam4_level_transition_media_input_lowalarm_flag{lane_num} = BOOLEAN ; PAM4 level transition low alarm flag for media input - pam4_level_transition_media_input_highwarning_flag{lane_num} = BOOLEAN ; PAM4 level transition high warning flag for media input - pam4_level_transition_media_input_lowwarning_flag{lane_num} = BOOLEAN ; PAM4 level transition low warning flag for media input - pam4_level_transition_host_input_highalarm_flag{lane_num} = BOOLEAN ; PAM4 level transition high alarm flag for host input - pam4_level_transition_host_input_lowalarm_flag{lane_num} = BOOLEAN ; PAM4 level transition low alarm flag for host input - pam4_level_transition_host_input_highwarning_flag{lane_num} = BOOLEAN ; PAM4 level transition high warning flag for host input - pam4_level_transition_host_input_lowwarning_flag{lane_num} = BOOLEAN ; PAM4 level transition low warning flag for host input - prefec_ber_min_media_input_highalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum high alarm flag for media input - prefec_ber_min_media_input_lowalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum low alarm flag for media input - prefec_ber_min_media_input_highwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum high warning flag for media input - prefec_ber_min_media_input_lowwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum low warning flag for media input - prefec_ber_max_media_input_highalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum high alarm flag for media input - prefec_ber_max_media_input_lowalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum low alarm flag for media input - prefec_ber_max_media_input_highwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum high warning flag for media input - prefec_ber_max_media_input_lowwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum low warning flag for media input - prefec_ber_avg_media_input_highalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER average high alarm flag for media input - prefec_ber_avg_media_input_lowalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER average low alarm flag for media input - prefec_ber_avg_media_input_highwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER average high warning flag for media input - prefec_ber_avg_media_input_lowwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER average low warning flag for media input - prefec_ber_curr_media_input_highalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER current high alarm flag for media input - prefec_ber_curr_media_input_lowalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER current low alarm flag for media input - prefec_ber_curr_media_input_highwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER current high warning flag for media input - prefec_ber_curr_media_input_lowwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER current low warning flag for media input - prefec_ber_min_host_input_highalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum high alarm flag for host input - prefec_ber_min_host_input_lowalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum low alarm flag for host input - prefec_ber_min_host_input_highwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum high warning flag for host input - prefec_ber_min_host_input_lowwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum low warning flag for host input - prefec_ber_max_host_input_highalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum high alarm flag for host input - prefec_ber_max_host_input_lowalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum low alarm flag for host input - prefec_ber_max_host_input_highwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum high warning flag for host input - prefec_ber_max_host_input_lowwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum low warning flag for host input - prefec_ber_avg_host_input_highalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER average high alarm flag for host input - prefec_ber_avg_host_input_lowalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER average low alarm flag for host input - prefec_ber_avg_host_input_highwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER average high warning flag for host input - prefec_ber_avg_host_input_lowwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER average low warning flag for host input - prefec_ber_curr_host_input_highalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER current high alarm flag for host input - prefec_ber_curr_host_input_lowalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER current low alarm flag for host input - prefec_ber_curr_host_input_highwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER current high warning flag for host input - prefec_ber_curr_host_input_lowwarning_flag{lane_num} = BOOLEAN ; Pre-FEC BER current low warning flag for host input - errored_frames_min_media_input_highalarm_flag{lane_num} = BOOLEAN ; Errored frames minimum high alarm flag for media input - errored_frames_min_media_input_lowalarm_flag{lane_num} = BOOLEAN ; Errored frames minimum low alarm flag for media input - errored_frames_min_media_input_highwarning_flag{lane_num} = BOOLEAN ; Errored frames minimum high warning flag for media input - errored_frames_min_media_input_lowwarning_flag{lane_num} = BOOLEAN ; Errored frames minimum low warning flag for media input - errored_frames_max_media_input_highalarm_flag{lane_num} = BOOLEAN ; Errored frames maximum high alarm flag for media input - errored_frames_max_media_input_lowalarm_flag{lane_num} = BOOLEAN ; Errored frames maximum low alarm flag for media input - errored_frames_max_media_input_highwarning_flag{lane_num} = BOOLEAN ; Errored frames maximum high warning flag for media input - errored_frames_max_media_input_lowwarning_flag{lane_num} = BOOLEAN ; Errored frames maximum low warning flag for media input - errored_frames_avg_media_input_highalarm_flag{lane_num} = BOOLEAN ; Errored frames average high alarm flag for media input - errored_frames_avg_media_input_lowalarm_flag{lane_num} = BOOLEAN ; Errored frames average low alarm flag for media input - errored_frames_avg_media_input_highwarning_flag{lane_num} = BOOLEAN ; Errored frames average high warning flag for media input - errored_frames_avg_media_input_lowwarning_flag{lane_num} = BOOLEAN ; Errored frames average low warning flag for media input - errored_frames_curr_media_input_highalarm_flag{lane_num} = BOOLEAN ; Errored frames current high alarm flag for media input - errored_frames_curr_media_input_lowalarm_flag{lane_num} = BOOLEAN ; Errored frames current low alarm flag for media input - errored_frames_curr_media_input_highwarning_flag{lane_num} = BOOLEAN ; Errored frames current high warning flag for media input - errored_frames_curr_media_input_lowwarning_flag{lane_num} = BOOLEAN ; Errored frames current low warning flag for media input - errored_frames_min_host_input_highalarm_flag{lane_num} = BOOLEAN ; Errored frames minimum high alarm flag for host input - errored_frames_min_host_input_lowalarm_flag{lane_num} = BOOLEAN ; Errored frames minimum low alarm flag for host input - errored_frames_min_host_input_highwarning_flag{lane_num} = BOOLEAN ; Errored frames minimum high warning flag for host input - errored_frames_min_host_input_lowwarning_flag{lane_num} = BOOLEAN ; Errored frames minimum low warning flag for host input - errored_frames_max_host_input_highalarm_flag{lane_num} = BOOLEAN ; Errored frames maximum high alarm flag for host input - errored_frames_max_host_input_lowalarm_flag{lane_num} = BOOLEAN ; Errored frames maximum low alarm flag for host input - errored_frames_max_host_input_highwarning_flag{lane_num} = BOOLEAN ; Errored frames maximum high warning flag for host input - errored_frames_max_host_input_lowwarning_flag{lane_num} = BOOLEAN ; Errored frames maximum low warning flag for host input - errored_frames_avg_host_input_highalarm_flag{lane_num} = BOOLEAN ; Errored frames average high alarm flag for host input - errored_frames_avg_host_input_lowalarm_flag{lane_num} = BOOLEAN ; Errored frames average low alarm flag for host input - errored_frames_avg_host_input_highwarning_flag{lane_num} = BOOLEAN ; Errored frames average high warning flag for host input - errored_frames_avg_host_input_lowwarning_flag{lane_num} = BOOLEAN ; Errored frames average low warning flag for host input - errored_frames_curr_host_input_highalarm_flag{lane_num} = BOOLEAN ; Errored frames current high alarm flag for host input - errored_frames_curr_host_input_lowalarm_flag{lane_num} = BOOLEAN ; Errored frames current low alarm flag for host input - errored_frames_curr_host_input_highwarning_flag{lane_num} = BOOLEAN ; Errored frames current high warning flag for host input - errored_frames_curr_host_input_lowwarning_flag{lane_num} = BOOLEAN ; Errored frames current low warning flag for host input -``` - -### 2.10 Transceiver VDM flag change count data - -The `TRANSCEIVER_VDM_FLAG_CHANGE_COUNT` table stores the flag change count for the VDM flags. +The `TRANSCEIVER_VDM_LALARM_THRESHOLD` table stores the low alarm threshold values for the VDM data lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. ```plaintext - ;Defines Transceiver VDM flag change count for a port - key = TRANSCEIVER_VDM_FLAG_CHANGE_COUNT|ifname ; information module VDM flags change count on port + ;Defines Transceiver VDM low alarm threshold for a port + key = TRANSCEIVER_VDM_LALARM_THRESHOLD|ifname ; information module VDM low alarm threshold on port ; field = value - esnr_media_input_highalarm_change_count{lane_num} = INTEGER ; eSNR high alarm change count for media input - esnr_media_input_lowalarm_change_count{lane_num} = INTEGER ; eSNR low alarm change count for media input - esnr_media_input_highwarning_change_count{lane_num} = INTEGER ; eSNR high warning change count for media input - esnr_media_input_lowwarning_change_count{lane_num} = INTEGER ; eSNR low warning change count for media input - esnr_host_input_highalarm_change_count{lane_num} = INTEGER ; eSNR high alarm change count for host input - esnr_host_input_lowalarm_change_count{lane_num} = INTEGER ; eSNR low alarm change count for host input - esnr_host_input_highwarning_change_count{lane_num} = INTEGER ; eSNR high warning change count for host input - esnr_host_input_lowwarning_change_count{lane_num} = INTEGER ; eSNR low warning change count for host input - pam4_level_transition_media_input_highalarm_change_count{lane_num} = INTEGER ; PAM4 level transition high alarm change count for media input - pam4_level_transition_media_input_lowalarm_change_count{lane_num} = INTEGER ; PAM4 level transition low alarm change count for media input - pam4_level_transition_media_input_highwarning_change_count{lane_num} = INTEGER ; PAM4 level transition high warning change count for media input - pam4_level_transition_media_input_lowwarning_change_count{lane_num} = INTEGER ; PAM4 level transition low warning change count for media input - pam4_level_transition_host_input_highalarm_change_count{lane_num} = INTEGER ; PAM4 level transition high alarm change count for host input - pam4_level_transition_host_input_lowalarm_change_count{lane_num} = INTEGER ; PAM4 level transition low alarm change count for host input - pam4_level_transition_host_input_highwarning_change_count{lane_num} = INTEGER ; PAM4 level transition high warning change count - pam4_level_transition_host_input_lowwarning_change_count{lane_num} = INTEGER ; PAM4 level transition low warning change count for host input - prefec_ber_min_media_input_highalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER minimum high alarm change count for media input - prefec_ber_min_media_input_lowalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER minimum low alarm change count for media input - prefec_ber_min_media_input_highwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER minimum high warning change count for media input - prefec_ber_min_media_input_lowwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER minimum low warning change count for media input - prefec_ber_max_media_input_highalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER maximum high alarm change count for media input - prefec_ber_max_media_input_lowalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER maximum low alarm change count for media input - prefec_ber_max_media_input_highwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER maximum high warning change count for media input - prefec_ber_max_media_input_lowwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER maximum low warning change count for media input - prefec_ber_avg_media_input_highalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER average high alarm change count for media input - prefec_ber_avg_media_input_lowalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER average low alarm change count for media input - prefec_ber_avg_media_input_highwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER average high warning change count for media input - prefec_ber_avg_media_input_lowwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER average low warning change count for media input - prefec_ber_curr_media_input_highalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER current high alarm change count for media input - prefec_ber_curr_media_input_lowalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER current low alarm change count for media input - prefec_ber_curr_media_input_highwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER current high warning change count for media input - prefec_ber_curr_media_input_lowwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER current low warning change count for media input - prefec_ber_min_host_input_highalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER minimum high alarm change count for host input - prefec_ber_min_host_input_lowalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER minimum low alarm change count for host input - prefec_ber_min_host_input_highwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER minimum high warning change count for host input - prefec_ber_min_host_input_lowwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER minimum low warning change count for host input - prefec_ber_max_host_input_highalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER maximum high alarm change count for host input - prefec_ber_max_host_input_lowalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER maximum low alarm change count for host input - prefec_ber_max_host_input_highwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER maximum high warning change count for host input - prefec_ber_max_host_input_lowwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER maximum low warning change count for host input - prefec_ber_avg_host_input_highalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER average high alarm change count for host input - prefec_ber_avg_host_input_lowalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER average low alarm change count for host input - prefec_ber_avg_host_input_highwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER average high warning change count for host input - prefec_ber_avg_host_input_lowwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER average low warning change count for host input - prefec_ber_curr_host_input_highalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER current high alarm change count for host input - prefec_ber_curr_host_input_lowalarm_change_count{lane_num} = INTEGER ; Pre-FEC BER current low alarm change count for host input - prefec_ber_curr_host_input_highwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER current high warning change count for host input - prefec_ber_curr_host_input_lowwarning_change_count{lane_num} = INTEGER ; Pre-FEC BER current low warning change count for host input - errored_frames_min_media_input_highalarm_change_count{lane_num} = INTEGER ; Errored frames minimum high alarm change count for media input - errored_frames_min_media_input_lowalarm_change_count{lane_num} = INTEGER ; Errored frames minimum low alarm change count for media input - errored_frames_min_media_input_highwarning_change_count{lane_num} = INTEGER ; Errored frames minimum high warning change count for media input - errored_frames_min_media_input_lowwarning_change_count{lane_num} = INTEGER ; Errored frames minimum low warning change count for media input - errored_frames_max_media_input_highalarm_change_count{lane_num} = INTEGER ; Errored frames maximum high alarm change count for media input - errored_frames_max_media_input_lowalarm_change_count{lane_num} = INTEGER ; Errored frames maximum low alarm change count for media input - errored_frames_max_media_input_highwarning_change_count{lane_num} = INTEGER ; Errored frames maximum high warning change count for media input - errored_frames_max_media_input_lowwarning_change_count{lane_num} = INTEGER ; Errored frames maximum low warning change count for media input - errored_frames_avg_media_input_highalarm_change_count{lane_num} = INTEGER ; Errored frames average high alarm change count for media input - errored_frames_avg_media_input_lowalarm_change_count{lane_num} = INTEGER ; Errored frames average low alarm change count for media input - errored_frames_avg_media_input_highwarning_change_count{lane_num} = INTEGER ; Errored frames average high warning change count for media input - errored_frames_avg_media_input_lowwarning_change_count{lane_num} = INTEGER ; Errored frames average low warning change count for media input - errored_frames_curr_media_input_highalarm_change_count{lane_num} = INTEGER ; Errored frames current high alarm change count for media input - errored_frames_curr_media_input_lowalarm_change_count{lane_num} = INTEGER ; Errored frames current low alarm change count for media input - errored_frames_curr_media_input_highwarning_change_count{lane_num} = INTEGER ; Errored frames current high warning change count for media input - errored_frames_curr_media_input_lowwarning_change_count{lane_num} = INTEGER ; Errored frames current low warning change count for media input - errored_frames_min_host_input_highalarm_change_count{lane_num} = INTEGER ; Errored frames minimum high alarm change count for host input - errored_frames_min_host_input_lowalarm_change_count{lane_num} = INTEGER ; Errored frames minimum low alarm change count for host input - errored_frames_min_host_input_highwarning_change_count{lane_num} = INTEGER ; Errored frames minimum high warning change count for host input - errored_frames_min_host_input_lowwarning_change_count{lane_num} = INTEGER ; Errored frames minimum low warning change count for host input - errored_frames_max_host_input_highalarm_change_count{lane_num} = INTEGER ; Errored frames maximum high alarm change count for host input - errored_frames_max_host_input_lowalarm_change_count{lane_num} = INTEGER ; Errored frames maximum low alarm change count for host input - errored_frames_max_host_input_highwarning_change_count{lane_num} = INTEGER ; Errored frames maximum high warning change count for host input - errored_frames_max_host_input_lowwarning_change_count{lane_num} = INTEGER ; Errored frames maximum low warning change count for host input - errored_frames_avg_host_input_highalarm_change_count{lane_num} = INTEGER ; Errored frames average high alarm change count for host input - errored_frames_avg_host_input_lowalarm_change_count{lane_num} = INTEGER ; Errored frames average low alarm change count for host input - errored_frames_avg_host_input_highwarning_change_count{lane_num} = INTEGER ; Errored frames average high warning change count for host input - errored_frames_avg_host_input_lowwarning_change_count{lane_num} = INTEGER ; Errored frames average low warning change count for host input - errored_frames_curr_host_input_highalarm_change_count{lane_num} = INTEGER ; Errored frames current high alarm change count for host input - errored_frames_curr_host_input_lowalarm_change_count{lane_num} = INTEGER ; Errored frames current low alarm change count for host input - errored_frames_curr_host_input_highwarning_change_count{lane_num} = INTEGER ; Errored frames current high warning change count for host input - errored_frames_curr_host_input_lowwarning_change_count{lane_num} = INTEGER ; Errored frames current low warning change count for host input -``` - -### 2.11 Transceiver VDM flag time set data - -The `TRANSCEIVER_VDM_FLAG_TIME_SET` table stores the flag time set for the VDM flags. + esnr_media_input_lalarm{lane_num} = FLOAT ; eSNR low alarm value in dB for media input + esnr_host_input_lalarm{lane_num} = FLOAT ; eSNR low alarm value in dB for host input + pam4_level_transition_media_input_lalarm{lane_num} = FLOAT ; PAM4 level transition low alarm value in dB for media input + pam4_level_transition_host_input_lalarm{lane_num} = FLOAT ; PAM4 level transition low alarm value in dB for host input + prefec_ber_min_media_input_lalarm{lane_num} = FLOAT ; Pre-FEC BER minimum low alarm value for media input + prefec_ber_max_media_input_lalarm{lane_num} = FLOAT ; Pre-FEC BER maximum low alarm value for media input + prefec_ber_avg_media_input_lalarm{lane_num} = FLOAT ; Pre-FEC BER average low alarm value for media input + prefec_ber_curr_media_input_lalarm{lane_num} = FLOAT ; Pre-FEC BER current low alarm value for media input + prefec_ber_min_host_input_lalarm{lane_num} = FLOAT ; Pre-FEC BER minimum low alarm value for host input + prefec_ber_max_host_input_lalarm{lane_num} = FLOAT ; Pre-FEC BER maximum low alarm value for host input + prefec_ber_avg_host_input_lalarm{lane_num} = FLOAT ; Pre-FEC BER average low alarm value for host input + prefec_ber_curr_host_input_lalarm{lane_num} = FLOAT ; Pre-FEC BER current low alarm value for host input + errored_frames_min_media_input_lalarm{lane_num} = FLOAT ; Errored frames minimum low alarm value for media input + errored_frames_max_media_input_lalarm{lane_num} = FLOAT ; Errored frames maximum low alarm value for media input + errored_frames_avg_media_input_lalarm{lane_num} = FLOAT ; Errored frames average low alarm value for media input + errored_frames_curr_media_input_lalarm{lane_num} = FLOAT ; Errored frames current low alarm value for media input + errored_frames_min_host_input_lalarm{lane_num} = FLOAT ; Errored frames minimum low alarm value for host input + errored_frames_max_host_input_lalarm{lane_num} = FLOAT ; Errored frames maximum low alarm value for host input + errored_frames_avg_host_input_lalarm{lane_num} = FLOAT ; Errored frames average low alarm value for host input + errored_frames_curr_host_input_lalarm{lane_num} = FLOAT ; Errored frames current low alarm value for host input + + ;C-CMIS specific fields + biasxi_lalarm = FLOAT ; modulator bias xi in percentage (low alarm) + biasxq_lalarm = FLOAT ; modulator bias xq in percentage (low alarm) + biasxp_lalarm = FLOAT ; modulator bias xp in percentage (low alarm) + biasyi_lalarm = FLOAT ; modulator bias yi in percentage (low alarm) + biasyq_lalarm = FLOAT ; modulator bias yq in percentage (low alarm) + biasyp_lalarm = FLOAT ; modulator bias yq in percentage (low alarm) + cdshort_lalarm = FLOAT ; chromatic dispersion, high granularity, short link in ps/nm (low alarm) + cdlong_lalarm = FLOAT ; chromatic dispersion, high granularity, long link in ps/nm (low alarm) + dgd_lalarm = FLOAT ; differential group delay in ps (low alarm) + sopmd_lalarm = FLOAT ; second order polarization mode dispersion in ps^2 (low alarm) + soproc_lalarm = FLOAT ; state of polarization rate of change in krad/s (low alarm) + pdl_lalarm = FLOAT ; polarization dependent loss in db (low alarm) + osnr_lalarm = FLOAT ; optical signal to noise ratio in db (low alarm) + esnr_lalarm = FLOAT ; electrical signal to noise ratio in db (low alarm) + cfo_lalarm = FLOAT ; carrier frequency offset in Hz (low alarm) + txcurrpower_lalarm = FLOAT ; tx current output power in dbm (low alarm) + rxtotpower_lalarm = FLOAT ; rx total power in dbm (low alarm) + rxsigpower_lalarm = FLOAT ; rx signal power in dbm (low alarm) +``` + +##### 2.2.2.3 Transceiver VDM high warning threshold data + +The `TRANSCEIVER_VDM_HWARN_THRESHOLD` table stores the high warning threshold values for the VDM data lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. ```plaintext - ;Defines Transceiver VDM flag time set for a port - key = TRANSCEIVER_VDM_FLAG_TIME_SET|ifname ; information module VDM flags time set on port + ;Defines Transceiver VDM high warning threshold for a port + key = TRANSCEIVER_VDM_HWARN_THRESHOLD|ifname ; information module VDM high warning threshold on port ; field = value - esnr_media_input_highalarm_last_set_time{lane_num} = STR ; eSNR high alarm last set time for media input - esnr_media_input_lowalarm_last_set_time{lane_num} = STR ; eSNR low alarm last set time for media input - esnr_media_input_highwarning_last_set_time{lane_num} = STR ; eSNR high warning last set time for media input - esnr_media_input_lowwarning_last_set_time{lane_num} = STR ; eSNR low warning last set time for media input - esnr_host_input_highalarm_last_set_time{lane_num} = STR ; eSNR high alarm last set time for host input - esnr_host_input_lowalarm_last_set_time{lane_num} = STR ; eSNR low alarm last set time for host input - esnr_host_input_highwarning_last_set_time{lane_num} = STR ; eSNR high warning last set time for host input - esnr_host_input_lowwarning_last_set_time{lane_num} = STR ; eSNR low warning last set time for host input - pam4_level_transition_media_input_highalarm_last_set_time{lane_num} = STR ; PAM4 level transition high alarm last set time for media input - pam4_level_transition_media_input_lowalarm_last_set_time{lane_num} = STR ; PAM4 level transition low alarm last set time for media input - pam4_level_transition_media_input_highwarning_last_set_time{lane_num} = STR ; PAM4 level transition high warning last set time for media input - pam4_level_transition_media_input_lowwarning_last_set_time{lane_num} = STR ; PAM4 level transition low warning last set time for media input - pam4_level_transition_host_input_highalarm_last_set_time{lane_num} = STR ; PAM4 level transition high alarm last set time for host input - pam4_level_transition_host_input_lowalarm_last_set_time{lane_num} = STR ; PAM4 level transition low alarm last set time for host input - pam4_level_transition_host_input_highwarning_last_set_time{lane_num} = STR ; PAM4 level transition high warning last set time for host input - pam4_level_transition_host_input_lowwarning_last_set_time{lane_num} = STR ; PAM4 level transition low warning last set time for host input - prefec_ber_min_media_input_highalarm_last_set_time{lane_num} = STR ; Pre-FEC BER minimum high alarm last set time for media input - prefec_ber_min_media_input_lowalarm_last_set_time{lane_num} = STR ; Pre-FEC BER minimum low alarm last set time for media input - prefec_ber_min_media_input_highwarning_last_set_time{lane_num} = STR ; Pre-FEC BER minimum high warning last set time for media input - prefec_ber_min_media_input_lowwarning_last_set_time{lane_num} = STR ; Pre-FEC BER minimum low warning last set time for media input - prefec_ber_max_media_input_highalarm_last_set_time{lane_num} = STR ; Pre-FEC BER maximum high alarm last set time for media input - prefec_ber_max_media_input_lowalarm_last_set_time{lane_num} = STR ; Pre-FEC BER maximum low alarm last set time for media input - prefec_ber_max_media_input_highwarning_last_set_time{lane_num} = STR ; Pre-FEC BER maximum high warning last set time for media input - prefec_ber_max_media_input_lowwarning_last_set_time{lane_num} = STR ; Pre-FEC BER maximum low warning last set time for media input - prefec_ber_avg_media_input_highalarm_last_set_time{lane_num} = STR ; Pre-FEC BER average high alarm last set time for media input - prefec_ber_avg_media_input_lowalarm_last_set_time{lane_num} = STR ; Pre-FEC BER average low alarm last set time for media input - prefec_ber_avg_media_input_highwarning_last_set_time{lane_num} = STR ; Pre-FEC BER average high warning last set time for media input - prefec_ber_avg_media_input_lowwarning_last_set_time{lane_num} = STR ; Pre-FEC BER average low warning last set time for media input - prefec_ber_curr_media_input_highalarm_last_set_time{lane_num} = STR ; Pre-FEC BER current high alarm last set time for media input - prefec_ber_curr_media_input_lowalarm_last_set_time{lane_num} = STR ; Pre-FEC BER current low alarm last set time for media input - prefec_ber_curr_media_input_highwarning_last_set_time{lane_num} = STR ; Pre-FEC BER current high warning last set time for media input - prefec_ber_curr_media_input_lowwarning_last_set_time{lane_num} = STR ; Pre-FEC BER current low warning last set time for media input - prefec_ber_min_host_input_highalarm_last_set_time{lane_num} = STR ; Pre-FEC BER minimum high alarm last set time for host input - prefec_ber_min_host_input_lowalarm_last_set_time{lane_num} = STR ; Pre-FEC BER minimum low alarm last set time for host input - prefec_ber_min_host_input_highwarning_last_set_time{lane_num} = STR ; Pre-FEC BER minimum high warning last set time for host input - prefec_ber_min_host_input_lowwarning_last_set_time{lane_num} = STR ; Pre-FEC BER minimum low warning last set time for host input - prefec_ber_max_host_input_highalarm_last_set_time{lane_num} = STR ; Pre-FEC BER maximum high alarm last set time for host input - prefec_ber_max_host_input_lowalarm_last_set_time{lane_num} = STR ; Pre-FEC BER maximum low alarm last set time for host input - prefec_ber_max_host_input_highwarning_last_set_time{lane_num} = STR ; Pre-FEC BER maximum high warning last set time for host input - prefec_ber_max_host_input_lowwarning_last_set_time{lane_num} = STR ; Pre-FEC BER maximum low warning last set time for host input - prefec_ber_avg_host_input_highalarm_last_set_time{lane_num} = STR ; Pre-FEC BER average high alarm last set time for host input - prefec_ber_avg_host_input_lowalarm_last_set_time{lane_num} = STR ; Pre-FEC BER average low alarm last set time for host input - prefec_ber_avg_host_input_highwarning_last_set_time{lane_num} = STR ; Pre-FEC BER average high warning last set time for host input - prefec_ber_avg_host_input_lowwarning_last_set_time{lane_num} = STR ; Pre-FEC BER average low warning last set time for host input - prefec_ber_curr_host_input_highalarm_last_set_time{lane_num} = STR ; Pre-FEC BER current high alarm last set time for host input - prefec_ber_curr_host_input_lowalarm_last_set_time{lane_num} = STR ; Pre-FEC BER current low alarm last set time for host input - prefec_ber_curr_host_input_highwarning_last_set_time{lane_num} = STR ; Pre-FEC BER current high warning last set time for host input - prefec_ber_curr_host_input_lowwarning_last_set_time{lane_num} = STR ; Pre-FEC BER current low warning last set time for host input - errored_frames_min_media_input_highalarm_last_set_time{lane_num} = STR ; Errored frames minimum high alarm last set time for media input - errored_frames_min_media_input_lowalarm_last_set_time{lane_num} = STR ; Errored frames minimum low alarm last set time for media input - errored_frames_min_media_input_highwarning_last_set_time{lane_num} = STR ; Errored frames minimum high warning last set time for media input - errored_frames_min_media_input_lowwarning_last_set_time{lane_num} = STR ; Errored frames minimum low warning last set time for media input - errored_frames_max_media_input_highalarm_last_set_time{lane_num} = STR ; Errored frames maximum high alarm last set time for media input - errored_frames_max_media_input_lowalarm_last_set_time{lane_num} = STR ; Errored frames maximum low alarm last set time for media input - errored_frames_max_media_input_highwarning_last_set_time{lane_num} = STR ; Errored frames maximum high warning last set time for media input - errored_frames_max_media_input_lowwarning_last_set_time{lane_num} = STR ; Errored frames maximum low warning last set time for media input - errored_frames_avg_media_input_highalarm_last_set_time{lane_num} = STR ; Errored frames average high alarm last set time for media input - errored_frames_avg_media_input_lowalarm_last_set_time{lane_num} = STR ; Errored frames average low alarm last set time for media input - errored_frames_avg_media_input_highwarning_last_set_time{lane_num} = STR ; Errored frames average high warning last set time for media input - errored_frames_avg_media_input_lowwarning_last_set_time{lane_num} = STR ; Errored frames average low warning last set time for media input - errored_frames_curr_media_input_highalarm_last_set_time{lane_num} = STR ; Errored frames current high alarm last set time for media input - errored_frames_curr_media_input_lowalarm_last_set_time{lane_num} = STR ; Errored frames current low alarm last set time for media input - errored_frames_curr_media_input_highwarning_last_set_time{lane_num} = STR ; Errored frames current high warning last set time for media input - errored_frames_curr_media_input_lowwarning_last_set_time{lane_num} = STR ; Errored frames current low warning last set time for media input - errored_frames_min_host_input_highalarm_last_set_time{lane_num} = STR ; Errored frames minimum high alarm last set time for host input - errored_frames_min_host_input_lowalarm_last_set_time{lane_num} = STR ; Errored frames minimum low alarm last set time for host input - errored_frames_min_host_input_highwarning_last_set_time{lane_num} = STR ; Errored frames minimum high warning last set time for host input - errored_frames_min_host_input_lowwarning_last_set_time{lane_num} = STR ; Errored frames minimum low warning last set time for host input - errored_frames_max_host_input_highalarm_last_set_time{lane_num} = STR ; Errored frames maximum high alarm last set time for host input - errored_frames_max_host_input_lowalarm_last_set_time{lane_num} = STR ; Errored frames maximum low alarm last set time for host input - errored_frames_max_host_input_highwarning_last_set_time{lane_num} = STR ; Errored frames maximum high warning last set time for host input - errored_frames_max_host_input_lowwarning_last_set_time{lane_num} = STR ; Errored frames maximum low warning last set time for host input - errored_frames_avg_host_input_highalarm_last_set_time{lane_num} = STR ; Errored frames average high alarm last set time for host input - errored_frames_avg_host_input_lowalarm_last_set_time{lane_num} = STR ; Errored frames average low alarm last set time for host input - errored_frames_avg_host_input_highwarning_last_set_time{lane_num} = STR ; Errored frames average high warning last set time for host input - errored_frames_avg_host_input_lowwarning_last_set_time{lane_num} = STR ; Errored frames average low warning last set time for host input - errored_frames_curr_host_input_highalarm_last_set_time{lane_num} = STR ; Errored frames current high alarm last set time for host input - errored_frames_curr_host_input_lowalarm_last_set_time{lane_num} = STR ; Errored frames current low alarm last set time for host input - errored_frames_curr_host_input_highwarning_last_set_time{lane_num} = STR ; Errored frames current high warning last set time for host input - errored_frames_curr_host_input_lowwarning_last_set_time{lane_num} = STR ; Errored frames current low warning last set time for host input -``` - -### 2.12 Transceiver VDM flag time clear data - -The `TRANSCEIVER_VDM_FLAG_TIME_CLEAR` table stores the flag time clear for the VDM flags. + esnr_media_input_hwarn{lane_num} = FLOAT ; eSNR high warning value in dB for media input + esnr_host_input_hwarn{lane_num} = FLOAT ; eSNR high warning value in dB for host input + pam4_level_transition_media_input_hwarn{lane_num} = FLOAT ; PAM4 level transition high warning value in dB for media input + pam4_level_transition_host_input_hwarn{lane_num} = FLOAT ; PAM4 level transition high warning value in dB for host input + prefec_ber_min_media_input_hwarn{lane_num} = FLOAT ; Pre-FEC BER minimum high warning value for media input + prefec_ber_max_media_input_hwarn{lane_num} = FLOAT ; Pre-FEC BER maximum high warning value for media input + prefec_ber_avg_media_input_hwarn{lane_num} = FLOAT ; Pre-FEC BER average high warning value for media input + prefec_ber_curr_media_input_hwarn{lane_num} = FLOAT ; Pre-FEC BER current high warning value for media input + prefec_ber_min_host_input_hwarn{lane_num} = FLOAT ; Pre-FEC BER minimum high warning value for host input + prefec_ber_max_host_input_hwarn{lane_num} = FLOAT ; Pre-FEC BER maximum high warning value for host input + prefec_ber_avg_host_input_hwarn{lane_num} = FLOAT ; Pre-FEC BER average high warning value for host input + prefec_ber_curr_host_input_hwarn{lane_num} = FLOAT ; Pre-FEC BER current high warning value for host input + errored_frames_min_media_input_hwarn{lane_num} = FLOAT ; Errored frames minimum high warning value for media input + errored_frames_max_media_input_hwarn{lane_num} = FLOAT ; Errored frames maximum high warning value for media input + errored_frames_avg_media_input_hwarn{lane_num} = FLOAT ; Errored frames average high warning value for media input + errored_frames_curr_media_input_hwarn{lane_num} = FLOAT ; Errored frames current high warning value for media input + errored_frames_min_host_input_hwarn{lane_num} = FLOAT ; Errored frames minimum high warning value for host input + errored_frames_max_host_input_hwarn{lane_num} = FLOAT ; Errored frames maximum high warning value for host input + errored_frames_avg_host_input_hwarn{lane_num} = FLOAT ; Errored frames average high warning value for host input + errored_frames_curr_host_input_hwarn{lane_num} = FLOAT ; Errored frames current high warning value for host input + + ;C-CMIS specific fields + biasxi_hwarn = FLOAT ; modulator bias xi in percentage (high warning) + biasxq_hwarn = FLOAT ; modulator bias xq in percentage (high warning) + biasxp_hwarn = FLOAT ; modulator bias xp in percentage (high warning) + biasyi_hwarn = FLOAT ; modulator bias yi in percentage (high warning) + biasyq_hwarn = FLOAT ; modulator bias yq in percentage (high warning) + biasyp_hwarn = FLOAT ; modulator bias yq in percentage (high warning) + cdshort_hwarn = FLOAT ; chromatic dispersion, high granularity, short link in ps/nm (high warning) + cdlong_hwarn = FLOAT ; chromatic dispersion, high granularity, long link in ps/nm (high warning) + dgd_hwarn = FLOAT ; differential group delay in ps (high warning) + sopmd_hwarn = FLOAT ; second order polarization mode dispersion in ps^2 (high warning) + soproc_hwarn = FLOAT ; state of polarization rate of change in krad/s (high warning) + pdl_hwarn = FLOAT ; polarization dependent loss in db (high warning) + osnr_hwarn = FLOAT ; optical signal to noise ratio in db (high warning) + esnr_hwarn = FLOAT ; electrical signal to noise ratio in db (high warning) + cfo_hwarn = FLOAT ; carrier frequency offset in Hz (high warning) + txcurrpower_hwarn = FLOAT ; tx current output power in dbm (high warning) + rxtotpower_hwarn = FLOAT ; rx total power in dbm (high warning) + rxsigpower_hwarn = FLOAT ; rx signal power in dbm (high warning) +``` + +##### 2.2.2.4 Transceiver VDM low warning threshold data + +The `TRANSCEIVER_VDM_LWARN_THRESHOLD` table stores the low warning threshold values for the VDM data lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. ```plaintext - ;Defines Transceiver VDM flag time clear for a port - key = TRANSCEIVER_VDM_FLAG_TIME_CLEAR|ifname ; information module VDM flags time clear on port + ;Defines Transceiver VDM low warning threshold for a port + key = TRANSCEIVER_VDM_LWARN_THRESHOLD|ifname ; information module VDM low warning threshold on port ; field = value - esnr_media_input_highalarm_last_clear_time{lane_num} = STR ; eSNR high alarm last clear time for media input - esnr_media_input_lowalarm_last_clear_time{lane_num} = STR ; eSNR low alarm last clear time for media input - esnr_media_input_highwarning_last_clear_time{lane_num} = STR ; eSNR high warning last clear time for media input - esnr_media_input_lowwarning_last_clear_time{lane_num} = STR ; eSNR low warning last clear time for media input - esnr_host_input_highalarm_last_clear_time{lane_num} = STR ; eSNR high alarm last clear time for host input - esnr_host_input_lowalarm_last_clear_time{lane_num} = STR ; eSNR low alarm last clear time for host input - esnr_host_input_highwarning_last_clear_time{lane_num} = STR ; eSNR high warning last clear time for host input - esnr_host_input_lowwarning_last_clear_time{lane_num} = STR ; eSNR low warning last clear time for host input - pam4_level_transition_media_input_highalarm_last_clear_time{lane_num} = STR ; PAM4 level transition high alarm last clear time for media input - pam4_level_transition_media_input_lowalarm_last_clear_time{lane_num} = STR ; PAM4 level transition low alarm last clear time for media input - pam4_level_transition_media_input_highwarning_last_clear_time{lane_num} = STR ; PAM4 level transition high warning last clear time for media input - pam4_level_transition_media_input_lowwarning_last_clear_time{lane_num} = STR ; PAM4 level transition low warning last clear time for media input - pam4_level_transition_host_input_highalarm_last_clear_time{lane_num} = STR ; PAM4 level transition high alarm last clear time for host input - pam4_level_transition_host_input_lowalarm_last_clear_time{lane_num} = STR ; PAM4 level transition low alarm last clear time for host input - pam4_level_transition_host_input_highwarning_last_clear_time{lane_num} = STR ; PAM4 level transition high warning last clear time for host input - pam4_level_transition_host_input_lowwarning_last_clear_time{lane_num} = STR ; PAM4 level transition low warning last clear time for host input - prefec_ber_min_media_input_highalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum high alarm last clear time for media input - prefec_ber_min_media_input_lowalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum low alarm last clear time for media input - prefec_ber_min_media_input_highwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum high warning last clear time for media input - prefec_ber_min_media_input_lowwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum low warning last clear time for media input - prefec_ber_max_media_input_highalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum high alarm last clear time for media input - prefec_ber_max_media_input_lowalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum low alarm last clear time for media input - prefec_ber_max_media_input_highwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum high warning last clear time for media input - prefec_ber_max_media_input_lowwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum low warning last clear time for media input - prefec_ber_avg_media_input_highalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER average high alarm last clear time for media input - prefec_ber_avg_media_input_lowalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER average low alarm last clear time for media input - prefec_ber_avg_media_input_highwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER average high warning last clear time for media input - prefec_ber_avg_media_input_lowwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER average low warning last clear time for media input - prefec_ber_curr_media_input_highalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER current high alarm last clear time for media input - prefec_ber_curr_media_input_lowalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER current low alarm last clear time for media input - prefec_ber_curr_media_input_highwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER current high warning last clear time for media input - prefec_ber_curr_media_input_lowwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER current low warning last clear time for media input - prefec_ber_min_host_input_highalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum high alarm last clear time for host input - prefec_ber_min_host_input_lowalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum low alarm last clear time for host input - prefec_ber_min_host_input_highwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum high warning last clear time for host input - prefec_ber_min_host_input_lowwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum low warning last clear time for host input - prefec_ber_max_host_input_highalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum high alarm last clear time for host input - prefec_ber_max_host_input_lowalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum low alarm last clear time for host input - prefec_ber_max_host_input_highwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum high warning last clear time for host input - prefec_ber_max_host_input_lowwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum low warning last clear time for host input - prefec_ber_avg_host_input_highalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER average high alarm last clear time for host input - prefec_ber_avg_host_input_lowalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER average low alarm last clear time for host input - prefec_ber_avg_host_input_highwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER average high warning last clear time for host input - prefec_ber_avg_host_input_lowwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER average low warning last clear time for host input - prefec_ber_curr_host_input_highalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER current high alarm last clear time for host input - prefec_ber_curr_host_input_lowalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER current low alarm last clear time for host input - prefec_ber_curr_host_input_highwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER current high warning last clear time for host input - prefec_ber_curr_host_input_lowwarning_last_clear_time{lane_num} = STR ; Pre-FEC BER current low warning last clear time for host input - errored_frames_min_media_input_highalarm_last_clear_time{lane_num} = STR ; Errored frames minimum high alarm last clear time for media input - errored_frames_min_media_input_lowalarm_last_clear_time{lane_num} = STR ; Errored frames minimum low alarm last clear time for media input - errored_frames_min_media_input_highwarning_last_clear_time{lane_num} = STR ; Errored frames minimum high warning last clear time for media input - errored_frames_min_media_input_lowwarning_last_clear_time{lane_num} = STR ; Errored frames minimum low warning last clear time for media input - errored_frames_max_media_input_highalarm_last_clear_time{lane_num} = STR ; Errored frames maximum high alarm last clear time for media input - errored_frames_max_media_input_lowalarm_last_clear_time{lane_num} = STR ; Errored frames maximum low alarm last clear time for media input - errored_frames_max_media_input_highwarning_last_clear_time{lane_num} = STR ; Errored frames maximum high warning last clear time for media input - errored_frames_max_media_input_lowwarning_last_clear_time{lane_num} = STR ; Errored frames maximum low warning last clear time for media input - errored_frames_avg_media_input_highalarm_last_clear_time{lane_num} = STR ; Errored frames average high alarm last clear time for media input - errored_frames_avg_media_input_lowalarm_last_clear_time{lane_num} = STR ; Errored frames average low alarm last clear time for media input - errored_frames_avg_media_input_highwarning_last_clear_time{lane_num} = STR ; Errored frames average high warning last clear time for media input - errored_frames_avg_media_input_lowwarning_last_clear_time{lane_num} = STR ; Errored frames average low warning last clear time for media input - errored_frames_curr_media_input_highalarm_last_clear_time{lane_num} = STR ; Errored frames current high alarm last clear time for media input - errored_frames_curr_media_input_lowalarm_last_clear_time{lane_num} = STR ; Errored frames current low alarm last clear time for media input - errored_frames_curr_media_input_highwarning_last_clear_time{lane_num} = STR ; Errored frames current high warning last clear time for media input - errored_frames_curr_media_input_lowwarning_last_clear_time{lane_num} = STR ; Errored frames current low warning last clear time for media input - errored_frames_min_host_input_highalarm_last_clear_time{lane_num} = STR ; Errored frames minimum high alarm last clear time for host input - errored_frames_min_host_input_lowalarm_last_clear_time{lane_num} = STR ; Errored frames minimum low alarm last clear time for host input - errored_frames_min_host_input_highwarning_last_clear_time{lane_num} = STR ; Errored frames minimum high warning last clear time for host input - errored_frames_min_host_input_lowwarning_last_clear_time{lane_num} = STR ; Errored frames minimum low warning last clear time for host input - errored_frames_max_host_input_highalarm_last_clear_time{lane_num} = STR ; Errored frames maximum high alarm last clear time for host input - errored_frames_max_host_input_lowalarm_last_clear_time{lane_num} = STR ; Errored frames maximum low alarm last clear time for host input - errored_frames_max_host_input_highwarning_last_clear_time{lane_num} = STR ; Errored frames maximum high warning last clear time for host input - errored_frames_max_host_input_lowwarning_last_clear_time{lane_num} = STR ; Errored frames maximum low warning last clear time for host input - errored_frames_avg_host_input_highalarm_last_clear_time{lane_num} = STR ; Errored frames average high alarm last clear time for host input - errored_frames_avg_host_input_lowalarm_last_clear_time{lane_num} = STR ; Errored frames average low alarm last clear time for host input - errored_frames_avg_host_input_highwarning_last_clear_time{lane_num} = STR ; Errored frames average high warning last clear time for host input - errored_frames_avg_host_input_lowwarning_last_clear_time{lane_num} = STR ; Errored frames average low warning last clear time for host input - errored_frames_curr_host_input_highalarm_last_clear_time{lane_num} = STR ; Errored frames current high alarm last clear time for host input - errored_frames_curr_host_input_lowalarm_last_clear_time{lane_num} = STR ; Errored frames current low alarm last clear time for host input - errored_frames_curr_host_input_highwarning_last_clear_time{lane_num} = STR ; Errored frames current high warning last clear time for host input - errored_frames_curr_host_input_lowwarning_last_clear_time{lane_num} = STR ; Errored frames current low warning last clear time for host input -``` - -### 2.13 Transceiver status data + esnr_media_input_lwarn{lane_num} = FLOAT ; eSNR low warning value in dB for media input + esnr_host_input_lwarn{lane_num} = FLOAT ; eSNR low warning value in dB for host input + pam4_level_transition_media_input_lwarn{lane_num} = FLOAT ; PAM4 level transition low warning value in dB for media input + pam4_level_transition_host_input_lwarn{lane_num} = FLOAT ; PAM4 level transition low warning value in dB for host input + prefec_ber_min_media_input_lwarn{lane_num} = FLOAT ; Pre-FEC BER minimum low warning value for media input + prefec_ber_max_media_input_lwarn{lane_num} = FLOAT ; Pre-FEC BER maximum low warning value for media input + prefec_ber_avg_media_input_lwarn{lane_num} = FLOAT ; Pre-FEC BER average low warning value for media input + prefec_ber_curr_media_input_lwarn{lane_num} = FLOAT ; Pre-FEC BER current low warning value for media input + prefec_ber_min_host_input_lwarn{lane_num} = FLOAT ; Pre-FEC BER minimum low warning value for host input + prefec_ber_max_host_input_lwarn{lane_num} = FLOAT ; Pre-FEC BER maximum low warning value for host input + prefec_ber_avg_host_input_lwarn{lane_num} = FLOAT ; Pre-FEC BER average low warning value for host input + prefec_ber_curr_host_input_lwarn{lane_num} = FLOAT ; Pre-FEC BER current low warning value for host input + errored_frames_min_media_input_lwarn{lane_num} = FLOAT ; Errored frames minimum low warning value for media input + errored_frames_max_media_input_lwarn{lane_num} = FLOAT ; Errored frames maximum low warning value for media input + errored_frames_avg_media_input_lwarn{lane_num} = FLOAT ; Errored frames average low warning value for media input + errored_frames_curr_media_input_lwarn{lane_num} = FLOAT ; Errored frames current low warning value for media input + errored_frames_min_host_input_lwarn{lane_num} = FLOAT ; Errored frames minimum low warning value for host input + errored_frames_max_host_input_lwarn{lane_num} = FLOAT ; Errored frames maximum low warning value for host input + errored_frames_avg_host_input_lwarn{lane_num} = FLOAT ; Errored frames average low warning value for host input + errored_frames_curr_host_input_lwarn{lane_num} = FLOAT ; Errored frames current low warning value for host input + + ;C-CMIS specific fields + biasxi_lwarn = FLOAT ; modulator bias xi in percentage (low warning) + biasxq_lwarn = FLOAT ; modulator bias xq in percentage (low warning) + biasxp_lwarn = FLOAT ; modulator bias xp in percentage (low warning) + biasyi_lwarn = FLOAT ; modulator bias yi in percentage (low warning) + biasyq_lwarn = FLOAT ; modulator bias yq in percentage (low warning) + biasyp_lwarn = FLOAT ; modulator bias yq in percentage (low warning) + cdshort_lwarn = FLOAT ; chromatic dispersion, high granularity, short link in ps/nm (low warning) + cdlong_lwarn = FLOAT ; chromatic dispersion, high granularity, long link in ps/nm (low warning) + dgd_lwarn = FLOAT ; differential group delay in ps (low warning) + sopmd_lwarn = FLOAT ; second order polarization mode dispersion in ps^2 (low warning) + soproc_lwarn = FLOAT ; state of polarization rate of change in krad/s (low warning) + pdl_lwarn = FLOAT ; polarization dependent loss in db (low warning) + osnr_lwarn = FLOAT ; optical signal to noise ratio in db (low warning) + esnr_lwarn = FLOAT ; electrical signal to noise ratio in db (low warning) + cfo_lwarn = FLOAT ; carrier frequency offset in Hz (low warning) + txcurrpower_lwarn = FLOAT ; tx current output power in dbm (low warning) + rxtotpower_lwarn = FLOAT ; rx total power in dbm (low warning) + rxsigpower_lwarn = FLOAT ; rx signal power in dbm (low warning) +``` + +#### 2.2.3 Transceiver VDM flag data + +##### 2.2.3.1 Transceiver VDM high alarm flag data + +The `TRANSCEIVER_VDM_HALARM_FLAG` table stores the flag status for the VDM data. + +```plaintext + ;Defines Transceiver VDM high alarm flag for a port + key = TRANSCEIVER_VDM_HALARM_FLAG|ifname + ; field = value + esnr_media_input_halarm_flag{lane_num} = BOOLEAN ; eSNR high alarm flag for media input + esnr_host_input_halarm_flag{lane_num} = BOOLEAN ; eSNR high alarm flag for host input + pam4_level_transition_media_input_halarm_flag{lane_num} = BOOLEAN ; PAM4 level transition high alarm flag for media input + pam4_level_transition_host_input_halarm_flag{lane_num} = BOOLEAN ; PAM4 level transition high alarm flag for host input + prefec_ber_min_media_input_halarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum high alarm flag for media input + prefec_ber_max_media_input_halarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum high alarm flag for media input + prefec_ber_avg_media_input_halarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER average high alarm flag for media input + prefec_ber_curr_media_input_halarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER current high alarm flag for media input + prefec_ber_min_host_input_halarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum high alarm flag for host input + prefec_ber_max_host_input_halarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum high alarm flag for host input + prefec_ber_avg_host_input_halarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER average high alarm flag for host input + prefec_ber_curr_host_input_halarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER current high alarm flag for host input + errored_frames_min_media_input_halarm_flag{lane_num} = BOOLEAN ; Errored frames minimum high alarm flag for media input + errored_frames_max_media_input_halarm_flag{lane_num} = BOOLEAN ; Errored frames maximum high alarm flag for media input + errored_frames_avg_media_input_halarm_flag{lane_num} = BOOLEAN ; Errored frames average high alarm flag for media input + errored_frames_curr_media_input_halarm_flag{lane_num} = BOOLEAN ; Errored frames current high alarm flag for media input + errored_frames_min_host_input_halarm_flag{lane_num} = BOOLEAN ; Errored frames minimum high alarm flag for host input + errored_frames_max_host_input_halarm_flag{lane_num} = BOOLEAN ; Errored frames maximum high alarm flag for host input + errored_frames_avg_host_input_halarm_flag{lane_num} = BOOLEAN ; Errored frames average high alarm flag for host input + errored_frames_curr_host_input_halarm_flag{lane_num} = BOOLEAN ; Errored frames current high alarm flag for host input + + ;C-CMIS specific fields + biasxi_halarm_flag = BOOLEAN ; modulator bias xi in percentage (high alarm flag) + biasxq_halarm_flag = BOOLEAN ; modulator bias xq in percentage (high alarm flag) + biasxp_halarm_flag = BOOLEAN ; modulator bias xp in percentage (high alarm flag) + biasyi_halarm_flag = BOOLEAN ; modulator bias yi in percentage (high alarm flag) + biasyq_halarm_flag = BOOLEAN ; modulator bias yq in percentage (high alarm flag) + biasyp_halarm_flag = BOOLEAN ; modulator bias yq in percentage (high alarm flag) + cdshort_halarm_flag = BOOLEAN ; chromatic dispersion, high granularity, short link in ps/nm (high alarm flag) + cdlong_halarm_flag = BOOLEAN ; chromatic dispersion, high granularity, long link in ps/nm (high alarm flag) + dgd_halarm_flag = BOOLEAN ; differential group delay in ps (high alarm flag) + sopmd_halarm_flag = BOOLEAN ; second order polarization mode dispersion in ps^2 (high alarm flag) + soproc_halarm_flag = BOOLEAN ; state of polarization rate of change in krad/s (high alarm flag) + pdl_halarm_flag = BOOLEAN ; polarization dependent loss in db (high alarm flag) + osnr_halarm_flag = BOOLEAN ; optical signal to noise ratio in db (high alarm flag) + esnr_halarm_flag = BOOLEAN ; electrical signal to noise ratio in db (high alarm flag) + cfo_halarm_flag = BOOLEAN ; carrier frequency offset in Hz (high alarm flag) + txcurrpower_halarm_flag = BOOLEAN ; tx current output power in dbm (high alarm flag) + rxtotpower_halarm_flag = BOOLEAN ; rx total power in dbm (high alarm flag) + rxsigpower_halarm_flag = BOOLEAN; rx signal power in dbm (high alarm flag) +``` + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +##### 2.2.3.2 Transceiver VDM low alarm flag data + +The `TRANSCEIVER_VDM_LALARM_FLAG` table stores the flag status for the VDM data. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ;Defines Transceiver VDM low alarm flag for a port + key = TRANSCEIVER_VDM_LALARM_FLAG|ifname + ; field = value + esnr_media_input_lalarm_flag{lane_num} = BOOLEAN ; eSNR low alarm flag for media input + esnr_host_input_lalarm_flag{lane_num} = BOOLEAN ; eSNR low alarm flag for host input + pam4_level_transition_media_input_lalarm_flag{lane_num} = BOOLEAN ; PAM4 level transition low alarm flag for media input + pam4_level_transition_host_input_lalarm_flag{lane_num} = BOOLEAN ; PAM4 level transition low alarm flag for host input + prefec_ber_min_media_input_lalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum low alarm flag for media input + prefec_ber_max_media_input_lalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum low alarm flag for media input + prefec_ber_avg_media_input_lalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER average low alarm flag for media input + prefec_ber_curr_media_input_lalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER current low alarm flag for media input + prefec_ber_min_host_input_lalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum low alarm flag for host input + prefec_ber_max_host_input_lalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum low alarm flag for host input + prefec_ber_avg_host_input_lalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER average low alarm flag for host input + prefec_ber_curr_host_input_lalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER current low alarm flag for host input + errored_frames_min_media_input_lalarm_flag{lane_num} = BOOLEAN ; Errored frames minimum low alarm flag for media input + errored_frames_max_media_input_lalarm_flag{lane_num} = BOOLEAN ; Errored frames maximum low alarm flag for media input + errored_frames_avg_media_input_lalarm_flag{lane_num} = BOOLEAN ; Errored frames average low alarm flag for media input + errored_frames_curr_media_input_lalarm_flag{lane_num} = BOOLEAN ; Errored frames current low alarm flag for media input + errored_frames_min_host_input_lalarm_flag{lane_num} = BOOLEAN ; Errored frames minimum low alarm flag for host input + errored_frames_max_host_input_lalarm_flag{lane_num} = BOOLEAN ; Errored frames maximum low alarm flag for host input + errored_frames_avg_host_input_lalarm_flag{lane_num} = BOOLEAN ; Errored frames average low alarm flag for host input + errored_frames_curr_host_input_lalarm_flag{lane_num} = BOOLEAN ; Errored frames current low alarm flag for host input + + ;C-CMIS specific fields + biasxi_lalarm_flag = BOOLEAN ; modulator bias xi in percentage (low alarm flag) + biasxq_lalarm_flag = BOOLEAN ; modulator bias xq in percentage (low alarm flag) + biasxp_lalarm_flag = BOOLEAN ; modulator bias xp in percentage (low alarm flag) + biasyi_lalarm_flag = BOOLEAN ; modulator bias yi in percentage (low alarm flag) + biasyq_lalarm_flag = BOOLEAN ; modulator bias yq in percentage (low alarm flag) + biasyp_lalarm_flag = BOOLEAN ; modulator bias yq in percentage (low alarm flag) + cdshort_lalarm_flag = BOOLEAN ; chromatic dispersion, high granularity, short link in ps/nm (low alarm flag) + cdlong_lalarm_flag = BOOLEAN ; chromatic dispersion, high granularity, long link in ps/nm (low alarm flag) + dgd_lalarm_flag = BOOLEAN ; differential group delay in ps (low alarm flag) + sopmd_lalarm_flag = BOOLEAN ; second order polarization mode dispersion in ps^2 (low alarm flag) + soproc_lalarm_flag = BOOLEAN ; state of polarization rate of change in krad/s (low alarm flag) + pdl_lalarm_flag = BOOLEAN ; polarization dependent loss in db (low alarm flag) + osnr_lalarm_flag = BOOLEAN ; optical signal to noise ratio in db (low alarm flag) + esnr_lalarm_flag = BOOLEAN ; electrical signal to noise ratio in db (low alarm flag) + cfo_lalarm_flag = BOOLEAN ; carrier frequency offset in Hz (low alarm flag) + txcurrpower_lalarm_flag = BOOLEAN ; tx current output power in dbm (low alarm flag) + rxtotpower_lalarm_flag = BOOLEAN ; rx total power in dbm (low alarm flag) + rxsigpower_lalarm_flag = BOOLEAN; rx signal power in dbm (low alarm flag) +``` + +##### 2.2.3.3 Transceiver VDM high warning flag data + +The `TRANSCEIVER_VDM_HWARN_FLAG` table stores the flag status for the VDM data. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ;Defines Transceiver VDM high warning flag for a port + key = TRANSCEIVER_VDM_HWARN_FLAG|ifname + ; field = value + esnr_media_input_hwarn_flag{lane_num} = BOOLEAN ; eSNR high warning flag for media input + esnr_host_input_hwarn_flag{lane_num} = BOOLEAN ; eSNR high warning flag for host input + pam4_level_transition_media_input_hwarn_flag{lane_num} = BOOLEAN ; PAM4 level transition high warning flag for media input + pam4_level_transition_host_input_hwarn_flag{lane_num} = BOOLEAN ; PAM4 level transition high warning flag for host input + prefec_ber_min_media_input_hwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum high warning flag for media input + prefec_ber_max_media_input_hwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum high warning flag for media input + prefec_ber_avg_media_input_hwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER average high warning flag for media input + prefec_ber_curr_media_input_hwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER current high warning flag for media input + prefec_ber_min_host_input_hwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum high warning flag for host input + prefec_ber_max_host_input_hwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum high warning flag for host input + prefec_ber_avg_host_input_hwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER average high warning flag for host input + prefec_ber_curr_host_input_hwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER current high warning flag for host input + errored_frames_min_media_input_hwarn_flag{lane_num} = BOOLEAN ; Errored frames minimum high warning flag for media input + errored_frames_max_media_input_hwarn_flag{lane_num} = BOOLEAN ; Errored frames maximum high warning flag for media input + errored_frames_avg_media_input_hwarn_flag{lane_num} = BOOLEAN ; Errored frames average high warning flag for media input + errored_frames_curr_media_input_hwarn_flag{lane_num} = BOOLEAN ; Errored frames current high warning flag for media input + errored_frames_min_host_input_hwarn_flag{lane_num} = BOOLEAN ; Errored frames minimum high warning flag for host input + errored_frames_max_host_input_hwarn_flag{lane_num} = BOOLEAN ; Errored frames maximum high warning flag for host input + errored_frames_avg_host_input_hwarn_flag{lane_num} = BOOLEAN ; Errored frames average high warning flag for host input + errored_frames_curr_host_input_hwarn_flag{lane_num} = BOOLEAN ; Errored frames current high warning flag for host input + + ;C-CMIS specific fields + biasxi_hwarn_flag = BOOLEAN ; modulator bias xi in percentage (high warning flag) + biasxq_hwarn_flag = BOOLEAN ; modulator bias xq in percentage (high warning flag) + biasxp_hwarn_flag = BOOLEAN ; modulator bias xp in percentage (high warning flag) + biasyi_hwarn_flag = BOOLEAN ; modulator bias yi in percentage (high warning flag) + biasyq_hwarn_flag = BOOLEAN ; modulator bias yq in percentage (high warning flag) + biasyp_hwarn_flag = BOOLEAN ; modulator bias yq in percentage (high warning flag) + cdshort_hwarn_flag = BOOLEAN ; chromatic dispersion, high granularity, short link in ps/nm (high warning flag) + cdlong_hwarn_flag = BOOLEAN ; chromatic dispersion, high granularity, long link in ps/nm (high warning flag) + dgd_hwarn_flag = BOOLEAN ; differential group delay in ps (high warning flag) + sopmd_hwarn_flag = BOOLEAN ; second order polarization mode dispersion in ps^2 (high warning flag) + soproc_hwarn_flag = BOOLEAN ; state of polarization rate of change in krad/s (high warning flag) + pdl_hwarn_flag = BOOLEAN ; polarization dependent loss in db (high warning flag) + osnr_hwarn_flag = BOOLEAN ; optical signal to noise ratio in db (high warning flag) + esnr_hwarn_flag = BOOLEAN ; electrical signal to noise ratio in db (high warning flag) + cfo_hwarn_flag = BOOLEAN ; carrier frequency offset in Hz (high warning flag) + txcurrpower_hwarn_flag = BOOLEAN ; tx current output power in dbm (high warning flag) + rxtotpower_hwarn_flag = BOOLEAN ; rx total power in dbm (high warning flag) + rxsigpower_hwarn_flag = BOOLEAN; rx signal power in dbm (high warning flag) +``` + +##### 2.2.3.4 Transceiver VDM low warning flag data + +The `TRANSCEIVER_VDM_LWARN_FLAG` table stores the flag status for the VDM data. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ;Defines Transceiver VDM low warning flag for a port + key = TRANSCEIVER_VDM_LWARN_FLAG|ifname + ; field = value + esnr_media_input_lwarn_flag{lane_num} = BOOLEAN ; eSNR low warning flag for media input + esnr_host_input_lwarn_flag{lane_num} = BOOLEAN ; eSNR low warning flag for host input + pam4_level_transition_media_input_lwarn_flag{lane_num} = BOOLEAN ; PAM4 level transition low warning flag for media input + pam4_level_transition_host_input_lwarn_flag{lane_num} = BOOLEAN ; PAM4 level transition low warning flag for host input + prefec_ber_min_media_input_lwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum low warning flag for media input + prefec_ber_max_media_input_lwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum low warning flag for media input + prefec_ber_avg_media_input_lwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER average low warning flag for media input + prefec_ber_curr_media_input_lwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER current low warning flag for media input + prefec_ber_min_host_input_lwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum low warning flag for host input + prefec_ber_max_host_input_lwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum low warning flag for host input + prefec_ber_avg_host_input_lwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER average low warning flag for host input + prefec_ber_curr_host_input_lwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER current low warning flag for host input + errored_frames_min_media_input_lwarn_flag{lane_num} = BOOLEAN ; Errored frames minimum low warning flag for media input + errored_frames_max_media_input_lwarn_flag{lane_num} = BOOLEAN ; Errored frames maximum low warning flag for media input + errored_frames_avg_media_input_lwarn_flag{lane_num} = BOOLEAN ; Errored frames average low warning flag for media input + errored_frames_curr_media_input_lwarn_flag{lane_num} = BOOLEAN ; Errored frames current low warning flag for media input + errored_frames_min_host_input_lwarn_flag{lane_num} = BOOLEAN ; Errored frames minimum low warning flag for host input + errored_frames_max_host_input_lwarn_flag{lane_num} = BOOLEAN ; Errored frames maximum low warning flag for host input + errored_frames_avg_host_input_lwarn_flag{lane_num} = BOOLEAN ; Errored frames average low warning flag for host input + errored_frames_curr_host_input_lwarn_flag{lane_num} = BOOLEAN ; Errored frames current low warning flag for host input + + ;C-CMIS specific fields + biasxi_lwarn_flag = BOOLEAN ; modulator bias xi in percentage (low warning flag) + biasxq_lwarn_flag = BOOLEAN ; modulator bias xq in percentage (low warning flag) + biasxp_lwarn_flag = BOOLEAN ; modulator bias xp in percentage (low warning flag) + biasyi_lwarn_flag = BOOLEAN ; modulator bias yi in percentage (low warning flag) + biasyq_lwarn_flag = BOOLEAN ; modulator bias yq in percentage (low warning flag) + biasyp_lwarn_flag = BOOLEAN ; modulator bias yq in percentage (low warning flag) + cdshort_lwarn_flag = BOOLEAN ; chromatic dispersion, high granularity, short link in ps/nm (low warning flag) + cdlong_lwarn_flag = BOOLEAN ; chromatic dispersion, high granularity, long link in ps/nm (low warning flag) + dgd_lwarn_flag = BOOLEAN ; differential group delay in ps (low warning flag) + sopmd_lwarn_flag = BOOLEAN ; second order polarization mode dispersion in ps^2 (low warning flag) + soproc_lwarn_flag = BOOLEAN ; state of polarization rate of change in krad/s (low warning flag) + pdl_lwarn_flag = BOOLEAN ; polarization dependent loss in db (low warning flag) + osnr_lwarn_flag = BOOLEAN ; optical signal to noise ratio in db (low warning flag) + esnr_lwarn_flag = BOOLEAN ; electrical signal to noise ratio in db (low warning flag) + cfo_lwarn_flag = BOOLEAN ; carrier frequency offset in Hz (low warning flag) + txcurrpower_lwarn_flag = BOOLEAN ; tx current output power in dbm (low warning flag) + rxtotpower_lwarn_flag = BOOLEAN ; rx total power in dbm (low warning flag) + rxsigpower_lwarn_flag = BOOLEAN; rx signal power in dbm (low warning flag) +``` + +#### 2.2.4 Transceiver VDM flag change count data + +##### 2.2.4.1 Transceiver VDM high alarm flag change count data + +The `TRANSCEIVER_VDM_HALARM_FLAG_CHANGE_COUNT` table stores the flag change count for high alarm flag for the VDM data. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ;Defines Transceiver VDM high alarm flag change count for a port + key = TRANSCEIVER_VDM_HALARM_FLAG_CHANGE_COUNT|ifname + ; field = value + esnr_media_input_halarm_chg_cnt{lane_num} = BOOLEAN ; eSNR high alarm flag change count for media input + esnr_host_input_halarm_chg_cnt{lane_num} = BOOLEAN ; eSNR high alarm flag change count for host input + pam4_level_transition_media_input_halarm_chg_cnt{lane_num} = BOOLEAN ; PAM4 level transition high alarm flag change count for media input + pam4_level_transition_host_input_halarm_chg_cnt{lane_num} = BOOLEAN ; PAM4 level transition high alarm flag change count for host input + prefec_ber_min_media_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER minimum high alarm flag change count for media input + prefec_ber_max_media_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER maximum high alarm flag change count for media input + prefec_ber_avg_media_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER average high alarm flag change count for media input + prefec_ber_curr_media_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER current high alarm flag change count for media input + prefec_ber_min_host_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER minimum high alarm flag change count for host input + prefec_ber_max_host_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER maximum high alarm flag change count for host input + prefec_ber_avg_host_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER average high alarm flag change count for host input + prefec_ber_curr_host_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER current high alarm flag change count for host input + errored_frames_min_media_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames minimum high alarm flag change count for media input + errored_frames_max_media_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames maximum high alarm flag change count for media input + errored_frames_avg_media_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames average high alarm flag change count for media input + errored_frames_curr_media_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames current high alarm flag change count for media input + errored_frames_min_host_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames minimum high alarm flag change count for host input + errored_frames_max_host_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames maximum high alarm flag change count for host input + errored_frames_avg_host_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames average high alarm flag change count for host input + errored_frames_curr_host_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames current high alarm flag change count for host input + + ;C-CMIS specific fields + biasxi_halarm_chg_cnt = BOOLEAN ; modulator bias xi in percentage (high alarm flag change count) + biasxq_halarm_chg_cnt = BOOLEAN ; modulator bias xq in percentage (high alarm flag change count) + biasxp_halarm_chg_cnt = BOOLEAN ; modulator bias xp in percentage (high alarm flag change count) + biasyi_halarm_chg_cnt = BOOLEAN ; modulator bias yi in percentage (high alarm flag change count) + biasyq_halarm_chg_cnt = BOOLEAN ; modulator bias yq in percentage (high alarm flag change count) + biasyp_halarm_chg_cnt = BOOLEAN ; modulator bias yq in percentage (high alarm flag change count) + cdshort_halarm_chg_cnt = BOOLEAN ; chromatic dispersion, high granularity, short link in ps/nm (high alarm flag change count) + cdlong_halarm_chg_cnt = BOOLEAN ; chromatic dispersion, high granularity, long link in ps/nm (high alarm flag change count) + dgd_halarm_chg_cnt = BOOLEAN ; differential group delay in ps (high alarm flag change count) + sopmd_halarm_chg_cnt = BOOLEAN ; second order polarization mode dispersion in ps^2 (high alarm flag change count) + soproc_halarm_chg_cnt = BOOLEAN ; state of polarization rate of change in krad/s (high alarm flag change count) + pdl_halarm_chg_cnt = BOOLEAN ; polarization dependent loss in db (high alarm flag change count) + osnr_halarm_chg_cnt = BOOLEAN ; optical signal to noise ratio in db (high alarm flag change count) + esnr_halarm_chg_cnt = BOOLEAN ; electrical signal to noise ratio in db (high alarm flag change count) + cfo_halarm_chg_cnt = BOOLEAN ; carrier frequency offset in Hz (high alarm flag change count) + txcurrpower_halarm_chg_cnt = BOOLEAN ; tx current output power in dbm (high alarm flag change count) + rxtotpower_halarm_chg_cnt = BOOLEAN ; rx total power in dbm (high alarm flag change count) + rxsigpower_halarm_chg_cnt = BOOLEAN; rx signal power in dbm (high alarm flag change count) +``` + +###### 2.2.4.2 Transceiver VDM low alarm flag change count data + +The `TRANSCEIVER_VDM_LALARM_FLAG_CHANGE_COUNT` table stores the flag change count for low alarm flag for the VDM data. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ;Defines Transceiver VDM low alarm flag change count for a port + key = TRANSCEIVER_VDM_LALARM_FLAG_CHANGE_COUNT|ifname + ; field = value + esnr_media_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; eSNR low alarm flag change count for media input + esnr_host_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; eSNR low alarm flag change count for host input + pam4_level_transition_media_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; PAM4 level transition low alarm flag change count for media input + pam4_level_transition_host_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; PAM4 level transition low alarm flag change count for host input + prefec_ber_min_media_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER minimum low alarm flag change count for media input + prefec_ber_max_media_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER maximum low alarm flag change count for media input + prefec_ber_avg_media_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER average low alarm flag change count for media input + prefec_ber_curr_media_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER current low alarm flag change count for media input + prefec_ber_min_host_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER minimum low alarm flag change count for host input + prefec_ber_max_host_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER maximum low alarm flag change count for host input + prefec_ber_avg_host_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER average low alarm flag change count for host input + prefec_ber_curr_host_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER current low alarm flag change count for host input + errored_frames_min_media_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames minimum low alarm flag change count for media input + errored_frames_max_media_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames maximum low alarm flag change count for media input + errored_frames_avg_media_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames average low alarm flag change count for media input + errored_frames_curr_media_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames current low alarm flag change count for media input + errored_frames_min_host_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames minimum low alarm flag change count for host input + errored_frames_max_host_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames maximum low alarm flag change count for host input + errored_frames_avg_host_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames average low alarm flag change count for host input + errored_frames_curr_host_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames current low alarm flag change count for host input + + ;C-CMIS specific fields + biasxi_lalarm_chg_cnt = BOOLEAN ; modulator bias xi in percentage (low alarm flag change count) + biasxq_lalarm_chg_cnt = BOOLEAN ; modulator bias xq in percentage (low alarm flag change count) + biasxp_lalarm_chg_cnt = BOOLEAN ; modulator bias xp in percentage (low alarm flag change count) + biasyi_lalarm_chg_cnt = BOOLEAN ; modulator bias yi in percentage (low alarm flag change count) + biasyq_lalarm_chg_cnt = BOOLEAN ; modulator bias yq in percentage (low alarm flag change count) + biasyp_lalarm_chg_cnt = BOOLEAN ; modulator bias yq in percentage (low alarm flag change count) + cdshort_lalarm_chg_cnt = BOOLEAN ; chromatic dispersion, low granularity, short link in ps/nm (low alarm flag change count) + cdlong_lalarm_chg_cnt = BOOLEAN ; chromatic dispersion, low granularity, long link in ps/nm (low alarm flag change count) + dgd_lalarm_chg_cnt = BOOLEAN ; differential group delay in ps (low alarm flag change count) + sopmd_lalarm_chg_cnt = BOOLEAN ; second order polarization mode dispersion in ps^2 (low alarm flag change count) + soproc_lalarm_chg_cnt = BOOLEAN ; state of polarization rate of change in krad/s (low alarm flag change count) + pdl_lalarm_chg_cnt = BOOLEAN ; polarization dependent loss in db (low alarm flag change count) + osnr_lalarm_chg_cnt = BOOLEAN ; optical signal to noise ratio in db (low alarm flag change count) + esnr_lalarm_chg_cnt = BOOLEAN ; electrical signal to noise ratio in db (low alarm flag change count) + cfo_lalarm_chg_cnt = BOOLEAN ; carrier frequency offset in Hz (low alarm flag change count) + txcurrpower_lalarm_chg_cnt = BOOLEAN ; tx current output power in dbm (low alarm flag change count) + rxtotpower_lalarm_chg_cnt = BOOLEAN ; rx total power in dbm (low alarm flag change count) + rxsigpower_lalarm_chg_cnt = BOOLEAN; rx signal power in dbm (low alarm flag change count) +``` + +##### 2.2.4.3 Transceiver VDM high warning flag change count data + +The `TRANSCEIVER_VDM_HWARN_FLAG_CHANGE_COUNT` table stores the flag change count for high warning flag for the VDM data. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ;Defines Transceiver VDM high warning flag change count for a port + key = TRANSCEIVER_VDM_HWARN_FLAG_CHANGE_COUNT|ifname + ; field = value + esnr_media_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; eSNR high warning flag change count for media input + esnr_host_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; eSNR high warning flag change count for host input + pam4_level_transition_media_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; PAM4 level transition high warning flag change count for media input + pam4_level_transition_host_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; PAM4 level transition high warning flag change count for host input + prefec_ber_min_media_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER minimum high warning flag change count for media input + prefec_ber_max_media_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER maximum high warning flag change count for media input + prefec_ber_avg_media_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER average high warning flag change count for media input + prefec_ber_curr_media_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER current high warning flag change count for media input + prefec_ber_min_host_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER minimum high warning flag change count for host input + prefec_ber_max_host_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER maximum high warning flag change count for host input + prefec_ber_avg_host_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER average high warning flag change count for host input + prefec_ber_curr_host_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER current high warning flag change count for host input + errored_frames_min_media_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames minimum high warning flag change count for media input + errored_frames_max_media_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames maximum high warning flag change count for media input + errored_frames_avg_media_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames average high warning flag change count for media input + errored_frames_curr_media_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames current high warning flag change count for media input + errored_frames_min_host_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames minimum high warning flag change count for host input + errored_frames_max_host_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames maximum high warning flag change count for host input + errored_frames_avg_host_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames average high warning flag change count for host input + errored_frames_curr_host_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames current high warning flag change count for host input + + ;C-CMIS specific fields + biasxi_hwarn_chg_cnt = BOOLEAN ; modulator bias xi in percentage (high warning flag change count) + biasxq_hwarn_chg_cnt = BOOLEAN ; modulator bias xq in percentage (high warning flag change count) + biasxp_hwarn_chg_cnt = BOOLEAN ; modulator bias xp in percentage (high warning flag change count) + biasyi_hwarn_chg_cnt = BOOLEAN ; modulator bias yi in percentage (high warning flag change count) + biasyq_hwarn_chg_cnt = BOOLEAN ; modulator bias yq in percentage (high warning flag change count) + biasyp_hwarn_chg_cnt = BOOLEAN ; modulator bias yq in percentage (high warning flag change count) + cdshort_hwarn_chg_cnt = BOOLEAN ; chromatic dispersion, low granularity, short link in ps/nm (high warning flag change count) + cdlong_hwarn_chg_cnt = BOOLEAN ; chromatic dispersion, low granularity, long link in ps/nm (high warning flag change count) + dgd_hwarn_chg_cnt = BOOLEAN ; differential group delay in ps (high warning flag change count) + sopmd_hwarn_chg_cnt = BOOLEAN ; second order polarization mode dispersion in ps^2 (high warning flag change count) + soproc_hwarn_chg_cnt = BOOLEAN ; state of polarization rate of change in krad/s (high warning flag change count) + pdl_hwarn_chg_cnt = BOOLEAN ; polarization dependent loss in db (high warning flag change count) + osnr_hwarn_chg_cnt = BOOLEAN ; optical signal to noise ratio in db (high warning flag change count) + esnr_hwarn_chg_cnt = BOOLEAN ; electrical signal to noise ratio in db (high warning flag change count) + cfo_hwarn_chg_cnt = BOOLEAN ; carrier frequency offset in Hz (high warning flag change count) + txcurrpower_hwarn_chg_cnt = BOOLEAN ; tx current output power in dbm (high warning flag change count) + rxtotpower_hwarn_chg_cnt = BOOLEAN ; rx total power in dbm (high warning flag change count) + rxsigpower_hwarn_chg_cnt = BOOLEAN; rx signal power in dbm (high warning flag change count) +``` + +##### 2.2.4.4 Transceiver VDM low warning flag change count data + +The `TRANSCEIVER_VDM_LWARN_FLAG_CHANGE_COUNT` table stores the flag change count for low warning flag for the VDM data. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ;Defines Transceiver VDM low warning flag change count for a port + key = TRANSCEIVER_VDM_LWARN_FLAG_CHANGE_COUNT|ifname + ; field = value + esnr_media_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; eSNR low warning flag change count for media input + esnr_host_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; eSNR low warning flag change count for host input + pam4_level_transition_media_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; PAM4 level transition low warning flag change count for media input + pam4_level_transition_host_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; PAM4 level transition low warning flag change count for host input + prefec_ber_min_media_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER minimum low warning flag change count for media input + prefec_ber_max_media_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER maximum low warning flag change count for media input + prefec_ber_avg_media_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER average low warning flag change count for media input + prefec_ber_curr_media_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER current low warning flag change count for media input + prefec_ber_min_host_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER minimum low warning flag change count for host input + prefec_ber_max_host_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER maximum low warning flag change count for host input + prefec_ber_avg_host_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER average low warning flag change count for host input + prefec_ber_curr_host_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER current low warning flag change count for host input + errored_frames_min_media_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames minimum low warning flag change count for media input + errored_frames_max_media_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames maximum low warning flag change count for media input + errored_frames_avg_media_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames average low warning flag change count for media input + errored_frames_curr_media_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames current low warning flag change count for media input + errored_frames_min_host_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames minimum low warning flag change count for host input + errored_frames_max_host_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames maximum low warning flag change count for host input + errored_frames_avg_host_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames average low warning flag change count for host input + errored_frames_curr_host_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames current low warning flag change count for host input + + ;C-CMIS specific fields + biasxi_lwarn_chg_cnt = BOOLEAN ; modulator bias xi in percentage (low warning flag change count) + biasxq_lwarn_chg_cnt = BOOLEAN ; modulator bias xq in percentage (low warning flag change count) + biasxp_lwarn_chg_cnt = BOOLEAN ; modulator bias xp in percentage (low warning flag change count) + biasyi_lwarn_chg_cnt = BOOLEAN ; modulator bias yi in percentage (low warning flag change count) + biasyq_lwarn_chg_cnt = BOOLEAN ; modulator bias yq in percentage (low warning flag change count) + biasyp_lwarn_chg_cnt = BOOLEAN ; modulator bias yq in percentage (low warning flag change count) + cdshort_lwarn_chg_cnt = BOOLEAN ; chromatic dispersion, low granularity, short link in ps/nm (low warning flag change count) + cdlong_lwarn_chg_cnt = BOOLEAN ; chromatic dispersion, low granularity, long link in ps/nm (low warning flag change count) + dgd_lwarn_chg_cnt = BOOLEAN ; differential group delay in ps (low warning flag change count) + sopmd_lwarn_chg_cnt = BOOLEAN ; second order polarization mode dispersion in ps^2 (low warning flag change count) + soproc_lwarn_chg_cnt = BOOLEAN ; state of polarization rate of change in krad/s (low warning flag change count) + pdl_lwarn_chg_cnt = BOOLEAN ; polarization dependent loss in db (low warning flag change count) + osnr_lwarn_chg_cnt = BOOLEAN ; optical signal to noise ratio in db (low warning flag change count) + esnr_lwarn_chg_cnt = BOOLEAN ; electrical signal to noise ratio in db (low warning flag change count) + cfo_lwarn_chg_cnt = BOOLEAN ; carrier frequency offset in Hz (low warning flag change count) + txcurrpower_lwarn_chg_cnt = BOOLEAN ; tx current output power in dbm (low warning flag change count) + rxtotpower_lwarn_chg_cnt = BOOLEAN ; rx total power in dbm (low warning flag change count) + rxsigpower_lwarn_chg_cnt = BOOLEAN; rx signal power in dbm (low warning flag change count) +``` + +#### 2.2.5 Transceiver VDM flag time set data + +##### 2.2.5.1 Transceiver VDM high alarm flag time set data + +The `TRANSCEIVER_VDM_HALARM_SET_TIME` table stores the flag time set for the VDM high alarm flag. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ;Defines Transceiver VDM high alarm last set time for a port + key = TRANSCEIVER_VDM_HALARM_SET_TIME|ifname + ; field = value + esnr_media_input_halarm_last_set_time{lane_num} = STR ; eSNR high alarm last set time for media input + esnr_host_input_halarm_last_set_time{lane_num} = STR ; eSNR high alarm last set time for host input + pam4_level_transition_media_input_halarm_last_set_time{lane_num} = STR ; PAM4 level transition high alarm last set time for media input + pam4_level_transition_host_input_halarm_last_set_time{lane_num} = STR ; PAM4 level transition high alarm last set time for host input + prefec_ber_min_media_input_halarm_last_set_time{lane_num} = STR ; Pre-FEC BER minimum high alarm last set time for media input + prefec_ber_max_media_input_halarm_last_set_time{lane_num} = STR ; Pre-FEC BER maximum high alarm last set time for media input + prefec_ber_avg_media_input_halarm_last_set_time{lane_num} = STR ; Pre-FEC BER average high alarm last set time for media input + prefec_ber_curr_media_input_halarm_last_set_time{lane_num} = STR ; Pre-FEC BER current high alarm last set time for media input + prefec_ber_min_host_input_halarm_last_set_time{lane_num} = STR ; Pre-FEC BER minimum high alarm last set time for host input + prefec_ber_max_host_input_halarm_last_set_time{lane_num} = STR ; Pre-FEC BER maximum high alarm last set time for host input + prefec_ber_avg_host_input_halarm_last_set_time{lane_num} = STR ; Pre-FEC BER average high alarm last set time for host input + prefec_ber_curr_host_input_halarm_last_set_time{lane_num} = STR ; Pre-FEC BER current high alarm last set time for host input + errored_frames_min_media_input_halarm_last_set_time{lane_num} = STR ; Errored frames minimum high alarm last set time for media input + errored_frames_max_media_input_halarm_last_set_time{lane_num} = STR ; Errored frames maximum high alarm last set time for media input + errored_frames_avg_media_input_halarm_last_set_time{lane_num} = STR ; Errored frames average high alarm last set time for media input + errored_frames_curr_media_input_halarm_last_set_time{lane_num} = STR ; Errored frames current high alarm last set time for media input + errored_frames_min_host_input_halarm_last_set_time{lane_num} = STR ; Errored frames minimum high alarm last set time for host input + errored_frames_max_host_input_halarm_last_set_time{lane_num} = STR ; Errored frames maximum high alarm last set time for host input + errored_frames_avg_host_input_halarm_last_set_time{lane_num} = STR ; Errored frames average high alarm last set time for host input + errored_frames_curr_host_input_halarm_last_set_time{lane_num} = STR ; Errored frames current high alarm last set time for host input + + ;C-CMIS specific fields + biasxi_halarm_last_set_time = STR ; modulator bias xi in percentage (high alarm last set time) + biasxq_halarm_last_set_time = STR ; modulator bias xq in percentage (high alarm last set time) + biasxp_halarm_last_set_time = STR ; modulator bias xp in percentage (high alarm last set time) + biasyi_halarm_last_set_time = STR ; modulator bias yi in percentage (high alarm last set time) + biasyq_halarm_last_set_time = STR ; modulator bias yq in percentage (high alarm last set time) + biasyp_halarm_last_set_time = STR ; modulator bias yq in percentage (high alarm last set time) + cdshort_halarm_last_set_time = STR ; chromatic dispersion, high granularity, short link in ps/nm (high alarm last set time) + cdlong_halarm_last_set_time = STR ; chromatic dispersion, high granularity, long link in ps/nm (high alarm last set time) + dgd_halarm_last_set_time = STR ; differential group delay in ps (high alarm last set time) + sopmd_halarm_last_set_time = STR ; second order polarization mode dispersion in ps^2 (high alarm last set time) + soproc_halarm_last_set_time = STR ; state of polarization rate of change in krad/s (high alarm last set time) + pdl_halarm_last_set_time = STR ; polarization dependent loss in db (high alarm last set time) + osnr_halarm_last_set_time = STR ; optical signal to noise ratio in db (high alarm last set time) + esnr_halarm_last_set_time = STR ; electrical signal to noise ratio in db (high alarm last set time) + cfo_halarm_last_set_time = STR ; carrier frequency offset in Hz (high alarm last set time) + txcurrpower_halarm_last_set_time = STR ; tx current output power in dbm (high alarm last set time) + rxtotpower_halarm_last_set_time = STR ; rx total power in dbm (high alarm last set time) + rxsigpower_halarm_last_set_time = STR; rx signal power in dbm (high alarm last set time) +``` + +##### 2.2.5.2 Transceiver VDM low alarm flag time set data + +The `TRANSCEIVER_VDM_LALARM_SET_TIME` table stores the flag time set for the VDM low alarm flag. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ;Defines Transceiver VDM low alarm last set time for a port + key = TRANSCEIVER_VDM_LALARM_SET_TIME|ifname + ; field = value + esnr_media_input_lalarm_last_set_time{lane_num} = STR ; eSNR low alarm last set time for media input + esnr_host_input_lalarm_last_set_time{lane_num} = STR ; eSNR low alarm last set time for host input + pam4_level_transition_media_input_lalarm_last_set_time{lane_num} = STR ; PAM4 level transition low alarm last set time for media input + pam4_level_transition_host_input_lalarm_last_set_time{lane_num} = STR ; PAM4 level transition low alarm last set time for host input + prefec_ber_min_media_input_lalarm_last_set_time{lane_num} = STR ; Pre-FEC BER minimum low alarm last set time for media input + prefec_ber_max_media_input_lalarm_last_set_time{lane_num} = STR ; Pre-FEC BER maximum low alarm last set time for media input + prefec_ber_avg_media_input_lalarm_last_set_time{lane_num} = STR ; Pre-FEC BER average low alarm last set time for media input + prefec_ber_curr_media_input_lalarm_last_set_time{lane_num} = STR ; Pre-FEC BER current low alarm last set time for media input + prefec_ber_min_host_input_lalarm_last_set_time{lane_num} = STR ; Pre-FEC BER minimum low alarm last set time for host input + prefec_ber_max_host_input_lalarm_last_set_time{lane_num} = STR ; Pre-FEC BER maximum low alarm last set time for host input + prefec_ber_avg_host_input_lalarm_last_set_time{lane_num} = STR ; Pre-FEC BER average low alarm last set time for host input + prefec_ber_curr_host_input_lalarm_last_set_time{lane_num} = STR ; Pre-FEC BER current low alarm last set time for host input + errored_frames_min_media_input_lalarm_last_set_time{lane_num} = STR ; Errored frames minimum low alarm last set time for media input + errored_frames_max_media_input_lalarm_last_set_time{lane_num} = STR ; Errored frames maximum low alarm last set time for media input + errored_frames_avg_media_input_lalarm_last_set_time{lane_num} = STR ; Errored frames average low alarm last set time for media input + errored_frames_curr_media_input_lalarm_last_set_time{lane_num} = STR ; Errored frames current low alarm last set time for media input + errored_frames_min_host_input_lalarm_last_set_time{lane_num} = STR ; Errored frames minimum low alarm last set time for host input + errored_frames_max_host_input_lalarm_last_set_time{lane_num} = STR ; Errored frames maximum low alarm last set time for host input + errored_frames_avg_host_input_lalarm_last_set_time{lane_num} = STR ; Errored frames average low alarm last set time for host input + errored_frames_curr_host_input_lalarm_last_set_time{lane_num} = STR ; Errored frames current low alarm last set time for host input + + ;C-CMIS specific fields + biasxi_lalarm_last_set_time = STR ; modulator bias xi in percentage (low alarm last set time) + biasxq_lalarm_last_set_time = STR ; modulator bias xq in percentage (low alarm last set time) + biasxp_lalarm_last_set_time = STR ; modulator bias xp in percentage (low alarm last set time) + biasyi_lalarm_last_set_time = STR ; modulator bias yi in percentage (low alarm last set time) + biasyq_lalarm_last_set_time = STR ; modulator bias yq in percentage (low alarm last set time) + biasyp_lalarm_last_set_time = STR ; modulator bias yq in percentage (low alarm last set time) + cdshort_lalarm_last_set_time = STR ; chromatic dispersion, low granularity, short link in ps/nm (low alarm last set time) + cdlong_lalarm_last_set_time = STR ; chromatic dispersion, low granularity, long link in ps/nm (low alarm last set time) + dgd_lalarm_last_set_time = STR ; differential group delay in ps (low alarm last set time) + sopmd_lalarm_last_set_time = STR ; second order polarization mode dispersion in ps^2 (low alarm last set time) + soproc_lalarm_last_set_time = STR ; state of polarization rate of change in krad/s (low alarm last set time) + pdl_lalarm_last_set_time = STR ; polarization dependent loss in db (low alarm last set time) + osnr_lalarm_last_set_time = STR ; optical signal to noise ratio in db (low alarm last set time) + esnr_lalarm_last_set_time = STR ; electrical signal to noise ratio in db (low alarm last set time) + cfo_lalarm_last_set_time = STR ; carrier frequency offset in Hz (low alarm last set time) + txcurrpower_lalarm_last_set_time = STR ; tx current output power in dbm (low alarm last set time) + rxtotpower_lalarm_last_set_time = STR ; rx total power in dbm (low alarm last set time) + rxsigpower_lalarm_last_set_time = STR; rx signal power in dbm (low alarm last set time) +``` + +##### 2.2.5.3 Transceiver VDM high warning flag time set data + +The `TRANSCEIVER_VDM_HWARN_SET_TIME` table stores the flag time set for the VDM high warning flag. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ;Defines Transceiver VDM high warning last set time for a port + key = TRANSCEIVER_VDM_HWARN_SET_TIME|ifname + ; field = value + esnr_media_input_hwarn_last_set_time{lane_num} = STR ; eSNR high warning last set time for media input + esnr_host_input_hwarn_last_set_time{lane_num} = STR ; eSNR high warning last set time for host input + pam4_level_transition_media_input_hwarn_last_set_time{lane_num} = STR ; PAM4 level transition high warning last set time for media input + pam4_level_transition_host_input_hwarn_last_set_time{lane_num} = STR ; PAM4 level transition high warning last set time for host input + prefec_ber_min_media_input_hwarn_last_set_time{lane_num} = STR ; Pre-FEC BER minimum high warning last set time for media input + prefec_ber_max_media_input_hwarn_last_set_time{lane_num} = STR ; Pre-FEC BER maximum high warning last set time for media input + prefec_ber_avg_media_input_hwarn_last_set_time{lane_num} = STR ; Pre-FEC BER average high warning last set time for media input + prefec_ber_curr_media_input_hwarn_last_set_time{lane_num} = STR ; Pre-FEC BER current high warning last set time for media input + prefec_ber_min_host_input_hwarn_last_set_time{lane_num} = STR ; Pre-FEC BER minimum high warning last set time for host input + prefec_ber_max_host_input_hwarn_last_set_time{lane_num} = STR ; Pre-FEC BER maximum high warning last set time for host input + prefec_ber_avg_host_input_hwarn_last_set_time{lane_num} = STR ; Pre-FEC BER average high warning last set time for host input + prefec_ber_curr_host_input_hwarn_last_set_time{lane_num} = STR ; Pre-FEC BER current high warning last set time for host input + errored_frames_min_media_input_hwarn_last_set_time{lane_num} = STR ; Errored frames minimum high warning last set time for media input + errored_frames_max_media_input_hwarn_last_set_time{lane_num} = STR ; Errored frames maximum high warning last set time for media input + errored_frames_avg_media_input_hwarn_last_set_time{lane_num} = STR ; Errored frames average high warning last set time for media input + errored_frames_curr_media_input_hwarn_last_set_time{lane_num} = STR ; Errored frames current high warning last set time for media input + errored_frames_min_host_input_hwarn_last_set_time{lane_num} = STR ; Errored frames minimum high warning last set time for host input + errored_frames_max_host_input_hwarn_last_set_time{lane_num} = STR ; Errored frames maximum high warning last set time for host input + errored_frames_avg_host_input_hwarn_last_set_time{lane_num} = STR ; Errored frames average high warning last set time for host input + errored_frames_curr_host_input_hwarn_last_set_time{lane_num} = STR ; Errored frames current high warning last set time for host input + + ;C-CMIS specific fields + biasxi_hwarn_last_set_time = STR ; modulator bias xi in percentage (high warning last set time) + biasxq_hwarn_last_set_time = STR ; modulator bias xq in percentage (high warning last set time) + biasxp_hwarn_last_set_time = STR ; modulator bias xp in percentage (high warning last set time) + biasyi_hwarn_last_set_time = STR ; modulator bias yi in percentage (high warning last set time) + biasyq_hwarn_last_set_time = STR ; modulator bias yq in percentage (high warning last set time) + biasyp_hwarn_last_set_time = STR ; modulator bias yq in percentage (high warning last set time) + cdshort_hwarn_last_set_time = STR ; chromatic dispersion, low granularity, short link in ps/nm (high warning last set time) + cdlong_hwarn_last_set_time = STR ; chromatic dispersion, low granularity, long link in ps/nm (high warning last set time) + dgd_hwarn_last_set_time = STR ; differential group delay in ps (high warning last set time) + sopmd_hwarn_last_set_time = STR ; second order polarization mode dispersion in ps^2 (high warning last set time) + soproc_hwarn_last_set_time = STR ; state of polarization rate of change in krad/s (high warning last set time) + pdl_hwarn_last_set_time = STR ; polarization dependent loss in db (high warning last set time) + osnr_hwarn_last_set_time = STR ; optical signal to noise ratio in db (high warning last set time) + esnr_hwarn_last_set_time = STR ; electrical signal to noise ratio in db (high warning last set time) + cfo_hwarn_last_set_time = STR ; carrier frequency offset in Hz (high warning last set time) + txcurrpower_hwarn_last_set_time = STR ; tx current output power in dbm (high warning last set time) + rxtotpower_hwarn_last_set_time = STR ; rx total power in dbm (high warning last set time) + rxsigpower_hwarn_last_set_time = STR; rx signal power in dbm (high warning last set time) +``` + +##### 2.2.5.4 Transceiver VDM low warning flag time set data + +The `TRANSCEIVER_VDM_LWARN_SET_TIME` table stores the flag time set for the VDM low warning flag. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ;Defines Transceiver VDM low warning last set time for a port + key = TRANSCEIVER_VDM_LWARN_SET_TIME|ifname + ; field = value + esnr_media_input_lwarn_last_set_time{lane_num} = STR ; eSNR low warning last set time for media input + esnr_host_input_lwarn_last_set_time{lane_num} = STR ; eSNR low warning last set time for host input + pam4_level_transition_media_input_lwarn_last_set_time{lane_num} = STR ; PAM4 level transition low warning last set time for media input + pam4_level_transition_host_input_lwarn_last_set_time{lane_num} = STR ; PAM4 level transition low warning last set time for host input + prefec_ber_min_media_input_lwarn_last_set_time{lane_num} = STR ; Pre-FEC BER minimum low warning last set time for media input + prefec_ber_max_media_input_lwarn_last_set_time{lane_num} = STR ; Pre-FEC BER maximum low warning last set time for media input + prefec_ber_avg_media_input_lwarn_last_set_time{lane_num} = STR ; Pre-FEC BER average low warning last set time for media input + prefec_ber_curr_media_input_lwarn_last_set_time{lane_num} = STR ; Pre-FEC BER current low warning last set time for media input + prefec_ber_min_host_input_lwarn_last_set_time{lane_num} = STR ; Pre-FEC BER minimum low warning last set time for host input + prefec_ber_max_host_input_lwarn_last_set_time{lane_num} = STR ; Pre-FEC BER maximum low warning last set time for host input + prefec_ber_avg_host_input_lwarn_last_set_time{lane_num} = STR ; Pre-FEC BER average low warning last set time for host input + prefec_ber_curr_host_input_lwarn_last_set_time{lane_num} = STR ; Pre-FEC BER current low warning last set time for host input + errored_frames_min_media_input_lwarn_last_set_time{lane_num} = STR ; Errored frames minimum low warning last set time for media input + errored_frames_max_media_input_lwarn_last_set_time{lane_num} = STR ; Errored frames maximum low warning last set time for media input + errored_frames_avg_media_input_lwarn_last_set_time{lane_num} = STR ; Errored frames average low warning last set time for media input + errored_frames_curr_media_input_lwarn_last_set_time{lane_num} = STR ; Errored frames current low warning last set time for media input + errored_frames_min_host_input_lwarn_last_set_time{lane_num} = STR ; Errored frames minimum low warning last set time for host input + errored_frames_max_host_input_lwarn_last_set_time{lane_num} = STR ; Errored frames maximum low warning last set time for host input + errored_frames_avg_host_input_lwarn_last_set_time{lane_num} = STR ; Errored frames average low warning last set time for host input + errored_frames_curr_host_input_lwarn_last_set_time{lane_num} = STR ; Errored frames current low warning last set time for host input + + ;C-CMIS specific fields + biasxi_lwarn_last_set_time = STR ; modulator bias xi in percentage (low warning last set time) + biasxq_lwarn_last_set_time = STR ; modulator bias xq in percentage (low warning last set time) + biasxp_lwarn_last_set_time = STR ; modulator bias xp in percentage (low warning last set time) + biasyi_lwarn_last_set_time = STR ; modulator bias yi in percentage (low warning last set time) + biasyq_lwarn_last_set_time = STR ; modulator bias yq in percentage (low warning last set time) + biasyp_lwarn_last_set_time = STR ; modulator bias yq in percentage (low warning last set time) + cdshort_lwarn_last_set_time = STR ; chromatic dispersion, low granularity, short link in ps/nm (low warning last set time) + cdlong_lwarn_last_set_time = STR ; chromatic dispersion, low granularity, long link in ps/nm (low warning last set time) + dgd_lwarn_last_set_time = STR ; differential group delay in ps (low warning last set time) + sopmd_lwarn_last_set_time = STR ; second order polarization mode dispersion in ps^2 (low warning last set time) + soproc_lwarn_last_set_time = STR ; state of polarization rate of change in krad/s (low warning last set time) + pdl_lwarn_last_set_time = STR ; polarization dependent loss in db (low warning last set time) + osnr_lwarn_last_set_time = STR ; optical signal to noise ratio in db (low warning last set time) + esnr_lwarn_last_set_time = STR ; electrical signal to noise ratio in db (low warning last set time) + cfo_lwarn_last_set_time = STR ; carrier frequency offset in Hz (low warning last set time) + txcurrpower_lwarn_last_set_time = STR ; tx current output power in dbm (low warning last set time) + rxtotpower_lwarn_last_set_time = STR ; rx total power in dbm (low warning last set time) + rxsigpower_lwarn_last_set_time = STR; rx signal power in dbm (low warning last set time) +``` + +#### 2.2.6 Transceiver VDM flag time clear data + +##### 2.2.6.1 Transceiver VDM high alarm flag time clear data + +The `TRANSCEIVER_VDM_HALARM_CLEAR_TIME` table stores the flag time clear for the VDM high alarm flag. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ;Defines Transceiver VDM high alarm last clear time for a port + key = TRANSCEIVER_VDM_HALARM_CLEAR_TIME|ifname + ; field = value + esnr_media_input_halarm_last_clear_time{lane_num} = STR ; eSNR high alarm last clear time for media input + esnr_host_input_halarm_last_clear_time{lane_num} = STR ; eSNR high alarm last clear time for host input + pam4_level_transition_media_input_halarm_last_clear_time{lane_num} = STR ; PAM4 level transition high alarm last clear time for media input + pam4_level_transition_host_input_halarm_last_clear_time{lane_num} = STR ; PAM4 level transition high alarm last clear time for host input + prefec_ber_min_media_input_halarm_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum high alarm last clear time for media input + prefec_ber_max_media_input_halarm_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum high alarm last clear time for media input + prefec_ber_avg_media_input_halarm_last_clear_time{lane_num} = STR ; Pre-FEC BER average high alarm last clear time for media input + prefec_ber_curr_media_input_halarm_last_clear_time{lane_num} = STR ; Pre-FEC BER current high alarm last clear time for media input + prefec_ber_min_host_input_halarm_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum high alarm last clear time for host input + prefec_ber_max_host_input_halarm_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum high alarm last clear time for host input + prefec_ber_avg_host_input_halarm_last_clear_time{lane_num} = STR ; Pre-FEC BER average high alarm last clear time for host input + prefec_ber_curr_host_input_halarm_last_clear_time{lane_num} = STR ; Pre-FEC BER current high alarm last clear time for host input + errored_frames_min_media_input_halarm_last_clear_time{lane_num} = STR ; Errored frames minimum high alarm last clear time for media input + errored_frames_max_media_input_halarm_last_clear_time{lane_num} = STR ; Errored frames maximum high alarm last clear time for media input + errored_frames_avg_media_input_halarm_last_clear_time{lane_num} = STR ; Errored frames average high alarm last clear time for media input + errored_frames_curr_media_input_halarm_last_clear_time{lane_num} = STR ; Errored frames current high alarm last clear time for media input + errored_frames_min_host_input_halarm_last_clear_time{lane_num} = STR ; Errored frames minimum high alarm last clear time for host input + errored_frames_max_host_input_halarm_last_clear_time{lane_num} = STR ; Errored frames maximum high alarm last clear time for host input + errored_frames_avg_host_input_halarm_last_clear_time{lane_num} = STR ; Errored frames average high alarm last clear time for host input + errored_frames_curr_host_input_halarm_last_clear_time{lane_num} = STR ; Errored frames current high alarm last clear time for host input + + ;C-CMIS specific fields + biasxi_halarm_last_clear_time = STR ; modulator bias xi in percentage (high alarm last clear time) + biasxq_halarm_last_clear_time = STR ; modulator bias xq in percentage (high alarm last clear time) + biasxp_halarm_last_clear_time = STR ; modulator bias xp in percentage (high alarm last clear time) + biasyi_halarm_last_clear_time = STR ; modulator bias yi in percentage (high alarm last clear time) + biasyq_halarm_last_clear_time = STR ; modulator bias yq in percentage (high alarm last clear time) + biasyp_halarm_last_clear_time = STR ; modulator bias yq in percentage (high alarm last clear time) + cdshort_halarm_last_clear_time = STR ; chromatic dispersion, high granularity, short link in ps/nm (high alarm last clear time) + cdlong_halarm_last_clear_time = STR ; chromatic dispersion, high granularity, long link in ps/nm (high alarm last clear time) + dgd_halarm_last_clear_time = STR ; differential group delay in ps (high alarm last clear time) + sopmd_halarm_last_clear_time = STR ; second order polarization mode dispersion in ps^2 (high alarm last clear time) + soproc_halarm_last_clear_time = STR ; state of polarization rate of change in krad/s (high alarm last clear time) + pdl_halarm_last_clear_time = STR ; polarization dependent loss in db (high alarm last clear time) + osnr_halarm_last_clear_time = STR ; optical signal to noise ratio in db (high alarm last clear time) + esnr_halarm_last_clear_time = STR ; electrical signal to noise ratio in db (high alarm last clear time) + cfo_halarm_last_clear_time = STR ; carrier frequency offset in Hz (high alarm last clear time) + txcurrpower_halarm_last_clear_time = STR ; tx current output power in dbm (high alarm last clear time) + rxtotpower_halarm_last_clear_time = STR ; rx total power in dbm (high alarm last clear time) + rxsigpower_halarm_last_clear_time = STR; rx signal power in dbm (high alarm last clear time) +``` + +##### 2.2.6.2 Transceiver VDM low alarm flag time clear data + +The `TRANSCEIVER_VDM_LALARM_CLEAR_TIME` table stores the flag time clear for the VDM low alarm flag. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ;Defines Transceiver VDM low alarm last clear time for a port + key = TRANSCEIVER_VDM_LALARM_CLEAR_TIME|ifname + ; field = value + esnr_media_input_lalarm_last_clear_time{lane_num} = STR ; eSNR low alarm last clear time for media input + esnr_host_input_lalarm_last_clear_time{lane_num} = STR ; eSNR low alarm last clear time for host input + pam4_level_transition_media_input_lalarm_last_clear_time{lane_num} = STR ; PAM4 level transition low alarm last clear time for media input + pam4_level_transition_host_input_lalarm_last_clear_time{lane_num} = STR ; PAM4 level transition low alarm last clear time for host input + prefec_ber_min_media_input_lalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum low alarm last clear time for media input + prefec_ber_max_media_input_lalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum low alarm last clear time for media input + prefec_ber_avg_media_input_lalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER average low alarm last clear time for media input + prefec_ber_curr_media_input_lalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER current low alarm last clear time for media input + prefec_ber_min_host_input_lalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum low alarm last clear time for host input + prefec_ber_max_host_input_lalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum low alarm last clear time for host input + prefec_ber_avg_host_input_lalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER average low alarm last clear time for host input + prefec_ber_curr_host_input_lalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER current low alarm last clear time for host input + errored_frames_min_media_input_lalarm_last_clear_time{lane_num} = STR ; Errored frames minimum low alarm last clear time for media input + errored_frames_max_media_input_lalarm_last_clear_time{lane_num} = STR ; Errored frames maximum low alarm last clear time for media input + errored_frames_avg_media_input_lalarm_last_clear_time{lane_num} = STR ; Errored frames average low alarm last clear time for media input + errored_frames_curr_media_input_lalarm_last_clear_time{lane_num} = STR ; Errored frames current low alarm last clear time for media input + errored_frames_min_host_input_lalarm_last_clear_time{lane_num} = STR ; Errored frames minimum low alarm last clear time for host input + errored_frames_max_host_input_lalarm_last_clear_time{lane_num} = STR ; Errored frames maximum low alarm last clear time for host input + errored_frames_avg_host_input_lalarm_last_clear_time{lane_num} = STR ; Errored frames average low alarm last clear time for host input + errored_frames_curr_host_input_lalarm_last_clear_time{lane_num} = STR ; Errored frames current low alarm last clear time for host input + + ;C-CMIS specific fields + biasxi_lalarm_last_clear_time = STR ; modulator bias xi in percentage (low alarm last clear time) + biasxq_lalarm_last_clear_time = STR ; modulator bias xq in percentage (low alarm last clear time) + biasxp_lalarm_last_clear_time = STR ; modulator bias xp in percentage (low alarm last clear time) + biasyi_lalarm_last_clear_time = STR ; modulator bias yi in percentage (low alarm last clear time) + biasyq_lalarm_last_clear_time = STR ; modulator bias yq in percentage (low alarm last clear time) + biasyp_lalarm_last_clear_time = STR ; modulator bias yq in percentage (low alarm last clear time) + cdshort_lalarm_last_clear_time = STR ; chromatic dispersion, low granularity, short link in ps/nm (low alarm last clear time) + cdlong_lalarm_last_clear_time = STR ; chromatic dispersion, low granularity, long link in ps/nm (low alarm last clear time) + dgd_lalarm_last_clear_time = STR ; differential group delay in ps (low alarm last clear time) + sopmd_lalarm_last_clear_time = STR ; second order polarization mode dispersion in ps^2 (low alarm last clear time) + soproc_lalarm_last_clear_time = STR ; state of polarization rate of change in krad/s (low alarm last clear time) + pdl_lalarm_last_clear_time = STR ; polarization dependent loss in db (low alarm last clear time) + osnr_lalarm_last_clear_time = STR ; optical signal to noise ratio in db (low alarm last clear time) + esnr_lalarm_last_clear_time = STR ; electrical signal to noise ratio in db (low alarm last clear time) + cfo_lalarm_last_clear_time = STR ; carrier frequency offset in Hz (low alarm last clear time) + txcurrpower_lalarm_last_clear_time = STR ; tx current output power in dbm (low alarm last clear time) + rxtotpower_lalarm_last_clear_time = STR ; rx total power in dbm (low alarm last clear time) + rxsigpower_lalarm_last_clear_time = STR; rx signal power in dbm (low alarm last clear time) +``` + +##### 2.2.6.3 Transceiver VDM high warning flag time clear data + +The `TRANSCEIVER_VDM_HWARN_CLEAR_TIME` table stores the flag time clear for the VDM high warning flag. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ;Defines Transceiver VDM high warning last clear time for a port + key = TRANSCEIVER_VDM_HWARN_CLEAR_TIME|ifname + ; field = value + esnr_media_input_hwarn_last_clear_time{lane_num} = STR ; eSNR high warning last clear time for media input + esnr_host_input_hwarn_last_clear_time{lane_num} = STR ; eSNR high warning last clear time for host input + pam4_level_transition_media_input_hwarn_last_clear_time{lane_num} = STR ; PAM4 level transition high warning last clear time for media input + pam4_level_transition_host_input_hwarn_last_clear_time{lane_num} = STR ; PAM4 level transition high warning last clear time for host input + prefec_ber_min_media_input_hwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum high warning last clear time for media input + prefec_ber_max_media_input_hwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum high warning last clear time for media input + prefec_ber_avg_media_input_hwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER average high warning last clear time for media input + prefec_ber_curr_media_input_hwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER current high warning last clear time for media input + prefec_ber_min_host_input_hwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum high warning last clear time for host input + prefec_ber_max_host_input_hwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum high warning last clear time for host input + prefec_ber_avg_host_input_hwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER average high warning last clear time for host input + prefec_ber_curr_host_input_hwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER current high warning last clear time for host input + errored_frames_min_media_input_hwarn_last_clear_time{lane_num} = STR ; Errored frames minimum high warning last clear time for media input + errored_frames_max_media_input_hwarn_last_clear_time{lane_num} = STR ; Errored frames maximum high warning last clear time for media input + errored_frames_avg_media_input_hwarn_last_clear_time{lane_num} = STR ; Errored frames average high warning last clear time for media input + errored_frames_curr_media_input_hwarn_last_clear_time{lane_num} = STR ; Errored frames current high warning last clear time for media input + errored_frames_min_host_input_hwarn_last_clear_time{lane_num} = STR ; Errored frames minimum high warning last clear time for host input + errored_frames_max_host_input_hwarn_last_clear_time{lane_num} = STR ; Errored frames maximum high warning last clear time for host input + errored_frames_avg_host_input_hwarn_last_clear_time{lane_num} = STR ; Errored frames average high warning last clear time for host input + errored_frames_curr_host_input_hwarn_last_clear_time{lane_num} = STR ; Errored frames current high warning last clear time for host input + + ;C-CMIS specific fields + biasxi_hwarn_last_clear_time = STR ; modulator bias xi in percentage (high warning last clear time) + biasxq_hwarn_last_clear_time = STR ; modulator bias xq in percentage (high warning last clear time) + biasxp_hwarn_last_clear_time = STR ; modulator bias xp in percentage (high warning last clear time) + biasyi_hwarn_last_clear_time = STR ; modulator bias yi in percentage (high warning last clear time) + biasyq_hwarn_last_clear_time = STR ; modulator bias yq in percentage (high warning last clear time) + biasyp_hwarn_last_clear_time = STR ; modulator bias yq in percentage (high warning last clear time) + cdshort_hwarn_last_clear_time = STR ; chromatic dispersion, low granularity, short link in ps/nm (high warning last clear time) + cdlong_hwarn_last_clear_time = STR ; chromatic dispersion, low granularity, long link in ps/nm (high warning last clear time) + dgd_hwarn_last_clear_time = STR ; differential group delay in ps (high warning last clear time) + sopmd_hwarn_last_clear_time = STR ; second order polarization mode dispersion in ps^2 (high warning last clear time) + soproc_hwarn_last_clear_time = STR ; state of polarization rate of change in krad/s (high warning last clear time) + pdl_hwarn_last_clear_time = STR ; polarization dependent loss in db (high warning last clear time) + osnr_hwarn_last_clear_time = STR ; optical signal to noise ratio in db (high warning last clear time) + esnr_hwarn_last_clear_time = STR ; electrical signal to noise ratio in db (high warning last clear time) + cfo_hwarn_last_clear_time = STR ; carrier frequency offset in Hz (high warning last clear time) + txcurrpower_hwarn_last_clear_time = STR ; tx current output power in dbm (high warning last clear time) + rxtotpower_hwarn_last_clear_time = STR ; rx total power in dbm (high warning last clear time) + rxsigpower_hwarn_last_clear_time = STR; rx signal power in dbm (high warning last clear time) +``` + +##### 2.2.6.4 Transceiver VDM low warning flag time clear data + +The `TRANSCEIVER_VDM_LWARN_CLEAR_TIME` table stores the flag time clear for the VDM low warning flag. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ;Defines Transceiver VDM low warning last clear time for a port + key = TRANSCEIVER_VDM_LWARN_CLEAR_TIME|ifname + ; field = value + esnr_media_input_lwarn_last_clear_time{lane_num} = STR ; eSNR low warning last clear time for media input + esnr_host_input_lwarn_last_clear_time{lane_num} = STR ; eSNR low warning last clear time for host input + pam4_level_transition_media_input_lwarn_last_clear_time{lane_num} = STR ; PAM4 level transition low warning last clear time for media input + pam4_level_transition_host_input_lwarn_last_clear_time{lane_num} = STR ; PAM4 level transition low warning last clear time for host input + prefec_ber_min_media_input_lwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum low warning last clear time for media input + prefec_ber_max_media_input_lwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum low warning last clear time for media input + prefec_ber_avg_media_input_lwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER average low warning last clear time for media input + prefec_ber_curr_media_input_lwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER current low warning last clear time for media input + prefec_ber_min_host_input_lwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum low warning last clear time for host input + prefec_ber_max_host_input_lwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum low warning last clear time for host input + prefec_ber_avg_host_input_lwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER average low warning last clear time for host input + prefec_ber_curr_host_input_lwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER current low warning last clear time for host input + errored_frames_min_media_input_lwarn_last_clear_time{lane_num} = STR ; Errored frames minimum low warning last clear time for media input + errored_frames_max_media_input_lwarn_last_clear_time{lane_num} = STR ; Errored frames maximum low warning last clear time for media input + errored_frames_avg_media_input_lwarn_last_clear_time{lane_num} = STR ; Errored frames average low warning last clear time for media input + errored_frames_curr_media_input_lwarn_last_clear_time{lane_num} = STR ; Errored frames current low warning last clear time for media input + errored_frames_min_host_input_lwarn_last_clear_time{lane_num} = STR ; Errored frames minimum low warning last clear time for host input + errored_frames_max_host_input_lwarn_last_clear_time{lane_num} = STR ; Errored frames maximum low warning last clear time for host input + errored_frames_avg_host_input_lwarn_last_clear_time{lane_num} = STR ; Errored frames average low warning last clear time for host input + errored_frames_curr_host_input_lwarn_last_clear_time{lane_num} = STR ; Errored frames current low warning last clear time for host input + + ;C-CMIS specific fields + biasxi_lwarn_last_clear_time = STR ; modulator bias xi in percentage (low warning last clear time) + biasxq_lwarn_last_clear_time = STR ; modulator bias xq in percentage (low warning last clear time) + biasxp_lwarn_last_clear_time = STR ; modulator bias xp in percentage (low warning last clear time) + biasyi_lwarn_last_clear_time = STR ; modulator bias yi in percentage (low warning last clear time) + biasyq_lwarn_last_clear_time = STR ; modulator bias yq in percentage (low warning last clear time) + biasyp_lwarn_last_clear_time = STR ; modulator bias yq in percentage (low warning last clear time) + cdshort_lwarn_last_clear_time = STR ; chromatic dispersion, low granularity, short link in ps/nm (low warning last clear time) + cdlong_lwarn_last_clear_time = STR ; chromatic dispersion, low granularity, long link in ps/nm (low warning last clear time) + dgd_lwarn_last_clear_time = STR ; differential group delay in ps (low warning last clear time) + sopmd_lwarn_last_clear_time = STR ; second order polarization mode dispersion in ps^2 (low warning last clear time) + soproc_lwarn_last_clear_time = STR ; state of polarization rate of change in krad/s (low warning last clear time) + pdl_lwarn_last_clear_time = STR ; polarization dependent loss in db (low warning last clear time) + osnr_lwarn_last_clear_time = STR ; optical signal to noise ratio in db (low warning last clear time) + esnr_lwarn_last_clear_time = STR ; electrical signal to noise ratio in db (low warning last clear time) + cfo_lwarn_last_clear_time = STR ; carrier frequency offset in Hz (low warning last clear time) + txcurrpower_lwarn_last_clear_time = STR ; tx current output power in dbm (low warning last clear time) + rxtotpower_lwarn_last_clear_time = STR ; rx total power in dbm (low warning last clear time) + rxsigpower_lwarn_last_clear_time = STR; rx signal power in dbm (low warning last clear time) +``` + +### 2.3 Transceiver status data + +#### 2.3.1 Transceiver status data to store module and data path status The `TRANSCEIVER_STATUS` table stores the status of the transceiver. @@ -762,9 +1370,6 @@ lane_num: Represents lane number of the field. The lane number is an integer val error = 1*255VCHAR ; module error (N/A or a string consisting of error descriptions joined by "|", like "error1 | error2" ) module_state = 1*255VCHAR ; current module state (ModuleLowPwr, ModulePwrUp, ModuleReady, ModulePwrDn, Fault) module_fault_cause = 1*255VCHAR ; reason of entering the module fault state - datapath_firmware_fault = BOOLEAN ; datapath (DSP) firmware fault - module_firmware_fault = BOOLEAN ; module firmware fault - module_state_changed = BOOLEAN ; module state changed DP{lane_num}State = 1*255VCHAR ; data path state indicator on host lane {lane_num} txoutput_status{lane_num} = BOOLEAN ; tx output status on media lane {lane_num} rxoutput_status_hostlane{lane_num} = BOOLEAN ; rx output status on host lane {lane_num} @@ -774,16 +1379,117 @@ lane_num: Represents lane number of the field. The lane number is an integer val dpinit_pending_hostlane{lane_num} = BOOLEAN ; data path configuration updated on host lane {lane_num} tuning_in_progress = BOOLEAN ; tuning in progress status wavelength_unlock_status = BOOLEAN ; laser unlocked status +``` + +#### 2.3.2 Transceiver status data to store module and data path flag status + +The `TRANSCEIVER_STATUS_FLAG` table stores the status of the transceiver flag. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ; Defines Transceiver Status info for a port + key = TRANSCEIVER_STATUS_FLAG|ifname ; Flag information for module on port + ; field = value + datapath_firmware_fault = BOOLEAN ; datapath (DSP) firmware fault + module_firmware_fault = BOOLEAN ; module firmware fault + module_state_changed = BOOLEAN ; module state changed + txfault{lane_num} = BOOLEAN ; tx fault flag on media lane {lane_num} + txlos_hostlane{lane_num} = BOOLEAN ; tx loss of signal flag on host lane {lane_num} + txcdrlol_hostlane{lane_num} = BOOLEAN ; tx clock and data recovery loss of lock flag on host lane {lane_num} + tx_eq_fault{lane_num} = BOOLEAN ; tx equalization fault flag on host lane {lane_num} + rxlos{lane_num} = BOOLEAN ; rx loss of signal flag on media lane {lane_num} + rxcdrlol{lane_num} = BOOLEAN ; rx clock and data recovery loss of lock flag on media lane {lane_num} target_output_power_oor = BOOLEAN ; target output power out of range flag fine_tuning_oor = BOOLEAN ; fine tuning out of range flag tuning_not_accepted = BOOLEAN ; tuning not accepted flag invalid_channel_num = BOOLEAN ; invalid channel number flag tuning_complete = BOOLEAN ; tuning complete flag +``` + +#### 2.3.3 Transceiver status data to store module and data path change count + +The `TRANSCEIVER_STATUS_FLAG_CHANGE_COUNT` table stores the change count for the transceiver flag. -### 2.14 Transceiver PM data +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ; Defines Transceiver Status info for a port + key = TRANSCEIVER_STATUS_FLAG_CHANGE_COUNT|ifname ; Flag information for module on port + ; field = value + datapath_firmware_fault_chg_cnt = STR ; datapath (DSP) firmware fault change count + module_firmware_fault_chg_cnt = STR ; module firmware fault change count + module_state_changed_chg_cnt = STR ; module state changed change count + txfault{lane_num}_chg_cnt = STR ; tx fault flag on media lane {lane_num} change count + txlos_hostlane{lane_num}_chg_cnt = STR ; tx loss of signal flag on host lane {lane_num} change count + txcdrlol_hostlane{lane_num}_chg_cnt = STR ; tx clock and data recovery loss of lock flag on host lane {lane_num} change count + tx_eq_fault{lane_num}_chg_cnt = STR ; tx equalization fault flag on host lane {lane_num} change count + rxlos{lane_num}_chg_cnt = STR ; rx loss of signal flag on media lane {lane_num} change count + rxcdrlol{lane_num}_chg_cnt = STR ; rx clock and data recovery loss of lock flag on media lane {lane_num} change count + target_output_power_oor_chg_cnt = STR ; target output power out of range flag change count + fine_tuning_oor_chg_cnt = STR ; fine tuning out of range flag change count + tuning_not_accepted_chg_cnt = STR ; tuning not accepted flag change count + invalid_channel_num_chg_cnt = STR ; invalid channel number flag change count + tuning_complete_chg_cnt = STR ; tuning complete flag change count +``` + +#### 2.3.4 Transceiver status data to store module and data path flag set time + +The `TRANSCEIVER_STATUS_FLAG_SET_TIME` table stores the set time for the transceiver flag. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ; Defines Transceiver Status info for a port + key = TRANSCEIVER_STATUS_FLAG_SET_TIME|ifname ; Flag information for module on port + ; field = value + datapath_firmware_fault_set_time = STR ; datapath (DSP) firmware fault set time + module_firmware_fault_set_time = STR ; module firmware fault set time + module_state_changed_set_time = STR ; module state changed set time + txfault{lane_num}_set_time = STR ; tx fault flag on media lane {lane_num} set time + txlos_hostlane{lane_num}_set_time = STR ; tx loss of signal flag on host lane {lane_num} set time + txcdrlol_hostlane{lane_num}_set_time = STR ; tx clock and data recovery loss of lock flag on host lane {lane_num} set time + tx_eq_fault{lane_num}_set_time = STR ; tx equalization fault flag on host lane {lane_num} set time + rxlos{lane_num}_set_time = STR ; rx loss of signal flag on media lane {lane_num} set time + rxcdrlol{lane_num}_set_time = STR ; rx clock and data recovery loss of lock flag on media lane {lane_num} set time + target_output_power_oor_set_time = STR ; target output power out of range flag set time + fine_tuning_oor_set_time = STR ; fine tuning out of range flag set time + tuning_not_accepted_set_time = STR ; tuning not accepted flag set time + invalid_channel_num_set_time = STR ; invalid channel number flag set time + tuning_complete_set_time = STR ; tuning complete flag set time +``` + +#### 2.3.5 Transceiver status data to store module and data path flag clear time + +The `TRANSCEIVER_STATUS_FLAG_CLEAR_TIME` table stores the clear time for the transceiver flag. + +lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. + +```plaintext + ; Defines Transceiver Status info for a port + key = TRANSCEIVER_STATUS_FLAG_CLEAR_TIME|ifname ; Flag information for module on port + ; field = value + datapath_firmware_fault_clear_time = STR ; datapath (DSP) firmware fault clear time + module_firmware_fault_clear_time = STR ; module firmware fault clear time + module_state_changed_clear_time = STR ; module state changed clear time + txfault{lane_num}_clear_time = STR ; tx fault flag on media lane {lane_num} clear time + txlos_hostlane{lane_num}_clear_time = STR ; tx loss of signal flag on host lane {lane_num} clear time + txcdrlol_hostlane{lane_num}_clear_time = STR ; tx clock and data recovery loss of lock flag on host lane {lane_num} clear time + tx_eq_fault{lane_num}_clear_time = STR ; tx equalization fault flag on host lane {lane_num} clear time + rxlos{lane_num}_clear_time = STR ; rx loss of signal flag on media lane {lane_num} clear time + rxcdrlol{lane_num}_clear_time = STR ; rx clock and data recovery loss of lock flag on media lane {lane_num} clear time + target_output_power_oor_clear_time = STR ; target output power out of range flag clear time + fine_tuning_oor_clear_time = STR ; fine tuning out of range flag clear time + tuning_not_accepted_clear_time = STR ; tuning not accepted flag clear time + invalid_channel_num_clear_time = STR ; invalid channel number flag clear time + tuning_complete_clear_time = STR ; tuning complete flag clear time +``` + +### 2.4 Transceiver PM data The `TRANSCEIVER_PM` table stores the performance monitoring data of the transceiver. This table is exists only for C-CMIS transceivers. +```plaintext ; Defines Transceiver PM information for a port key = TRANSCEIVER_PM|ifname ; information of PM on port ; field = value @@ -937,35 +1643,43 @@ The `DomInfoUpdateTask` thread is responsible for updating the dynamic diagnosti 3. Read the transceiver firmware information from the module and update the `TRANSCEIVER_FIRMWARE_INFO` table. 4. Read the transceiver DOM sensor data from the module and update the `TRANSCEIVER_DOM_SENSOR` table. 5. Read the transceiver DOM flag data from the module, record the timestamp, and update the `TRANSCEIVER_DOM_FLAG` table. - 6. Analyze the transceiver DOM flag data by comparing the current flag data with the previous flag data and update the `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`, `TRANSCEIVER_DOM_FLAG_TIME_SET`, and `TRANSCEIVER_DOM_FLAG_TIME_CLEAR` tables. + 6. Analyze the transceiver DOM flag data by comparing the current flag data with the previous flag data and update the `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`, `TRANSCEIVER_DOM_FLAG_SET_TIME`, and `TRANSCEIVER_DOM_FLAG_CLEAR_TIME` tables. 7. Read the transceiver status data from the module and update the `TRANSCEIVER_STATUS` table. 8. If the transceiver supports VDM monitoring, perform the following steps: - 1. Freeze the statistics by calling the CMIS API and wait for `FreezeDone`. Once the statistics are frozen, record the timestamp and copy the VDM and PM statistics from the transceiver. - 2. Unfreeze the statistics by calling the CMIS API. - 3. Update the `TRANSCEIVER_VDM_SAMPLE` and `TRANSCEIVER_PM` tables with the VDM and PM statistics respectively. - 4. Analyze the VDM flags by comparing the current statistics with the previous statistics and update the `TRANSCEIVER_VDM_FLAG`, `TRANSCEIVER_VDM_FLAG_CHANGE_COUNT`, `TRANSCEIVER_VDM_FLAG_TIME_SET`, and `TRANSCEIVER_VDM_FLAG_TIME_CLEAR` tables. - 5. Analyze the PM flags by comparing the current statistics with the previous statistics and update the `TRANSCEIVER_PM_FLAG`, `TRANSCEIVER_PM_FLAG_CHANGE_COUNT`, `TRANSCEIVER_PM_FLAG_TIME_SET`, and `TRANSCEIVER_PM_FLAG_TIME_CLEAR` tables. + 1. Freeze the statistics by calling the CMIS API (`freeze_vdm_stats`) and wait for `FreezeDone` by calling `get_vdm_freeze_status`. Once the statistics are frozen, record the timestamp and copy the VDM and PM statistics from the transceiver. + 2. Unfreeze the statistics by calling the CMIS API (`unfreeze_vdm_stats`). + 3. Update the `TRANSCEIVER_VDM_CURRENT_SAMPLE` and `TRANSCEIVER_PM` tables with both basic and statistic instance's data read for VDM and PM. + 4. Analyze the VDM flags by comparing the current data with the previous data and update the VDM flag, change count and time related tables. + +#### 4.2.2 Diagnostic Information Update During Link Down Event -#### 4.2.2 Details of Flag Analysis of Tables +When a link down event is detected by the `DomInfoUpdateTask` thread, a specific subset of the diagnostic information fields are updated in the `redis-db`. +Also, the relevant flags, change count and their set/clear time will be updated in the `redis-db`. -**Note**: For simplicity, this section uses VDM as an example. However, the same analysis is applicable for DOM and PM as well. +#### 4.2.3 Details of Flag Analysis of Tables + +**Note**: For simplicity, this section uses DOM as an example. However, the same analysis is applicable for VDM as well. **Purpose of Flag Analysis:** -The purpose of flag analysis is to track the status of various parameters and to count the number of times each VDM flag has changed. It also records the timestamp when each VDM flag was set and cleared. +The purpose of flag analysis is to track the status of various parameters and to count the number of times each DOM flag has changed. It also records the timestamp when each DOM flag was set and cleared. **Tables Used for Flag Analysis:** -- `TRANSCEIVER_VDM_FLAG`: This table stores flags indicating the status of various VDM parameters. -- `TRANSCEIVER_VDM_FLAG_CHANGE_COUNT`: This table keeps a count of how many times each VDM flag has changed. -- `TRANSCEIVER_VDM_FLAG_TIME_SET`: This table records the timestamp when each VDM flag was set. -- `TRANSCEIVER_VDM_FLAG_TIME_CLEAR`: This table records the timestamp when each VDM flag was cleared. +- `TRANSCEIVER_DOM_FLAG`: This table stores flags indicating the status of various DOM parameters. +- `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`: This table keeps a count of how many times each DOM flag has changed. +- `TRANSCEIVER_DOM_FLAG_SET_TIME`: This table records the timestamp when each DOM flag was set. +- `TRANSCEIVER_DOM_FLAG_CLEAR_TIME`: This table records the timestamp when each DOM flag was cleared. **Example of Table Updates:** -- **TRANSCEIVER_VDM_FLAG_CHANGE_COUNT:** - - Each time a flag in the `TRANSCEIVER_VDM_FLAG` table changes (either set or cleared), the corresponding count in this table is incremented. -- **TRANSCEIVER_VDM_FLAG_TIME_SET:** - - When a flag is set in the `TRANSCEIVER_VDM_FLAG` table, the current timestamp is recorded in this table. -- **TRANSCEIVER_VDM_FLAG_TIME_CLEAR:** - - When a flag is cleared in the `TRANSCEIVER_VDM_FLAG` table, the current timestamp is recorded in this table. +- **TRANSCEIVER_DOM_FLAG_CHANGE_COUNT:** + - Each time a flag in the `TRANSCEIVER_DOM_FLAG` table changes (either set or cleared), the corresponding count in this table is incremented. +- **TRANSCEIVER_DOM_FLAG_SET_TIME:** + - When a flag is set in the `TRANSCEIVER_DOM_FLAG` table, the current timestamp (based on local timezone) is recorded in this table. +- **TRANSCEIVER_DOM_FLAG_CLEAR_TIME:** + - When a flag is cleared in the `TRANSCEIVER_DOM_FLAG` table, the current timestamp (based on local timezone) is recorded in this table. + +#### 4.2.4 Flag Change Count and Time Set/Clear Behavior During `xcvrd` Restart + +During `xcvrd` stop, the `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`, `TRANSCEIVER_DOM_FLAG_SET_TIME`, and `TRANSCEIVER_DOM_FLAG_CLEAR_TIME` tables are deleted by the `xcvrd` process. When `xcvrd` is restarted, the `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`, `TRANSCEIVER_DOM_FLAG_SET_TIME`, and `TRANSCEIVER_DOM_FLAG_CLEAR_TIME` tables are recreated and the flag change count and time set/clear behavior are reset to zero. From 37168bfd6ebdeddc65cbcf15d5a725c9bf32bbad Mon Sep 17 00:00:00 2001 From: Mihir Patel Date: Thu, 17 Oct 2024 04:29:43 +0000 Subject: [PATCH 03/12] Addressed review comments --- ...Diagnostic_Monitoring_Overview_in_SONiC.md | 585 +++++++++++------- 1 file changed, 371 insertions(+), 214 deletions(-) diff --git a/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md b/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md index 399bb740a6..dfed29351d 100644 --- a/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md +++ b/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md @@ -262,6 +262,7 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM sample for a port key = TRANSCEIVER_VDM_CURRENT_SAMPLE|ifname ; information module VDM sample on port ; field = value + laser_temperature_media{lane_num} = FLOAT ; laser temperature value in Celsius for media input esnr_media_input{lane_num} = FLOAT ; eSNR value in dB for media input esnr_host_input{lane_num} = FLOAT ; eSNR value in dB for host input pam4_level_transition_media_input{lane_num} = FLOAT ; PAM4 level transition parameter in dB for media input @@ -316,6 +317,7 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM high alarm threshold for a port key = TRANSCEIVER_VDM_HALARM_THRESHOLD|ifname ; information module VDM high alarm threshold on port ; field = value + laser_temperature_media_halarm{lane_num} = FLOAT ; laser temperature high alarm value in Celsius for media input esnr_media_input_halarm{lane_num} = FLOAT ; eSNR high alarm value in dB for media input esnr_host_input_halarm{lane_num} = FLOAT ; eSNR high alarm value in dB for host input pam4_level_transition_media_input_halarm{lane_num} = FLOAT ; PAM4 level transition high alarm value in dB for media input @@ -368,6 +370,7 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM low alarm threshold for a port key = TRANSCEIVER_VDM_LALARM_THRESHOLD|ifname ; information module VDM low alarm threshold on port ; field = value + laser_temperature_media_lalarm{lane_num} = FLOAT ; laser temperature low alarm value in Celsius for media input esnr_media_input_lalarm{lane_num} = FLOAT ; eSNR low alarm value in dB for media input esnr_host_input_lalarm{lane_num} = FLOAT ; eSNR low alarm value in dB for host input pam4_level_transition_media_input_lalarm{lane_num} = FLOAT ; PAM4 level transition low alarm value in dB for media input @@ -420,6 +423,7 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM high warning threshold for a port key = TRANSCEIVER_VDM_HWARN_THRESHOLD|ifname ; information module VDM high warning threshold on port ; field = value + laser_temperature_media_hwarn{lane_num} = FLOAT ; laser temperature high warning value in Celsius for media input esnr_media_input_hwarn{lane_num} = FLOAT ; eSNR high warning value in dB for media input esnr_host_input_hwarn{lane_num} = FLOAT ; eSNR high warning value in dB for host input pam4_level_transition_media_input_hwarn{lane_num} = FLOAT ; PAM4 level transition high warning value in dB for media input @@ -472,6 +476,7 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM low warning threshold for a port key = TRANSCEIVER_VDM_LWARN_THRESHOLD|ifname ; information module VDM low warning threshold on port ; field = value + laser_temperature_media_lwarn{lane_num} = FLOAT ; laser temperature low warning value in Celsius for media input esnr_media_input_lwarn{lane_num} = FLOAT ; eSNR low warning value in dB for media input esnr_host_input_lwarn{lane_num} = FLOAT ; eSNR low warning value in dB for host input pam4_level_transition_media_input_lwarn{lane_num} = FLOAT ; PAM4 level transition low warning value in dB for media input @@ -524,6 +529,7 @@ The `TRANSCEIVER_VDM_HALARM_FLAG` table stores the flag status for the VDM data. ;Defines Transceiver VDM high alarm flag for a port key = TRANSCEIVER_VDM_HALARM_FLAG|ifname ; field = value + laser_temperature_media_halarm_flag{lane_num} = BOOLEAN ; laser temperature high alarm flag for media input esnr_media_input_halarm_flag{lane_num} = BOOLEAN ; eSNR high alarm flag for media input esnr_host_input_halarm_flag{lane_num} = BOOLEAN ; eSNR high alarm flag for host input pam4_level_transition_media_input_halarm_flag{lane_num} = BOOLEAN ; PAM4 level transition high alarm flag for media input @@ -578,6 +584,7 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM low alarm flag for a port key = TRANSCEIVER_VDM_LALARM_FLAG|ifname ; field = value + laser_temperature_media_lalarm_flag{lane_num} = BOOLEAN ; laser temperature low alarm flag for media input esnr_media_input_lalarm_flag{lane_num} = BOOLEAN ; eSNR low alarm flag for media input esnr_host_input_lalarm_flag{lane_num} = BOOLEAN ; eSNR low alarm flag for host input pam4_level_transition_media_input_lalarm_flag{lane_num} = BOOLEAN ; PAM4 level transition low alarm flag for media input @@ -630,6 +637,7 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM high warning flag for a port key = TRANSCEIVER_VDM_HWARN_FLAG|ifname ; field = value + laser_temperature_media_hwarn_flag{lane_num} = BOOLEAN ; laser temperature high warning flag for media input esnr_media_input_hwarn_flag{lane_num} = BOOLEAN ; eSNR high warning flag for media input esnr_host_input_hwarn_flag{lane_num} = BOOLEAN ; eSNR high warning flag for host input pam4_level_transition_media_input_hwarn_flag{lane_num} = BOOLEAN ; PAM4 level transition high warning flag for media input @@ -682,6 +690,7 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM low warning flag for a port key = TRANSCEIVER_VDM_LWARN_FLAG|ifname ; field = value + laser_temperature_media_lwarn_flag{lane_num} = BOOLEAN ; laser temperature low warning flag for media input esnr_media_input_lwarn_flag{lane_num} = BOOLEAN ; eSNR low warning flag for media input esnr_host_input_lwarn_flag{lane_num} = BOOLEAN ; eSNR low warning flag for host input pam4_level_transition_media_input_lwarn_flag{lane_num} = BOOLEAN ; PAM4 level transition low warning flag for media input @@ -736,46 +745,47 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM high alarm flag change count for a port key = TRANSCEIVER_VDM_HALARM_FLAG_CHANGE_COUNT|ifname ; field = value - esnr_media_input_halarm_chg_cnt{lane_num} = BOOLEAN ; eSNR high alarm flag change count for media input - esnr_host_input_halarm_chg_cnt{lane_num} = BOOLEAN ; eSNR high alarm flag change count for host input - pam4_level_transition_media_input_halarm_chg_cnt{lane_num} = BOOLEAN ; PAM4 level transition high alarm flag change count for media input - pam4_level_transition_host_input_halarm_chg_cnt{lane_num} = BOOLEAN ; PAM4 level transition high alarm flag change count for host input - prefec_ber_min_media_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER minimum high alarm flag change count for media input - prefec_ber_max_media_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER maximum high alarm flag change count for media input - prefec_ber_avg_media_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER average high alarm flag change count for media input - prefec_ber_curr_media_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER current high alarm flag change count for media input - prefec_ber_min_host_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER minimum high alarm flag change count for host input - prefec_ber_max_host_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER maximum high alarm flag change count for host input - prefec_ber_avg_host_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER average high alarm flag change count for host input - prefec_ber_curr_host_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER current high alarm flag change count for host input - errored_frames_min_media_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames minimum high alarm flag change count for media input - errored_frames_max_media_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames maximum high alarm flag change count for media input - errored_frames_avg_media_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames average high alarm flag change count for media input - errored_frames_curr_media_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames current high alarm flag change count for media input - errored_frames_min_host_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames minimum high alarm flag change count for host input - errored_frames_max_host_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames maximum high alarm flag change count for host input - errored_frames_avg_host_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames average high alarm flag change count for host input - errored_frames_curr_host_input_halarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames current high alarm flag change count for host input + laser_temperature_media_halarm_chg_cnt{lane_num} = INTEGER ; laser temperature high alarm flag change count for media input + esnr_media_input_halarm_chg_cnt{lane_num} = INTEGER ; eSNR high alarm flag change count for media input + esnr_host_input_halarm_chg_cnt{lane_num} = INTEGER ; eSNR high alarm flag change count for host input + pam4_level_transition_media_input_halarm_chg_cnt{lane_num} = INTEGER ; PAM4 level transition high alarm flag change count for media input + pam4_level_transition_host_input_halarm_chg_cnt{lane_num} = INTEGER ; PAM4 level transition high alarm flag change count for host input + prefec_ber_min_media_input_halarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER minimum high alarm flag change count for media input + prefec_ber_max_media_input_halarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER maximum high alarm flag change count for media input + prefec_ber_avg_media_input_halarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER average high alarm flag change count for media input + prefec_ber_curr_media_input_halarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER current high alarm flag change count for media input + prefec_ber_min_host_input_halarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER minimum high alarm flag change count for host input + prefec_ber_max_host_input_halarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER maximum high alarm flag change count for host input + prefec_ber_avg_host_input_halarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER average high alarm flag change count for host input + prefec_ber_curr_host_input_halarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER current high alarm flag change count for host input + errored_frames_min_media_input_halarm_chg_cnt{lane_num} = INTEGER ; Errored frames minimum high alarm flag change count for media input + errored_frames_max_media_input_halarm_chg_cnt{lane_num} = INTEGER ; Errored frames maximum high alarm flag change count for media input + errored_frames_avg_media_input_halarm_chg_cnt{lane_num} = INTEGER ; Errored frames average high alarm flag change count for media input + errored_frames_curr_media_input_halarm_chg_cnt{lane_num} = INTEGER ; Errored frames current high alarm flag change count for media input + errored_frames_min_host_input_halarm_chg_cnt{lane_num} = INTEGER ; Errored frames minimum high alarm flag change count for host input + errored_frames_max_host_input_halarm_chg_cnt{lane_num} = INTEGER ; Errored frames maximum high alarm flag change count for host input + errored_frames_avg_host_input_halarm_chg_cnt{lane_num} = INTEGER ; Errored frames average high alarm flag change count for host input + errored_frames_curr_host_input_halarm_chg_cnt{lane_num} = INTEGER ; Errored frames current high alarm flag change count for host input ;C-CMIS specific fields - biasxi_halarm_chg_cnt = BOOLEAN ; modulator bias xi in percentage (high alarm flag change count) - biasxq_halarm_chg_cnt = BOOLEAN ; modulator bias xq in percentage (high alarm flag change count) - biasxp_halarm_chg_cnt = BOOLEAN ; modulator bias xp in percentage (high alarm flag change count) - biasyi_halarm_chg_cnt = BOOLEAN ; modulator bias yi in percentage (high alarm flag change count) - biasyq_halarm_chg_cnt = BOOLEAN ; modulator bias yq in percentage (high alarm flag change count) - biasyp_halarm_chg_cnt = BOOLEAN ; modulator bias yq in percentage (high alarm flag change count) - cdshort_halarm_chg_cnt = BOOLEAN ; chromatic dispersion, high granularity, short link in ps/nm (high alarm flag change count) - cdlong_halarm_chg_cnt = BOOLEAN ; chromatic dispersion, high granularity, long link in ps/nm (high alarm flag change count) - dgd_halarm_chg_cnt = BOOLEAN ; differential group delay in ps (high alarm flag change count) - sopmd_halarm_chg_cnt = BOOLEAN ; second order polarization mode dispersion in ps^2 (high alarm flag change count) - soproc_halarm_chg_cnt = BOOLEAN ; state of polarization rate of change in krad/s (high alarm flag change count) - pdl_halarm_chg_cnt = BOOLEAN ; polarization dependent loss in db (high alarm flag change count) - osnr_halarm_chg_cnt = BOOLEAN ; optical signal to noise ratio in db (high alarm flag change count) - esnr_halarm_chg_cnt = BOOLEAN ; electrical signal to noise ratio in db (high alarm flag change count) - cfo_halarm_chg_cnt = BOOLEAN ; carrier frequency offset in Hz (high alarm flag change count) - txcurrpower_halarm_chg_cnt = BOOLEAN ; tx current output power in dbm (high alarm flag change count) - rxtotpower_halarm_chg_cnt = BOOLEAN ; rx total power in dbm (high alarm flag change count) - rxsigpower_halarm_chg_cnt = BOOLEAN; rx signal power in dbm (high alarm flag change count) + biasxi_halarm_chg_cnt = INTEGER ; modulator bias xi in percentage (high alarm flag change count) + biasxq_halarm_chg_cnt = INTEGER ; modulator bias xq in percentage (high alarm flag change count) + biasxp_halarm_chg_cnt = INTEGER ; modulator bias xp in percentage (high alarm flag change count) + biasyi_halarm_chg_cnt = INTEGER ; modulator bias yi in percentage (high alarm flag change count) + biasyq_halarm_chg_cnt = INTEGER ; modulator bias yq in percentage (high alarm flag change count) + biasyp_halarm_chg_cnt = INTEGER ; modulator bias yq in percentage (high alarm flag change count) + cdshort_halarm_chg_cnt = INTEGER ; chromatic dispersion, high granularity, short link in ps/nm (high alarm flag change count) + cdlong_halarm_chg_cnt = INTEGER ; chromatic dispersion, high granularity, long link in ps/nm (high alarm flag change count) + dgd_halarm_chg_cnt = INTEGER ; differential group delay in ps (high alarm flag change count) + sopmd_halarm_chg_cnt = INTEGER ; second order polarization mode dispersion in ps^2 (high alarm flag change count) + soproc_halarm_chg_cnt = INTEGER ; state of polarization rate of change in krad/s (high alarm flag change count) + pdl_halarm_chg_cnt = INTEGER ; polarization dependent loss in db (high alarm flag change count) + osnr_halarm_chg_cnt = INTEGER ; optical signal to noise ratio in db (high alarm flag change count) + esnr_halarm_chg_cnt = INTEGER ; electrical signal to noise ratio in db (high alarm flag change count) + cfo_halarm_chg_cnt = INTEGER ; carrier frequency offset in Hz (high alarm flag change count) + txcurrpower_halarm_chg_cnt = INTEGER ; tx current output power in dbm (high alarm flag change count) + rxtotpower_halarm_chg_cnt = INTEGER ; rx total power in dbm (high alarm flag change count) + rxsigpower_halarm_chg_cnt = INTEGER; rx signal power in dbm (high alarm flag change count) ``` ###### 2.2.4.2 Transceiver VDM low alarm flag change count data @@ -788,46 +798,47 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM low alarm flag change count for a port key = TRANSCEIVER_VDM_LALARM_FLAG_CHANGE_COUNT|ifname ; field = value - esnr_media_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; eSNR low alarm flag change count for media input - esnr_host_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; eSNR low alarm flag change count for host input - pam4_level_transition_media_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; PAM4 level transition low alarm flag change count for media input - pam4_level_transition_host_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; PAM4 level transition low alarm flag change count for host input - prefec_ber_min_media_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER minimum low alarm flag change count for media input - prefec_ber_max_media_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER maximum low alarm flag change count for media input - prefec_ber_avg_media_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER average low alarm flag change count for media input - prefec_ber_curr_media_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER current low alarm flag change count for media input - prefec_ber_min_host_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER minimum low alarm flag change count for host input - prefec_ber_max_host_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER maximum low alarm flag change count for host input - prefec_ber_avg_host_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER average low alarm flag change count for host input - prefec_ber_curr_host_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER current low alarm flag change count for host input - errored_frames_min_media_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames minimum low alarm flag change count for media input - errored_frames_max_media_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames maximum low alarm flag change count for media input - errored_frames_avg_media_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames average low alarm flag change count for media input - errored_frames_curr_media_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames current low alarm flag change count for media input - errored_frames_min_host_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames minimum low alarm flag change count for host input - errored_frames_max_host_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames maximum low alarm flag change count for host input - errored_frames_avg_host_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames average low alarm flag change count for host input - errored_frames_curr_host_input_lalarm_chg_cnt{lane_num} = BOOLEAN ; Errored frames current low alarm flag change count for host input + laser_temperature_media_lalarm_chg_cnt{lane_num} = INTEGER ; laser temperature low alarm flag change count for media input + esnr_media_input_lalarm_chg_cnt{lane_num} = INTEGER ; eSNR low alarm flag change count for media input + esnr_host_input_lalarm_chg_cnt{lane_num} = INTEGER ; eSNR low alarm flag change count for host input + pam4_level_transition_media_input_lalarm_chg_cnt{lane_num} = INTEGER ; PAM4 level transition low alarm flag change count for media input + pam4_level_transition_host_input_lalarm_chg_cnt{lane_num} = INTEGER ; PAM4 level transition low alarm flag change count for host input + prefec_ber_min_media_input_lalarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER minimum low alarm flag change count for media input + prefec_ber_max_media_input_lalarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER maximum low alarm flag change count for media input + prefec_ber_avg_media_input_lalarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER average low alarm flag change count for media input + prefec_ber_curr_media_input_lalarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER current low alarm flag change count for media input + prefec_ber_min_host_input_lalarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER minimum low alarm flag change count for host input + prefec_ber_max_host_input_lalarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER maximum low alarm flag change count for host input + prefec_ber_avg_host_input_lalarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER average low alarm flag change count for host input + prefec_ber_curr_host_input_lalarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER current low alarm flag change count for host input + errored_frames_min_media_input_lalarm_chg_cnt{lane_num} = INTEGER ; Errored frames minimum low alarm flag change count for media input + errored_frames_max_media_input_lalarm_chg_cnt{lane_num} = INTEGER ; Errored frames maximum low alarm flag change count for media input + errored_frames_avg_media_input_lalarm_chg_cnt{lane_num} = INTEGER ; Errored frames average low alarm flag change count for media input + errored_frames_curr_media_input_lalarm_chg_cnt{lane_num} = INTEGER ; Errored frames current low alarm flag change count for media input + errored_frames_min_host_input_lalarm_chg_cnt{lane_num} = INTEGER ; Errored frames minimum low alarm flag change count for host input + errored_frames_max_host_input_lalarm_chg_cnt{lane_num} = INTEGER ; Errored frames maximum low alarm flag change count for host input + errored_frames_avg_host_input_lalarm_chg_cnt{lane_num} = INTEGER ; Errored frames average low alarm flag change count for host input + errored_frames_curr_host_input_lalarm_chg_cnt{lane_num} = INTEGER ; Errored frames current low alarm flag change count for host input ;C-CMIS specific fields - biasxi_lalarm_chg_cnt = BOOLEAN ; modulator bias xi in percentage (low alarm flag change count) - biasxq_lalarm_chg_cnt = BOOLEAN ; modulator bias xq in percentage (low alarm flag change count) - biasxp_lalarm_chg_cnt = BOOLEAN ; modulator bias xp in percentage (low alarm flag change count) - biasyi_lalarm_chg_cnt = BOOLEAN ; modulator bias yi in percentage (low alarm flag change count) - biasyq_lalarm_chg_cnt = BOOLEAN ; modulator bias yq in percentage (low alarm flag change count) - biasyp_lalarm_chg_cnt = BOOLEAN ; modulator bias yq in percentage (low alarm flag change count) - cdshort_lalarm_chg_cnt = BOOLEAN ; chromatic dispersion, low granularity, short link in ps/nm (low alarm flag change count) - cdlong_lalarm_chg_cnt = BOOLEAN ; chromatic dispersion, low granularity, long link in ps/nm (low alarm flag change count) - dgd_lalarm_chg_cnt = BOOLEAN ; differential group delay in ps (low alarm flag change count) - sopmd_lalarm_chg_cnt = BOOLEAN ; second order polarization mode dispersion in ps^2 (low alarm flag change count) - soproc_lalarm_chg_cnt = BOOLEAN ; state of polarization rate of change in krad/s (low alarm flag change count) - pdl_lalarm_chg_cnt = BOOLEAN ; polarization dependent loss in db (low alarm flag change count) - osnr_lalarm_chg_cnt = BOOLEAN ; optical signal to noise ratio in db (low alarm flag change count) - esnr_lalarm_chg_cnt = BOOLEAN ; electrical signal to noise ratio in db (low alarm flag change count) - cfo_lalarm_chg_cnt = BOOLEAN ; carrier frequency offset in Hz (low alarm flag change count) - txcurrpower_lalarm_chg_cnt = BOOLEAN ; tx current output power in dbm (low alarm flag change count) - rxtotpower_lalarm_chg_cnt = BOOLEAN ; rx total power in dbm (low alarm flag change count) - rxsigpower_lalarm_chg_cnt = BOOLEAN; rx signal power in dbm (low alarm flag change count) + biasxi_lalarm_chg_cnt = INTEGER ; modulator bias xi in percentage (low alarm flag change count) + biasxq_lalarm_chg_cnt = INTEGER ; modulator bias xq in percentage (low alarm flag change count) + biasxp_lalarm_chg_cnt = INTEGER ; modulator bias xp in percentage (low alarm flag change count) + biasyi_lalarm_chg_cnt = INTEGER ; modulator bias yi in percentage (low alarm flag change count) + biasyq_lalarm_chg_cnt = INTEGER ; modulator bias yq in percentage (low alarm flag change count) + biasyp_lalarm_chg_cnt = INTEGER ; modulator bias yq in percentage (low alarm flag change count) + cdshort_lalarm_chg_cnt = INTEGER ; chromatic dispersion, low granularity, short link in ps/nm (low alarm flag change count) + cdlong_lalarm_chg_cnt = INTEGER ; chromatic dispersion, low granularity, long link in ps/nm (low alarm flag change count) + dgd_lalarm_chg_cnt = INTEGER ; differential group delay in ps (low alarm flag change count) + sopmd_lalarm_chg_cnt = INTEGER ; second order polarization mode dispersion in ps^2 (low alarm flag change count) + soproc_lalarm_chg_cnt = INTEGER ; state of polarization rate of change in krad/s (low alarm flag change count) + pdl_lalarm_chg_cnt = INTEGER ; polarization dependent loss in db (low alarm flag change count) + osnr_lalarm_chg_cnt = INTEGER ; optical signal to noise ratio in db (low alarm flag change count) + esnr_lalarm_chg_cnt = INTEGER ; electrical signal to noise ratio in db (low alarm flag change count) + cfo_lalarm_chg_cnt = INTEGER ; carrier frequency offset in Hz (low alarm flag change count) + txcurrpower_lalarm_chg_cnt = INTEGER ; tx current output power in dbm (low alarm flag change count) + rxtotpower_lalarm_chg_cnt = INTEGER ; rx total power in dbm (low alarm flag change count) + rxsigpower_lalarm_chg_cnt = INTEGER; rx signal power in dbm (low alarm flag change count) ``` ##### 2.2.4.3 Transceiver VDM high warning flag change count data @@ -840,46 +851,47 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM high warning flag change count for a port key = TRANSCEIVER_VDM_HWARN_FLAG_CHANGE_COUNT|ifname ; field = value - esnr_media_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; eSNR high warning flag change count for media input - esnr_host_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; eSNR high warning flag change count for host input - pam4_level_transition_media_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; PAM4 level transition high warning flag change count for media input - pam4_level_transition_host_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; PAM4 level transition high warning flag change count for host input - prefec_ber_min_media_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER minimum high warning flag change count for media input - prefec_ber_max_media_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER maximum high warning flag change count for media input - prefec_ber_avg_media_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER average high warning flag change count for media input - prefec_ber_curr_media_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER current high warning flag change count for media input - prefec_ber_min_host_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER minimum high warning flag change count for host input - prefec_ber_max_host_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER maximum high warning flag change count for host input - prefec_ber_avg_host_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER average high warning flag change count for host input - prefec_ber_curr_host_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER current high warning flag change count for host input - errored_frames_min_media_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames minimum high warning flag change count for media input - errored_frames_max_media_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames maximum high warning flag change count for media input - errored_frames_avg_media_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames average high warning flag change count for media input - errored_frames_curr_media_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames current high warning flag change count for media input - errored_frames_min_host_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames minimum high warning flag change count for host input - errored_frames_max_host_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames maximum high warning flag change count for host input - errored_frames_avg_host_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames average high warning flag change count for host input - errored_frames_curr_host_input_hwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames current high warning flag change count for host input + laser_temperature_media_hwarn_chg_cnt{lane_num} = INTEGER ; laser temperature high warning flag change count for media input + esnr_media_input_hwarn_chg_cnt{lane_num} = INTEGER ; eSNR high warning flag change count for media input + esnr_host_input_hwarn_chg_cnt{lane_num} = INTEGER ; eSNR high warning flag change count for host input + pam4_level_transition_media_input_hwarn_chg_cnt{lane_num} = INTEGER ; PAM4 level transition high warning flag change count for media input + pam4_level_transition_host_input_hwarn_chg_cnt{lane_num} = INTEGER ; PAM4 level transition high warning flag change count for host input + prefec_ber_min_media_input_hwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER minimum high warning flag change count for media input + prefec_ber_max_media_input_hwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER maximum high warning flag change count for media input + prefec_ber_avg_media_input_hwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER average high warning flag change count for media input + prefec_ber_curr_media_input_hwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER current high warning flag change count for media input + prefec_ber_min_host_input_hwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER minimum high warning flag change count for host input + prefec_ber_max_host_input_hwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER maximum high warning flag change count for host input + prefec_ber_avg_host_input_hwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER average high warning flag change count for host input + prefec_ber_curr_host_input_hwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER current high warning flag change count for host input + errored_frames_min_media_input_hwarn_chg_cnt{lane_num} = INTEGER ; Errored frames minimum high warning flag change count for media input + errored_frames_max_media_input_hwarn_chg_cnt{lane_num} = INTEGER ; Errored frames maximum high warning flag change count for media input + errored_frames_avg_media_input_hwarn_chg_cnt{lane_num} = INTEGER ; Errored frames average high warning flag change count for media input + errored_frames_curr_media_input_hwarn_chg_cnt{lane_num} = INTEGER ; Errored frames current high warning flag change count for media input + errored_frames_min_host_input_hwarn_chg_cnt{lane_num} = INTEGER ; Errored frames minimum high warning flag change count for host input + errored_frames_max_host_input_hwarn_chg_cnt{lane_num} = INTEGER ; Errored frames maximum high warning flag change count for host input + errored_frames_avg_host_input_hwarn_chg_cnt{lane_num} = INTEGER ; Errored frames average high warning flag change count for host input + errored_frames_curr_host_input_hwarn_chg_cnt{lane_num} = INTEGER ; Errored frames current high warning flag change count for host input ;C-CMIS specific fields - biasxi_hwarn_chg_cnt = BOOLEAN ; modulator bias xi in percentage (high warning flag change count) - biasxq_hwarn_chg_cnt = BOOLEAN ; modulator bias xq in percentage (high warning flag change count) - biasxp_hwarn_chg_cnt = BOOLEAN ; modulator bias xp in percentage (high warning flag change count) - biasyi_hwarn_chg_cnt = BOOLEAN ; modulator bias yi in percentage (high warning flag change count) - biasyq_hwarn_chg_cnt = BOOLEAN ; modulator bias yq in percentage (high warning flag change count) - biasyp_hwarn_chg_cnt = BOOLEAN ; modulator bias yq in percentage (high warning flag change count) - cdshort_hwarn_chg_cnt = BOOLEAN ; chromatic dispersion, low granularity, short link in ps/nm (high warning flag change count) - cdlong_hwarn_chg_cnt = BOOLEAN ; chromatic dispersion, low granularity, long link in ps/nm (high warning flag change count) - dgd_hwarn_chg_cnt = BOOLEAN ; differential group delay in ps (high warning flag change count) - sopmd_hwarn_chg_cnt = BOOLEAN ; second order polarization mode dispersion in ps^2 (high warning flag change count) - soproc_hwarn_chg_cnt = BOOLEAN ; state of polarization rate of change in krad/s (high warning flag change count) - pdl_hwarn_chg_cnt = BOOLEAN ; polarization dependent loss in db (high warning flag change count) - osnr_hwarn_chg_cnt = BOOLEAN ; optical signal to noise ratio in db (high warning flag change count) - esnr_hwarn_chg_cnt = BOOLEAN ; electrical signal to noise ratio in db (high warning flag change count) - cfo_hwarn_chg_cnt = BOOLEAN ; carrier frequency offset in Hz (high warning flag change count) - txcurrpower_hwarn_chg_cnt = BOOLEAN ; tx current output power in dbm (high warning flag change count) - rxtotpower_hwarn_chg_cnt = BOOLEAN ; rx total power in dbm (high warning flag change count) - rxsigpower_hwarn_chg_cnt = BOOLEAN; rx signal power in dbm (high warning flag change count) + biasxi_hwarn_chg_cnt = INTEGER ; modulator bias xi in percentage (high warning flag change count) + biasxq_hwarn_chg_cnt = INTEGER ; modulator bias xq in percentage (high warning flag change count) + biasxp_hwarn_chg_cnt = INTEGER ; modulator bias xp in percentage (high warning flag change count) + biasyi_hwarn_chg_cnt = INTEGER ; modulator bias yi in percentage (high warning flag change count) + biasyq_hwarn_chg_cnt = INTEGER ; modulator bias yq in percentage (high warning flag change count) + biasyp_hwarn_chg_cnt = INTEGER ; modulator bias yq in percentage (high warning flag change count) + cdshort_hwarn_chg_cnt = INTEGER ; chromatic dispersion, low granularity, short link in ps/nm (high warning flag change count) + cdlong_hwarn_chg_cnt = INTEGER ; chromatic dispersion, low granularity, long link in ps/nm (high warning flag change count) + dgd_hwarn_chg_cnt = INTEGER ; differential group delay in ps (high warning flag change count) + sopmd_hwarn_chg_cnt = INTEGER ; second order polarization mode dispersion in ps^2 (high warning flag change count) + soproc_hwarn_chg_cnt = INTEGER ; state of polarization rate of change in krad/s (high warning flag change count) + pdl_hwarn_chg_cnt = INTEGER ; polarization dependent loss in db (high warning flag change count) + osnr_hwarn_chg_cnt = INTEGER ; optical signal to noise ratio in db (high warning flag change count) + esnr_hwarn_chg_cnt = INTEGER ; electrical signal to noise ratio in db (high warning flag change count) + cfo_hwarn_chg_cnt = INTEGER ; carrier frequency offset in Hz (high warning flag change count) + txcurrpower_hwarn_chg_cnt = INTEGER ; tx current output power in dbm (high warning flag change count) + rxtotpower_hwarn_chg_cnt = INTEGER ; rx total power in dbm (high warning flag change count) + rxsigpower_hwarn_chg_cnt = INTEGER; rx signal power in dbm (high warning flag change count) ``` ##### 2.2.4.4 Transceiver VDM low warning flag change count data @@ -892,46 +904,47 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM low warning flag change count for a port key = TRANSCEIVER_VDM_LWARN_FLAG_CHANGE_COUNT|ifname ; field = value - esnr_media_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; eSNR low warning flag change count for media input - esnr_host_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; eSNR low warning flag change count for host input - pam4_level_transition_media_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; PAM4 level transition low warning flag change count for media input - pam4_level_transition_host_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; PAM4 level transition low warning flag change count for host input - prefec_ber_min_media_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER minimum low warning flag change count for media input - prefec_ber_max_media_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER maximum low warning flag change count for media input - prefec_ber_avg_media_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER average low warning flag change count for media input - prefec_ber_curr_media_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER current low warning flag change count for media input - prefec_ber_min_host_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER minimum low warning flag change count for host input - prefec_ber_max_host_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER maximum low warning flag change count for host input - prefec_ber_avg_host_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER average low warning flag change count for host input - prefec_ber_curr_host_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Pre-FEC BER current low warning flag change count for host input - errored_frames_min_media_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames minimum low warning flag change count for media input - errored_frames_max_media_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames maximum low warning flag change count for media input - errored_frames_avg_media_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames average low warning flag change count for media input - errored_frames_curr_media_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames current low warning flag change count for media input - errored_frames_min_host_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames minimum low warning flag change count for host input - errored_frames_max_host_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames maximum low warning flag change count for host input - errored_frames_avg_host_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames average low warning flag change count for host input - errored_frames_curr_host_input_lwarn_chg_cnt{lane_num} = BOOLEAN ; Errored frames current low warning flag change count for host input + laser_temperature_media_lwarn_chg_cnt{lane_num} = INTEGER ; laser temperature low warning flag change count for media input + esnr_media_input_lwarn_chg_cnt{lane_num} = INTEGER ; eSNR low warning flag change count for media input + esnr_host_input_lwarn_chg_cnt{lane_num} = INTEGER ; eSNR low warning flag change count for host input + pam4_level_transition_media_input_lwarn_chg_cnt{lane_num} = INTEGER ; PAM4 level transition low warning flag change count for media input + pam4_level_transition_host_input_lwarn_chg_cnt{lane_num} = INTEGER ; PAM4 level transition low warning flag change count for host input + prefec_ber_min_media_input_lwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER minimum low warning flag change count for media input + prefec_ber_max_media_input_lwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER maximum low warning flag change count for media input + prefec_ber_avg_media_input_lwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER average low warning flag change count for media input + prefec_ber_curr_media_input_lwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER current low warning flag change count for media input + prefec_ber_min_host_input_lwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER minimum low warning flag change count for host input + prefec_ber_max_host_input_lwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER maximum low warning flag change count for host input + prefec_ber_avg_host_input_lwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER average low warning flag change count for host input + prefec_ber_curr_host_input_lwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER current low warning flag change count for host input + errored_frames_min_media_input_lwarn_chg_cnt{lane_num} = INTEGER ; Errored frames minimum low warning flag change count for media input + errored_frames_max_media_input_lwarn_chg_cnt{lane_num} = INTEGER ; Errored frames maximum low warning flag change count for media input + errored_frames_avg_media_input_lwarn_chg_cnt{lane_num} = INTEGER ; Errored frames average low warning flag change count for media input + errored_frames_curr_media_input_lwarn_chg_cnt{lane_num} = INTEGER ; Errored frames current low warning flag change count for media input + errored_frames_min_host_input_lwarn_chg_cnt{lane_num} = INTEGER ; Errored frames minimum low warning flag change count for host input + errored_frames_max_host_input_lwarn_chg_cnt{lane_num} = INTEGER ; Errored frames maximum low warning flag change count for host input + errored_frames_avg_host_input_lwarn_chg_cnt{lane_num} = INTEGER ; Errored frames average low warning flag change count for host input + errored_frames_curr_host_input_lwarn_chg_cnt{lane_num} = INTEGER ; Errored frames current low warning flag change count for host input ;C-CMIS specific fields - biasxi_lwarn_chg_cnt = BOOLEAN ; modulator bias xi in percentage (low warning flag change count) - biasxq_lwarn_chg_cnt = BOOLEAN ; modulator bias xq in percentage (low warning flag change count) - biasxp_lwarn_chg_cnt = BOOLEAN ; modulator bias xp in percentage (low warning flag change count) - biasyi_lwarn_chg_cnt = BOOLEAN ; modulator bias yi in percentage (low warning flag change count) - biasyq_lwarn_chg_cnt = BOOLEAN ; modulator bias yq in percentage (low warning flag change count) - biasyp_lwarn_chg_cnt = BOOLEAN ; modulator bias yq in percentage (low warning flag change count) - cdshort_lwarn_chg_cnt = BOOLEAN ; chromatic dispersion, low granularity, short link in ps/nm (low warning flag change count) - cdlong_lwarn_chg_cnt = BOOLEAN ; chromatic dispersion, low granularity, long link in ps/nm (low warning flag change count) - dgd_lwarn_chg_cnt = BOOLEAN ; differential group delay in ps (low warning flag change count) - sopmd_lwarn_chg_cnt = BOOLEAN ; second order polarization mode dispersion in ps^2 (low warning flag change count) - soproc_lwarn_chg_cnt = BOOLEAN ; state of polarization rate of change in krad/s (low warning flag change count) - pdl_lwarn_chg_cnt = BOOLEAN ; polarization dependent loss in db (low warning flag change count) - osnr_lwarn_chg_cnt = BOOLEAN ; optical signal to noise ratio in db (low warning flag change count) - esnr_lwarn_chg_cnt = BOOLEAN ; electrical signal to noise ratio in db (low warning flag change count) - cfo_lwarn_chg_cnt = BOOLEAN ; carrier frequency offset in Hz (low warning flag change count) - txcurrpower_lwarn_chg_cnt = BOOLEAN ; tx current output power in dbm (low warning flag change count) - rxtotpower_lwarn_chg_cnt = BOOLEAN ; rx total power in dbm (low warning flag change count) - rxsigpower_lwarn_chg_cnt = BOOLEAN; rx signal power in dbm (low warning flag change count) + biasxi_lwarn_chg_cnt = INTEGER ; modulator bias xi in percentage (low warning flag change count) + biasxq_lwarn_chg_cnt = INTEGER ; modulator bias xq in percentage (low warning flag change count) + biasxp_lwarn_chg_cnt = INTEGER ; modulator bias xp in percentage (low warning flag change count) + biasyi_lwarn_chg_cnt = INTEGER ; modulator bias yi in percentage (low warning flag change count) + biasyq_lwarn_chg_cnt = INTEGER ; modulator bias yq in percentage (low warning flag change count) + biasyp_lwarn_chg_cnt = INTEGER ; modulator bias yq in percentage (low warning flag change count) + cdshort_lwarn_chg_cnt = INTEGER ; chromatic dispersion, low granularity, short link in ps/nm (low warning flag change count) + cdlong_lwarn_chg_cnt = INTEGER ; chromatic dispersion, low granularity, long link in ps/nm (low warning flag change count) + dgd_lwarn_chg_cnt = INTEGER ; differential group delay in ps (low warning flag change count) + sopmd_lwarn_chg_cnt = INTEGER ; second order polarization mode dispersion in ps^2 (low warning flag change count) + soproc_lwarn_chg_cnt = INTEGER ; state of polarization rate of change in krad/s (low warning flag change count) + pdl_lwarn_chg_cnt = INTEGER ; polarization dependent loss in db (low warning flag change count) + osnr_lwarn_chg_cnt = INTEGER ; optical signal to noise ratio in db (low warning flag change count) + esnr_lwarn_chg_cnt = INTEGER ; electrical signal to noise ratio in db (low warning flag change count) + cfo_lwarn_chg_cnt = INTEGER ; carrier frequency offset in Hz (low warning flag change count) + txcurrpower_lwarn_chg_cnt = INTEGER ; tx current output power in dbm (low warning flag change count) + rxtotpower_lwarn_chg_cnt = INTEGER ; rx total power in dbm (low warning flag change count) + rxsigpower_lwarn_chg_cnt = INTEGER; rx signal power in dbm (low warning flag change count) ``` #### 2.2.5 Transceiver VDM flag time set data @@ -946,6 +959,7 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM high alarm last set time for a port key = TRANSCEIVER_VDM_HALARM_SET_TIME|ifname ; field = value + laser_temperature_media_halarm_last_set_time{lane_num} = STR ; laser temperature high alarm last set time for media input esnr_media_input_halarm_last_set_time{lane_num} = STR ; eSNR high alarm last set time for media input esnr_host_input_halarm_last_set_time{lane_num} = STR ; eSNR high alarm last set time for host input pam4_level_transition_media_input_halarm_last_set_time{lane_num} = STR ; PAM4 level transition high alarm last set time for media input @@ -998,6 +1012,7 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM low alarm last set time for a port key = TRANSCEIVER_VDM_LALARM_SET_TIME|ifname ; field = value + laser_temperature_media_lalarm_last_set_time{lane_num} = STR ; laser temperature low alarm last set time for media input esnr_media_input_lalarm_last_set_time{lane_num} = STR ; eSNR low alarm last set time for media input esnr_host_input_lalarm_last_set_time{lane_num} = STR ; eSNR low alarm last set time for host input pam4_level_transition_media_input_lalarm_last_set_time{lane_num} = STR ; PAM4 level transition low alarm last set time for media input @@ -1050,6 +1065,7 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM high warning last set time for a port key = TRANSCEIVER_VDM_HWARN_SET_TIME|ifname ; field = value + laser_temperature_media_hwarn_last_set_time{lane_num} = STR ; laser temperature high warning last set time for media input esnr_media_input_hwarn_last_set_time{lane_num} = STR ; eSNR high warning last set time for media input esnr_host_input_hwarn_last_set_time{lane_num} = STR ; eSNR high warning last set time for host input pam4_level_transition_media_input_hwarn_last_set_time{lane_num} = STR ; PAM4 level transition high warning last set time for media input @@ -1102,6 +1118,7 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM low warning last set time for a port key = TRANSCEIVER_VDM_LWARN_SET_TIME|ifname ; field = value + laser_temperature_media_lwarn_last_set_time{lane_num} = STR ; laser temperature low warning last set time for media input esnr_media_input_lwarn_last_set_time{lane_num} = STR ; eSNR low warning last set time for media input esnr_host_input_lwarn_last_set_time{lane_num} = STR ; eSNR low warning last set time for host input pam4_level_transition_media_input_lwarn_last_set_time{lane_num} = STR ; PAM4 level transition low warning last set time for media input @@ -1156,6 +1173,7 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM high alarm last clear time for a port key = TRANSCEIVER_VDM_HALARM_CLEAR_TIME|ifname ; field = value + laser_temperature_media_halarm_last_clear_time{lane_num} = STR ; laser temperature high alarm last clear time for media input esnr_media_input_halarm_last_clear_time{lane_num} = STR ; eSNR high alarm last clear time for media input esnr_host_input_halarm_last_clear_time{lane_num} = STR ; eSNR high alarm last clear time for host input pam4_level_transition_media_input_halarm_last_clear_time{lane_num} = STR ; PAM4 level transition high alarm last clear time for media input @@ -1208,6 +1226,7 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM low alarm last clear time for a port key = TRANSCEIVER_VDM_LALARM_CLEAR_TIME|ifname ; field = value + laser_temperature_media_lalarm_last_clear_time{lane_num} = STR ; laser temperature low alarm last clear time for media input esnr_media_input_lalarm_last_clear_time{lane_num} = STR ; eSNR low alarm last clear time for media input esnr_host_input_lalarm_last_clear_time{lane_num} = STR ; eSNR low alarm last clear time for host input pam4_level_transition_media_input_lalarm_last_clear_time{lane_num} = STR ; PAM4 level transition low alarm last clear time for media input @@ -1260,6 +1279,7 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM high warning last clear time for a port key = TRANSCEIVER_VDM_HWARN_CLEAR_TIME|ifname ; field = value + laser_temperature_media_hwarn_last_clear_time{lane_num} = STR ; laser temperature high warning last clear time for media input esnr_media_input_hwarn_last_clear_time{lane_num} = STR ; eSNR high warning last clear time for media input esnr_host_input_hwarn_last_clear_time{lane_num} = STR ; eSNR high warning last clear time for host input pam4_level_transition_media_input_hwarn_last_clear_time{lane_num} = STR ; PAM4 level transition high warning last clear time for media input @@ -1312,6 +1332,7 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM low warning last clear time for a port key = TRANSCEIVER_VDM_LWARN_CLEAR_TIME|ifname ; field = value + laser_temperature_media_lwarn_last_clear_time{lane_num} = STR ; laser temperature low warning last clear time for media input esnr_media_input_lwarn_last_clear_time{lane_num} = STR ; eSNR low warning last clear time for media input esnr_host_input_lwarn_last_clear_time{lane_num} = STR ; eSNR low warning last clear time for host input pam4_level_transition_media_input_lwarn_last_clear_time{lane_num} = STR ; PAM4 level transition low warning last clear time for media input @@ -1375,6 +1396,7 @@ lane_num: Represents lane number of the field. The lane number is an integer val rxoutput_status_hostlane{lane_num} = BOOLEAN ; rx output status on host lane {lane_num} tx{lane_num}disable = BOOLEAN ; TX disable state on media lane {lane_num} tx_disabled_channel = INTEGER ; TX disable field + dpdeinit_hostlane{lane_num} = BOOLEAN ; data path deinitialized status on host lane {lane_num} config_state_hostlane{lane_num} = 1*255VCHAR ; configuration status for the data path of host line {lane_num} dpinit_pending_hostlane{lane_num} = BOOLEAN ; data path configuration updated on host lane {lane_num} tuning_in_progress = BOOLEAN ; tuning in progress status @@ -1417,20 +1439,20 @@ lane_num: Represents lane number of the field. The lane number is an integer val ; Defines Transceiver Status info for a port key = TRANSCEIVER_STATUS_FLAG_CHANGE_COUNT|ifname ; Flag information for module on port ; field = value - datapath_firmware_fault_chg_cnt = STR ; datapath (DSP) firmware fault change count - module_firmware_fault_chg_cnt = STR ; module firmware fault change count - module_state_changed_chg_cnt = STR ; module state changed change count - txfault{lane_num}_chg_cnt = STR ; tx fault flag on media lane {lane_num} change count - txlos_hostlane{lane_num}_chg_cnt = STR ; tx loss of signal flag on host lane {lane_num} change count - txcdrlol_hostlane{lane_num}_chg_cnt = STR ; tx clock and data recovery loss of lock flag on host lane {lane_num} change count - tx_eq_fault{lane_num}_chg_cnt = STR ; tx equalization fault flag on host lane {lane_num} change count - rxlos{lane_num}_chg_cnt = STR ; rx loss of signal flag on media lane {lane_num} change count - rxcdrlol{lane_num}_chg_cnt = STR ; rx clock and data recovery loss of lock flag on media lane {lane_num} change count - target_output_power_oor_chg_cnt = STR ; target output power out of range flag change count - fine_tuning_oor_chg_cnt = STR ; fine tuning out of range flag change count - tuning_not_accepted_chg_cnt = STR ; tuning not accepted flag change count - invalid_channel_num_chg_cnt = STR ; invalid channel number flag change count - tuning_complete_chg_cnt = STR ; tuning complete flag change count + datapath_firmware_fault_chg_cnt = INTEGER ; datapath (DSP) firmware fault change count + module_firmware_fault_chg_cnt = INTEGER ; module firmware fault change count + module_state_changed_chg_cnt = INTEGER ; module state changed change count + txfault{lane_num}_chg_cnt = INTEGER ; tx fault flag on media lane {lane_num} change count + txlos_hostlane{lane_num}_chg_cnt = INTEGER ; tx loss of signal flag on host lane {lane_num} change count + txcdrlol_hostlane{lane_num}_chg_cnt = INTEGER ; tx clock and data recovery loss of lock flag on host lane {lane_num} change count + tx_eq_fault{lane_num}_chg_cnt = INTEGER ; tx equalization fault flag on host lane {lane_num} change count + rxlos{lane_num}_chg_cnt = INTEGER ; rx loss of signal flag on media lane {lane_num} change count + rxcdrlol{lane_num}_chg_cnt = INTEGER ; rx clock and data recovery loss of lock flag on media lane {lane_num} change count + target_output_power_oor_chg_cnt = INTEGER ; target output power out of range flag change count + fine_tuning_oor_chg_cnt = INTEGER ; fine tuning out of range flag change count + tuning_not_accepted_chg_cnt = INTEGER ; tuning not accepted flag change count + invalid_channel_num_chg_cnt = INTEGER ; invalid channel number flag change count + tuning_complete_chg_cnt = INTEGER ; tuning complete flag change count ``` #### 2.3.4 Transceiver status data to store module and data path flag set time @@ -1443,20 +1465,20 @@ lane_num: Represents lane number of the field. The lane number is an integer val ; Defines Transceiver Status info for a port key = TRANSCEIVER_STATUS_FLAG_SET_TIME|ifname ; Flag information for module on port ; field = value - datapath_firmware_fault_set_time = STR ; datapath (DSP) firmware fault set time - module_firmware_fault_set_time = STR ; module firmware fault set time - module_state_changed_set_time = STR ; module state changed set time - txfault{lane_num}_set_time = STR ; tx fault flag on media lane {lane_num} set time - txlos_hostlane{lane_num}_set_time = STR ; tx loss of signal flag on host lane {lane_num} set time - txcdrlol_hostlane{lane_num}_set_time = STR ; tx clock and data recovery loss of lock flag on host lane {lane_num} set time - tx_eq_fault{lane_num}_set_time = STR ; tx equalization fault flag on host lane {lane_num} set time - rxlos{lane_num}_set_time = STR ; rx loss of signal flag on media lane {lane_num} set time - rxcdrlol{lane_num}_set_time = STR ; rx clock and data recovery loss of lock flag on media lane {lane_num} set time - target_output_power_oor_set_time = STR ; target output power out of range flag set time - fine_tuning_oor_set_time = STR ; fine tuning out of range flag set time - tuning_not_accepted_set_time = STR ; tuning not accepted flag set time - invalid_channel_num_set_time = STR ; invalid channel number flag set time - tuning_complete_set_time = STR ; tuning complete flag set time + datapath_firmware_fault_last_set_time = STR ; datapath (DSP) firmware fault set time + module_firmware_fault_last_set_time = STR ; module firmware fault set time + module_state_changed_last_set_time = STR ; module state changed set time + txfault{lane_num}_last_set_time = STR ; tx fault flag on media lane {lane_num} set time + txlos_hostlane{lane_num}_last_set_time = STR ; tx loss of signal flag on host lane {lane_num} set time + txcdrlol_hostlane{lane_num}_last_set_time = STR ; tx clock and data recovery loss of lock flag on host lane {lane_num} set time + tx_eq_fault{lane_num}_last_set_time = STR ; tx equalization fault flag on host lane {lane_num} set time + rxlos{lane_num}_last_set_time = STR ; rx loss of signal flag on media lane {lane_num} set time + rxcdrlol{lane_num}_last_set_time = STR ; rx clock and data recovery loss of lock flag on media lane {lane_num} set time + target_output_power_oor_last_set_time = STR ; target output power out of range flag set time + fine_tuning_oor_last_set_time = STR ; fine tuning out of range flag set time + tuning_not_accepted_last_set_time = STR ; tuning not accepted flag set time + invalid_channel_num_last_set_time = STR ; invalid channel number flag set time + tuning_complete_last_set_time = STR ; tuning complete flag set time ``` #### 2.3.5 Transceiver status data to store module and data path flag clear time @@ -1469,20 +1491,20 @@ lane_num: Represents lane number of the field. The lane number is an integer val ; Defines Transceiver Status info for a port key = TRANSCEIVER_STATUS_FLAG_CLEAR_TIME|ifname ; Flag information for module on port ; field = value - datapath_firmware_fault_clear_time = STR ; datapath (DSP) firmware fault clear time - module_firmware_fault_clear_time = STR ; module firmware fault clear time - module_state_changed_clear_time = STR ; module state changed clear time - txfault{lane_num}_clear_time = STR ; tx fault flag on media lane {lane_num} clear time - txlos_hostlane{lane_num}_clear_time = STR ; tx loss of signal flag on host lane {lane_num} clear time - txcdrlol_hostlane{lane_num}_clear_time = STR ; tx clock and data recovery loss of lock flag on host lane {lane_num} clear time - tx_eq_fault{lane_num}_clear_time = STR ; tx equalization fault flag on host lane {lane_num} clear time - rxlos{lane_num}_clear_time = STR ; rx loss of signal flag on media lane {lane_num} clear time - rxcdrlol{lane_num}_clear_time = STR ; rx clock and data recovery loss of lock flag on media lane {lane_num} clear time - target_output_power_oor_clear_time = STR ; target output power out of range flag clear time - fine_tuning_oor_clear_time = STR ; fine tuning out of range flag clear time - tuning_not_accepted_clear_time = STR ; tuning not accepted flag clear time - invalid_channel_num_clear_time = STR ; invalid channel number flag clear time - tuning_complete_clear_time = STR ; tuning complete flag clear time + datapath_firmware_fault_last_clear_time = STR ; datapath (DSP) firmware fault clear time + module_firmware_fault_last_clear_time = STR ; module firmware fault clear time + module_state_changed_last_clear_time = STR ; module state changed clear time + txfault{lane_num}_last_clear_time = STR ; tx fault flag on media lane {lane_num} clear time + txlos_hostlane{lane_num}_last_clear_time = STR ; tx loss of signal flag on host lane {lane_num} clear time + txcdrlol_hostlane{lane_num}_last_clear_time = STR ; tx clock and data recovery loss of lock flag on host lane {lane_num} clear time + tx_eq_fault{lane_num}_last_clear_time = STR ; tx equalization fault flag on host lane {lane_num} clear time + rxlos{lane_num}_last_clear_time = STR ; rx loss of signal flag on media lane {lane_num} clear time + rxcdrlol{lane_num}_last_clear_time = STR ; rx clock and data recovery loss of lock flag on media lane {lane_num} clear time + target_output_power_last_oor_clear_time = STR ; target output power out of range flag clear time + fine_tuning_oor_last_clear_time = STR ; fine tuning out of range flag clear time + tuning_not_accepted_last_clear_time = STR ; tuning not accepted flag clear time + invalid_channel_num_last_clear_time = STR ; invalid channel number flag clear time + tuning_complete_last_clear_time = STR ; tuning complete flag clear time ``` ### 2.4 Transceiver PM data @@ -1564,16 +1586,27 @@ This CLI shows the transceiver DOM flags for a given port. ```plaintext CLI output format: - High Alarm High Warning Low Warning Low Alarm -Port Paramter_Name Flag Flag Flag Flag ------------ --------------- -------- -------- -------- -------- +Current System Time: Day Mon DD HH:MM:SS YYYY + High Alarm High Warning Low Warning Low Alarm + Flag/ Flag/ Flag/ Flag/ + Change Count/ Change Count/ Change Count/ Change Count/ + Last Set Time/ Last Set Time/ Last Set Time/ Last Set Time/ +Port Parameter_Name Last Clear Time Last Clear Time Last Clear Time Last Clear Time +----------- --------------- --------------- --------------- --------------- --------------- Example: admin@sonic#show interfaces transceiver dom flag Ethernet1 - High Alarm High Warning Low Warning Low Alarm -Port Paramter_Name Flag Flag Flag Flag ------------ --------------- -------- -------- -------- -------- -Ethernet1 Temperature False False False False +Current System Time: Wed Oct 16 03:46:41 2024 + High Alarm High Warning Low Warning Low Alarm + Flag/ Flag/ Flag/ Flag/ + Change Count/ Change Count/ Change Count/ Change Count/ + Last Set Time/ Last Set Time/ Last Set Time/ Last Set Time/ +Port Parameter_Name Last Clear Time Last Clear Time Last Clear Time Last Clear Time +----------- --------------- ------------------------- ------------------------- ------------------------- ------------------------- +Ethernet1 Temperature True/ False/ False/ False/ + 1/ 0/ 0/ 0/ + Wed Oct 16 03:46:41 2024/ N/A/ N/A/ N/A/ + N/A N/A N/A N/A ``` ### 3.2 CLI Commands for VDM Monitoring @@ -1605,16 +1638,27 @@ This CLI shows the transceiver VDM flags for a given port. ```plaintext CLI output format: - High Alarm High Warning Low Warning Low Alarm -Port Paramter_Name Flag Flag Flag Flag ------------ --------------- -------- -------- -------- -------- +Current System Time: Day Mon DD HH:MM:SS YYYY + High Alarm High Warning Low Warning Low Alarm + Flag/ Flag/ Flag/ Flag/ + Change Count/ Change Count/ Change Count/ Change Count/ + Last Set Time/ Last Set Time/ Last Set Time/ Last Set Time/ +Port Parameter_Name Last Clear Time Last Clear Time Last Clear Time Last Clear Time +----------- --------------- --------------- --------------- --------------- --------------- Example: admin@sonic#show interfaces transceiver vdm flag Ethernet1 - High Alarm High Warning Low Warning Low Alarm -Port Paramter_Name Flag Flag Flag Flag ------------ --------------- -------- -------- -------- -------- -Ethernet1 eSNR Media Input False False False False +Current System Time: Wed Oct 16 03:46:41 2024 + High Alarm High Warning Low Warning Low Alarm + Flag/ Flag/ Flag/ Flag/ + Change Count/ Change Count/ Change Count/ Change Count/ + Last Set Time/ Last Set Time/ Last Set Time/ Last Set Time/ +Port Parameter_Name Last Clear Time Last Clear Time Last Clear Time Last Clear Time +----------- --------------- ------------------------- ------------------------- ------------------------- ------------------------- +Ethernet1 eSNR Media Input True/ False/ False/ False/ + 1/ 0/ 0/ 0/ + Wed Oct 16 03:46:41 2024/ N/A/ N/A/ N/A/ + N/A N/A N/A N/A ``` ## 4. SONiC CMIS diagnostic monitoring workflow @@ -1627,7 +1671,6 @@ The following tables are updated by the `SfpStateUpdateTask` thread: 1. `TRANSCEIVER_DOM_THRESHOLD` 2. `TRANSCEIVER_VDM_THRESHOLD` -3. `TRANSCEIVER_PM_THRESHOLD` ### 4.2 Dynamic Diagnostic Information @@ -1653,8 +1696,122 @@ The `DomInfoUpdateTask` thread is responsible for updating the dynamic diagnosti #### 4.2.2 Diagnostic Information Update During Link Down Event -When a link down event is detected by the `DomInfoUpdateTask` thread, a specific subset of the diagnostic information fields are updated in the `redis-db`. -Also, the relevant flags, change count and their set/clear time will be updated in the `redis-db`. +When a link down event is detected by the `DomInfoUpdateTask` thread, a specific subset of the diagnostic information fields are updated in the `redis-db`. This is done to ensure that the diagnostic information is up-to-date and accurate during a link down event since the periodic update through the `DomInfoUpdateTask` thread can take more than 60 seconds to update the diagnostic information. + +The following tables are updated during a link down event: + +##### 4.2.2.1 DOM Related Fields + +The flags, change count, and their set/clear time for the following fields are updated in the `redis-db` during a link down event: + +- `temperature` +- `voltage` +- `tx{lane_num}power` +- `rx{lane_num}power` +- `tx{lane_num}bias` +- `laser_temperature` + +Example + +The following fields related to `temperature` are updated in the `redis-db` during a link down event: + +- `temphighalarm_flag` +- `temphighwarning_flag` +- `templowwarning_flag` +- `templowalarm_flag` +- `temphighalarm_chg_cnt` +- `temphighwarning_chg_cnt` +- `templowwarning_chg_cnt` +- `templowalarm_chg_cnt` +- `temphighalarm_last_set_time` +- `temphighwarning_last_set_time` +- `templowwarning_last_set_time` +- `templowalarm_last_set_time` +- `temphighalarm_last_clear_time` +- `temphighwarning_last_clear_time` +- `templowwarning_last_clear_time` +- `templowalarm_last_clear_time` + +##### 4.2.2.2 VDM Related Fields + +The flags, change count, and their set/clear time for the following fields are updated in the `redis-db` during a link down event: + +- `laser_temperature_media{lane_num}` +- `esnr_media_input` +- `pam4_level_transition_media_input` +- `prefec_ber_min_media_input` +- `prefec_ber_max_media_input` +- `prefec_ber_avg_media_input` +- `prefec_ber_curr_media_input` +- `errored_frames_min_media_input` +- `errored_frames_max_media_input` +- `errored_frames_avg_media_input` +- `errored_frames_curr_media_input` +- `esnr_host_input` +- `pam4_level_transition_host_input` +- `prefec_ber_min_host_input` +- `prefec_ber_max_host_input` +- `prefec_ber_avg_host_input` +- `prefec_ber_curr_host_input` +- `errored_frames_min_host_input` +- `errored_frames_max_host_input` +- `errored_frames_avg_host_input` +- `errored_frames_curr_host_input` + +Example + +The following fields related to `esnr_media_input` are updated in the `redis-db` during a link down event: + +- `esnr_media_input_halarm_flag{lane_num}` +- `esnr_media_input_lalarm_flag{lane_num}` +- `esnr_media_input_hwarn_flag{lane_num}` +- `esnr_media_input_lwarn_flag{lane_num}` +- `esnr_media_input_halarm_chg_cnt{lane_num}` +- `esnr_media_input_lalarm_chg_cnt{lane_num}` +- `esnr_media_input_hwarn_chg_cnt{lane_num}` +- `esnr_media_input_lwarn_chg_cnt{lane_num}` +- `esnr_media_input_halarm_last_set_time{lane_num}` +- `esnr_media_input_lalarm_last_set_time{lane_num}` +- `esnr_media_input_hwarn_last_set_time{lane_num}` +- `esnr_media_input_lwarn_last_set_time{lane_num}` +- `esnr_media_input_halarm_last_clear_time{lane_num}` +- `esnr_media_input_lalarm_last_clear_time{lane_num}` +- `esnr_media_input_hwarn_last_clear_time{lane_num}` +- `esnr_media_input_lwarn_last_clear_time{lane_num}` + +##### 4.2.2.3 Transceiver Status Related Fields + +The following fields of the `TRANSCEIVER_STATUS` table are updated in the `redis-db` during a link down event: + +- `tx_disabled_channel` +- `module_state` +- `module_fault_cause` +- `DP{lane_num}State` +- `txoutput_status{lane_num}` +- `rxoutput_status_hostlane{lane_num}` +- `config_state_hostlane{lane_num}` +- `dpdeinit_hostlane{lane_num}` + +The flags, change count, and their set/clear time for the following fields are updated in the `redis-db` during a link down event: + +- `datapath_firmware_fault` +- `module_firmware_fault` +- `module_state_changed` +- `txfault{lane_num}` +- `rxlos{lane_num}` +- `txlos_hostlane{lane_num}` +- `txcdrlol_hostlane{lane_num}` +- `tx_eq_fault{lane_num}` +- `rxcdrlol{lane_num}` + +Example + +The following fields related to `datapath_firmware_fault` are updated in the `redis-db` during a link down event: + +- `datapath_firmware_fault` +- `datapath_firmware_fault_chg_cnt` +- `datapath_firmware_fault_last_set_time` +- `datapath_firmware_fault_last_clear_time` #### 4.2.3 Details of Flag Analysis of Tables @@ -1668,8 +1825,8 @@ The purpose of flag analysis is to track the status of various parameters and to - `TRANSCEIVER_DOM_FLAG`: This table stores flags indicating the status of various DOM parameters. - `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`: This table keeps a count of how many times each DOM flag has changed. -- `TRANSCEIVER_DOM_FLAG_SET_TIME`: This table records the timestamp when each DOM flag was set. -- `TRANSCEIVER_DOM_FLAG_CLEAR_TIME`: This table records the timestamp when each DOM flag was cleared. +- `TRANSCEIVER_DOM_FLAG_SET_TIME`: This table records the timestamp (in local timezone) when each DOM flag was set. The timestamp is recorded in the format `Day Mon DD HH:MM:SS YYYY`. +- `TRANSCEIVER_DOM_FLAG_CLEAR_TIME`: This table records the timestamp (in local timezone) when each DOM flag was cleared. The timestamp is recorded in the format `Day Mon DD HH:MM:SS YYYY` **Example of Table Updates:** @@ -1682,4 +1839,4 @@ The purpose of flag analysis is to track the status of various parameters and to #### 4.2.4 Flag Change Count and Time Set/Clear Behavior During `xcvrd` Restart -During `xcvrd` stop, the `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`, `TRANSCEIVER_DOM_FLAG_SET_TIME`, and `TRANSCEIVER_DOM_FLAG_CLEAR_TIME` tables are deleted by the `xcvrd` process. When `xcvrd` is restarted, the `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`, `TRANSCEIVER_DOM_FLAG_SET_TIME`, and `TRANSCEIVER_DOM_FLAG_CLEAR_TIME` tables are recreated and the flag change count and time set/clear behavior are reset to zero. +During `xcvrd` stop, the `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`, `TRANSCEIVER_DOM_FLAG_SET_TIME`, and `TRANSCEIVER_DOM_FLAG_CLEAR_TIME` tables are deleted by the `xcvrd` process. When `xcvrd` is restarted, the `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`, `TRANSCEIVER_DOM_FLAG_SET_TIME`, and `TRANSCEIVER_DOM_FLAG_CLEAR_TIME` tables are recreated and the flag change count and set/clear time are updated based on the current flag status (i.e. the value of these fields are not cached between `xcvrd` restarts). From d7915ca48e99dbd2cdd130daeae07c49aed69bad Mon Sep 17 00:00:00 2001 From: Mihir Patel Date: Thu, 17 Oct 2024 23:22:47 +0000 Subject: [PATCH 04/12] Added section for transceiver OIR handling for updating redis-db --- ...Diagnostic_Monitoring_Overview_in_SONiC.md | 42 +++++++++++-------- 1 file changed, 24 insertions(+), 18 deletions(-) diff --git a/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md b/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md index dfed29351d..c2f53e08ea 100644 --- a/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md +++ b/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md @@ -23,26 +23,26 @@ The CMIS diagnostic monitoring data is stored in the `STATE_DB` database. The `S - `TRANSCEIVER_VDM_CURRENT_SAMPLE`: Stores VDM sample data. - `TRANSCEIVER_VDM_THRESHOLD`: Contains threshold values for VDM parameters. - `TRANSCEIVER_VDM_HALARM_THRESHOLD`: Stores the high alarm threshold values for the VDM data. -- `TRANSCEIVER_VDM_LALARM_THRESHOLD`: Stores the high alarm threshold values for the VDM data. +- `TRANSCEIVER_VDM_LALARM_THRESHOLD`: Stores the low alarm threshold values for the VDM data. - `TRANSCEIVER_VDM_HWARN_THRESHOLD`: Stores the high warning threshold values for the VDM data. -- `TRANSCEIVER_VDM_LWARN_THRESHOLD`: Stores the high warning threshold values for the VDM data. +- `TRANSCEIVER_VDM_LWARN_THRESHOLD`: Stores the low warning threshold values for the VDM data. - `TRANSCEIVER_VDM_HALARM_FLAG`: Stores the high alarm flag for the VDM data. - `TRANSCEIVER_VDM_LALARM_FLAG`: Stores the low alarm flag for the VDM data. - `TRANSCEIVER_VDM_HWARN_FLAG`: Stores the high warning flag for the VDM data. - `TRANSCEIVER_VDM_LWARN_FLAG`: Stores the low warning flag for the VDM data. -- `TRANSCEIVER_VDM_HALARM_FLAG_CHANGE_COUNT`: Keeps a count of how many times each VDM flag has changed for high alarm flags. -- `TRANSCEIVER_VDM_LALARM_FLAG_CHANGE_COUNT`: Keeps a count of how many times each VDM flag has changed for low alarm flags. -- `TRANSCEIVER_VDM_HWARN_FLAG_CHANGE_COUNT`: Keeps a count of how many times each VDM flag has changed for high warning flags. -- `TRANSCEIVER_VDM_LWARN_FLAG_CHANGE_COUNT`: Keeps a count of how many times each VDM flag has changed for low warning flags. +- `TRANSCEIVER_VDM_HALARM_FLAG_CHANGE_COUNT`: Keeps a count of how many times each VDM high alarm flag has changed. +- `TRANSCEIVER_VDM_LALARM_FLAG_CHANGE_COUNT`: Keeps a count of how many times each VDM low alarm flag has changed. +- `TRANSCEIVER_VDM_HWARN_FLAG_CHANGE_COUNT`: Keeps a count of how many times each VDM high warning flag has changed. +- `TRANSCEIVER_VDM_LWARN_FLAG_CHANGE_COUNT`: Keeps a count of how many times each VDM low warning flag has changed. - `TRANSCEIVER_VDM_HALARM_SET_TIME`: Records the timestamp when each VDM high alarm flag was set. - `TRANSCEIVER_VDM_LALARM_SET_TIME`: Records the timestamp when each VDM low alarm flag was set. - `TRANSCEIVER_VDM_HWARN_SET_TIME`: Records the timestamp when each VDM high warning flag was set. - `TRANSCEIVER_VDM_LWARN_SET_TIME`: Records the timestamp when each VDM low warning flag was set. -- `TRANSCEIVER_VDM_HALM_CLEAR_TIME`: Records the timestamp when each VDM high alarm flag was cleared. -- `TRANSCEIVER_VDM_LALM_CLEAR_TIME`: Records the timestamp when each VDM low alarm flag was cleared. +- `TRANSCEIVER_VDM_HALARM_CLEAR_TIME`: Records the timestamp when each VDM high alarm flag was cleared. +- `TRANSCEIVER_VDM_LALARM_CLEAR_TIME`: Records the timestamp when each VDM low alarm flag was cleared. - `TRANSCEIVER_VDM_HWARN_CLEAR_TIME`: Records the timestamp when each VDM high warning flag was cleared. - `TRANSCEIVER_VDM_LWARN_CLEAR_TIME`: Records the timestamp when each VDM low warning flag was cleared. -- `TRANSCEIVER_STATUS`: Stores the status data of the transceivers. +- `TRANSCEIVER_STATUS`: Stores the module and datapath state data along with various flags related to it. Also stores various Tx and Rx related flags. - `TRANSCEIVER_STATUS_FLAG_CHANGE_COUNT`: Stores the count of times the transceiver status flag has changed. - `TRANSCEIVER_STATUS_FLAG_SET_TIME`: Records the timestamp when the transceiver status flag was set. - `TRANSCEIVER_STATUS_FLAG_CLEAR_TIME`: Records the timestamp when the transceiver status flag was cleared. @@ -788,7 +788,7 @@ lane_num: Represents lane number of the field. The lane number is an integer val rxsigpower_halarm_chg_cnt = INTEGER; rx signal power in dbm (high alarm flag change count) ``` -###### 2.2.4.2 Transceiver VDM low alarm flag change count data +##### 2.2.4.2 Transceiver VDM low alarm flag change count data The `TRANSCEIVER_VDM_LALARM_FLAG_CHANGE_COUNT` table stores the flag change count for low alarm flag for the VDM data. @@ -1605,8 +1605,8 @@ Port Parameter_Name Last Clear Time Last Clear Time ----------- --------------- ------------------------- ------------------------- ------------------------- ------------------------- Ethernet1 Temperature True/ False/ False/ False/ 1/ 0/ 0/ 0/ - Wed Oct 16 03:46:41 2024/ N/A/ N/A/ N/A/ - N/A N/A N/A N/A + Wed Oct 16 03:46:41 2024/ Never Never Never + Never Wed Oct 16 03:46:41 2024 Wed Oct 16 03:46:41 2024 Wed Oct 16 03:46:41 2024 ``` ### 3.2 CLI Commands for VDM Monitoring @@ -1657,8 +1657,8 @@ Port Parameter_Name Last Clear Time Last Clear Time ----------- --------------- ------------------------- ------------------------- ------------------------- ------------------------- Ethernet1 eSNR Media Input True/ False/ False/ False/ 1/ 0/ 0/ 0/ - Wed Oct 16 03:46:41 2024/ N/A/ N/A/ N/A/ - N/A N/A N/A N/A + Wed Oct 16 03:46:41 2024/ Never Never Never + Never Wed Oct 16 03:46:41 2024 Wed Oct 16 03:46:41 2024 Wed Oct 16 03:46:41 2024 ``` ## 4. SONiC CMIS diagnostic monitoring workflow @@ -1689,7 +1689,7 @@ The `DomInfoUpdateTask` thread is responsible for updating the dynamic diagnosti 6. Analyze the transceiver DOM flag data by comparing the current flag data with the previous flag data and update the `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`, `TRANSCEIVER_DOM_FLAG_SET_TIME`, and `TRANSCEIVER_DOM_FLAG_CLEAR_TIME` tables. 7. Read the transceiver status data from the module and update the `TRANSCEIVER_STATUS` table. 8. If the transceiver supports VDM monitoring, perform the following steps: - 1. Freeze the statistics by calling the CMIS API (`freeze_vdm_stats`) and wait for `FreezeDone` by calling `get_vdm_freeze_status`. Once the statistics are frozen, record the timestamp and copy the VDM and PM statistics from the transceiver. + 1. Freeze the statistics by calling the CMIS API (`freeze_vdm_stats`) and wait for `FreezeDone` by calling `get_vdm_freeze_status`. Once the statistics are frozen, record the timestamp and copy the supported VDM and PM data from the transceiver. 2. Unfreeze the statistics by calling the CMIS API (`unfreeze_vdm_stats`). 3. Update the `TRANSCEIVER_VDM_CURRENT_SAMPLE` and `TRANSCEIVER_PM` tables with both basic and statistic instance's data read for VDM and PM. 4. Analyze the VDM flags by comparing the current data with the previous data and update the VDM flag, change count and time related tables. @@ -1824,9 +1824,9 @@ The purpose of flag analysis is to track the status of various parameters and to **Tables Used for Flag Analysis:** - `TRANSCEIVER_DOM_FLAG`: This table stores flags indicating the status of various DOM parameters. -- `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`: This table keeps a count of how many times each DOM flag has changed. -- `TRANSCEIVER_DOM_FLAG_SET_TIME`: This table records the timestamp (in local timezone) when each DOM flag was set. The timestamp is recorded in the format `Day Mon DD HH:MM:SS YYYY`. -- `TRANSCEIVER_DOM_FLAG_CLEAR_TIME`: This table records the timestamp (in local timezone) when each DOM flag was cleared. The timestamp is recorded in the format `Day Mon DD HH:MM:SS YYYY` +- `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`: This table keeps a count of how many times each DOM flag has changed. Upon initialization, the count is set to 0. +- `TRANSCEIVER_DOM_FLAG_SET_TIME`: This table records the timestamp (in local timezone) when each DOM flag was set. The timestamp is recorded in the format `Day Mon DD HH:MM:SS YYYY`. During initialization, the timestamp is set to `Never` if the flag is not set. +- `TRANSCEIVER_DOM_FLAG_CLEAR_TIME`: This table records the timestamp (in local timezone) when each DOM flag was cleared. The timestamp is recorded in the format `Day Mon DD HH:MM:SS YYYY`. During initialization, the timestamp is set to `Never` if the flag is set. **Example of Table Updates:** @@ -1840,3 +1840,9 @@ The purpose of flag analysis is to track the status of various parameters and to #### 4.2.4 Flag Change Count and Time Set/Clear Behavior During `xcvrd` Restart During `xcvrd` stop, the `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`, `TRANSCEIVER_DOM_FLAG_SET_TIME`, and `TRANSCEIVER_DOM_FLAG_CLEAR_TIME` tables are deleted by the `xcvrd` process. When `xcvrd` is restarted, the `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`, `TRANSCEIVER_DOM_FLAG_SET_TIME`, and `TRANSCEIVER_DOM_FLAG_CLEAR_TIME` tables are recreated and the flag change count and set/clear time are updated based on the current flag status (i.e. the value of these fields are not cached between `xcvrd` restarts). + +#### 4.2.5 Flag Change Count and Time Set/Clear Behavior During Transceiver Removal and Insertion + +When a transceiver is removed, `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`, `TRANSCEIVER_DOM_FLAG_SET_TIME`, and `TRANSCEIVER_DOM_FLAG_CLEAR_TIME` tables are deleted by the `SfpStateUpdateTask` thread. + +When the transceiver is inserted back, the `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`, `TRANSCEIVER_DOM_FLAG_SET_TIME`, and `TRANSCEIVER_DOM_FLAG_CLEAR_TIME` tables are recreated through the periodic polling routine of `DomInfoUpdateTask` and the flag change count and set/clear time are updated based on the current flag status. From f1d72883fc7a5f4c36e95ce2f0a521505926808b Mon Sep 17 00:00:00 2001 From: Mihir Patel Date: Thu, 24 Oct 2024 06:06:42 +0000 Subject: [PATCH 05/12] Modified CLI output for the diagnostic monitoring related CLIs --- ...Diagnostic_Monitoring_Overview_in_SONiC.md | 461 +++++++++++++++++- 1 file changed, 436 insertions(+), 25 deletions(-) diff --git a/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md b/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md index c2f53e08ea..b994729160 100644 --- a/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md +++ b/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md @@ -42,7 +42,8 @@ The CMIS diagnostic monitoring data is stored in the `STATE_DB` database. The `S - `TRANSCEIVER_VDM_LALARM_CLEAR_TIME`: Records the timestamp when each VDM low alarm flag was cleared. - `TRANSCEIVER_VDM_HWARN_CLEAR_TIME`: Records the timestamp when each VDM high warning flag was cleared. - `TRANSCEIVER_VDM_LWARN_CLEAR_TIME`: Records the timestamp when each VDM low warning flag was cleared. -- `TRANSCEIVER_STATUS`: Stores the module and datapath state data along with various flags related to it. Also stores various Tx and Rx related flags. +- `TRANSCEIVER_STATUS`: Stores the module and datapath state data along with various flags related to it. Also stores various Tx and Rx related status values. +- `TRANSCEIVER_STATUS_FLAG`: Stores the module and datapath status flags along with various Tx and Rx related status flags. - `TRANSCEIVER_STATUS_FLAG_CHANGE_COUNT`: Stores the count of times the transceiver status flag has changed. - `TRANSCEIVER_STATUS_FLAG_SET_TIME`: Records the timestamp when the transceiver status flag was set. - `TRANSCEIVER_STATUS_FLAG_CLEAR_TIME`: Records the timestamp when the transceiver status flag was cleared. @@ -1387,6 +1388,7 @@ lane_num: Represents lane number of the field. The lane number is an integer val ; Defines Transceiver Status info for a port key = TRANSCEIVER_STATUS|ifname ; Error information for module on port ; field = value + cmis_state = 1*255VCHAR ; Software CMIS state of the module status = 1*255VCHAR ; code of the module status (plug in, plug out) error = 1*255VCHAR ; module error (N/A or a string consisting of error descriptions joined by "|", like "error1 | error2" ) module_state = 1*255VCHAR ; current module state (ModuleLowPwr, ModulePwrUp, ModuleReady, ModulePwrDn, Fault) @@ -1396,8 +1398,8 @@ lane_num: Represents lane number of the field. The lane number is an integer val rxoutput_status_hostlane{lane_num} = BOOLEAN ; rx output status on host lane {lane_num} tx{lane_num}disable = BOOLEAN ; TX disable state on media lane {lane_num} tx_disabled_channel = INTEGER ; TX disable field - dpdeinit_hostlane{lane_num} = BOOLEAN ; data path deinitialized status on host lane {lane_num} config_state_hostlane{lane_num} = 1*255VCHAR ; configuration status for the data path of host line {lane_num} + dpdeinit_hostlane{lane_num} = BOOLEAN ; data path deinitialized status on host lane {lane_num} dpinit_pending_hostlane{lane_num} = BOOLEAN ; data path configuration updated on host lane {lane_num} tuning_in_progress = BOOLEAN ; tuning in progress status wavelength_unlock_status = BOOLEAN ; laser unlocked status @@ -1416,12 +1418,12 @@ lane_num: Represents lane number of the field. The lane number is an integer val datapath_firmware_fault = BOOLEAN ; datapath (DSP) firmware fault module_firmware_fault = BOOLEAN ; module firmware fault module_state_changed = BOOLEAN ; module state changed - txfault{lane_num} = BOOLEAN ; tx fault flag on media lane {lane_num} - txlos_hostlane{lane_num} = BOOLEAN ; tx loss of signal flag on host lane {lane_num} - txcdrlol_hostlane{lane_num} = BOOLEAN ; tx clock and data recovery loss of lock flag on host lane {lane_num} - tx_eq_fault{lane_num} = BOOLEAN ; tx equalization fault flag on host lane {lane_num} - rxlos{lane_num} = BOOLEAN ; rx loss of signal flag on media lane {lane_num} - rxcdrlol{lane_num} = BOOLEAN ; rx clock and data recovery loss of lock flag on media lane {lane_num} + txfault{lane_num} = BOOLEAN ; tx fault flag on media lane {lane_num} + txlos_hostlane{lane_num} = BOOLEAN ; tx loss of signal flag on host lane {lane_num} + txcdrlol_hostlane{lane_num} = BOOLEAN ; tx clock and data recovery loss of lock flag on host lane {lane_num} + tx_eq_fault{lane_num} = BOOLEAN ; tx equalization fault flag on host lane {lane_num} + rxlos{lane_num} = BOOLEAN ; rx loss of signal flag on media lane {lane_num} + rxcdrlol{lane_num} = BOOLEAN ; rx clock and data recovery loss of lock flag on media lane {lane_num} target_output_power_oor = BOOLEAN ; target output power out of range flag fine_tuning_oor = BOOLEAN ; fine tuning out of range flag tuning_not_accepted = BOOLEAN ; tuning not accepted flag @@ -1566,6 +1568,8 @@ This CLI shows the transceiver DOM and threshold values for a given port. ```plaintext CLI output format: +LX - Represents the data for the lane number X + High Alarm High Warning Low Warning Low Alarm Paramter_Name Threshold Threshold Threshold Threshold Port (Unit) (Unit) (Unit) (Unit) (Unit) @@ -1573,11 +1577,73 @@ Port (Unit) (Unit) (Unit) (Unit) (Unit) Example: admin@sonic#show interfaces transceiver dom Ethernet1 +LX - Represents the data for the lane number X + High Alarm High Warning Low Warning Low Alarm Temperature Threshold Threshold Threshold Threshold Port (Celsius) (Celsius) (Celsius) (Celsius) (Celsius) ----------- --------------- -------- -------- -------- -------- -Ethernet1 100 90 80 -10 -20 +Ethernet1 50 90 80 -10 -20 + High Alarm High Warning Low Warning Low Alarm + Voltage Threshold Threshold Threshold Threshold +Port (Volts) (Volts) (Volts) (Volts) (Volts) +----------- --------------- -------- -------- -------- -------- +Ethernet1 3.295 3.6 3.465 3.135 3.105 + Tx Bias High Alarm High Warning Low Warning Low Alarm + Current Threshold Threshold Threshold Threshold +Port (mA) (mA) (mA) (mA) (mA) +----------- --------------- -------- -------- -------- -------- +Ethernet1 L1 - 106.952 340.0 320.0 60.0 50.0 + L2 - 106.952 340.0 320.0 60.0 50.0 + L3 - 106.952 340.0 320.0 60.0 50.0 + L4 - 106.952 340.0 320.0 60.0 50.0 + L5 - 106.952 340.0 320.0 60.0 50.0 + L6 - 106.952 340.0 320.0 60.0 50.0 + L7 - 106.952 340.0 320.0 60.0 50.0 + L8 - 106.952 340.0 320.0 60.0 50.0 + High Alarm High Warning Low Warning Low Alarm + TX Power Threshold Threshold Threshold Threshold +Port (dBm) (dBm) (dBm) (dBm) (dBm) +----------- --------------- -------- -------- -------- -------- +Ethernet1 L1 - 2.929 6.0 5.0 -10 -20.202 + L2 - 2.929 6.0 5.0 -10 -20.202 + L3 - 2.929 6.0 5.0 -10 -20.202 + L4 - 2.929 6.0 5.0 -10 -20.202 + L5 - 2.929 6.0 5.0 -10 -20.202 + L6 - 2.929 6.0 5.0 -10 -20.202 + L7 - 2.929 6.0 5.0 -10 -20.202 + L8 - 2.929 6.0 5.0 -10 -20.202 + High Alarm High Warning Low Warning Low Alarm + RX Power Threshold Threshold Threshold Threshold +Port (dBm) (dBm) (dBm) (dBm) (dBm) +----------- --------------- -------- -------- -------- -------- +Ethernet1 L1 - 2.01 4.5 3.0 -3.903 -4.903 + L2 - 2.01 4.5 3.0 -3.903 -4.903 + L3 - 2.01 4.5 3.0 -3.903 -4.903 + L4 - 2.01 4.5 3.0 -3.903 -4.903 + L5 - 2.01 4.5 3.0 -3.903 -4.903 + L6 - 2.01 4.5 3.0 -3.903 -4.903 + L7 - 2.01 4.5 3.0 -3.903 -4.903 + L8 - 2.01 4.5 3.0 -3.903 -4.903 + High Alarm High Warning Low Warning Low Alarm + Laser Temp Threshold Threshold Threshold Threshold +Port (Celsius) (Celsius) (Celsius) (Celsius) (Celsius) +----------- --------------- -------- -------- -------- -------- +Ethernet1 50 90 80 -10 -20 + Laser config High Alarm High Warning Low Warning Low Alarm + frequency Threshold Threshold Threshold Threshold +Port (GHz) (GHz) (GHz) (GHz) (GHz) +----------- --------------- -------- -------- -------- -------- +Ethernet1 195.5 N/A N/A N/A N/A + Laser current High Alarm High Warning Low Warning Low Alarm +Port (GHz) (GHz) (GHz) (GHz) (GHz) +----------- --------------- -------- -------- -------- -------- +Ethernet1 195.5 N/A N/A N/A N/A + Tx config High Alarm High Warning Low Warning Low Alarm + power Threshold Threshold Threshold Threshold +Port (dBm) (dBm) (dBm) (dBm) (dBm) +----------- --------------- -------- -------- -------- -------- +Ethernet1 195.5 N/A N/A N/A N/A ``` #### 3.1.2 `show interfaces transceiver dom flag PORT` @@ -1586,7 +1652,9 @@ This CLI shows the transceiver DOM flags for a given port. ```plaintext CLI output format: +LX - Represents the data for the lane number X Current System Time: Day Mon DD HH:MM:SS YYYY + High Alarm High Warning Low Warning Low Alarm Flag/ Flag/ Flag/ Flag/ Change Count/ Change Count/ Change Count/ Change Count/ @@ -1596,7 +1664,9 @@ Port Parameter_Name Last Clear Time Last Clear Time Example: admin@sonic#show interfaces transceiver dom flag Ethernet1 +LX - Represents the data for the lane number X Current System Time: Wed Oct 16 03:46:41 2024 + High Alarm High Warning Low Warning Low Alarm Flag/ Flag/ Flag/ Flag/ Change Count/ Change Count/ Change Count/ Change Count/ @@ -1605,8 +1675,112 @@ Port Parameter_Name Last Clear Time Last Clear Time ----------- --------------- ------------------------- ------------------------- ------------------------- ------------------------- Ethernet1 Temperature True/ False/ False/ False/ 1/ 0/ 0/ 0/ - Wed Oct 16 03:46:41 2024/ Never Never Never - Never Wed Oct 16 03:46:41 2024 Wed Oct 16 03:46:41 2024 Wed Oct 16 03:46:41 2024 + Wed Oct 16 03:46:41 2024/ never never never + never Wed Oct 16 03:46:41 2024 Wed Oct 16 03:46:41 2024 Wed Oct 16 03:46:41 2024 +Ethernet1 Voltage False/ False/ False/ False/ + 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never never never +Ethernet1 Tx Bias Current False/ False/ False/ False/ + L1 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never never never +Ethernet1 Tx Bias Current False/ False/ False/ False/ + L2 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never never never +Ethernet1 Tx Bias Current False/ False/ False/ False/ + L3 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never never never +Ethernet1 Tx Bias Current False/ False/ False/ False/ + L4 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never never never +Ethernet1 Tx Bias Current False/ False/ False/ False/ + L5 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never never never +Ethernet1 Tx Bias Current False/ False/ False/ False/ + L6 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never never never +Ethernet1 Tx Bias Current False/ False/ False/ False/ + L7 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never never never +Ethernet1 Tx Bias Current False/ False/ False/ False/ + L8 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never never never +Ethernet1 Tx Power False/ False/ False/ False/ + L1 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never never never +Ethernet1 Tx Power False/ False/ False/ False/ + L2 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never never never +Ethernet1 Tx Power False/ False/ False/ False/ + L3 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never never never +Ethernet1 Tx Power False/ False/ False/ False/ + L4 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never never never +Ethernet1 Tx Power False/ False/ False/ False/ + L5 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never never never +Ethernet1 Tx Power False/ False/ False/ False/ + L6 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never never never +Ethernet1 Tx Power False/ False/ False/ False/ + L7 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never never never +Ethernet1 Tx Power False/ False/ False/ False/ + L8 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never never never +Ethernet1 Rx Power False/ False/ False/ False/ + L1 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never never never +Ethernet1 Rx Power False/ False/ False/ False/ + L2 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never never never +Ethernet1 Rx Power False/ False/ False/ False/ + L3 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never never never +Ethernet1 Rx Power False/ False/ False/ False/ + L4 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never never never +Ethernet1 Rx Power False/ False/ False/ False/ + L5 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never never never +Ethernet1 Rx Power False/ False/ False/ False/ + L6 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never never never +Ethernet1 Rx Power False/ False/ False/ False/ + L7 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never never never +Ethernet1 Rx Power False/ False/ False/ False/ + L8 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never never never +Ethernet1 Laser False/ False/ False/ False/ + Temperature 0/ 0/ 1/ 1/ + never/ never/ Wed Oct 16 03:46:41 2024/ never/ + never never never never ``` ### 3.2 CLI Commands for VDM Monitoring @@ -1614,51 +1788,288 @@ Ethernet1 Temperature True/ False/ #### 3.2.1 `show interfaces transceiver vdm PORT` This CLI shows the transceiver VDM and threshold values for a given port. +The CLI will show VDM data for observables which are supported by the module vendor. If the module vendor does not support a particular observable, the CLI will not show data for that observable. ```plaintext CLI output format: High Alarm High Warning Low Warning Low Alarm - Paramter_Name Threshold Threshold Threshold Threshold + Observable_Name Threshold Threshold Threshold Threshold Port (Unit) (Unit) (Unit) (Unit) (Unit) ----------- --------------- -------- -------- -------- -------- Example: admin@sonic#show interfaces transceiver vdm Ethernet1 -Basic Values: - High Alarm High Warning Low Warning Low Alarm - eSNR Media Input Threshold Threshold Threshold Threshold -Port (dB) (dB) (dB) (dB) (dB) + eSNR Media High Alarm High Warning Low Warning Low Alarm + Input Threshold Threshold Threshold Threshold +Port (dB) (dB) (dB) (dB) (dB) ----------- --------------- -------- -------- -------- -------- -Ethernet1 23.48046875 0 0 0 0 +Ethernet1 L1 - 23.480468 0 0 0 0 + L2 - 23.480468 0 0 0 0 + L3 - 23.480468 0 0 0 0 + L4 - 23.480468 0 0 0 0 + L5 - 23.480468 0 0 0 0 + L6 - 23.480468 0 0 0 0 + L7 - 23.480468 0 0 0 0 + L8 - 23.480468 0 0 0 0 + eSNR Media High Alarm High Warning Low Warning Low Alarm + Output Threshold Threshold Threshold Threshold +Port (dB) (dB) (dB) (dB) (dB) +----------- --------------- -------- -------- -------- -------- +Ethernet1 L1 - 23.480468 0 0 0 0 + L2 - 23.480468 0 0 0 0 + L3 - 23.480468 0 0 0 0 + L4 - 23.480468 0 0 0 0 + L5 - 23.480468 0 0 0 0 + L6 - 23.480468 0 0 0 0 + L7 - 23.480468 0 0 0 0 + L8 - 23.480468 0 0 0 0 +. +. +. +Upto all observables supported by the module vendor ``` #### 3.2.2 `show interfaces transceiver vdm flag PORT` This CLI shows the transceiver VDM flags for a given port. +For a given observable, the CLI will show data only for only 1 lane if one or more lanes has a flag set to true. If none of the lanes have a flag set to true, no data will be shown for that observable. +The `--detail` option can be used to show the data for all lanes and observables irrespective of the flag status. Please refer to the next section for the details on the usage of this option. ```plaintext CLI output format: Current System Time: Day Mon DD HH:MM:SS YYYY +LX - Represents the data for the lane number X + High Alarm High Warning Low Warning Low Alarm Flag/ Flag/ Flag/ Flag/ Change Count/ Change Count/ Change Count/ Change Count/ Last Set Time/ Last Set Time/ Last Set Time/ Last Set Time/ -Port Parameter_Name Last Clear Time Last Clear Time Last Clear Time Last Clear Time +Port Observable_Name Last Clear Time Last Clear Time Last Clear Time Last Clear Time ----------- --------------- --------------- --------------- --------------- --------------- Example: admin@sonic#show interfaces transceiver vdm flag Ethernet1 +LX - Represents the data for the lane number X Current System Time: Wed Oct 16 03:46:41 2024 + High Alarm High Warning Low Warning Low Alarm Flag/ Flag/ Flag/ Flag/ Change Count/ Change Count/ Change Count/ Change Count/ Last Set Time/ Last Set Time/ Last Set Time/ Last Set Time/ -Port Parameter_Name Last Clear Time Last Clear Time Last Clear Time Last Clear Time +Port Observable_Name Last Clear Time Last Clear Time Last Clear Time Last Clear Time ----------- --------------- ------------------------- ------------------------- ------------------------- ------------------------- -Ethernet1 eSNR Media Input True/ False/ False/ False/ - 1/ 0/ 0/ 0/ - Wed Oct 16 03:46:41 2024/ Never Never Never - Never Wed Oct 16 03:46:41 2024 Wed Oct 16 03:46:41 2024 Wed Oct 16 03:46:41 2024 +Ethernet1 Laser Temp Media True/ False/ False/ False/ + L1 1/ 0/ 2/ 0/ + Wed Oct 16 03:46:41 2024/ never/ Wed Oct 16 02:46:41 2024 never/ + never never/ Wed Oct 16 03:46:41 2024 never +Ethernet1 PAM4 Level False True False/ False/ + Transition 0/ 1/ 0/ 0/ + Media Input never/ Wed Oct 16 03:46:41 2024/ never/ never/ + L2 never never never never +. +. +. +Upto all observables with at least one lane having a flag set to true +``` + +##### 3.2.2.1 VDM flags dump using the `--detail` option + +With the `--detail` option, only the VDM data for observables which are supported by the module vendor will be displayed. With this option, the CLI will show data for all lanes and supported observables (irrespective of the flag status). + +```plaintext +admin@sonic#show interfaces transceiver vdm flag Ethernet1 --detail +LX - Represents the data for the lane number X +Current System Time: Wed Oct 16 03:46:41 2024 + + High Alarm High Warning Low Warning Low Alarm + Flag/ Flag/ Flag/ Flag/ + Change Count/ Change Count/ Change Count/ Change Count/ + Last Set Time/ Last Set Time/ Last Set Time/ Last Set Time/ +Port Observable_Name Last Clear Time Last Clear Time Last Clear Time Last Clear Time +----------- --------------- ------------------------- ------------------------- ------------------------- ------------------------- +Ethernet1 Laser Temp Media True/ False/ False/ False/ + L1 1/ 0/ 2/ 0/ + Wed Oct 16 03:46:41 2024/ never/ Wed Oct 16 02:46:41 2024 never/ + never never/ Wed Oct 16 03:46:41 2024 never +Ethernet1 Laser Temp Media False/ False/ False/ False/ + L2 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never/ never never +Ethernet1 Laser Temp Media False/ False/ False/ False/ + L3 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never/ never never +Ethernet1 Laser Temp Media False/ False/ False/ False/ + L3 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never/ never never +Ethernet1 Laser Temp Media False/ False/ False/ False/ + L4 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never/ never never +Ethernet1 Laser Temp Media False/ False/ False/ False/ + L5 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never/ never never +Ethernet1 Laser Temp Media False/ False/ False/ False/ + L6 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never/ never never +Ethernet1 Laser Temp Media False/ False/ False/ False/ + L7 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never/ never never +Ethernet1 Laser Temp Media False/ False/ False/ False/ + L8 0/ 0/ 0/ 0/ + never/ never/ never/ never/ + never never/ never never +. +. +. +Upto all observables for all lanes +``` + +### 3.3 CLI Commands for transceiver status monitoring + +#### 3.3.1 `show interfaces transceiver status PORT` + +Shows the module and datapath state data along with various flags related to it. Also stores various Tx and Rx related flags. + +```plaintext +Example: +admin@sonic:/home/admin# show int transceiver status Ethernet0 +Ethernet0: + CMIS State (SW): READY + TX disable status on lane 1: False + TX disable status on lane 2: False + TX disable status on lane 3: False + TX disable status on lane 4: False + TX disable status on lane 5: False + TX disable status on lane 6: False + TX disable status on lane 7: False + TX disable status on lane 8: False + Disabled TX channels: 0 + Current module state: ModuleReady + Reason of entering the module fault state: No Fault detected + Data path state indicator on host lane 1: DataPathActivated + Data path state indicator on host lane 2: DataPathActivated + Data path state indicator on host lane 3: DataPathActivated + Data path state indicator on host lane 4: DataPathActivated + Data path state indicator on host lane 5: DataPathActivated + Data path state indicator on host lane 6: DataPathActivated + Data path state indicator on host lane 7: DataPathActivated + Data path state indicator on host lane 8: DataPathActivated + Tx output status on media lane 1: True + Tx output status on media lane 2: True + Tx output status on media lane 3: True + Tx output status on media lane 4: True + Tx output status on media lane 5: True + Tx output status on media lane 6: True + Tx output status on media lane 7: True + Tx output status on media lane 8: True + Rx output status on host lane 1: True + Rx output status on host lane 2: True + Rx output status on host lane 3: True + Rx output status on host lane 4: True + Rx output status on host lane 5: True + Rx output status on host lane 6: True + Rx output status on host lane 7: True + Rx output status on host lane 8: True + Configuration status for the data path of host line 1: ConfigSuccess + Configuration status for the data path of host line 2: ConfigSuccess + Configuration status for the data path of host line 3: ConfigSuccess + Configuration status for the data path of host line 4: ConfigSuccess + Configuration status for the data path of host line 5: ConfigSuccess + Configuration status for the data path of host line 6: ConfigSuccess + Configuration status for the data path of host line 7: ConfigSuccess + Configuration status for the data path of host line 8: ConfigSuccess + Data path deinit status on host lane 1: False + Data path deinit status on host lane 2: False + Data path deinit status on host lane 3: False + Data path deinit status on host lane 4: False + Data path deinit status on host lane 5: False + Data path deinit status on host lane 6: False + Data path deinit status on host lane 7: False + Data path deinit status on host lane 8: False + Data path configuration updated on host lane 1: False + Data path configuration updated on host lane 2: False + Data path configuration updated on host lane 3: False + Data path configuration updated on host lane 4: False + Data path configuration updated on host lane 5: False + Data path configuration updated on host lane 6: False + Data path configuration updated on host lane 7: False + Data path configuration updated on host lane 8: False + Tuning in progress status: False + Laser unlocked status: True +``` + +#### 3.3.2 `show interfaces transceiver status flag PORT` + +This CLI shows the various module and datapath state flags for a given port along with the change count and set/clear time. + +```plaintext +admin@sonic:/home/admin# show int transceiver status flag Ethernet0 +LX - Represents the data for the lane number X +Current System Time: Wed Oct 16 03:46:41 2024 + +Port Observable_Name Flag Status/Change Count/Last Set Time/Last Clear Time +----------- --------------------------- ------------------------------------------------------- +Ethernet0 Tx fault on media L1 False/ 1/ Wed Oct 16 03:46:41 2024/ never +Ethernet0 Tx fault on media L2 False/ 0/ never/ never +Ethernet0 Tx fault on media L3 False/ 0/ never/ never +Ethernet0 Tx fault on media L4 False/ 0/ never/ never +Ethernet0 Tx fault on media L5 False/ 0/ never/ never +Ethernet0 Tx fault on media L6 False/ 0/ never/ never +Ethernet0 Tx fault on media L7 False/ 0/ never/ never +Ethernet0 Tx fault on media L8 False/ 0/ never/ never +Ethernet0 Rx LOS on media L1 False/ 0/ never/ never +Ethernet0 Rx LOS on media L2 False/ 0/ never/ never +Ethernet0 Rx LOS on media L3 False/ 0/ never/ never +Ethernet0 Rx LOS on media L4 False/ 0/ never/ never +Ethernet0 Rx LOS on media L5 False/ 0/ never/ never +Ethernet0 Rx LOS on media L6 False/ 0/ never/ never +Ethernet0 Rx LOS on media L7 False/ 0/ never/ never +Ethernet0 Rx LOS on media L8 False/ 0/ never/ never +Ethernet0 Datapath firmware fault False/ 0/ never/ never +Ethernet0 Module firmware fault False/ 0/ never/ never +Ethernet0 Module state changed False/ 0/ never/ never +Ethernet0 Tx LOS on host L1 False/ 0/ never/ never +Ethernet0 Tx LOS on host L2 False/ 0/ never/ never +Ethernet0 Tx LOS on host L3 False/ 0/ never/ never +Ethernet0 Tx LOS on host L4 False/ 0/ never/ never +Ethernet0 Tx LOS on host L5 False/ 0/ never/ never +Ethernet0 Tx LOS on host L6 False/ 0/ never/ never +Ethernet0 Tx LOS on host L7 False/ 0/ never/ never +Ethernet0 Tx LOS on host L8 False/ 0/ never/ never +Ethernet0 Tx CDR LOL on host L1 False/ 0/ never/ never +Ethernet0 Tx CDR LOL on host L2 False/ 0/ never/ never +Ethernet0 Tx CDR LOL on host L3 False/ 0/ never/ never +Ethernet0 Tx CDR LOL on host L4 False/ 0/ never/ never +Ethernet0 Tx CDR LOL on host L5 False/ 0/ never/ never +Ethernet0 Tx CDR LOL on host L6 False/ 0/ never/ never +Ethernet0 Tx CDR LOL on host L7 False/ 0/ never/ never +Ethernet0 Tx CDR LOL on host L8 False/ 0/ never/ never +Ethernet0 Tx EQ fault on host L1 False/ 0/ never/ never +Ethernet0 Tx EQ fault on host L2 False/ 0/ never/ never +Ethernet0 Tx EQ fault on host L3 False/ 0/ never/ never +Ethernet0 Tx EQ fault on host L4 False/ 0/ never/ never +Ethernet0 Tx EQ fault on host L5 False/ 0/ never/ never +Ethernet0 Tx EQ fault on host L6 False/ 0/ never/ never +Ethernet0 Tx EQ fault on host L7 False/ 0/ never/ never +Ethernet0 Tx EQ fault on host L8 False/ 0/ never/ never +Ethernet0 Rx CDR LOL on media L1 False/ 0/ never/ never +Ethernet0 Rx CDR LOL on media L2 False/ 0/ never/ never +Ethernet0 Rx CDR LOL on media L3 False/ 0/ never/ never +Ethernet0 Rx CDR LOL on media L4 False/ 0/ never/ never +Ethernet0 Rx CDR LOL on media L5 False/ 0/ never/ never +Ethernet0 Rx CDR LOL on media L6 False/ 0/ never/ never +Ethernet0 Rx CDR LOL on media L7 False/ 0/ never/ never +Ethernet0 Rx CDR LOL on media L8 False/ 0/ never/ never +Ethernet0 Target output power out of range False/ 0/ never/ never +Ethernet0 Fine tuning out of range flag False/ 0/ never/ never +Ethernet0 Tuning not accepted flag False/ 0/ never/ never +Ethernet0 Invalid channel number flag False/ 0/ never/ never +Ethernet0 Tuning complete flag False/ 0/ never/ never ``` ## 4. SONiC CMIS diagnostic monitoring workflow @@ -1825,8 +2236,8 @@ The purpose of flag analysis is to track the status of various parameters and to - `TRANSCEIVER_DOM_FLAG`: This table stores flags indicating the status of various DOM parameters. - `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`: This table keeps a count of how many times each DOM flag has changed. Upon initialization, the count is set to 0. -- `TRANSCEIVER_DOM_FLAG_SET_TIME`: This table records the timestamp (in local timezone) when each DOM flag was set. The timestamp is recorded in the format `Day Mon DD HH:MM:SS YYYY`. During initialization, the timestamp is set to `Never` if the flag is not set. -- `TRANSCEIVER_DOM_FLAG_CLEAR_TIME`: This table records the timestamp (in local timezone) when each DOM flag was cleared. The timestamp is recorded in the format `Day Mon DD HH:MM:SS YYYY`. During initialization, the timestamp is set to `Never` if the flag is set. +- `TRANSCEIVER_DOM_FLAG_SET_TIME`: This table records the timestamp (in local timezone) when each DOM flag was set. The timestamp is recorded in the format `Day Mon DD HH:MM:SS YYYY`. During initialization, the timestamp is set to `never` if the flag is not set. +- `TRANSCEIVER_DOM_FLAG_CLEAR_TIME`: This table records the timestamp (in local timezone) when each DOM flag was cleared. The timestamp is recorded in the format `Day Mon DD HH:MM:SS YYYY`. During initialization, the timestamp is set to `never` if the flag is set. **Example of Table Updates:** From efd06918cba88383474040edc526925d1588e019 Mon Sep 17 00:00:00 2001 From: Mihir Patel Date: Thu, 24 Oct 2024 22:35:59 +0000 Subject: [PATCH 06/12] Removed change_count, last_set_time and last_clear_time from field names of all the relevant tables --- ...Diagnostic_Monitoring_Overview_in_SONiC.md | 1292 ++++++++--------- 1 file changed, 646 insertions(+), 646 deletions(-) diff --git a/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md b/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md index b994729160..261505857c 100644 --- a/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md +++ b/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md @@ -18,8 +18,8 @@ The CMIS diagnostic monitoring data is stored in the `STATE_DB` database. The `S - `TRANSCEIVER_DOM_THRESHOLD`: Contains threshold values for DOM parameters. - `TRANSCEIVER_DOM_FLAG`: Stores flags indicating the status of various DOM parameters. - `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`: Keeps a count of how many times each DOM flag has changed. -- `TRANSCEIVER_DOM_FLAG_SET_TIME`: Records the timestamp when each DOM flag was set. -- `TRANSCEIVER_DOM_FLAG_CLEAR_TIME`: Records the timestamp when each DOM flag was cleared. +- `TRANSCEIVER_DOM_FLAG_SET_TIME`: Records the last timestamp when each DOM flag was set. +- `TRANSCEIVER_DOM_FLAG_CLEAR_TIME`: Records the last timestamp when each DOM flag was cleared. - `TRANSCEIVER_VDM_CURRENT_SAMPLE`: Stores VDM sample data. - `TRANSCEIVER_VDM_THRESHOLD`: Contains threshold values for VDM parameters. - `TRANSCEIVER_VDM_HALARM_THRESHOLD`: Stores the high alarm threshold values for the VDM data. @@ -34,14 +34,14 @@ The CMIS diagnostic monitoring data is stored in the `STATE_DB` database. The `S - `TRANSCEIVER_VDM_LALARM_FLAG_CHANGE_COUNT`: Keeps a count of how many times each VDM low alarm flag has changed. - `TRANSCEIVER_VDM_HWARN_FLAG_CHANGE_COUNT`: Keeps a count of how many times each VDM high warning flag has changed. - `TRANSCEIVER_VDM_LWARN_FLAG_CHANGE_COUNT`: Keeps a count of how many times each VDM low warning flag has changed. -- `TRANSCEIVER_VDM_HALARM_SET_TIME`: Records the timestamp when each VDM high alarm flag was set. -- `TRANSCEIVER_VDM_LALARM_SET_TIME`: Records the timestamp when each VDM low alarm flag was set. -- `TRANSCEIVER_VDM_HWARN_SET_TIME`: Records the timestamp when each VDM high warning flag was set. -- `TRANSCEIVER_VDM_LWARN_SET_TIME`: Records the timestamp when each VDM low warning flag was set. -- `TRANSCEIVER_VDM_HALARM_CLEAR_TIME`: Records the timestamp when each VDM high alarm flag was cleared. -- `TRANSCEIVER_VDM_LALARM_CLEAR_TIME`: Records the timestamp when each VDM low alarm flag was cleared. -- `TRANSCEIVER_VDM_HWARN_CLEAR_TIME`: Records the timestamp when each VDM high warning flag was cleared. -- `TRANSCEIVER_VDM_LWARN_CLEAR_TIME`: Records the timestamp when each VDM low warning flag was cleared. +- `TRANSCEIVER_VDM_HALARM_FLAG_SET_TIME`: Records the last timestamp when each VDM high alarm flag was set. +- `TRANSCEIVER_VDM_LALARM_FLAG_SET_TIME`: Records the last timestamp when each VDM low alarm flag was set. +- `TRANSCEIVER_VDM_HWARN_FLAG_SET_TIME`: Records the last timestamp when each VDM high warning flag was set. +- `TRANSCEIVER_VDM_LWARN_FLAG_SET_TIME`: Records the last timestamp when each VDM low warning flag was set. +- `TRANSCEIVER_VDM_HALARM_FLAG_CLEAR_TIME`: Records the last timestamp when each VDM high alarm flag was cleared. +- `TRANSCEIVER_VDM_LALARM_FLAG_CLEAR_TIME`: Records the last timestamp when each VDM low alarm flag was cleared. +- `TRANSCEIVER_VDM_HWARN_FLAG_CLEAR_TIME`: Records the last timestamp when each VDM high warning flag was cleared. +- `TRANSCEIVER_VDM_LWARN_FLAG_CLEAR_TIME`: Records the last timestamp when each VDM low warning flag was cleared. - `TRANSCEIVER_STATUS`: Stores the module and datapath state data along with various flags related to it. Also stores various Tx and Rx related status values. - `TRANSCEIVER_STATUS_FLAG`: Stores the module and datapath status flags along with various Tx and Rx related status flags. - `TRANSCEIVER_STATUS_FLAG_CHANGE_COUNT`: Stores the count of times the transceiver status flag has changed. @@ -151,32 +151,32 @@ lane_num: Represents lane number of the field. The lane number is an integer val ```plaintext ;Defines Transceiver DOM flag change count for a port - key = TRANSCEIVER_DOM_FLAG_CHANGE|ifname ; information module DOM flags change count on port + key = TRANSCEIVER_DOM_FLAG_CHANGE_COUNT|ifname ; information module DOM flags change count on port ; field = value - temphighalarm_chg_cnt = INTEGER ; temperature high alarm change count - temphighwarning_chg_cnt = INTEGER ; temperature high warning change count - templowalarm_chg_cnt = INTEGER ; temperature low alarm change count - templowwarning_chg_cnt = INTEGER ; temperature low warning change count - vcchighalarm_chg_cnt = INTEGER ; vcc high alarm change count - vcchighwarning_chg_cnt = INTEGER ; vcc high warning change count - vcclowalarm_chg_cnt = INTEGER ; vcc low alarm change count - vcclowwarning_chg_cnt = INTEGER ; vcc low warning change count - txpowerhighalarm_chg_cnt{lane_num} = INTEGER ; tx power high alarm change count - txpowerlowalarm_chg_cnt{lane_num} = INTEGER ; tx power low alarm change count - txpowerhighwarning_chg_cnt{lane_num} = INTEGER ; tx power high warning change count - txpowerlowwarning_chg_cnt{lane_num} = INTEGER ; tx power low alarm change count - rxpowerhighalarm_chg_cnt{lane_num} = INTEGER ; rx power high alarm change count - rxpowerlowalarm_chg_cnt{lane_num} = INTEGER ; rx power low alarm change count - rxpowerhighwarning_chg_cnt{lane_num} = INTEGER ; rx power high warning change count - rxpowerlowwarning_chg_cnt{lane_num} = INTEGER ; rx power low warning change count - txbiashighalarm_chg_cnt{lane_num} = INTEGER ; tx bias high alarm change count - txbiaslowalarm_chg_cnt{lane_num} = INTEGER ; tx bias low alarm change count - txbiashighwarning_chg_cnt{lane_num} = INTEGER ; tx bias high warning change count - txbiaslowwarning_chg_cnt{lane_num} = INTEGER ; tx bias low warning change count - lasertemphighalarm_chg_cnt = INTEGER ; laser temperature high alarm change count - lasertemplowalarm_chg_cnt = INTEGER ; laser temperature low alarm change count - lasertemphighwarning_chg_cnt = INTEGER ; laser temperature high warning change count - lasertemplowwarning_chg_cnt = INTEGER ; laser temperature low warning change count + temphighalarm = INTEGER ; temperature high alarm change count + temphighwarning = INTEGER ; temperature high warning change count + templowalarm = INTEGER ; temperature low alarm change count + templowwarning = INTEGER ; temperature low warning change count + vcchighalarm = INTEGER ; vcc high alarm change count + vcchighwarning = INTEGER ; vcc high warning change count + vcclowalarm = INTEGER ; vcc low alarm change count + vcclowwarning = INTEGER ; vcc low warning change count + txpowerhighalarm{lane_num} = INTEGER ; tx power high alarm change count + txpowerlowalarm{lane_num} = INTEGER ; tx power low alarm change count + txpowerhighwarning{lane_num} = INTEGER ; tx power high warning change count + txpowerlowwarning{lane_num} = INTEGER ; tx power low alarm change count + rxpowerhighalarm{lane_num} = INTEGER ; rx power high alarm change count + rxpowerlowalarm{lane_num} = INTEGER ; rx power low alarm change count + rxpowerhighwarning{lane_num} = INTEGER ; rx power high warning change count + rxpowerlowwarning{lane_num} = INTEGER ; rx power low warning change count + txbiashighalarm{lane_num} = INTEGER ; tx bias high alarm change count + txbiaslowalarm{lane_num} = INTEGER ; tx bias low alarm change count + txbiashighwarning{lane_num} = INTEGER ; tx bias high warning change count + txbiaslowwarning{lane_num} = INTEGER ; tx bias low warning change count + lasertemphighalarm = INTEGER ; laser temperature high alarm change count + lasertemplowalarm = INTEGER ; laser temperature low alarm change count + lasertemphighwarning = INTEGER ; laser temperature high warning change count + lasertemplowwarning = INTEGER ; laser temperature low warning change count ``` #### 2.1.5 Transceiver DOM flag time set data @@ -189,30 +189,30 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver DOM flag time set for a port key = TRANSCEIVER_DOM_FLAG_SET_TIME|ifname ; information module DOM flag time set on port ; field = value - temphighalarm_last_set_time = STR ; temperature high alarm last set time - temphighwarning_last_set_time = STR ; temperature high warning last set time - templowalarm_last_set_time = STR ; temperature low alarm last set time - templowwarning_last_set_time = STR ; temperature low warning last set time - vcchighalarm_last_set_time = STR ; vcc high alarm last set time - vcchighwarning_last_set_time = STR ; vcc high warning last set time - vcclowalarm_last_set_time = STR ; vcc low alarm last set time - vcclowwarning_last_set_time = STR ; vcc low warning last set time - txpowerhighalarm_last_set_time{lane_num} = STR ; tx power high alarm last set time - txpowerlowalarm_last_set_time{lane_num} = STR ; tx power low alarm last set time - txpowerhighwarning_last_set_time{lane_num} = STR ; tx power high warning last set time - txpowerlowwarning_last_set_time{lane_num} = STR ; tx power low warning last set time - rxpowerhighalarm_last_set_time{lane_num} = STR ; rx power high alarm last set time - rxpowerlowalarm_last_set_time{lane_num} = STR ; rx power low alarm last set time - rxpowerhighwarning_last_set_time{lane_num} = STR ; rx power high warning last set time - rxpowerlowwarning_last_set_time{lane_num} = STR ; rx power low warning last set time - txbiashighalarm_last_set_time{lane_num} = STR ; tx bias high alarm last set time - txbiaslowalarm_last_set_time{lane_num} = STR ; tx bias low alarm last set time - txbiashighwarning_last_set_time{lane_num} = STR ; tx bias high warning last set time - txbiaslowwarning_last_set_time{lane_num} = STR ; tx bias low warning last set time - lasertemphighalarm_last_set_time = STR ; laser temperature high alarm last set time - lasertemplowalarm_last_set_time = STR ; laser temperature low alarm last set time - lasertemphighwarning_last_set_time = STR ; laser temperature high warning last set time - lasertemplowwarning_last_set_time = STR ; laser temperature low warning last set time + temphighalarm = STR ; temperature high alarm last set time + temphighwarning = STR ; temperature high warning last set time + templowalarm = STR ; temperature low alarm last set time + templowwarning = STR ; temperature low warning last set time + vcchighalarm = STR ; vcc high alarm last set time + vcchighwarning = STR ; vcc high warning last set time + vcclowalarm = STR ; vcc low alarm last set time + vcclowwarning = STR ; vcc low warning last set time + txpowerhighalarm{lane_num} = STR ; tx power high alarm last set time + txpowerlowalarm{lane_num} = STR ; tx power low alarm last set time + txpowerhighwarning{lane_num} = STR ; tx power high warning last set time + txpowerlowwarning{lane_num} = STR ; tx power low warning last set time + rxpowerhighalarm{lane_num} = STR ; rx power high alarm last set time + rxpowerlowalarm{lane_num} = STR ; rx power low alarm last set time + rxpowerhighwarning{lane_num} = STR ; rx power high warning last set time + rxpowerlowwarning{lane_num} = STR ; rx power low warning last set time + txbiashighalarm{lane_num} = STR ; tx bias high alarm last set time + txbiaslowalarm{lane_num} = STR ; tx bias low alarm last set time + txbiashighwarning{lane_num} = STR ; tx bias high warning last set time + txbiaslowwarning{lane_num} = STR ; tx bias low warning last set time + lasertemphighalarm = STR ; laser temperature high alarm last set time + lasertemplowalarm = STR ; laser temperature low alarm last set time + lasertemphighwarning = STR ; laser temperature high warning last set time + lasertemplowwarning = STR ; laser temperature low warning last set time ``` #### 2.1.6 Transceiver DOM flag time clear data @@ -225,30 +225,30 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver DOM flag time clear for a port key = TRANSCEIVER_DOM_FLAG_CLEAR_TIME|ifname ; information module DOM flag time clear on port ; field = value - temphighalarm_last_clear_time = STR ; temperature high alarm last clear time - temphighwarning_last_clear_time = STR ; temperature high warning last clear time - templowalarm_last_clear_time = STR ; temperature low alarm last clear time - templowwarning_last_clear_time = STR ; temperature low warning last clear time - vcchighalarm_last_clear_time = STR ; vcc high alarm last clear time - vcchighwarning_last_clear_time = STR ; vcc high warning last clear time - vcclowalarm_last_clear_time = STR ; vcc low alarm last clear time - vcclowwarning_last_clear_time = STR ; vcc low warning last clear time - txpowerhighalarm_last_clear_time{lane_num} = STR ; tx power high alarm last clear time - txpowerlowalarm_last_clear_time{lane_num} = STR ; tx power low alarm last clear time - txpowerhighwarning_last_clear_time{lane_num} = STR ; tx power high warning last clear time - txpowerlowwarning_last_clear_time{lane_num} = STR ; tx power low warning last clear time - rxpowerhighalarm_last_clear_time{lane_num} = STR ; rx power high alarm last clear time - rxpowerlowalarm_last_clear_time{lane_num} = STR ; rx power low alarm last clear time - rxpowerhighwarning_last_clear_time{lane_num} = STR ; rx power high warning last clear time - rxpowerlowwarning_last_clear_time{lane_num} = STR ; rx power low warning last clear time - txbiashighalarm_last_clear_time{lane_num} = STR ; tx bias high alarm last clear time - txbiaslowalarm_last_clear_time{lane_num} = STR ; tx bias low alarm last clear time - txbiashighwarning_last_clear_time{lane_num} = STR ; tx bias high warning last clear time - txbiaslowwarning_last_clear_time{lane_num} = STR ; tx bias low warning last clear time - lasertemphighalarm_last_clear_time = STR ; laser temperature high alarm last clear time - lasertemplowalarm_last_clear_time = STR ; laser temperature low alarm last clear time - lasertemphighwarning_last_clear_time = STR ; laser temperature high warning last clear time - lasertemplowwarning_last_clear_time = STR ; laser temperature low warning last clear time + temphighalarm = STR ; temperature high alarm last clear time + temphighwarning = STR ; temperature high warning last clear time + templowalarm = STR ; temperature low alarm last clear time + templowwarning = STR ; temperature low warning last clear time + vcchighalarm = STR ; vcc high alarm last clear time + vcchighwarning = STR ; vcc high warning last clear time + vcclowalarm = STR ; vcc low alarm last clear time + vcclowwarning = STR ; vcc low warning last clear time + txpowerhighalarm{lane_num} = STR ; tx power high alarm last clear time + txpowerlowalarm{lane_num} = STR ; tx power low alarm last clear time + txpowerhighwarning{lane_num} = STR ; tx power high warning last clear time + txpowerlowwarning{lane_num} = STR ; tx power low warning last clear time + rxpowerhighalarm{lane_num} = STR ; rx power high alarm last clear time + rxpowerlowalarm{lane_num} = STR ; rx power low alarm last clear time + rxpowerhighwarning{lane_num} = STR ; rx power high warning last clear time + rxpowerlowwarning{lane_num} = STR ; rx power low warning last clear time + txbiashighalarm{lane_num} = STR ; tx bias high alarm last clear time + txbiaslowalarm{lane_num} = STR ; tx bias low alarm last clear time + txbiashighwarning{lane_num} = STR ; tx bias high warning last clear time + txbiaslowwarning{lane_num} = STR ; tx bias low warning last clear time + lasertemphighalarm = STR ; laser temperature high alarm last clear time + lasertemplowalarm = STR ; laser temperature low alarm last clear time + lasertemphighwarning = STR ; laser temperature high warning last clear time + lasertemplowwarning = STR ; laser temperature low warning last clear time ``` ### 2.2 Transceiver VDM @@ -746,47 +746,47 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM high alarm flag change count for a port key = TRANSCEIVER_VDM_HALARM_FLAG_CHANGE_COUNT|ifname ; field = value - laser_temperature_media_halarm_chg_cnt{lane_num} = INTEGER ; laser temperature high alarm flag change count for media input - esnr_media_input_halarm_chg_cnt{lane_num} = INTEGER ; eSNR high alarm flag change count for media input - esnr_host_input_halarm_chg_cnt{lane_num} = INTEGER ; eSNR high alarm flag change count for host input - pam4_level_transition_media_input_halarm_chg_cnt{lane_num} = INTEGER ; PAM4 level transition high alarm flag change count for media input - pam4_level_transition_host_input_halarm_chg_cnt{lane_num} = INTEGER ; PAM4 level transition high alarm flag change count for host input - prefec_ber_min_media_input_halarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER minimum high alarm flag change count for media input - prefec_ber_max_media_input_halarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER maximum high alarm flag change count for media input - prefec_ber_avg_media_input_halarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER average high alarm flag change count for media input - prefec_ber_curr_media_input_halarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER current high alarm flag change count for media input - prefec_ber_min_host_input_halarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER minimum high alarm flag change count for host input - prefec_ber_max_host_input_halarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER maximum high alarm flag change count for host input - prefec_ber_avg_host_input_halarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER average high alarm flag change count for host input - prefec_ber_curr_host_input_halarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER current high alarm flag change count for host input - errored_frames_min_media_input_halarm_chg_cnt{lane_num} = INTEGER ; Errored frames minimum high alarm flag change count for media input - errored_frames_max_media_input_halarm_chg_cnt{lane_num} = INTEGER ; Errored frames maximum high alarm flag change count for media input - errored_frames_avg_media_input_halarm_chg_cnt{lane_num} = INTEGER ; Errored frames average high alarm flag change count for media input - errored_frames_curr_media_input_halarm_chg_cnt{lane_num} = INTEGER ; Errored frames current high alarm flag change count for media input - errored_frames_min_host_input_halarm_chg_cnt{lane_num} = INTEGER ; Errored frames minimum high alarm flag change count for host input - errored_frames_max_host_input_halarm_chg_cnt{lane_num} = INTEGER ; Errored frames maximum high alarm flag change count for host input - errored_frames_avg_host_input_halarm_chg_cnt{lane_num} = INTEGER ; Errored frames average high alarm flag change count for host input - errored_frames_curr_host_input_halarm_chg_cnt{lane_num} = INTEGER ; Errored frames current high alarm flag change count for host input + laser_temperature_media_halarm{lane_num} = INTEGER ; laser temperature high alarm flag change count for media input + esnr_media_input_halarm{lane_num} = INTEGER ; eSNR high alarm flag change count for media input + esnr_host_input_halarm{lane_num} = INTEGER ; eSNR high alarm flag change count for host input + pam4_level_transition_media_input_halarm{lane_num} = INTEGER ; PAM4 level transition high alarm flag change count for media input + pam4_level_transition_host_input_halarm{lane_num} = INTEGER ; PAM4 level transition high alarm flag change count for host input + prefec_ber_min_media_input_halarm{lane_num} = INTEGER ; Pre-FEC BER minimum high alarm flag change count for media input + prefec_ber_max_media_input_halarm{lane_num} = INTEGER ; Pre-FEC BER maximum high alarm flag change count for media input + prefec_ber_avg_media_input_halarm{lane_num} = INTEGER ; Pre-FEC BER average high alarm flag change count for media input + prefec_ber_curr_media_input_halarm{lane_num} = INTEGER ; Pre-FEC BER current high alarm flag change count for media input + prefec_ber_min_host_input_halarm{lane_num} = INTEGER ; Pre-FEC BER minimum high alarm flag change count for host input + prefec_ber_max_host_input_halarm{lane_num} = INTEGER ; Pre-FEC BER maximum high alarm flag change count for host input + prefec_ber_avg_host_input_halarm{lane_num} = INTEGER ; Pre-FEC BER average high alarm flag change count for host input + prefec_ber_curr_host_input_halarm{lane_num} = INTEGER ; Pre-FEC BER current high alarm flag change count for host input + errored_frames_min_media_input_halarm{lane_num} = INTEGER ; Errored frames minimum high alarm flag change count for media input + errored_frames_max_media_input_halarm{lane_num} = INTEGER ; Errored frames maximum high alarm flag change count for media input + errored_frames_avg_media_input_halarm{lane_num} = INTEGER ; Errored frames average high alarm flag change count for media input + errored_frames_curr_media_input_halarm{lane_num} = INTEGER ; Errored frames current high alarm flag change count for media input + errored_frames_min_host_input_halarm{lane_num} = INTEGER ; Errored frames minimum high alarm flag change count for host input + errored_frames_max_host_input_halarm{lane_num} = INTEGER ; Errored frames maximum high alarm flag change count for host input + errored_frames_avg_host_input_halarm{lane_num} = INTEGER ; Errored frames average high alarm flag change count for host input + errored_frames_curr_host_input_halarm{lane_num} = INTEGER ; Errored frames current high alarm flag change count for host input ;C-CMIS specific fields - biasxi_halarm_chg_cnt = INTEGER ; modulator bias xi in percentage (high alarm flag change count) - biasxq_halarm_chg_cnt = INTEGER ; modulator bias xq in percentage (high alarm flag change count) - biasxp_halarm_chg_cnt = INTEGER ; modulator bias xp in percentage (high alarm flag change count) - biasyi_halarm_chg_cnt = INTEGER ; modulator bias yi in percentage (high alarm flag change count) - biasyq_halarm_chg_cnt = INTEGER ; modulator bias yq in percentage (high alarm flag change count) - biasyp_halarm_chg_cnt = INTEGER ; modulator bias yq in percentage (high alarm flag change count) - cdshort_halarm_chg_cnt = INTEGER ; chromatic dispersion, high granularity, short link in ps/nm (high alarm flag change count) - cdlong_halarm_chg_cnt = INTEGER ; chromatic dispersion, high granularity, long link in ps/nm (high alarm flag change count) - dgd_halarm_chg_cnt = INTEGER ; differential group delay in ps (high alarm flag change count) - sopmd_halarm_chg_cnt = INTEGER ; second order polarization mode dispersion in ps^2 (high alarm flag change count) - soproc_halarm_chg_cnt = INTEGER ; state of polarization rate of change in krad/s (high alarm flag change count) - pdl_halarm_chg_cnt = INTEGER ; polarization dependent loss in db (high alarm flag change count) - osnr_halarm_chg_cnt = INTEGER ; optical signal to noise ratio in db (high alarm flag change count) - esnr_halarm_chg_cnt = INTEGER ; electrical signal to noise ratio in db (high alarm flag change count) - cfo_halarm_chg_cnt = INTEGER ; carrier frequency offset in Hz (high alarm flag change count) - txcurrpower_halarm_chg_cnt = INTEGER ; tx current output power in dbm (high alarm flag change count) - rxtotpower_halarm_chg_cnt = INTEGER ; rx total power in dbm (high alarm flag change count) - rxsigpower_halarm_chg_cnt = INTEGER; rx signal power in dbm (high alarm flag change count) + biasxi_halarm = INTEGER ; modulator bias xi in percentage (high alarm flag change count) + biasxq_halarm = INTEGER ; modulator bias xq in percentage (high alarm flag change count) + biasxp_halarm = INTEGER ; modulator bias xp in percentage (high alarm flag change count) + biasyi_halarm = INTEGER ; modulator bias yi in percentage (high alarm flag change count) + biasyq_halarm = INTEGER ; modulator bias yq in percentage (high alarm flag change count) + biasyp_halarm = INTEGER ; modulator bias yq in percentage (high alarm flag change count) + cdshort_halarm = INTEGER ; chromatic dispersion, high granularity, short link in ps/nm (high alarm flag change count) + cdlong_halarm = INTEGER ; chromatic dispersion, high granularity, long link in ps/nm (high alarm flag change count) + dgd_halarm = INTEGER ; differential group delay in ps (high alarm flag change count) + sopmd_halarm = INTEGER ; second order polarization mode dispersion in ps^2 (high alarm flag change count) + soproc_halarm = INTEGER ; state of polarization rate of change in krad/s (high alarm flag change count) + pdl_halarm = INTEGER ; polarization dependent loss in db (high alarm flag change count) + osnr_halarm = INTEGER ; optical signal to noise ratio in db (high alarm flag change count) + esnr_halarm = INTEGER ; electrical signal to noise ratio in db (high alarm flag change count) + cfo_halarm = INTEGER ; carrier frequency offset in Hz (high alarm flag change count) + txcurrpower_halarm = INTEGER ; tx current output power in dbm (high alarm flag change count) + rxtotpower_halarm = INTEGER ; rx total power in dbm (high alarm flag change count) + rxsigpower_halarm = INTEGER; rx signal power in dbm (high alarm flag change count) ``` ##### 2.2.4.2 Transceiver VDM low alarm flag change count data @@ -799,47 +799,47 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM low alarm flag change count for a port key = TRANSCEIVER_VDM_LALARM_FLAG_CHANGE_COUNT|ifname ; field = value - laser_temperature_media_lalarm_chg_cnt{lane_num} = INTEGER ; laser temperature low alarm flag change count for media input - esnr_media_input_lalarm_chg_cnt{lane_num} = INTEGER ; eSNR low alarm flag change count for media input - esnr_host_input_lalarm_chg_cnt{lane_num} = INTEGER ; eSNR low alarm flag change count for host input - pam4_level_transition_media_input_lalarm_chg_cnt{lane_num} = INTEGER ; PAM4 level transition low alarm flag change count for media input - pam4_level_transition_host_input_lalarm_chg_cnt{lane_num} = INTEGER ; PAM4 level transition low alarm flag change count for host input - prefec_ber_min_media_input_lalarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER minimum low alarm flag change count for media input - prefec_ber_max_media_input_lalarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER maximum low alarm flag change count for media input - prefec_ber_avg_media_input_lalarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER average low alarm flag change count for media input - prefec_ber_curr_media_input_lalarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER current low alarm flag change count for media input - prefec_ber_min_host_input_lalarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER minimum low alarm flag change count for host input - prefec_ber_max_host_input_lalarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER maximum low alarm flag change count for host input - prefec_ber_avg_host_input_lalarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER average low alarm flag change count for host input - prefec_ber_curr_host_input_lalarm_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER current low alarm flag change count for host input - errored_frames_min_media_input_lalarm_chg_cnt{lane_num} = INTEGER ; Errored frames minimum low alarm flag change count for media input - errored_frames_max_media_input_lalarm_chg_cnt{lane_num} = INTEGER ; Errored frames maximum low alarm flag change count for media input - errored_frames_avg_media_input_lalarm_chg_cnt{lane_num} = INTEGER ; Errored frames average low alarm flag change count for media input - errored_frames_curr_media_input_lalarm_chg_cnt{lane_num} = INTEGER ; Errored frames current low alarm flag change count for media input - errored_frames_min_host_input_lalarm_chg_cnt{lane_num} = INTEGER ; Errored frames minimum low alarm flag change count for host input - errored_frames_max_host_input_lalarm_chg_cnt{lane_num} = INTEGER ; Errored frames maximum low alarm flag change count for host input - errored_frames_avg_host_input_lalarm_chg_cnt{lane_num} = INTEGER ; Errored frames average low alarm flag change count for host input - errored_frames_curr_host_input_lalarm_chg_cnt{lane_num} = INTEGER ; Errored frames current low alarm flag change count for host input + laser_temperature_media_lalarm{lane_num} = INTEGER ; laser temperature low alarm flag change count for media input + esnr_media_input_lalarm{lane_num} = INTEGER ; eSNR low alarm flag change count for media input + esnr_host_input_lalarm{lane_num} = INTEGER ; eSNR low alarm flag change count for host input + pam4_level_transition_media_input_lalarm{lane_num} = INTEGER ; PAM4 level transition low alarm flag change count for media input + pam4_level_transition_host_input_lalarm{lane_num} = INTEGER ; PAM4 level transition low alarm flag change count for host input + prefec_ber_min_media_input_lalarm{lane_num} = INTEGER ; Pre-FEC BER minimum low alarm flag change count for media input + prefec_ber_max_media_input_lalarm{lane_num} = INTEGER ; Pre-FEC BER maximum low alarm flag change count for media input + prefec_ber_avg_media_input_lalarm{lane_num} = INTEGER ; Pre-FEC BER average low alarm flag change count for media input + prefec_ber_curr_media_input_lalarm{lane_num} = INTEGER ; Pre-FEC BER current low alarm flag change count for media input + prefec_ber_min_host_input_lalarm{lane_num} = INTEGER ; Pre-FEC BER minimum low alarm flag change count for host input + prefec_ber_max_host_input_lalarm{lane_num} = INTEGER ; Pre-FEC BER maximum low alarm flag change count for host input + prefec_ber_avg_host_input_lalarm{lane_num} = INTEGER ; Pre-FEC BER average low alarm flag change count for host input + prefec_ber_curr_host_input_lalarm{lane_num} = INTEGER ; Pre-FEC BER current low alarm flag change count for host input + errored_frames_min_media_input_lalarm{lane_num} = INTEGER ; Errored frames minimum low alarm flag change count for media input + errored_frames_max_media_input_lalarm{lane_num} = INTEGER ; Errored frames maximum low alarm flag change count for media input + errored_frames_avg_media_input_lalarm{lane_num} = INTEGER ; Errored frames average low alarm flag change count for media input + errored_frames_curr_media_input_lalarm{lane_num} = INTEGER ; Errored frames current low alarm flag change count for media input + errored_frames_min_host_input_lalarm{lane_num} = INTEGER ; Errored frames minimum low alarm flag change count for host input + errored_frames_max_host_input_lalarm{lane_num} = INTEGER ; Errored frames maximum low alarm flag change count for host input + errored_frames_avg_host_input_lalarm{lane_num} = INTEGER ; Errored frames average low alarm flag change count for host input + errored_frames_curr_host_input_lalarm{lane_num} = INTEGER ; Errored frames current low alarm flag change count for host input ;C-CMIS specific fields - biasxi_lalarm_chg_cnt = INTEGER ; modulator bias xi in percentage (low alarm flag change count) - biasxq_lalarm_chg_cnt = INTEGER ; modulator bias xq in percentage (low alarm flag change count) - biasxp_lalarm_chg_cnt = INTEGER ; modulator bias xp in percentage (low alarm flag change count) - biasyi_lalarm_chg_cnt = INTEGER ; modulator bias yi in percentage (low alarm flag change count) - biasyq_lalarm_chg_cnt = INTEGER ; modulator bias yq in percentage (low alarm flag change count) - biasyp_lalarm_chg_cnt = INTEGER ; modulator bias yq in percentage (low alarm flag change count) - cdshort_lalarm_chg_cnt = INTEGER ; chromatic dispersion, low granularity, short link in ps/nm (low alarm flag change count) - cdlong_lalarm_chg_cnt = INTEGER ; chromatic dispersion, low granularity, long link in ps/nm (low alarm flag change count) - dgd_lalarm_chg_cnt = INTEGER ; differential group delay in ps (low alarm flag change count) - sopmd_lalarm_chg_cnt = INTEGER ; second order polarization mode dispersion in ps^2 (low alarm flag change count) - soproc_lalarm_chg_cnt = INTEGER ; state of polarization rate of change in krad/s (low alarm flag change count) - pdl_lalarm_chg_cnt = INTEGER ; polarization dependent loss in db (low alarm flag change count) - osnr_lalarm_chg_cnt = INTEGER ; optical signal to noise ratio in db (low alarm flag change count) - esnr_lalarm_chg_cnt = INTEGER ; electrical signal to noise ratio in db (low alarm flag change count) - cfo_lalarm_chg_cnt = INTEGER ; carrier frequency offset in Hz (low alarm flag change count) - txcurrpower_lalarm_chg_cnt = INTEGER ; tx current output power in dbm (low alarm flag change count) - rxtotpower_lalarm_chg_cnt = INTEGER ; rx total power in dbm (low alarm flag change count) - rxsigpower_lalarm_chg_cnt = INTEGER; rx signal power in dbm (low alarm flag change count) + biasxi_lalarm = INTEGER ; modulator bias xi in percentage (low alarm flag change count) + biasxq_lalarm = INTEGER ; modulator bias xq in percentage (low alarm flag change count) + biasxp_lalarm = INTEGER ; modulator bias xp in percentage (low alarm flag change count) + biasyi_lalarm = INTEGER ; modulator bias yi in percentage (low alarm flag change count) + biasyq_lalarm = INTEGER ; modulator bias yq in percentage (low alarm flag change count) + biasyp_lalarm = INTEGER ; modulator bias yq in percentage (low alarm flag change count) + cdshort_lalarm = INTEGER ; chromatic dispersion, low granularity, short link in ps/nm (low alarm flag change count) + cdlong_lalarm = INTEGER ; chromatic dispersion, low granularity, long link in ps/nm (low alarm flag change count) + dgd_lalarm = INTEGER ; differential group delay in ps (low alarm flag change count) + sopmd_lalarm = INTEGER ; second order polarization mode dispersion in ps^2 (low alarm flag change count) + soproc_lalarm = INTEGER ; state of polarization rate of change in krad/s (low alarm flag change count) + pdl_lalarm = INTEGER ; polarization dependent loss in db (low alarm flag change count) + osnr_lalarm = INTEGER ; optical signal to noise ratio in db (low alarm flag change count) + esnr_lalarm = INTEGER ; electrical signal to noise ratio in db (low alarm flag change count) + cfo_lalarm = INTEGER ; carrier frequency offset in Hz (low alarm flag change count) + txcurrpower_lalarm = INTEGER ; tx current output power in dbm (low alarm flag change count) + rxtotpower_lalarm = INTEGER ; rx total power in dbm (low alarm flag change count) + rxsigpower_lalarm = INTEGER; rx signal power in dbm (low alarm flag change count) ``` ##### 2.2.4.3 Transceiver VDM high warning flag change count data @@ -852,47 +852,47 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM high warning flag change count for a port key = TRANSCEIVER_VDM_HWARN_FLAG_CHANGE_COUNT|ifname ; field = value - laser_temperature_media_hwarn_chg_cnt{lane_num} = INTEGER ; laser temperature high warning flag change count for media input - esnr_media_input_hwarn_chg_cnt{lane_num} = INTEGER ; eSNR high warning flag change count for media input - esnr_host_input_hwarn_chg_cnt{lane_num} = INTEGER ; eSNR high warning flag change count for host input - pam4_level_transition_media_input_hwarn_chg_cnt{lane_num} = INTEGER ; PAM4 level transition high warning flag change count for media input - pam4_level_transition_host_input_hwarn_chg_cnt{lane_num} = INTEGER ; PAM4 level transition high warning flag change count for host input - prefec_ber_min_media_input_hwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER minimum high warning flag change count for media input - prefec_ber_max_media_input_hwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER maximum high warning flag change count for media input - prefec_ber_avg_media_input_hwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER average high warning flag change count for media input - prefec_ber_curr_media_input_hwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER current high warning flag change count for media input - prefec_ber_min_host_input_hwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER minimum high warning flag change count for host input - prefec_ber_max_host_input_hwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER maximum high warning flag change count for host input - prefec_ber_avg_host_input_hwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER average high warning flag change count for host input - prefec_ber_curr_host_input_hwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER current high warning flag change count for host input - errored_frames_min_media_input_hwarn_chg_cnt{lane_num} = INTEGER ; Errored frames minimum high warning flag change count for media input - errored_frames_max_media_input_hwarn_chg_cnt{lane_num} = INTEGER ; Errored frames maximum high warning flag change count for media input - errored_frames_avg_media_input_hwarn_chg_cnt{lane_num} = INTEGER ; Errored frames average high warning flag change count for media input - errored_frames_curr_media_input_hwarn_chg_cnt{lane_num} = INTEGER ; Errored frames current high warning flag change count for media input - errored_frames_min_host_input_hwarn_chg_cnt{lane_num} = INTEGER ; Errored frames minimum high warning flag change count for host input - errored_frames_max_host_input_hwarn_chg_cnt{lane_num} = INTEGER ; Errored frames maximum high warning flag change count for host input - errored_frames_avg_host_input_hwarn_chg_cnt{lane_num} = INTEGER ; Errored frames average high warning flag change count for host input - errored_frames_curr_host_input_hwarn_chg_cnt{lane_num} = INTEGER ; Errored frames current high warning flag change count for host input + laser_temperature_media_hwarn{lane_num} = INTEGER ; laser temperature high warning flag change count for media input + esnr_media_input_hwarn{lane_num} = INTEGER ; eSNR high warning flag change count for media input + esnr_host_input_hwarn{lane_num} = INTEGER ; eSNR high warning flag change count for host input + pam4_level_transition_media_input_hwarn{lane_num} = INTEGER ; PAM4 level transition high warning flag change count for media input + pam4_level_transition_host_input_hwarn{lane_num} = INTEGER ; PAM4 level transition high warning flag change count for host input + prefec_ber_min_media_input_hwarn{lane_num} = INTEGER ; Pre-FEC BER minimum high warning flag change count for media input + prefec_ber_max_media_input_hwarn{lane_num} = INTEGER ; Pre-FEC BER maximum high warning flag change count for media input + prefec_ber_avg_media_input_hwarn{lane_num} = INTEGER ; Pre-FEC BER average high warning flag change count for media input + prefec_ber_curr_media_input_hwarn{lane_num} = INTEGER ; Pre-FEC BER current high warning flag change count for media input + prefec_ber_min_host_input_hwarn{lane_num} = INTEGER ; Pre-FEC BER minimum high warning flag change count for host input + prefec_ber_max_host_input_hwarn{lane_num} = INTEGER ; Pre-FEC BER maximum high warning flag change count for host input + prefec_ber_avg_host_input_hwarn{lane_num} = INTEGER ; Pre-FEC BER average high warning flag change count for host input + prefec_ber_curr_host_input_hwarn{lane_num} = INTEGER ; Pre-FEC BER current high warning flag change count for host input + errored_frames_min_media_input_hwarn{lane_num} = INTEGER ; Errored frames minimum high warning flag change count for media input + errored_frames_max_media_input_hwarn{lane_num} = INTEGER ; Errored frames maximum high warning flag change count for media input + errored_frames_avg_media_input_hwarn{lane_num} = INTEGER ; Errored frames average high warning flag change count for media input + errored_frames_curr_media_input_hwarn{lane_num} = INTEGER ; Errored frames current high warning flag change count for media input + errored_frames_min_host_input_hwarn{lane_num} = INTEGER ; Errored frames minimum high warning flag change count for host input + errored_frames_max_host_input_hwarn{lane_num} = INTEGER ; Errored frames maximum high warning flag change count for host input + errored_frames_avg_host_input_hwarn{lane_num} = INTEGER ; Errored frames average high warning flag change count for host input + errored_frames_curr_host_input_hwarn{lane_num} = INTEGER ; Errored frames current high warning flag change count for host input ;C-CMIS specific fields - biasxi_hwarn_chg_cnt = INTEGER ; modulator bias xi in percentage (high warning flag change count) - biasxq_hwarn_chg_cnt = INTEGER ; modulator bias xq in percentage (high warning flag change count) - biasxp_hwarn_chg_cnt = INTEGER ; modulator bias xp in percentage (high warning flag change count) - biasyi_hwarn_chg_cnt = INTEGER ; modulator bias yi in percentage (high warning flag change count) - biasyq_hwarn_chg_cnt = INTEGER ; modulator bias yq in percentage (high warning flag change count) - biasyp_hwarn_chg_cnt = INTEGER ; modulator bias yq in percentage (high warning flag change count) - cdshort_hwarn_chg_cnt = INTEGER ; chromatic dispersion, low granularity, short link in ps/nm (high warning flag change count) - cdlong_hwarn_chg_cnt = INTEGER ; chromatic dispersion, low granularity, long link in ps/nm (high warning flag change count) - dgd_hwarn_chg_cnt = INTEGER ; differential group delay in ps (high warning flag change count) - sopmd_hwarn_chg_cnt = INTEGER ; second order polarization mode dispersion in ps^2 (high warning flag change count) - soproc_hwarn_chg_cnt = INTEGER ; state of polarization rate of change in krad/s (high warning flag change count) - pdl_hwarn_chg_cnt = INTEGER ; polarization dependent loss in db (high warning flag change count) - osnr_hwarn_chg_cnt = INTEGER ; optical signal to noise ratio in db (high warning flag change count) - esnr_hwarn_chg_cnt = INTEGER ; electrical signal to noise ratio in db (high warning flag change count) - cfo_hwarn_chg_cnt = INTEGER ; carrier frequency offset in Hz (high warning flag change count) - txcurrpower_hwarn_chg_cnt = INTEGER ; tx current output power in dbm (high warning flag change count) - rxtotpower_hwarn_chg_cnt = INTEGER ; rx total power in dbm (high warning flag change count) - rxsigpower_hwarn_chg_cnt = INTEGER; rx signal power in dbm (high warning flag change count) + biasxi_hwarn = INTEGER ; modulator bias xi in percentage (high warning flag change count) + biasxq_hwarn = INTEGER ; modulator bias xq in percentage (high warning flag change count) + biasxp_hwarn = INTEGER ; modulator bias xp in percentage (high warning flag change count) + biasyi_hwarn = INTEGER ; modulator bias yi in percentage (high warning flag change count) + biasyq_hwarn = INTEGER ; modulator bias yq in percentage (high warning flag change count) + biasyp_hwarn = INTEGER ; modulator bias yq in percentage (high warning flag change count) + cdshort_hwarn = INTEGER ; chromatic dispersion, low granularity, short link in ps/nm (high warning flag change count) + cdlong_hwarn = INTEGER ; chromatic dispersion, low granularity, long link in ps/nm (high warning flag change count) + dgd_hwarn = INTEGER ; differential group delay in ps (high warning flag change count) + sopmd_hwarn = INTEGER ; second order polarization mode dispersion in ps^2 (high warning flag change count) + soproc_hwarn = INTEGER ; state of polarization rate of change in krad/s (high warning flag change count) + pdl_hwarn = INTEGER ; polarization dependent loss in db (high warning flag change count) + osnr_hwarn = INTEGER ; optical signal to noise ratio in db (high warning flag change count) + esnr_hwarn = INTEGER ; electrical signal to noise ratio in db (high warning flag change count) + cfo_hwarn = INTEGER ; carrier frequency offset in Hz (high warning flag change count) + txcurrpower_hwarn = INTEGER ; tx current output power in dbm (high warning flag change count) + rxtotpower_hwarn = INTEGER ; rx total power in dbm (high warning flag change count) + rxsigpower_hwarn = INTEGER; rx signal power in dbm (high warning flag change count) ``` ##### 2.2.4.4 Transceiver VDM low warning flag change count data @@ -905,475 +905,475 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM low warning flag change count for a port key = TRANSCEIVER_VDM_LWARN_FLAG_CHANGE_COUNT|ifname ; field = value - laser_temperature_media_lwarn_chg_cnt{lane_num} = INTEGER ; laser temperature low warning flag change count for media input - esnr_media_input_lwarn_chg_cnt{lane_num} = INTEGER ; eSNR low warning flag change count for media input - esnr_host_input_lwarn_chg_cnt{lane_num} = INTEGER ; eSNR low warning flag change count for host input - pam4_level_transition_media_input_lwarn_chg_cnt{lane_num} = INTEGER ; PAM4 level transition low warning flag change count for media input - pam4_level_transition_host_input_lwarn_chg_cnt{lane_num} = INTEGER ; PAM4 level transition low warning flag change count for host input - prefec_ber_min_media_input_lwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER minimum low warning flag change count for media input - prefec_ber_max_media_input_lwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER maximum low warning flag change count for media input - prefec_ber_avg_media_input_lwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER average low warning flag change count for media input - prefec_ber_curr_media_input_lwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER current low warning flag change count for media input - prefec_ber_min_host_input_lwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER minimum low warning flag change count for host input - prefec_ber_max_host_input_lwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER maximum low warning flag change count for host input - prefec_ber_avg_host_input_lwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER average low warning flag change count for host input - prefec_ber_curr_host_input_lwarn_chg_cnt{lane_num} = INTEGER ; Pre-FEC BER current low warning flag change count for host input - errored_frames_min_media_input_lwarn_chg_cnt{lane_num} = INTEGER ; Errored frames minimum low warning flag change count for media input - errored_frames_max_media_input_lwarn_chg_cnt{lane_num} = INTEGER ; Errored frames maximum low warning flag change count for media input - errored_frames_avg_media_input_lwarn_chg_cnt{lane_num} = INTEGER ; Errored frames average low warning flag change count for media input - errored_frames_curr_media_input_lwarn_chg_cnt{lane_num} = INTEGER ; Errored frames current low warning flag change count for media input - errored_frames_min_host_input_lwarn_chg_cnt{lane_num} = INTEGER ; Errored frames minimum low warning flag change count for host input - errored_frames_max_host_input_lwarn_chg_cnt{lane_num} = INTEGER ; Errored frames maximum low warning flag change count for host input - errored_frames_avg_host_input_lwarn_chg_cnt{lane_num} = INTEGER ; Errored frames average low warning flag change count for host input - errored_frames_curr_host_input_lwarn_chg_cnt{lane_num} = INTEGER ; Errored frames current low warning flag change count for host input + laser_temperature_media_lwarn{lane_num} = INTEGER ; laser temperature low warning flag change count for media input + esnr_media_input_lwarn{lane_num} = INTEGER ; eSNR low warning flag change count for media input + esnr_host_input_lwarn{lane_num} = INTEGER ; eSNR low warning flag change count for host input + pam4_level_transition_media_input_lwarn{lane_num} = INTEGER ; PAM4 level transition low warning flag change count for media input + pam4_level_transition_host_input_lwarn{lane_num} = INTEGER ; PAM4 level transition low warning flag change count for host input + prefec_ber_min_media_input_lwarn{lane_num} = INTEGER ; Pre-FEC BER minimum low warning flag change count for media input + prefec_ber_max_media_input_lwarn{lane_num} = INTEGER ; Pre-FEC BER maximum low warning flag change count for media input + prefec_ber_avg_media_input_lwarn{lane_num} = INTEGER ; Pre-FEC BER average low warning flag change count for media input + prefec_ber_curr_media_input_lwarn{lane_num} = INTEGER ; Pre-FEC BER current low warning flag change count for media input + prefec_ber_min_host_input_lwarn{lane_num} = INTEGER ; Pre-FEC BER minimum low warning flag change count for host input + prefec_ber_max_host_input_lwarn{lane_num} = INTEGER ; Pre-FEC BER maximum low warning flag change count for host input + prefec_ber_avg_host_input_lwarn{lane_num} = INTEGER ; Pre-FEC BER average low warning flag change count for host input + prefec_ber_curr_host_input_lwarn{lane_num} = INTEGER ; Pre-FEC BER current low warning flag change count for host input + errored_frames_min_media_input_lwarn{lane_num} = INTEGER ; Errored frames minimum low warning flag change count for media input + errored_frames_max_media_input_lwarn{lane_num} = INTEGER ; Errored frames maximum low warning flag change count for media input + errored_frames_avg_media_input_lwarn{lane_num} = INTEGER ; Errored frames average low warning flag change count for media input + errored_frames_curr_media_input_lwarn{lane_num} = INTEGER ; Errored frames current low warning flag change count for media input + errored_frames_min_host_input_lwarn{lane_num} = INTEGER ; Errored frames minimum low warning flag change count for host input + errored_frames_max_host_input_lwarn{lane_num} = INTEGER ; Errored frames maximum low warning flag change count for host input + errored_frames_avg_host_input_lwarn{lane_num} = INTEGER ; Errored frames average low warning flag change count for host input + errored_frames_curr_host_input_lwarn{lane_num} = INTEGER ; Errored frames current low warning flag change count for host input ;C-CMIS specific fields - biasxi_lwarn_chg_cnt = INTEGER ; modulator bias xi in percentage (low warning flag change count) - biasxq_lwarn_chg_cnt = INTEGER ; modulator bias xq in percentage (low warning flag change count) - biasxp_lwarn_chg_cnt = INTEGER ; modulator bias xp in percentage (low warning flag change count) - biasyi_lwarn_chg_cnt = INTEGER ; modulator bias yi in percentage (low warning flag change count) - biasyq_lwarn_chg_cnt = INTEGER ; modulator bias yq in percentage (low warning flag change count) - biasyp_lwarn_chg_cnt = INTEGER ; modulator bias yq in percentage (low warning flag change count) - cdshort_lwarn_chg_cnt = INTEGER ; chromatic dispersion, low granularity, short link in ps/nm (low warning flag change count) - cdlong_lwarn_chg_cnt = INTEGER ; chromatic dispersion, low granularity, long link in ps/nm (low warning flag change count) - dgd_lwarn_chg_cnt = INTEGER ; differential group delay in ps (low warning flag change count) - sopmd_lwarn_chg_cnt = INTEGER ; second order polarization mode dispersion in ps^2 (low warning flag change count) - soproc_lwarn_chg_cnt = INTEGER ; state of polarization rate of change in krad/s (low warning flag change count) - pdl_lwarn_chg_cnt = INTEGER ; polarization dependent loss in db (low warning flag change count) - osnr_lwarn_chg_cnt = INTEGER ; optical signal to noise ratio in db (low warning flag change count) - esnr_lwarn_chg_cnt = INTEGER ; electrical signal to noise ratio in db (low warning flag change count) - cfo_lwarn_chg_cnt = INTEGER ; carrier frequency offset in Hz (low warning flag change count) - txcurrpower_lwarn_chg_cnt = INTEGER ; tx current output power in dbm (low warning flag change count) - rxtotpower_lwarn_chg_cnt = INTEGER ; rx total power in dbm (low warning flag change count) - rxsigpower_lwarn_chg_cnt = INTEGER; rx signal power in dbm (low warning flag change count) + biasxi_lwarn = INTEGER ; modulator bias xi in percentage (low warning flag change count) + biasxq_lwarn = INTEGER ; modulator bias xq in percentage (low warning flag change count) + biasxp_lwarn = INTEGER ; modulator bias xp in percentage (low warning flag change count) + biasyi_lwarn = INTEGER ; modulator bias yi in percentage (low warning flag change count) + biasyq_lwarn = INTEGER ; modulator bias yq in percentage (low warning flag change count) + biasyp_lwarn = INTEGER ; modulator bias yq in percentage (low warning flag change count) + cdshort_lwarn = INTEGER ; chromatic dispersion, low granularity, short link in ps/nm (low warning flag change count) + cdlong_lwarn = INTEGER ; chromatic dispersion, low granularity, long link in ps/nm (low warning flag change count) + dgd_lwarn = INTEGER ; differential group delay in ps (low warning flag change count) + sopmd_lwarn = INTEGER ; second order polarization mode dispersion in ps^2 (low warning flag change count) + soproc_lwarn = INTEGER ; state of polarization rate of change in krad/s (low warning flag change count) + pdl_lwarn = INTEGER ; polarization dependent loss in db (low warning flag change count) + osnr_lwarn = INTEGER ; optical signal to noise ratio in db (low warning flag change count) + esnr_lwarn = INTEGER ; electrical signal to noise ratio in db (low warning flag change count) + cfo_lwarn = INTEGER ; carrier frequency offset in Hz (low warning flag change count) + txcurrpower_lwarn = INTEGER ; tx current output power in dbm (low warning flag change count) + rxtotpower_lwarn = INTEGER ; rx total power in dbm (low warning flag change count) + rxsigpower_lwarn = INTEGER; rx signal power in dbm (low warning flag change count) ``` #### 2.2.5 Transceiver VDM flag time set data ##### 2.2.5.1 Transceiver VDM high alarm flag time set data -The `TRANSCEIVER_VDM_HALARM_SET_TIME` table stores the flag time set for the VDM high alarm flag. +The `TRANSCEIVER_VDM_HALARM_FLAG_SET_TIME` table stores the last set time for the VDM high alarm flag. lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. ```plaintext ;Defines Transceiver VDM high alarm last set time for a port - key = TRANSCEIVER_VDM_HALARM_SET_TIME|ifname + key = TRANSCEIVER_VDM_HALARM_FLAG_SET_TIME|ifname ; field = value - laser_temperature_media_halarm_last_set_time{lane_num} = STR ; laser temperature high alarm last set time for media input - esnr_media_input_halarm_last_set_time{lane_num} = STR ; eSNR high alarm last set time for media input - esnr_host_input_halarm_last_set_time{lane_num} = STR ; eSNR high alarm last set time for host input - pam4_level_transition_media_input_halarm_last_set_time{lane_num} = STR ; PAM4 level transition high alarm last set time for media input - pam4_level_transition_host_input_halarm_last_set_time{lane_num} = STR ; PAM4 level transition high alarm last set time for host input - prefec_ber_min_media_input_halarm_last_set_time{lane_num} = STR ; Pre-FEC BER minimum high alarm last set time for media input - prefec_ber_max_media_input_halarm_last_set_time{lane_num} = STR ; Pre-FEC BER maximum high alarm last set time for media input - prefec_ber_avg_media_input_halarm_last_set_time{lane_num} = STR ; Pre-FEC BER average high alarm last set time for media input - prefec_ber_curr_media_input_halarm_last_set_time{lane_num} = STR ; Pre-FEC BER current high alarm last set time for media input - prefec_ber_min_host_input_halarm_last_set_time{lane_num} = STR ; Pre-FEC BER minimum high alarm last set time for host input - prefec_ber_max_host_input_halarm_last_set_time{lane_num} = STR ; Pre-FEC BER maximum high alarm last set time for host input - prefec_ber_avg_host_input_halarm_last_set_time{lane_num} = STR ; Pre-FEC BER average high alarm last set time for host input - prefec_ber_curr_host_input_halarm_last_set_time{lane_num} = STR ; Pre-FEC BER current high alarm last set time for host input - errored_frames_min_media_input_halarm_last_set_time{lane_num} = STR ; Errored frames minimum high alarm last set time for media input - errored_frames_max_media_input_halarm_last_set_time{lane_num} = STR ; Errored frames maximum high alarm last set time for media input - errored_frames_avg_media_input_halarm_last_set_time{lane_num} = STR ; Errored frames average high alarm last set time for media input - errored_frames_curr_media_input_halarm_last_set_time{lane_num} = STR ; Errored frames current high alarm last set time for media input - errored_frames_min_host_input_halarm_last_set_time{lane_num} = STR ; Errored frames minimum high alarm last set time for host input - errored_frames_max_host_input_halarm_last_set_time{lane_num} = STR ; Errored frames maximum high alarm last set time for host input - errored_frames_avg_host_input_halarm_last_set_time{lane_num} = STR ; Errored frames average high alarm last set time for host input - errored_frames_curr_host_input_halarm_last_set_time{lane_num} = STR ; Errored frames current high alarm last set time for host input + laser_temperature_media_halarm{lane_num} = STR ; laser temperature high alarm last set time for media input + esnr_media_input_halarm{lane_num} = STR ; eSNR high alarm last set time for media input + esnr_host_input_halarm{lane_num} = STR ; eSNR high alarm last set time for host input + pam4_level_transition_media_input_halarm{lane_num} = STR ; PAM4 level transition high alarm last set time for media input + pam4_level_transition_host_input_halarm{lane_num} = STR ; PAM4 level transition high alarm last set time for host input + prefec_ber_min_media_input_halarm{lane_num} = STR ; Pre-FEC BER minimum high alarm last set time for media input + prefec_ber_max_media_input_halarm{lane_num} = STR ; Pre-FEC BER maximum high alarm last set time for media input + prefec_ber_avg_media_input_halarm{lane_num} = STR ; Pre-FEC BER average high alarm last set time for media input + prefec_ber_curr_media_input_halarm{lane_num} = STR ; Pre-FEC BER current high alarm last set time for media input + prefec_ber_min_host_input_halarm{lane_num} = STR ; Pre-FEC BER minimum high alarm last set time for host input + prefec_ber_max_host_input_halarm{lane_num} = STR ; Pre-FEC BER maximum high alarm last set time for host input + prefec_ber_avg_host_input_halarm{lane_num} = STR ; Pre-FEC BER average high alarm last set time for host input + prefec_ber_curr_host_input_halarm{lane_num} = STR ; Pre-FEC BER current high alarm last set time for host input + errored_frames_min_media_input_halarm{lane_num} = STR ; Errored frames minimum high alarm last set time for media input + errored_frames_max_media_input_halarm{lane_num} = STR ; Errored frames maximum high alarm last set time for media input + errored_frames_avg_media_input_halarm{lane_num} = STR ; Errored frames average high alarm last set time for media input + errored_frames_curr_media_input_halarm{lane_num} = STR ; Errored frames current high alarm last set time for media input + errored_frames_min_host_input_halarm{lane_num} = STR ; Errored frames minimum high alarm last set time for host input + errored_frames_max_host_input_halarm{lane_num} = STR ; Errored frames maximum high alarm last set time for host input + errored_frames_avg_host_input_halarm{lane_num} = STR ; Errored frames average high alarm last set time for host input + errored_frames_curr_host_input_halarm{lane_num} = STR ; Errored frames current high alarm last set time for host input ;C-CMIS specific fields - biasxi_halarm_last_set_time = STR ; modulator bias xi in percentage (high alarm last set time) - biasxq_halarm_last_set_time = STR ; modulator bias xq in percentage (high alarm last set time) - biasxp_halarm_last_set_time = STR ; modulator bias xp in percentage (high alarm last set time) - biasyi_halarm_last_set_time = STR ; modulator bias yi in percentage (high alarm last set time) - biasyq_halarm_last_set_time = STR ; modulator bias yq in percentage (high alarm last set time) - biasyp_halarm_last_set_time = STR ; modulator bias yq in percentage (high alarm last set time) - cdshort_halarm_last_set_time = STR ; chromatic dispersion, high granularity, short link in ps/nm (high alarm last set time) - cdlong_halarm_last_set_time = STR ; chromatic dispersion, high granularity, long link in ps/nm (high alarm last set time) - dgd_halarm_last_set_time = STR ; differential group delay in ps (high alarm last set time) - sopmd_halarm_last_set_time = STR ; second order polarization mode dispersion in ps^2 (high alarm last set time) - soproc_halarm_last_set_time = STR ; state of polarization rate of change in krad/s (high alarm last set time) - pdl_halarm_last_set_time = STR ; polarization dependent loss in db (high alarm last set time) - osnr_halarm_last_set_time = STR ; optical signal to noise ratio in db (high alarm last set time) - esnr_halarm_last_set_time = STR ; electrical signal to noise ratio in db (high alarm last set time) - cfo_halarm_last_set_time = STR ; carrier frequency offset in Hz (high alarm last set time) - txcurrpower_halarm_last_set_time = STR ; tx current output power in dbm (high alarm last set time) - rxtotpower_halarm_last_set_time = STR ; rx total power in dbm (high alarm last set time) - rxsigpower_halarm_last_set_time = STR; rx signal power in dbm (high alarm last set time) + biasxi_halarm = STR ; modulator bias xi in percentage (high alarm last set time) + biasxq_halarm = STR ; modulator bias xq in percentage (high alarm last set time) + biasxp_halarm = STR ; modulator bias xp in percentage (high alarm last set time) + biasyi_halarm = STR ; modulator bias yi in percentage (high alarm last set time) + biasyq_halarm = STR ; modulator bias yq in percentage (high alarm last set time) + biasyp_halarm = STR ; modulator bias yq in percentage (high alarm last set time) + cdshort_halarm = STR ; chromatic dispersion, high granularity, short link in ps/nm (high alarm last set time) + cdlong_halarm = STR ; chromatic dispersion, high granularity, long link in ps/nm (high alarm last set time) + dgd_halarm = STR ; differential group delay in ps (high alarm last set time) + sopmd_halarm = STR ; second order polarization mode dispersion in ps^2 (high alarm last set time) + soproc_halarm = STR ; state of polarization rate of change in krad/s (high alarm last set time) + pdl_halarm = STR ; polarization dependent loss in db (high alarm last set time) + osnr_halarm = STR ; optical signal to noise ratio in db (high alarm last set time) + esnr_halarm = STR ; electrical signal to noise ratio in db (high alarm last set time) + cfo_halarm = STR ; carrier frequency offset in Hz (high alarm last set time) + txcurrpower_halarm = STR ; tx current output power in dbm (high alarm last set time) + rxtotpower_halarm = STR ; rx total power in dbm (high alarm last set time) + rxsigpower_halarm = STR; rx signal power in dbm (high alarm last set time) ``` ##### 2.2.5.2 Transceiver VDM low alarm flag time set data -The `TRANSCEIVER_VDM_LALARM_SET_TIME` table stores the flag time set for the VDM low alarm flag. +The `TRANSCEIVER_VDM_LALARM_FLAG_SET_TIME` table stores the last set time for the VDM low alarm flag. lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. ```plaintext ;Defines Transceiver VDM low alarm last set time for a port - key = TRANSCEIVER_VDM_LALARM_SET_TIME|ifname + key = TRANSCEIVER_VDM_LALARM_FLAG_SET_TIME|ifname ; field = value - laser_temperature_media_lalarm_last_set_time{lane_num} = STR ; laser temperature low alarm last set time for media input - esnr_media_input_lalarm_last_set_time{lane_num} = STR ; eSNR low alarm last set time for media input - esnr_host_input_lalarm_last_set_time{lane_num} = STR ; eSNR low alarm last set time for host input - pam4_level_transition_media_input_lalarm_last_set_time{lane_num} = STR ; PAM4 level transition low alarm last set time for media input - pam4_level_transition_host_input_lalarm_last_set_time{lane_num} = STR ; PAM4 level transition low alarm last set time for host input - prefec_ber_min_media_input_lalarm_last_set_time{lane_num} = STR ; Pre-FEC BER minimum low alarm last set time for media input - prefec_ber_max_media_input_lalarm_last_set_time{lane_num} = STR ; Pre-FEC BER maximum low alarm last set time for media input - prefec_ber_avg_media_input_lalarm_last_set_time{lane_num} = STR ; Pre-FEC BER average low alarm last set time for media input - prefec_ber_curr_media_input_lalarm_last_set_time{lane_num} = STR ; Pre-FEC BER current low alarm last set time for media input - prefec_ber_min_host_input_lalarm_last_set_time{lane_num} = STR ; Pre-FEC BER minimum low alarm last set time for host input - prefec_ber_max_host_input_lalarm_last_set_time{lane_num} = STR ; Pre-FEC BER maximum low alarm last set time for host input - prefec_ber_avg_host_input_lalarm_last_set_time{lane_num} = STR ; Pre-FEC BER average low alarm last set time for host input - prefec_ber_curr_host_input_lalarm_last_set_time{lane_num} = STR ; Pre-FEC BER current low alarm last set time for host input - errored_frames_min_media_input_lalarm_last_set_time{lane_num} = STR ; Errored frames minimum low alarm last set time for media input - errored_frames_max_media_input_lalarm_last_set_time{lane_num} = STR ; Errored frames maximum low alarm last set time for media input - errored_frames_avg_media_input_lalarm_last_set_time{lane_num} = STR ; Errored frames average low alarm last set time for media input - errored_frames_curr_media_input_lalarm_last_set_time{lane_num} = STR ; Errored frames current low alarm last set time for media input - errored_frames_min_host_input_lalarm_last_set_time{lane_num} = STR ; Errored frames minimum low alarm last set time for host input - errored_frames_max_host_input_lalarm_last_set_time{lane_num} = STR ; Errored frames maximum low alarm last set time for host input - errored_frames_avg_host_input_lalarm_last_set_time{lane_num} = STR ; Errored frames average low alarm last set time for host input - errored_frames_curr_host_input_lalarm_last_set_time{lane_num} = STR ; Errored frames current low alarm last set time for host input + laser_temperature_media_lalarm{lane_num} = STR ; laser temperature low alarm last set time for media input + esnr_media_input_lalarm{lane_num} = STR ; eSNR low alarm last set time for media input + esnr_host_input_lalarm{lane_num} = STR ; eSNR low alarm last set time for host input + pam4_level_transition_media_input_lalarm{lane_num} = STR ; PAM4 level transition low alarm last set time for media input + pam4_level_transition_host_input_lalarm{lane_num} = STR ; PAM4 level transition low alarm last set time for host input + prefec_ber_min_media_input_lalarm{lane_num} = STR ; Pre-FEC BER minimum low alarm last set time for media input + prefec_ber_max_media_input_lalarm{lane_num} = STR ; Pre-FEC BER maximum low alarm last set time for media input + prefec_ber_avg_media_input_lalarm{lane_num} = STR ; Pre-FEC BER average low alarm last set time for media input + prefec_ber_curr_media_input_lalarm{lane_num} = STR ; Pre-FEC BER current low alarm last set time for media input + prefec_ber_min_host_input_lalarm{lane_num} = STR ; Pre-FEC BER minimum low alarm last set time for host input + prefec_ber_max_host_input_lalarm{lane_num} = STR ; Pre-FEC BER maximum low alarm last set time for host input + prefec_ber_avg_host_input_lalarm{lane_num} = STR ; Pre-FEC BER average low alarm last set time for host input + prefec_ber_curr_host_input_lalarm{lane_num} = STR ; Pre-FEC BER current low alarm last set time for host input + errored_frames_min_media_input_lalarm{lane_num} = STR ; Errored frames minimum low alarm last set time for media input + errored_frames_max_media_input_lalarm{lane_num} = STR ; Errored frames maximum low alarm last set time for media input + errored_frames_avg_media_input_lalarm{lane_num} = STR ; Errored frames average low alarm last set time for media input + errored_frames_curr_media_input_lalarm{lane_num} = STR ; Errored frames current low alarm last set time for media input + errored_frames_min_host_input_lalarm{lane_num} = STR ; Errored frames minimum low alarm last set time for host input + errored_frames_max_host_input_lalarm{lane_num} = STR ; Errored frames maximum low alarm last set time for host input + errored_frames_avg_host_input_lalarm{lane_num} = STR ; Errored frames average low alarm last set time for host input + errored_frames_curr_host_input_lalarm{lane_num} = STR ; Errored frames current low alarm last set time for host input ;C-CMIS specific fields - biasxi_lalarm_last_set_time = STR ; modulator bias xi in percentage (low alarm last set time) - biasxq_lalarm_last_set_time = STR ; modulator bias xq in percentage (low alarm last set time) - biasxp_lalarm_last_set_time = STR ; modulator bias xp in percentage (low alarm last set time) - biasyi_lalarm_last_set_time = STR ; modulator bias yi in percentage (low alarm last set time) - biasyq_lalarm_last_set_time = STR ; modulator bias yq in percentage (low alarm last set time) - biasyp_lalarm_last_set_time = STR ; modulator bias yq in percentage (low alarm last set time) - cdshort_lalarm_last_set_time = STR ; chromatic dispersion, low granularity, short link in ps/nm (low alarm last set time) - cdlong_lalarm_last_set_time = STR ; chromatic dispersion, low granularity, long link in ps/nm (low alarm last set time) - dgd_lalarm_last_set_time = STR ; differential group delay in ps (low alarm last set time) - sopmd_lalarm_last_set_time = STR ; second order polarization mode dispersion in ps^2 (low alarm last set time) - soproc_lalarm_last_set_time = STR ; state of polarization rate of change in krad/s (low alarm last set time) - pdl_lalarm_last_set_time = STR ; polarization dependent loss in db (low alarm last set time) - osnr_lalarm_last_set_time = STR ; optical signal to noise ratio in db (low alarm last set time) - esnr_lalarm_last_set_time = STR ; electrical signal to noise ratio in db (low alarm last set time) - cfo_lalarm_last_set_time = STR ; carrier frequency offset in Hz (low alarm last set time) - txcurrpower_lalarm_last_set_time = STR ; tx current output power in dbm (low alarm last set time) - rxtotpower_lalarm_last_set_time = STR ; rx total power in dbm (low alarm last set time) - rxsigpower_lalarm_last_set_time = STR; rx signal power in dbm (low alarm last set time) + biasxi_lalarm = STR ; modulator bias xi in percentage (low alarm last set time) + biasxq_lalarm = STR ; modulator bias xq in percentage (low alarm last set time) + biasxp_lalarm = STR ; modulator bias xp in percentage (low alarm last set time) + biasyi_lalarm = STR ; modulator bias yi in percentage (low alarm last set time) + biasyq_lalarm = STR ; modulator bias yq in percentage (low alarm last set time) + biasyp_lalarm = STR ; modulator bias yq in percentage (low alarm last set time) + cdshort_lalarm = STR ; chromatic dispersion, low granularity, short link in ps/nm (low alarm last set time) + cdlong_lalarm = STR ; chromatic dispersion, low granularity, long link in ps/nm (low alarm last set time) + dgd_lalarm = STR ; differential group delay in ps (low alarm last set time) + sopmd_lalarm = STR ; second order polarization mode dispersion in ps^2 (low alarm last set time) + soproc_lalarm = STR ; state of polarization rate of change in krad/s (low alarm last set time) + pdl_lalarm = STR ; polarization dependent loss in db (low alarm last set time) + osnr_lalarm = STR ; optical signal to noise ratio in db (low alarm last set time) + esnr_lalarm = STR ; electrical signal to noise ratio in db (low alarm last set time) + cfo_lalarm = STR ; carrier frequency offset in Hz (low alarm last set time) + txcurrpower_lalarm = STR ; tx current output power in dbm (low alarm last set time) + rxtotpower_lalarm = STR ; rx total power in dbm (low alarm last set time) + rxsigpower_lalarm = STR; rx signal power in dbm (low alarm last set time) ``` ##### 2.2.5.3 Transceiver VDM high warning flag time set data -The `TRANSCEIVER_VDM_HWARN_SET_TIME` table stores the flag time set for the VDM high warning flag. +The `TRANSCEIVER_VDM_HWARN_FLAG_SET_TIME` table stores the last set time for the VDM high warning flag. lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. ```plaintext ;Defines Transceiver VDM high warning last set time for a port - key = TRANSCEIVER_VDM_HWARN_SET_TIME|ifname + key = TRANSCEIVER_VDM_HWARN_FLAG_SET_TIME|ifname ; field = value - laser_temperature_media_hwarn_last_set_time{lane_num} = STR ; laser temperature high warning last set time for media input - esnr_media_input_hwarn_last_set_time{lane_num} = STR ; eSNR high warning last set time for media input - esnr_host_input_hwarn_last_set_time{lane_num} = STR ; eSNR high warning last set time for host input - pam4_level_transition_media_input_hwarn_last_set_time{lane_num} = STR ; PAM4 level transition high warning last set time for media input - pam4_level_transition_host_input_hwarn_last_set_time{lane_num} = STR ; PAM4 level transition high warning last set time for host input - prefec_ber_min_media_input_hwarn_last_set_time{lane_num} = STR ; Pre-FEC BER minimum high warning last set time for media input - prefec_ber_max_media_input_hwarn_last_set_time{lane_num} = STR ; Pre-FEC BER maximum high warning last set time for media input - prefec_ber_avg_media_input_hwarn_last_set_time{lane_num} = STR ; Pre-FEC BER average high warning last set time for media input - prefec_ber_curr_media_input_hwarn_last_set_time{lane_num} = STR ; Pre-FEC BER current high warning last set time for media input - prefec_ber_min_host_input_hwarn_last_set_time{lane_num} = STR ; Pre-FEC BER minimum high warning last set time for host input - prefec_ber_max_host_input_hwarn_last_set_time{lane_num} = STR ; Pre-FEC BER maximum high warning last set time for host input - prefec_ber_avg_host_input_hwarn_last_set_time{lane_num} = STR ; Pre-FEC BER average high warning last set time for host input - prefec_ber_curr_host_input_hwarn_last_set_time{lane_num} = STR ; Pre-FEC BER current high warning last set time for host input - errored_frames_min_media_input_hwarn_last_set_time{lane_num} = STR ; Errored frames minimum high warning last set time for media input - errored_frames_max_media_input_hwarn_last_set_time{lane_num} = STR ; Errored frames maximum high warning last set time for media input - errored_frames_avg_media_input_hwarn_last_set_time{lane_num} = STR ; Errored frames average high warning last set time for media input - errored_frames_curr_media_input_hwarn_last_set_time{lane_num} = STR ; Errored frames current high warning last set time for media input - errored_frames_min_host_input_hwarn_last_set_time{lane_num} = STR ; Errored frames minimum high warning last set time for host input - errored_frames_max_host_input_hwarn_last_set_time{lane_num} = STR ; Errored frames maximum high warning last set time for host input - errored_frames_avg_host_input_hwarn_last_set_time{lane_num} = STR ; Errored frames average high warning last set time for host input - errored_frames_curr_host_input_hwarn_last_set_time{lane_num} = STR ; Errored frames current high warning last set time for host input + laser_temperature_media_hwarn{lane_num} = STR ; laser temperature high warning last set time for media input + esnr_media_input_hwarn{lane_num} = STR ; eSNR high warning last set time for media input + esnr_host_input_hwarn{lane_num} = STR ; eSNR high warning last set time for host input + pam4_level_transition_media_input_hwarn{lane_num} = STR ; PAM4 level transition high warning last set time for media input + pam4_level_transition_host_input_hwarn{lane_num} = STR ; PAM4 level transition high warning last set time for host input + prefec_ber_min_media_input_hwarn{lane_num} = STR ; Pre-FEC BER minimum high warning last set time for media input + prefec_ber_max_media_input_hwarn{lane_num} = STR ; Pre-FEC BER maximum high warning last set time for media input + prefec_ber_avg_media_input_hwarn{lane_num} = STR ; Pre-FEC BER average high warning last set time for media input + prefec_ber_curr_media_input_hwarn{lane_num} = STR ; Pre-FEC BER current high warning last set time for media input + prefec_ber_min_host_input_hwarn{lane_num} = STR ; Pre-FEC BER minimum high warning last set time for host input + prefec_ber_max_host_input_hwarn{lane_num} = STR ; Pre-FEC BER maximum high warning last set time for host input + prefec_ber_avg_host_input_hwarn{lane_num} = STR ; Pre-FEC BER average high warning last set time for host input + prefec_ber_curr_host_input_hwarn{lane_num} = STR ; Pre-FEC BER current high warning last set time for host input + errored_frames_min_media_input_hwarn{lane_num} = STR ; Errored frames minimum high warning last set time for media input + errored_frames_max_media_input_hwarn{lane_num} = STR ; Errored frames maximum high warning last set time for media input + errored_frames_avg_media_input_hwarn{lane_num} = STR ; Errored frames average high warning last set time for media input + errored_frames_curr_media_input_hwarn{lane_num} = STR ; Errored frames current high warning last set time for media input + errored_frames_min_host_input_hwarn{lane_num} = STR ; Errored frames minimum high warning last set time for host input + errored_frames_max_host_input_hwarn{lane_num} = STR ; Errored frames maximum high warning last set time for host input + errored_frames_avg_host_input_hwarn{lane_num} = STR ; Errored frames average high warning last set time for host input + errored_frames_curr_host_input_hwarn{lane_num} = STR ; Errored frames current high warning last set time for host input ;C-CMIS specific fields - biasxi_hwarn_last_set_time = STR ; modulator bias xi in percentage (high warning last set time) - biasxq_hwarn_last_set_time = STR ; modulator bias xq in percentage (high warning last set time) - biasxp_hwarn_last_set_time = STR ; modulator bias xp in percentage (high warning last set time) - biasyi_hwarn_last_set_time = STR ; modulator bias yi in percentage (high warning last set time) - biasyq_hwarn_last_set_time = STR ; modulator bias yq in percentage (high warning last set time) - biasyp_hwarn_last_set_time = STR ; modulator bias yq in percentage (high warning last set time) - cdshort_hwarn_last_set_time = STR ; chromatic dispersion, low granularity, short link in ps/nm (high warning last set time) - cdlong_hwarn_last_set_time = STR ; chromatic dispersion, low granularity, long link in ps/nm (high warning last set time) - dgd_hwarn_last_set_time = STR ; differential group delay in ps (high warning last set time) - sopmd_hwarn_last_set_time = STR ; second order polarization mode dispersion in ps^2 (high warning last set time) - soproc_hwarn_last_set_time = STR ; state of polarization rate of change in krad/s (high warning last set time) - pdl_hwarn_last_set_time = STR ; polarization dependent loss in db (high warning last set time) - osnr_hwarn_last_set_time = STR ; optical signal to noise ratio in db (high warning last set time) - esnr_hwarn_last_set_time = STR ; electrical signal to noise ratio in db (high warning last set time) - cfo_hwarn_last_set_time = STR ; carrier frequency offset in Hz (high warning last set time) - txcurrpower_hwarn_last_set_time = STR ; tx current output power in dbm (high warning last set time) - rxtotpower_hwarn_last_set_time = STR ; rx total power in dbm (high warning last set time) - rxsigpower_hwarn_last_set_time = STR; rx signal power in dbm (high warning last set time) + biasxi_hwarn = STR ; modulator bias xi in percentage (high warning last set time) + biasxq_hwarn = STR ; modulator bias xq in percentage (high warning last set time) + biasxp_hwarn = STR ; modulator bias xp in percentage (high warning last set time) + biasyi_hwarn = STR ; modulator bias yi in percentage (high warning last set time) + biasyq_hwarn = STR ; modulator bias yq in percentage (high warning last set time) + biasyp_hwarn = STR ; modulator bias yq in percentage (high warning last set time) + cdshort_hwarn = STR ; chromatic dispersion, low granularity, short link in ps/nm (high warning last set time) + cdlong_hwarn = STR ; chromatic dispersion, low granularity, long link in ps/nm (high warning last set time) + dgd_hwarn = STR ; differential group delay in ps (high warning last set time) + sopmd_hwarn = STR ; second order polarization mode dispersion in ps^2 (high warning last set time) + soproc_hwarn = STR ; state of polarization rate of change in krad/s (high warning last set time) + pdl_hwarn = STR ; polarization dependent loss in db (high warning last set time) + osnr_hwarn = STR ; optical signal to noise ratio in db (high warning last set time) + esnr_hwarn = STR ; electrical signal to noise ratio in db (high warning last set time) + cfo_hwarn = STR ; carrier frequency offset in Hz (high warning last set time) + txcurrpower_hwarn = STR ; tx current output power in dbm (high warning last set time) + rxtotpower_hwarn = STR ; rx total power in dbm (high warning last set time) + rxsigpower_hwarn = STR; rx signal power in dbm (high warning last set time) ``` ##### 2.2.5.4 Transceiver VDM low warning flag time set data -The `TRANSCEIVER_VDM_LWARN_SET_TIME` table stores the flag time set for the VDM low warning flag. +The `TRANSCEIVER_VDM_LWARN_FLAG_SET_TIME` table stores the last set time for the VDM low warning flag. lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. ```plaintext ;Defines Transceiver VDM low warning last set time for a port - key = TRANSCEIVER_VDM_LWARN_SET_TIME|ifname + key = TRANSCEIVER_VDM_LWARN_FLAG_SET_TIME|ifname ; field = value - laser_temperature_media_lwarn_last_set_time{lane_num} = STR ; laser temperature low warning last set time for media input - esnr_media_input_lwarn_last_set_time{lane_num} = STR ; eSNR low warning last set time for media input - esnr_host_input_lwarn_last_set_time{lane_num} = STR ; eSNR low warning last set time for host input - pam4_level_transition_media_input_lwarn_last_set_time{lane_num} = STR ; PAM4 level transition low warning last set time for media input - pam4_level_transition_host_input_lwarn_last_set_time{lane_num} = STR ; PAM4 level transition low warning last set time for host input - prefec_ber_min_media_input_lwarn_last_set_time{lane_num} = STR ; Pre-FEC BER minimum low warning last set time for media input - prefec_ber_max_media_input_lwarn_last_set_time{lane_num} = STR ; Pre-FEC BER maximum low warning last set time for media input - prefec_ber_avg_media_input_lwarn_last_set_time{lane_num} = STR ; Pre-FEC BER average low warning last set time for media input - prefec_ber_curr_media_input_lwarn_last_set_time{lane_num} = STR ; Pre-FEC BER current low warning last set time for media input - prefec_ber_min_host_input_lwarn_last_set_time{lane_num} = STR ; Pre-FEC BER minimum low warning last set time for host input - prefec_ber_max_host_input_lwarn_last_set_time{lane_num} = STR ; Pre-FEC BER maximum low warning last set time for host input - prefec_ber_avg_host_input_lwarn_last_set_time{lane_num} = STR ; Pre-FEC BER average low warning last set time for host input - prefec_ber_curr_host_input_lwarn_last_set_time{lane_num} = STR ; Pre-FEC BER current low warning last set time for host input - errored_frames_min_media_input_lwarn_last_set_time{lane_num} = STR ; Errored frames minimum low warning last set time for media input - errored_frames_max_media_input_lwarn_last_set_time{lane_num} = STR ; Errored frames maximum low warning last set time for media input - errored_frames_avg_media_input_lwarn_last_set_time{lane_num} = STR ; Errored frames average low warning last set time for media input - errored_frames_curr_media_input_lwarn_last_set_time{lane_num} = STR ; Errored frames current low warning last set time for media input - errored_frames_min_host_input_lwarn_last_set_time{lane_num} = STR ; Errored frames minimum low warning last set time for host input - errored_frames_max_host_input_lwarn_last_set_time{lane_num} = STR ; Errored frames maximum low warning last set time for host input - errored_frames_avg_host_input_lwarn_last_set_time{lane_num} = STR ; Errored frames average low warning last set time for host input - errored_frames_curr_host_input_lwarn_last_set_time{lane_num} = STR ; Errored frames current low warning last set time for host input + laser_temperature_media_lwarn{lane_num} = STR ; laser temperature low warning last set time for media input + esnr_media_input_lwarn{lane_num} = STR ; eSNR low warning last set time for media input + esnr_host_input_lwarn{lane_num} = STR ; eSNR low warning last set time for host input + pam4_level_transition_media_input_lwarn{lane_num} = STR ; PAM4 level transition low warning last set time for media input + pam4_level_transition_host_input_lwarn{lane_num} = STR ; PAM4 level transition low warning last set time for host input + prefec_ber_min_media_input_lwarn{lane_num} = STR ; Pre-FEC BER minimum low warning last set time for media input + prefec_ber_max_media_input_lwarn{lane_num} = STR ; Pre-FEC BER maximum low warning last set time for media input + prefec_ber_avg_media_input_lwarn{lane_num} = STR ; Pre-FEC BER average low warning last set time for media input + prefec_ber_curr_media_input_lwarn{lane_num} = STR ; Pre-FEC BER current low warning last set time for media input + prefec_ber_min_host_input_lwarn{lane_num} = STR ; Pre-FEC BER minimum low warning last set time for host input + prefec_ber_max_host_input_lwarn{lane_num} = STR ; Pre-FEC BER maximum low warning last set time for host input + prefec_ber_avg_host_input_lwarn{lane_num} = STR ; Pre-FEC BER average low warning last set time for host input + prefec_ber_curr_host_input_lwarn{lane_num} = STR ; Pre-FEC BER current low warning last set time for host input + errored_frames_min_media_input_lwarn{lane_num} = STR ; Errored frames minimum low warning last set time for media input + errored_frames_max_media_input_lwarn{lane_num} = STR ; Errored frames maximum low warning last set time for media input + errored_frames_avg_media_input_lwarn{lane_num} = STR ; Errored frames average low warning last set time for media input + errored_frames_curr_media_input_lwarn{lane_num} = STR ; Errored frames current low warning last set time for media input + errored_frames_min_host_input_lwarn{lane_num} = STR ; Errored frames minimum low warning last set time for host input + errored_frames_max_host_input_lwarn{lane_num} = STR ; Errored frames maximum low warning last set time for host input + errored_frames_avg_host_input_lwarn{lane_num} = STR ; Errored frames average low warning last set time for host input + errored_frames_curr_host_input_lwarn{lane_num} = STR ; Errored frames current low warning last set time for host input ;C-CMIS specific fields - biasxi_lwarn_last_set_time = STR ; modulator bias xi in percentage (low warning last set time) - biasxq_lwarn_last_set_time = STR ; modulator bias xq in percentage (low warning last set time) - biasxp_lwarn_last_set_time = STR ; modulator bias xp in percentage (low warning last set time) - biasyi_lwarn_last_set_time = STR ; modulator bias yi in percentage (low warning last set time) - biasyq_lwarn_last_set_time = STR ; modulator bias yq in percentage (low warning last set time) - biasyp_lwarn_last_set_time = STR ; modulator bias yq in percentage (low warning last set time) - cdshort_lwarn_last_set_time = STR ; chromatic dispersion, low granularity, short link in ps/nm (low warning last set time) - cdlong_lwarn_last_set_time = STR ; chromatic dispersion, low granularity, long link in ps/nm (low warning last set time) - dgd_lwarn_last_set_time = STR ; differential group delay in ps (low warning last set time) - sopmd_lwarn_last_set_time = STR ; second order polarization mode dispersion in ps^2 (low warning last set time) - soproc_lwarn_last_set_time = STR ; state of polarization rate of change in krad/s (low warning last set time) - pdl_lwarn_last_set_time = STR ; polarization dependent loss in db (low warning last set time) - osnr_lwarn_last_set_time = STR ; optical signal to noise ratio in db (low warning last set time) - esnr_lwarn_last_set_time = STR ; electrical signal to noise ratio in db (low warning last set time) - cfo_lwarn_last_set_time = STR ; carrier frequency offset in Hz (low warning last set time) - txcurrpower_lwarn_last_set_time = STR ; tx current output power in dbm (low warning last set time) - rxtotpower_lwarn_last_set_time = STR ; rx total power in dbm (low warning last set time) - rxsigpower_lwarn_last_set_time = STR; rx signal power in dbm (low warning last set time) + biasxi_lwarn = STR ; modulator bias xi in percentage (low warning last set time) + biasxq_lwarn = STR ; modulator bias xq in percentage (low warning last set time) + biasxp_lwarn = STR ; modulator bias xp in percentage (low warning last set time) + biasyi_lwarn = STR ; modulator bias yi in percentage (low warning last set time) + biasyq_lwarn = STR ; modulator bias yq in percentage (low warning last set time) + biasyp_lwarn = STR ; modulator bias yq in percentage (low warning last set time) + cdshort_lwarn = STR ; chromatic dispersion, low granularity, short link in ps/nm (low warning last set time) + cdlong_lwarn = STR ; chromatic dispersion, low granularity, long link in ps/nm (low warning last set time) + dgd_lwarn = STR ; differential group delay in ps (low warning last set time) + sopmd_lwarn = STR ; second order polarization mode dispersion in ps^2 (low warning last set time) + soproc_lwarn = STR ; state of polarization rate of change in krad/s (low warning last set time) + pdl_lwarn = STR ; polarization dependent loss in db (low warning last set time) + osnr_lwarn = STR ; optical signal to noise ratio in db (low warning last set time) + esnr_lwarn = STR ; electrical signal to noise ratio in db (low warning last set time) + cfo_lwarn = STR ; carrier frequency offset in Hz (low warning last set time) + txcurrpower_lwarn = STR ; tx current output power in dbm (low warning last set time) + rxtotpower_lwarn = STR ; rx total power in dbm (low warning last set time) + rxsigpower_lwarn = STR; rx signal power in dbm (low warning last set time) ``` #### 2.2.6 Transceiver VDM flag time clear data ##### 2.2.6.1 Transceiver VDM high alarm flag time clear data -The `TRANSCEIVER_VDM_HALARM_CLEAR_TIME` table stores the flag time clear for the VDM high alarm flag. +The `TRANSCEIVER_VDM_HALARM_FLAG_CLEAR_TIME` table stores the last clear time for the VDM high alarm flag. lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. ```plaintext ;Defines Transceiver VDM high alarm last clear time for a port - key = TRANSCEIVER_VDM_HALARM_CLEAR_TIME|ifname + key = TRANSCEIVER_VDM_HALARM_FLAG_CLEAR_TIME|ifname ; field = value - laser_temperature_media_halarm_last_clear_time{lane_num} = STR ; laser temperature high alarm last clear time for media input - esnr_media_input_halarm_last_clear_time{lane_num} = STR ; eSNR high alarm last clear time for media input - esnr_host_input_halarm_last_clear_time{lane_num} = STR ; eSNR high alarm last clear time for host input - pam4_level_transition_media_input_halarm_last_clear_time{lane_num} = STR ; PAM4 level transition high alarm last clear time for media input - pam4_level_transition_host_input_halarm_last_clear_time{lane_num} = STR ; PAM4 level transition high alarm last clear time for host input - prefec_ber_min_media_input_halarm_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum high alarm last clear time for media input - prefec_ber_max_media_input_halarm_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum high alarm last clear time for media input - prefec_ber_avg_media_input_halarm_last_clear_time{lane_num} = STR ; Pre-FEC BER average high alarm last clear time for media input - prefec_ber_curr_media_input_halarm_last_clear_time{lane_num} = STR ; Pre-FEC BER current high alarm last clear time for media input - prefec_ber_min_host_input_halarm_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum high alarm last clear time for host input - prefec_ber_max_host_input_halarm_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum high alarm last clear time for host input - prefec_ber_avg_host_input_halarm_last_clear_time{lane_num} = STR ; Pre-FEC BER average high alarm last clear time for host input - prefec_ber_curr_host_input_halarm_last_clear_time{lane_num} = STR ; Pre-FEC BER current high alarm last clear time for host input - errored_frames_min_media_input_halarm_last_clear_time{lane_num} = STR ; Errored frames minimum high alarm last clear time for media input - errored_frames_max_media_input_halarm_last_clear_time{lane_num} = STR ; Errored frames maximum high alarm last clear time for media input - errored_frames_avg_media_input_halarm_last_clear_time{lane_num} = STR ; Errored frames average high alarm last clear time for media input - errored_frames_curr_media_input_halarm_last_clear_time{lane_num} = STR ; Errored frames current high alarm last clear time for media input - errored_frames_min_host_input_halarm_last_clear_time{lane_num} = STR ; Errored frames minimum high alarm last clear time for host input - errored_frames_max_host_input_halarm_last_clear_time{lane_num} = STR ; Errored frames maximum high alarm last clear time for host input - errored_frames_avg_host_input_halarm_last_clear_time{lane_num} = STR ; Errored frames average high alarm last clear time for host input - errored_frames_curr_host_input_halarm_last_clear_time{lane_num} = STR ; Errored frames current high alarm last clear time for host input + laser_temperature_media_halarm{lane_num} = STR ; laser temperature high alarm last clear time for media input + esnr_media_input_halarm{lane_num} = STR ; eSNR high alarm last clear time for media input + esnr_host_input_halarm{lane_num} = STR ; eSNR high alarm last clear time for host input + pam4_level_transition_media_input_halarm{lane_num} = STR ; PAM4 level transition high alarm last clear time for media input + pam4_level_transition_host_input_halarm{lane_num} = STR ; PAM4 level transition high alarm last clear time for host input + prefec_ber_min_media_input_halarm{lane_num} = STR ; Pre-FEC BER minimum high alarm last clear time for media input + prefec_ber_max_media_input_halarm{lane_num} = STR ; Pre-FEC BER maximum high alarm last clear time for media input + prefec_ber_avg_media_input_halarm{lane_num} = STR ; Pre-FEC BER average high alarm last clear time for media input + prefec_ber_curr_media_input_halarm{lane_num} = STR ; Pre-FEC BER current high alarm last clear time for media input + prefec_ber_min_host_input_halarm{lane_num} = STR ; Pre-FEC BER minimum high alarm last clear time for host input + prefec_ber_max_host_input_halarm{lane_num} = STR ; Pre-FEC BER maximum high alarm last clear time for host input + prefec_ber_avg_host_input_halarm{lane_num} = STR ; Pre-FEC BER average high alarm last clear time for host input + prefec_ber_curr_host_input_halarm{lane_num} = STR ; Pre-FEC BER current high alarm last clear time for host input + errored_frames_min_media_input_halarm{lane_num} = STR ; Errored frames minimum high alarm last clear time for media input + errored_frames_max_media_input_halarm{lane_num} = STR ; Errored frames maximum high alarm last clear time for media input + errored_frames_avg_media_input_halarm{lane_num} = STR ; Errored frames average high alarm last clear time for media input + errored_frames_curr_media_input_halarm{lane_num} = STR ; Errored frames current high alarm last clear time for media input + errored_frames_min_host_input_halarm{lane_num} = STR ; Errored frames minimum high alarm last clear time for host input + errored_frames_max_host_input_halarm{lane_num} = STR ; Errored frames maximum high alarm last clear time for host input + errored_frames_avg_host_input_halarm{lane_num} = STR ; Errored frames average high alarm last clear time for host input + errored_frames_curr_host_input_halarm{lane_num} = STR ; Errored frames current high alarm last clear time for host input ;C-CMIS specific fields - biasxi_halarm_last_clear_time = STR ; modulator bias xi in percentage (high alarm last clear time) - biasxq_halarm_last_clear_time = STR ; modulator bias xq in percentage (high alarm last clear time) - biasxp_halarm_last_clear_time = STR ; modulator bias xp in percentage (high alarm last clear time) - biasyi_halarm_last_clear_time = STR ; modulator bias yi in percentage (high alarm last clear time) - biasyq_halarm_last_clear_time = STR ; modulator bias yq in percentage (high alarm last clear time) - biasyp_halarm_last_clear_time = STR ; modulator bias yq in percentage (high alarm last clear time) - cdshort_halarm_last_clear_time = STR ; chromatic dispersion, high granularity, short link in ps/nm (high alarm last clear time) - cdlong_halarm_last_clear_time = STR ; chromatic dispersion, high granularity, long link in ps/nm (high alarm last clear time) - dgd_halarm_last_clear_time = STR ; differential group delay in ps (high alarm last clear time) - sopmd_halarm_last_clear_time = STR ; second order polarization mode dispersion in ps^2 (high alarm last clear time) - soproc_halarm_last_clear_time = STR ; state of polarization rate of change in krad/s (high alarm last clear time) - pdl_halarm_last_clear_time = STR ; polarization dependent loss in db (high alarm last clear time) - osnr_halarm_last_clear_time = STR ; optical signal to noise ratio in db (high alarm last clear time) - esnr_halarm_last_clear_time = STR ; electrical signal to noise ratio in db (high alarm last clear time) - cfo_halarm_last_clear_time = STR ; carrier frequency offset in Hz (high alarm last clear time) - txcurrpower_halarm_last_clear_time = STR ; tx current output power in dbm (high alarm last clear time) - rxtotpower_halarm_last_clear_time = STR ; rx total power in dbm (high alarm last clear time) - rxsigpower_halarm_last_clear_time = STR; rx signal power in dbm (high alarm last clear time) + biasxi_halarm = STR ; modulator bias xi in percentage (high alarm last clear time) + biasxq_halarm = STR ; modulator bias xq in percentage (high alarm last clear time) + biasxp_halarm = STR ; modulator bias xp in percentage (high alarm last clear time) + biasyi_halarm = STR ; modulator bias yi in percentage (high alarm last clear time) + biasyq_halarm = STR ; modulator bias yq in percentage (high alarm last clear time) + biasyp_halarm = STR ; modulator bias yq in percentage (high alarm last clear time) + cdshort_halarm = STR ; chromatic dispersion, high granularity, short link in ps/nm (high alarm last clear time) + cdlong_halarm = STR ; chromatic dispersion, high granularity, long link in ps/nm (high alarm last clear time) + dgd_halarm = STR ; differential group delay in ps (high alarm last clear time) + sopmd_halarm = STR ; second order polarization mode dispersion in ps^2 (high alarm last clear time) + soproc_halarm = STR ; state of polarization rate of change in krad/s (high alarm last clear time) + pdl_halarm = STR ; polarization dependent loss in db (high alarm last clear time) + osnr_halarm = STR ; optical signal to noise ratio in db (high alarm last clear time) + esnr_halarm = STR ; electrical signal to noise ratio in db (high alarm last clear time) + cfo_halarm = STR ; carrier frequency offset in Hz (high alarm last clear time) + txcurrpower_halarm = STR ; tx current output power in dbm (high alarm last clear time) + rxtotpower_halarm = STR ; rx total power in dbm (high alarm last clear time) + rxsigpower_halarm = STR; rx signal power in dbm (high alarm last clear time) ``` ##### 2.2.6.2 Transceiver VDM low alarm flag time clear data -The `TRANSCEIVER_VDM_LALARM_CLEAR_TIME` table stores the flag time clear for the VDM low alarm flag. +The `TRANSCEIVER_VDM_LALARM_FLAG_CLEAR_TIME` table stores the last clear time for the VDM low alarm flag. lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. ```plaintext ;Defines Transceiver VDM low alarm last clear time for a port - key = TRANSCEIVER_VDM_LALARM_CLEAR_TIME|ifname + key = TRANSCEIVER_VDM_LALARM_FLAG_CLEAR_TIME|ifname ; field = value - laser_temperature_media_lalarm_last_clear_time{lane_num} = STR ; laser temperature low alarm last clear time for media input - esnr_media_input_lalarm_last_clear_time{lane_num} = STR ; eSNR low alarm last clear time for media input - esnr_host_input_lalarm_last_clear_time{lane_num} = STR ; eSNR low alarm last clear time for host input - pam4_level_transition_media_input_lalarm_last_clear_time{lane_num} = STR ; PAM4 level transition low alarm last clear time for media input - pam4_level_transition_host_input_lalarm_last_clear_time{lane_num} = STR ; PAM4 level transition low alarm last clear time for host input - prefec_ber_min_media_input_lalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum low alarm last clear time for media input - prefec_ber_max_media_input_lalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum low alarm last clear time for media input - prefec_ber_avg_media_input_lalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER average low alarm last clear time for media input - prefec_ber_curr_media_input_lalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER current low alarm last clear time for media input - prefec_ber_min_host_input_lalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum low alarm last clear time for host input - prefec_ber_max_host_input_lalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum low alarm last clear time for host input - prefec_ber_avg_host_input_lalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER average low alarm last clear time for host input - prefec_ber_curr_host_input_lalarm_last_clear_time{lane_num} = STR ; Pre-FEC BER current low alarm last clear time for host input - errored_frames_min_media_input_lalarm_last_clear_time{lane_num} = STR ; Errored frames minimum low alarm last clear time for media input - errored_frames_max_media_input_lalarm_last_clear_time{lane_num} = STR ; Errored frames maximum low alarm last clear time for media input - errored_frames_avg_media_input_lalarm_last_clear_time{lane_num} = STR ; Errored frames average low alarm last clear time for media input - errored_frames_curr_media_input_lalarm_last_clear_time{lane_num} = STR ; Errored frames current low alarm last clear time for media input - errored_frames_min_host_input_lalarm_last_clear_time{lane_num} = STR ; Errored frames minimum low alarm last clear time for host input - errored_frames_max_host_input_lalarm_last_clear_time{lane_num} = STR ; Errored frames maximum low alarm last clear time for host input - errored_frames_avg_host_input_lalarm_last_clear_time{lane_num} = STR ; Errored frames average low alarm last clear time for host input - errored_frames_curr_host_input_lalarm_last_clear_time{lane_num} = STR ; Errored frames current low alarm last clear time for host input + laser_temperature_media_lalarm{lane_num} = STR ; laser temperature low alarm last clear time for media input + esnr_media_input_lalarm{lane_num} = STR ; eSNR low alarm last clear time for media input + esnr_host_input_lalarm{lane_num} = STR ; eSNR low alarm last clear time for host input + pam4_level_transition_media_input_lalarm{lane_num} = STR ; PAM4 level transition low alarm last clear time for media input + pam4_level_transition_host_input_lalarm{lane_num} = STR ; PAM4 level transition low alarm last clear time for host input + prefec_ber_min_media_input_lalarm{lane_num} = STR ; Pre-FEC BER minimum low alarm last clear time for media input + prefec_ber_max_media_input_lalarm{lane_num} = STR ; Pre-FEC BER maximum low alarm last clear time for media input + prefec_ber_avg_media_input_lalarm{lane_num} = STR ; Pre-FEC BER average low alarm last clear time for media input + prefec_ber_curr_media_input_lalarm{lane_num} = STR ; Pre-FEC BER current low alarm last clear time for media input + prefec_ber_min_host_input_lalarm{lane_num} = STR ; Pre-FEC BER minimum low alarm last clear time for host input + prefec_ber_max_host_input_lalarm{lane_num} = STR ; Pre-FEC BER maximum low alarm last clear time for host input + prefec_ber_avg_host_input_lalarm{lane_num} = STR ; Pre-FEC BER average low alarm last clear time for host input + prefec_ber_curr_host_input_lalarm{lane_num} = STR ; Pre-FEC BER current low alarm last clear time for host input + errored_frames_min_media_input_lalarm{lane_num} = STR ; Errored frames minimum low alarm last clear time for media input + errored_frames_max_media_input_lalarm{lane_num} = STR ; Errored frames maximum low alarm last clear time for media input + errored_frames_avg_media_input_lalarm{lane_num} = STR ; Errored frames average low alarm last clear time for media input + errored_frames_curr_media_input_lalarm{lane_num} = STR ; Errored frames current low alarm last clear time for media input + errored_frames_min_host_input_lalarm{lane_num} = STR ; Errored frames minimum low alarm last clear time for host input + errored_frames_max_host_input_lalarm{lane_num} = STR ; Errored frames maximum low alarm last clear time for host input + errored_frames_avg_host_input_lalarm{lane_num} = STR ; Errored frames average low alarm last clear time for host input + errored_frames_curr_host_input_lalarm{lane_num} = STR ; Errored frames current low alarm last clear time for host input ;C-CMIS specific fields - biasxi_lalarm_last_clear_time = STR ; modulator bias xi in percentage (low alarm last clear time) - biasxq_lalarm_last_clear_time = STR ; modulator bias xq in percentage (low alarm last clear time) - biasxp_lalarm_last_clear_time = STR ; modulator bias xp in percentage (low alarm last clear time) - biasyi_lalarm_last_clear_time = STR ; modulator bias yi in percentage (low alarm last clear time) - biasyq_lalarm_last_clear_time = STR ; modulator bias yq in percentage (low alarm last clear time) - biasyp_lalarm_last_clear_time = STR ; modulator bias yq in percentage (low alarm last clear time) - cdshort_lalarm_last_clear_time = STR ; chromatic dispersion, low granularity, short link in ps/nm (low alarm last clear time) - cdlong_lalarm_last_clear_time = STR ; chromatic dispersion, low granularity, long link in ps/nm (low alarm last clear time) - dgd_lalarm_last_clear_time = STR ; differential group delay in ps (low alarm last clear time) - sopmd_lalarm_last_clear_time = STR ; second order polarization mode dispersion in ps^2 (low alarm last clear time) - soproc_lalarm_last_clear_time = STR ; state of polarization rate of change in krad/s (low alarm last clear time) - pdl_lalarm_last_clear_time = STR ; polarization dependent loss in db (low alarm last clear time) - osnr_lalarm_last_clear_time = STR ; optical signal to noise ratio in db (low alarm last clear time) - esnr_lalarm_last_clear_time = STR ; electrical signal to noise ratio in db (low alarm last clear time) - cfo_lalarm_last_clear_time = STR ; carrier frequency offset in Hz (low alarm last clear time) - txcurrpower_lalarm_last_clear_time = STR ; tx current output power in dbm (low alarm last clear time) - rxtotpower_lalarm_last_clear_time = STR ; rx total power in dbm (low alarm last clear time) - rxsigpower_lalarm_last_clear_time = STR; rx signal power in dbm (low alarm last clear time) + biasxi_lalarm = STR ; modulator bias xi in percentage (low alarm last clear time) + biasxq_lalarm = STR ; modulator bias xq in percentage (low alarm last clear time) + biasxp_lalarm = STR ; modulator bias xp in percentage (low alarm last clear time) + biasyi_lalarm = STR ; modulator bias yi in percentage (low alarm last clear time) + biasyq_lalarm = STR ; modulator bias yq in percentage (low alarm last clear time) + biasyp_lalarm = STR ; modulator bias yq in percentage (low alarm last clear time) + cdshort_lalarm = STR ; chromatic dispersion, low granularity, short link in ps/nm (low alarm last clear time) + cdlong_lalarm = STR ; chromatic dispersion, low granularity, long link in ps/nm (low alarm last clear time) + dgd_lalarm = STR ; differential group delay in ps (low alarm last clear time) + sopmd_lalarm = STR ; second order polarization mode dispersion in ps^2 (low alarm last clear time) + soproc_lalarm = STR ; state of polarization rate of change in krad/s (low alarm last clear time) + pdl_lalarm = STR ; polarization dependent loss in db (low alarm last clear time) + osnr_lalarm = STR ; optical signal to noise ratio in db (low alarm last clear time) + esnr_lalarm = STR ; electrical signal to noise ratio in db (low alarm last clear time) + cfo_lalarm = STR ; carrier frequency offset in Hz (low alarm last clear time) + txcurrpower_lalarm = STR ; tx current output power in dbm (low alarm last clear time) + rxtotpower_lalarm = STR ; rx total power in dbm (low alarm last clear time) + rxsigpower_lalarm = STR; rx signal power in dbm (low alarm last clear time) ``` ##### 2.2.6.3 Transceiver VDM high warning flag time clear data -The `TRANSCEIVER_VDM_HWARN_CLEAR_TIME` table stores the flag time clear for the VDM high warning flag. +The `TRANSCEIVER_VDM_HWARN_FLAG_CLEAR_TIME` table stores the last clear time for the VDM high warning flag. lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. ```plaintext ;Defines Transceiver VDM high warning last clear time for a port - key = TRANSCEIVER_VDM_HWARN_CLEAR_TIME|ifname + key = TRANSCEIVER_VDM_HWARN_FLAG_CLEAR_TIME|ifname ; field = value - laser_temperature_media_hwarn_last_clear_time{lane_num} = STR ; laser temperature high warning last clear time for media input - esnr_media_input_hwarn_last_clear_time{lane_num} = STR ; eSNR high warning last clear time for media input - esnr_host_input_hwarn_last_clear_time{lane_num} = STR ; eSNR high warning last clear time for host input - pam4_level_transition_media_input_hwarn_last_clear_time{lane_num} = STR ; PAM4 level transition high warning last clear time for media input - pam4_level_transition_host_input_hwarn_last_clear_time{lane_num} = STR ; PAM4 level transition high warning last clear time for host input - prefec_ber_min_media_input_hwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum high warning last clear time for media input - prefec_ber_max_media_input_hwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum high warning last clear time for media input - prefec_ber_avg_media_input_hwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER average high warning last clear time for media input - prefec_ber_curr_media_input_hwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER current high warning last clear time for media input - prefec_ber_min_host_input_hwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum high warning last clear time for host input - prefec_ber_max_host_input_hwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum high warning last clear time for host input - prefec_ber_avg_host_input_hwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER average high warning last clear time for host input - prefec_ber_curr_host_input_hwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER current high warning last clear time for host input - errored_frames_min_media_input_hwarn_last_clear_time{lane_num} = STR ; Errored frames minimum high warning last clear time for media input - errored_frames_max_media_input_hwarn_last_clear_time{lane_num} = STR ; Errored frames maximum high warning last clear time for media input - errored_frames_avg_media_input_hwarn_last_clear_time{lane_num} = STR ; Errored frames average high warning last clear time for media input - errored_frames_curr_media_input_hwarn_last_clear_time{lane_num} = STR ; Errored frames current high warning last clear time for media input - errored_frames_min_host_input_hwarn_last_clear_time{lane_num} = STR ; Errored frames minimum high warning last clear time for host input - errored_frames_max_host_input_hwarn_last_clear_time{lane_num} = STR ; Errored frames maximum high warning last clear time for host input - errored_frames_avg_host_input_hwarn_last_clear_time{lane_num} = STR ; Errored frames average high warning last clear time for host input - errored_frames_curr_host_input_hwarn_last_clear_time{lane_num} = STR ; Errored frames current high warning last clear time for host input + laser_temperature_media_hwarn{lane_num} = STR ; laser temperature high warning last clear time for media input + esnr_media_input_hwarn{lane_num} = STR ; eSNR high warning last clear time for media input + esnr_host_input_hwarn{lane_num} = STR ; eSNR high warning last clear time for host input + pam4_level_transition_media_input_hwarn{lane_num} = STR ; PAM4 level transition high warning last clear time for media input + pam4_level_transition_host_input_hwarn{lane_num} = STR ; PAM4 level transition high warning last clear time for host input + prefec_ber_min_media_input_hwarn{lane_num} = STR ; Pre-FEC BER minimum high warning last clear time for media input + prefec_ber_max_media_input_hwarn{lane_num} = STR ; Pre-FEC BER maximum high warning last clear time for media input + prefec_ber_avg_media_input_hwarn{lane_num} = STR ; Pre-FEC BER average high warning last clear time for media input + prefec_ber_curr_media_input_hwarn{lane_num} = STR ; Pre-FEC BER current high warning last clear time for media input + prefec_ber_min_host_input_hwarn{lane_num} = STR ; Pre-FEC BER minimum high warning last clear time for host input + prefec_ber_max_host_input_hwarn{lane_num} = STR ; Pre-FEC BER maximum high warning last clear time for host input + prefec_ber_avg_host_input_hwarn{lane_num} = STR ; Pre-FEC BER average high warning last clear time for host input + prefec_ber_curr_host_input_hwarn{lane_num} = STR ; Pre-FEC BER current high warning last clear time for host input + errored_frames_min_media_input_hwarn{lane_num} = STR ; Errored frames minimum high warning last clear time for media input + errored_frames_max_media_input_hwarn{lane_num} = STR ; Errored frames maximum high warning last clear time for media input + errored_frames_avg_media_input_hwarn{lane_num} = STR ; Errored frames average high warning last clear time for media input + errored_frames_curr_media_input_hwarn{lane_num} = STR ; Errored frames current high warning last clear time for media input + errored_frames_min_host_input_hwarn{lane_num} = STR ; Errored frames minimum high warning last clear time for host input + errored_frames_max_host_input_hwarn{lane_num} = STR ; Errored frames maximum high warning last clear time for host input + errored_frames_avg_host_input_hwarn{lane_num} = STR ; Errored frames average high warning last clear time for host input + errored_frames_curr_host_input_hwarn{lane_num} = STR ; Errored frames current high warning last clear time for host input ;C-CMIS specific fields - biasxi_hwarn_last_clear_time = STR ; modulator bias xi in percentage (high warning last clear time) - biasxq_hwarn_last_clear_time = STR ; modulator bias xq in percentage (high warning last clear time) - biasxp_hwarn_last_clear_time = STR ; modulator bias xp in percentage (high warning last clear time) - biasyi_hwarn_last_clear_time = STR ; modulator bias yi in percentage (high warning last clear time) - biasyq_hwarn_last_clear_time = STR ; modulator bias yq in percentage (high warning last clear time) - biasyp_hwarn_last_clear_time = STR ; modulator bias yq in percentage (high warning last clear time) - cdshort_hwarn_last_clear_time = STR ; chromatic dispersion, low granularity, short link in ps/nm (high warning last clear time) - cdlong_hwarn_last_clear_time = STR ; chromatic dispersion, low granularity, long link in ps/nm (high warning last clear time) - dgd_hwarn_last_clear_time = STR ; differential group delay in ps (high warning last clear time) - sopmd_hwarn_last_clear_time = STR ; second order polarization mode dispersion in ps^2 (high warning last clear time) - soproc_hwarn_last_clear_time = STR ; state of polarization rate of change in krad/s (high warning last clear time) - pdl_hwarn_last_clear_time = STR ; polarization dependent loss in db (high warning last clear time) - osnr_hwarn_last_clear_time = STR ; optical signal to noise ratio in db (high warning last clear time) - esnr_hwarn_last_clear_time = STR ; electrical signal to noise ratio in db (high warning last clear time) - cfo_hwarn_last_clear_time = STR ; carrier frequency offset in Hz (high warning last clear time) - txcurrpower_hwarn_last_clear_time = STR ; tx current output power in dbm (high warning last clear time) - rxtotpower_hwarn_last_clear_time = STR ; rx total power in dbm (high warning last clear time) - rxsigpower_hwarn_last_clear_time = STR; rx signal power in dbm (high warning last clear time) + biasxi_hwarn = STR ; modulator bias xi in percentage (high warning last clear time) + biasxq_hwarn = STR ; modulator bias xq in percentage (high warning last clear time) + biasxp_hwarn = STR ; modulator bias xp in percentage (high warning last clear time) + biasyi_hwarn = STR ; modulator bias yi in percentage (high warning last clear time) + biasyq_hwarn = STR ; modulator bias yq in percentage (high warning last clear time) + biasyp_hwarn = STR ; modulator bias yq in percentage (high warning last clear time) + cdshort_hwarn = STR ; chromatic dispersion, low granularity, short link in ps/nm (high warning last clear time) + cdlong_hwarn = STR ; chromatic dispersion, low granularity, long link in ps/nm (high warning last clear time) + dgd_hwarn = STR ; differential group delay in ps (high warning last clear time) + sopmd_hwarn = STR ; second order polarization mode dispersion in ps^2 (high warning last clear time) + soproc_hwarn = STR ; state of polarization rate of change in krad/s (high warning last clear time) + pdl_hwarn = STR ; polarization dependent loss in db (high warning last clear time) + osnr_hwarn = STR ; optical signal to noise ratio in db (high warning last clear time) + esnr_hwarn = STR ; electrical signal to noise ratio in db (high warning last clear time) + cfo_hwarn = STR ; carrier frequency offset in Hz (high warning last clear time) + txcurrpower_hwarn = STR ; tx current output power in dbm (high warning last clear time) + rxtotpower_hwarn = STR ; rx total power in dbm (high warning last clear time) + rxsigpower_hwarn = STR; rx signal power in dbm (high warning last clear time) ``` ##### 2.2.6.4 Transceiver VDM low warning flag time clear data -The `TRANSCEIVER_VDM_LWARN_CLEAR_TIME` table stores the flag time clear for the VDM low warning flag. +The `TRANSCEIVER_VDM_LWARN_FLAG_CLEAR_TIME` table stores the last clear time for the VDM low warning flag. lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. ```plaintext ;Defines Transceiver VDM low warning last clear time for a port - key = TRANSCEIVER_VDM_LWARN_CLEAR_TIME|ifname + key = TRANSCEIVER_VDM_LWARN_FLAG_CLEAR_TIME|ifname ; field = value - laser_temperature_media_lwarn_last_clear_time{lane_num} = STR ; laser temperature low warning last clear time for media input - esnr_media_input_lwarn_last_clear_time{lane_num} = STR ; eSNR low warning last clear time for media input - esnr_host_input_lwarn_last_clear_time{lane_num} = STR ; eSNR low warning last clear time for host input - pam4_level_transition_media_input_lwarn_last_clear_time{lane_num} = STR ; PAM4 level transition low warning last clear time for media input - pam4_level_transition_host_input_lwarn_last_clear_time{lane_num} = STR ; PAM4 level transition low warning last clear time for host input - prefec_ber_min_media_input_lwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum low warning last clear time for media input - prefec_ber_max_media_input_lwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum low warning last clear time for media input - prefec_ber_avg_media_input_lwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER average low warning last clear time for media input - prefec_ber_curr_media_input_lwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER current low warning last clear time for media input - prefec_ber_min_host_input_lwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER minimum low warning last clear time for host input - prefec_ber_max_host_input_lwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER maximum low warning last clear time for host input - prefec_ber_avg_host_input_lwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER average low warning last clear time for host input - prefec_ber_curr_host_input_lwarn_last_clear_time{lane_num} = STR ; Pre-FEC BER current low warning last clear time for host input - errored_frames_min_media_input_lwarn_last_clear_time{lane_num} = STR ; Errored frames minimum low warning last clear time for media input - errored_frames_max_media_input_lwarn_last_clear_time{lane_num} = STR ; Errored frames maximum low warning last clear time for media input - errored_frames_avg_media_input_lwarn_last_clear_time{lane_num} = STR ; Errored frames average low warning last clear time for media input - errored_frames_curr_media_input_lwarn_last_clear_time{lane_num} = STR ; Errored frames current low warning last clear time for media input - errored_frames_min_host_input_lwarn_last_clear_time{lane_num} = STR ; Errored frames minimum low warning last clear time for host input - errored_frames_max_host_input_lwarn_last_clear_time{lane_num} = STR ; Errored frames maximum low warning last clear time for host input - errored_frames_avg_host_input_lwarn_last_clear_time{lane_num} = STR ; Errored frames average low warning last clear time for host input - errored_frames_curr_host_input_lwarn_last_clear_time{lane_num} = STR ; Errored frames current low warning last clear time for host input + laser_temperature_media_lwarn{lane_num} = STR ; laser temperature low warning last clear time for media input + esnr_media_input_lwarn{lane_num} = STR ; eSNR low warning last clear time for media input + esnr_host_input_lwarn{lane_num} = STR ; eSNR low warning last clear time for host input + pam4_level_transition_media_input_lwarn{lane_num} = STR ; PAM4 level transition low warning last clear time for media input + pam4_level_transition_host_input_lwarn{lane_num} = STR ; PAM4 level transition low warning last clear time for host input + prefec_ber_min_media_input_lwarn{lane_num} = STR ; Pre-FEC BER minimum low warning last clear time for media input + prefec_ber_max_media_input_lwarn{lane_num} = STR ; Pre-FEC BER maximum low warning last clear time for media input + prefec_ber_avg_media_input_lwarn{lane_num} = STR ; Pre-FEC BER average low warning last clear time for media input + prefec_ber_curr_media_input_lwarn{lane_num} = STR ; Pre-FEC BER current low warning last clear time for media input + prefec_ber_min_host_input_lwarn{lane_num} = STR ; Pre-FEC BER minimum low warning last clear time for host input + prefec_ber_max_host_input_lwarn{lane_num} = STR ; Pre-FEC BER maximum low warning last clear time for host input + prefec_ber_avg_host_input_lwarn{lane_num} = STR ; Pre-FEC BER average low warning last clear time for host input + prefec_ber_curr_host_input_lwarn{lane_num} = STR ; Pre-FEC BER current low warning last clear time for host input + errored_frames_min_media_input_lwarn{lane_num} = STR ; Errored frames minimum low warning last clear time for media input + errored_frames_max_media_input_lwarn{lane_num} = STR ; Errored frames maximum low warning last clear time for media input + errored_frames_avg_media_input_lwarn{lane_num} = STR ; Errored frames average low warning last clear time for media input + errored_frames_curr_media_input_lwarn{lane_num} = STR ; Errored frames current low warning last clear time for media input + errored_frames_min_host_input_lwarn{lane_num} = STR ; Errored frames minimum low warning last clear time for host input + errored_frames_max_host_input_lwarn{lane_num} = STR ; Errored frames maximum low warning last clear time for host input + errored_frames_avg_host_input_lwarn{lane_num} = STR ; Errored frames average low warning last clear time for host input + errored_frames_curr_host_input_lwarn{lane_num} = STR ; Errored frames current low warning last clear time for host input ;C-CMIS specific fields - biasxi_lwarn_last_clear_time = STR ; modulator bias xi in percentage (low warning last clear time) - biasxq_lwarn_last_clear_time = STR ; modulator bias xq in percentage (low warning last clear time) - biasxp_lwarn_last_clear_time = STR ; modulator bias xp in percentage (low warning last clear time) - biasyi_lwarn_last_clear_time = STR ; modulator bias yi in percentage (low warning last clear time) - biasyq_lwarn_last_clear_time = STR ; modulator bias yq in percentage (low warning last clear time) - biasyp_lwarn_last_clear_time = STR ; modulator bias yq in percentage (low warning last clear time) - cdshort_lwarn_last_clear_time = STR ; chromatic dispersion, low granularity, short link in ps/nm (low warning last clear time) - cdlong_lwarn_last_clear_time = STR ; chromatic dispersion, low granularity, long link in ps/nm (low warning last clear time) - dgd_lwarn_last_clear_time = STR ; differential group delay in ps (low warning last clear time) - sopmd_lwarn_last_clear_time = STR ; second order polarization mode dispersion in ps^2 (low warning last clear time) - soproc_lwarn_last_clear_time = STR ; state of polarization rate of change in krad/s (low warning last clear time) - pdl_lwarn_last_clear_time = STR ; polarization dependent loss in db (low warning last clear time) - osnr_lwarn_last_clear_time = STR ; optical signal to noise ratio in db (low warning last clear time) - esnr_lwarn_last_clear_time = STR ; electrical signal to noise ratio in db (low warning last clear time) - cfo_lwarn_last_clear_time = STR ; carrier frequency offset in Hz (low warning last clear time) - txcurrpower_lwarn_last_clear_time = STR ; tx current output power in dbm (low warning last clear time) - rxtotpower_lwarn_last_clear_time = STR ; rx total power in dbm (low warning last clear time) - rxsigpower_lwarn_last_clear_time = STR; rx signal power in dbm (low warning last clear time) + biasxi_lwarn = STR ; modulator bias xi in percentage (low warning last clear time) + biasxq_lwarn = STR ; modulator bias xq in percentage (low warning last clear time) + biasxp_lwarn = STR ; modulator bias xp in percentage (low warning last clear time) + biasyi_lwarn = STR ; modulator bias yi in percentage (low warning last clear time) + biasyq_lwarn = STR ; modulator bias yq in percentage (low warning last clear time) + biasyp_lwarn = STR ; modulator bias yq in percentage (low warning last clear time) + cdshort_lwarn = STR ; chromatic dispersion, low granularity, short link in ps/nm (low warning last clear time) + cdlong_lwarn = STR ; chromatic dispersion, low granularity, long link in ps/nm (low warning last clear time) + dgd_lwarn = STR ; differential group delay in ps (low warning last clear time) + sopmd_lwarn = STR ; second order polarization mode dispersion in ps^2 (low warning last clear time) + soproc_lwarn = STR ; state of polarization rate of change in krad/s (low warning last clear time) + pdl_lwarn = STR ; polarization dependent loss in db (low warning last clear time) + osnr_lwarn = STR ; optical signal to noise ratio in db (low warning last clear time) + esnr_lwarn = STR ; electrical signal to noise ratio in db (low warning last clear time) + cfo_lwarn = STR ; carrier frequency offset in Hz (low warning last clear time) + txcurrpower_lwarn = STR ; tx current output power in dbm (low warning last clear time) + rxtotpower_lwarn = STR ; rx total power in dbm (low warning last clear time) + rxsigpower_lwarn = STR; rx signal power in dbm (low warning last clear time) ``` ### 2.3 Transceiver status data @@ -1441,25 +1441,25 @@ lane_num: Represents lane number of the field. The lane number is an integer val ; Defines Transceiver Status info for a port key = TRANSCEIVER_STATUS_FLAG_CHANGE_COUNT|ifname ; Flag information for module on port ; field = value - datapath_firmware_fault_chg_cnt = INTEGER ; datapath (DSP) firmware fault change count - module_firmware_fault_chg_cnt = INTEGER ; module firmware fault change count - module_state_changed_chg_cnt = INTEGER ; module state changed change count - txfault{lane_num}_chg_cnt = INTEGER ; tx fault flag on media lane {lane_num} change count - txlos_hostlane{lane_num}_chg_cnt = INTEGER ; tx loss of signal flag on host lane {lane_num} change count - txcdrlol_hostlane{lane_num}_chg_cnt = INTEGER ; tx clock and data recovery loss of lock flag on host lane {lane_num} change count - tx_eq_fault{lane_num}_chg_cnt = INTEGER ; tx equalization fault flag on host lane {lane_num} change count - rxlos{lane_num}_chg_cnt = INTEGER ; rx loss of signal flag on media lane {lane_num} change count - rxcdrlol{lane_num}_chg_cnt = INTEGER ; rx clock and data recovery loss of lock flag on media lane {lane_num} change count - target_output_power_oor_chg_cnt = INTEGER ; target output power out of range flag change count - fine_tuning_oor_chg_cnt = INTEGER ; fine tuning out of range flag change count - tuning_not_accepted_chg_cnt = INTEGER ; tuning not accepted flag change count - invalid_channel_num_chg_cnt = INTEGER ; invalid channel number flag change count - tuning_complete_chg_cnt = INTEGER ; tuning complete flag change count + datapath_firmware_fault = INTEGER ; datapath (DSP) firmware fault change count + module_firmware_fault = INTEGER ; module firmware fault change count + module_state_changed = INTEGER ; module state changed change count + txfault{lane_num} = INTEGER ; tx fault flag on media lane {lane_num} change count + txlos_hostlane{lane_num} = INTEGER ; tx loss of signal flag on host lane {lane_num} change count + txcdrlol_hostlane{lane_num} = INTEGER ; tx clock and data recovery loss of lock flag on host lane {lane_num} change count + tx_eq_fault{lane_num} = INTEGER ; tx equalization fault flag on host lane {lane_num} change count + rxlos{lane_num} = INTEGER ; rx loss of signal flag on media lane {lane_num} change count + rxcdrlol{lane_num} = INTEGER ; rx clock and data recovery loss of lock flag on media lane {lane_num} change count + target_output_power_oor = INTEGER ; target output power out of range flag change count + fine_tuning_oor = INTEGER ; fine tuning out of range flag change count + tuning_not_accepted = INTEGER ; tuning not accepted flag change count + invalid_channel_num = INTEGER ; invalid channel number flag change count + tuning_complete = INTEGER ; tuning complete flag change count ``` #### 2.3.4 Transceiver status data to store module and data path flag set time -The `TRANSCEIVER_STATUS_FLAG_SET_TIME` table stores the set time for the transceiver flag. +The `TRANSCEIVER_STATUS_FLAG_SET_TIME` table stores the last set time for the transceiver flag. lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. @@ -1467,25 +1467,25 @@ lane_num: Represents lane number of the field. The lane number is an integer val ; Defines Transceiver Status info for a port key = TRANSCEIVER_STATUS_FLAG_SET_TIME|ifname ; Flag information for module on port ; field = value - datapath_firmware_fault_last_set_time = STR ; datapath (DSP) firmware fault set time - module_firmware_fault_last_set_time = STR ; module firmware fault set time - module_state_changed_last_set_time = STR ; module state changed set time - txfault{lane_num}_last_set_time = STR ; tx fault flag on media lane {lane_num} set time - txlos_hostlane{lane_num}_last_set_time = STR ; tx loss of signal flag on host lane {lane_num} set time - txcdrlol_hostlane{lane_num}_last_set_time = STR ; tx clock and data recovery loss of lock flag on host lane {lane_num} set time - tx_eq_fault{lane_num}_last_set_time = STR ; tx equalization fault flag on host lane {lane_num} set time - rxlos{lane_num}_last_set_time = STR ; rx loss of signal flag on media lane {lane_num} set time - rxcdrlol{lane_num}_last_set_time = STR ; rx clock and data recovery loss of lock flag on media lane {lane_num} set time - target_output_power_oor_last_set_time = STR ; target output power out of range flag set time - fine_tuning_oor_last_set_time = STR ; fine tuning out of range flag set time - tuning_not_accepted_last_set_time = STR ; tuning not accepted flag set time - invalid_channel_num_last_set_time = STR ; invalid channel number flag set time - tuning_complete_last_set_time = STR ; tuning complete flag set time + datapath_firmware_fault = STR ; datapath (DSP) firmware fault set time + module_firmware_fault = STR ; module firmware fault set time + module_state_changed = STR ; module state changed set time + txfault{lane_num} = STR ; tx fault flag on media lane {lane_num} set time + txlos_hostlane{lane_num} = STR ; tx loss of signal flag on host lane {lane_num} set time + txcdrlol_hostlane{lane_num} = STR ; tx clock and data recovery loss of lock flag on host lane {lane_num} set time + tx_eq_fault{lane_num} = STR ; tx equalization fault flag on host lane {lane_num} set time + rxlos{lane_num} = STR ; rx loss of signal flag on media lane {lane_num} set time + rxcdrlol{lane_num} = STR ; rx clock and data recovery loss of lock flag on media lane {lane_num} set time + target_output_power_oor = STR ; target output power out of range flag set time + fine_tuning_oor = STR ; fine tuning out of range flag set time + tuning_not_accepted = STR ; tuning not accepted flag set time + invalid_channel_num = STR ; invalid channel number flag set time + tuning_complete = STR ; tuning complete flag set time ``` #### 2.3.5 Transceiver status data to store module and data path flag clear time -The `TRANSCEIVER_STATUS_FLAG_CLEAR_TIME` table stores the clear time for the transceiver flag. +The `TRANSCEIVER_STATUS_FLAG_CLEAR_TIME` table stores the last clear time for the transceiver flag. lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. @@ -1493,20 +1493,20 @@ lane_num: Represents lane number of the field. The lane number is an integer val ; Defines Transceiver Status info for a port key = TRANSCEIVER_STATUS_FLAG_CLEAR_TIME|ifname ; Flag information for module on port ; field = value - datapath_firmware_fault_last_clear_time = STR ; datapath (DSP) firmware fault clear time - module_firmware_fault_last_clear_time = STR ; module firmware fault clear time - module_state_changed_last_clear_time = STR ; module state changed clear time - txfault{lane_num}_last_clear_time = STR ; tx fault flag on media lane {lane_num} clear time - txlos_hostlane{lane_num}_last_clear_time = STR ; tx loss of signal flag on host lane {lane_num} clear time - txcdrlol_hostlane{lane_num}_last_clear_time = STR ; tx clock and data recovery loss of lock flag on host lane {lane_num} clear time - tx_eq_fault{lane_num}_last_clear_time = STR ; tx equalization fault flag on host lane {lane_num} clear time - rxlos{lane_num}_last_clear_time = STR ; rx loss of signal flag on media lane {lane_num} clear time - rxcdrlol{lane_num}_last_clear_time = STR ; rx clock and data recovery loss of lock flag on media lane {lane_num} clear time + datapath_firmware_fault = STR ; datapath (DSP) firmware fault clear time + module_firmware_fault = STR ; module firmware fault clear time + module_state_changed = STR ; module state changed clear time + txfault{lane_num} = STR ; tx fault flag on media lane {lane_num} clear time + txlos_hostlane{lane_num} = STR ; tx loss of signal flag on host lane {lane_num} clear time + txcdrlol_hostlane{lane_num} = STR ; tx clock and data recovery loss of lock flag on host lane {lane_num} clear time + tx_eq_fault{lane_num} = STR ; tx equalization fault flag on host lane {lane_num} clear time + rxlos{lane_num} = STR ; rx loss of signal flag on media lane {lane_num} clear time + rxcdrlol{lane_num} = STR ; rx clock and data recovery loss of lock flag on media lane {lane_num} clear time target_output_power_last_oor_clear_time = STR ; target output power out of range flag clear time - fine_tuning_oor_last_clear_time = STR ; fine tuning out of range flag clear time - tuning_not_accepted_last_clear_time = STR ; tuning not accepted flag clear time - invalid_channel_num_last_clear_time = STR ; invalid channel number flag clear time - tuning_complete_last_clear_time = STR ; tuning complete flag clear time + fine_tuning_oor = STR ; fine tuning out of range flag clear time + tuning_not_accepted = STR ; tuning not accepted flag clear time + invalid_channel_num = STR ; invalid channel number flag clear time + tuning_complete = STR ; tuning complete flag clear time ``` ### 2.4 Transceiver PM data @@ -2126,22 +2126,22 @@ Example The following fields related to `temperature` are updated in the `redis-db` during a link down event: -- `temphighalarm_flag` -- `temphighwarning_flag` -- `templowwarning_flag` -- `templowalarm_flag` -- `temphighalarm_chg_cnt` -- `temphighwarning_chg_cnt` -- `templowwarning_chg_cnt` -- `templowalarm_chg_cnt` -- `temphighalarm_last_set_time` -- `temphighwarning_last_set_time` -- `templowwarning_last_set_time` -- `templowalarm_last_set_time` -- `temphighalarm_last_clear_time` -- `temphighwarning_last_clear_time` -- `templowwarning_last_clear_time` -- `templowalarm_last_clear_time` +- `temphighalarm_flag` in `TRANSCEIVER_DOM_FLAG` table +- `temphighwarning_flag` in `TRANSCEIVER_DOM_FLAG` table +- `templowwarning_flag` in `TRANSCEIVER_DOM_FLAG` table +- `templowalarm_flag` in `TRANSCEIVER_DOM_FLAG` table +- `temphighalarm` in `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT` table +- `temphighwarning` in `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT` table +- `templowwarning` in `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT` table +- `templowalarm` in `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT` table +- `temphighalarm` in `TRANSCEIVER_DOM_FLAG_SET_TIME` table +- `temphighwarning` in `TRANSCEIVER_DOM_FLAG_SET_TIME` table +- `templowwarning` in `TRANSCEIVER_DOM_FLAG_SET_TIME` table +- `templowalarm` in `TRANSCEIVER_DOM_FLAG_SET_TIME` table +- `temphighalarm` in `TRANSCEIVER_DOM_FLAG_CLEAR_TIME` table +- `temphighwarning` in `TRANSCEIVER_DOM_FLAG_CLEAR_TIME` table +- `templowwarning` in `TRANSCEIVER_DOM_FLAG_CLEAR_TIME` table +- `templowalarm` in `TRANSCEIVER_DOM_FLAG_CLEAR_TIME` table ##### 4.2.2.2 VDM Related Fields @@ -2173,22 +2173,22 @@ Example The following fields related to `esnr_media_input` are updated in the `redis-db` during a link down event: -- `esnr_media_input_halarm_flag{lane_num}` -- `esnr_media_input_lalarm_flag{lane_num}` -- `esnr_media_input_hwarn_flag{lane_num}` -- `esnr_media_input_lwarn_flag{lane_num}` -- `esnr_media_input_halarm_chg_cnt{lane_num}` -- `esnr_media_input_lalarm_chg_cnt{lane_num}` -- `esnr_media_input_hwarn_chg_cnt{lane_num}` -- `esnr_media_input_lwarn_chg_cnt{lane_num}` -- `esnr_media_input_halarm_last_set_time{lane_num}` -- `esnr_media_input_lalarm_last_set_time{lane_num}` -- `esnr_media_input_hwarn_last_set_time{lane_num}` -- `esnr_media_input_lwarn_last_set_time{lane_num}` -- `esnr_media_input_halarm_last_clear_time{lane_num}` -- `esnr_media_input_lalarm_last_clear_time{lane_num}` -- `esnr_media_input_hwarn_last_clear_time{lane_num}` -- `esnr_media_input_lwarn_last_clear_time{lane_num}` +- `esnr_media_input_halarm_flag{lane_num}` in `TRANSCEIVER_VDM_HALARM_FLAG` table +- `esnr_media_input_lalarm_flag{lane_num}` in `TRANSCEIVER_VDM_LALARM_FLAG` table +- `esnr_media_input_hwarn_flag{lane_num}` in `TRANSCEIVER_VDM_HWARN_FLAG` table +- `esnr_media_input_lwarn_flag{lane_num}` in `TRANSCEIVER_VDM_LWARN_FLAG` table +- `esnr_media_input_halarm{lane_num}` in `TRANSCEIVER_VDM_HALARM_FLAG_CHANGE_COUNT` table +- `esnr_media_input_lalarm{lane_num}` in `TRANSCEIVER_VDM_LALARM_FLAG_CHANGE_COUNT` table +- `esnr_media_input_hwarn{lane_num}` in `TRANSCEIVER_VDM_HWARN_FLAG_CHANGE_COUNT` table +- `esnr_media_input_lwarn{lane_num}` in `TRANSCEIVER_VDM_LWARN_FLAG_CHANGE_COUNT` tables +- `esnr_media_input_halarm{lane_num}` in `TRANSCEIVER_VDM_HALARM_FLAG_SET_TIME` table +- `esnr_media_input_lalarm{lane_num}` in `TRANSCEIVER_VDM_LALARM_FLAG_SET_TIME` table +- `esnr_media_input_hwarn{lane_num}` in `TRANSCEIVER_VDM_HWARN_FLAG_SET_TIME` table +- `esnr_media_input_lwarn{lane_num}` in `TRANSCEIVER_VDM_LWARN_FLAG_SET_TIME` table +- `esnr_media_input_halarm{lane_num}` in `TRANSCEIVER_VDM_HALARM_FLAG_CLEAR_TIME` table +- `esnr_media_input_lalarm{lane_num}` in `TRANSCEIVER_VDM_LALARM_FLAG_CLEAR_TIME` table +- `esnr_media_input_hwarn{lane_num}` in `TRANSCEIVER_VDM_HWARN_FLAG_CLEAR_TIME` table +- `esnr_media_input_lwarn{lane_num}` in `TRANSCEIVER_VDM_LWARN_FLAG_CLEAR_TIME` table ##### 4.2.2.3 Transceiver Status Related Fields @@ -2219,10 +2219,10 @@ Example The following fields related to `datapath_firmware_fault` are updated in the `redis-db` during a link down event: -- `datapath_firmware_fault` -- `datapath_firmware_fault_chg_cnt` -- `datapath_firmware_fault_last_set_time` -- `datapath_firmware_fault_last_clear_time` +- `datapath_firmware_fault` in `TRANSCEIVER_STATUS` table +- `datapath_firmware_fault` in `TRANSCEIVER_STATUS_FLAG_CHANGE_COUNT` table +- `datapath_firmware_fault` in `TRANSCEIVER_STATUS_FLAG_SET_TIME` table +- `datapath_firmware_fault` in `TRANSCEIVER_STATUS_FLAG_CLEAR_TIME` table #### 4.2.3 Details of Flag Analysis of Tables From db321e51646b080fe6c2b80cb1ece51660f1a893 Mon Sep 17 00:00:00 2001 From: Mihir Patel Date: Tue, 29 Oct 2024 23:37:17 +0000 Subject: [PATCH 07/12] Added dom_last_update_time and dom_update_interval to TRANSCEIVER_STATUS table --- ...Diagnostic_Monitoring_Overview_in_SONiC.md | 70 ++++++++++++++++--- 1 file changed, 60 insertions(+), 10 deletions(-) diff --git a/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md b/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md index 261505857c..bb80b1f9ef 100644 --- a/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md +++ b/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md @@ -1391,6 +1391,8 @@ lane_num: Represents lane number of the field. The lane number is an integer val cmis_state = 1*255VCHAR ; Software CMIS state of the module status = 1*255VCHAR ; code of the module status (plug in, plug out) error = 1*255VCHAR ; module error (N/A or a string consisting of error descriptions joined by "|", like "error1 | error2" ) + dom_update_interval = INTEGER ; DOM thread update interval in seconds + dom_last_update_time = STR ; last update time for diagnostic data module_state = 1*255VCHAR ; current module state (ModuleLowPwr, ModulePwrUp, ModuleReady, ModulePwrDn, Fault) module_fault_cause = 1*255VCHAR ; reason of entering the module fault state DP{lane_num}State = 1*255VCHAR ; data path state indicator on host lane {lane_num} @@ -1569,6 +1571,9 @@ This CLI shows the transceiver DOM and threshold values for a given port. ```plaintext CLI output format: LX - Represents the data for the lane number X +Current System Time: Day Mon DD HH:MM:SS YYYY +Update interval: SS seconds +Last updated: Day Mon DD HH:MM:SS YYYY High Alarm High Warning Low Warning Low Alarm Paramter_Name Threshold Threshold Threshold Threshold @@ -1578,6 +1583,9 @@ Port (Unit) (Unit) (Unit) (Unit) (Unit) Example: admin@sonic#show interfaces transceiver dom Ethernet1 LX - Represents the data for the lane number X +Current System Time: Wed Oct 17 03:46:41 2024 +Update interval: 10 seconds +Last updated: Wed Oct 17 03:46:41 2024 High Alarm High Warning Low Warning Low Alarm Temperature Threshold Threshold Threshold Threshold @@ -1654,7 +1662,8 @@ This CLI shows the transceiver DOM flags for a given port. CLI output format: LX - Represents the data for the lane number X Current System Time: Day Mon DD HH:MM:SS YYYY - +Update interval: SS seconds +Last updated: Day Mon DD HH:MM:SS YYYY High Alarm High Warning Low Warning Low Alarm Flag/ Flag/ Flag/ Flag/ Change Count/ Change Count/ Change Count/ Change Count/ @@ -1665,7 +1674,9 @@ Port Parameter_Name Last Clear Time Last Clear Time Example: admin@sonic#show interfaces transceiver dom flag Ethernet1 LX - Represents the data for the lane number X -Current System Time: Wed Oct 16 03:46:41 2024 +Current System Time: Wed Oct 17 03:46:41 2024 +Update interval: 10 seconds +Last updated: Wed Oct 17 03:46:41 2024 High Alarm High Warning Low Warning Low Alarm Flag/ Flag/ Flag/ Flag/ @@ -1792,6 +1803,10 @@ The CLI will show VDM data for observables which are supported by the module ven ```plaintext CLI output format: +LX - Represents the data for the lane number X +Current System Time: Day Mon DD HH:MM:SS YYYY +Update interval: SS seconds +Last updated: Day Mon DD HH:MM:SS YYYY High Alarm High Warning Low Warning Low Alarm Observable_Name Threshold Threshold Threshold Threshold Port (Unit) (Unit) (Unit) (Unit) (Unit) @@ -1799,6 +1814,10 @@ Port (Unit) (Unit) (Unit) (Unit) (Unit) Example: admin@sonic#show interfaces transceiver vdm Ethernet1 +LX - Represents the data for the lane number X +Current System Time: Wed Oct 17 03:46:41 2024 +Update interval: 10 seconds +Last updated: Wed Oct 17 03:46:41 2024 eSNR Media High Alarm High Warning Low Warning Low Alarm Input Threshold Threshold Threshold Threshold Port (dB) (dB) (dB) (dB) (dB) @@ -1837,9 +1856,10 @@ The `--detail` option can be used to show the data for all lanes and observables ```plaintext CLI output format: -Current System Time: Day Mon DD HH:MM:SS YYYY LX - Represents the data for the lane number X - +Current System Time: Day Mon DD HH:MM:SS YYYY +Update interval: SS seconds +Last updated: Day Mon DD HH:MM:SS YYYY High Alarm High Warning Low Warning Low Alarm Flag/ Flag/ Flag/ Flag/ Change Count/ Change Count/ Change Count/ Change Count/ @@ -1850,8 +1870,9 @@ Port Observable_Name Last Clear Time Last Clear Time Example: admin@sonic#show interfaces transceiver vdm flag Ethernet1 LX - Represents the data for the lane number X -Current System Time: Wed Oct 16 03:46:41 2024 - +Current System Time: Wed Oct 17 03:46:41 2024 +Update interval: 10 seconds +Last updated: Wed Oct 17 03:46:41 2024 High Alarm High Warning Low Warning Low Alarm Flag/ Flag/ Flag/ Flag/ Change Count/ Change Count/ Change Count/ Change Count/ @@ -1879,8 +1900,9 @@ With the `--detail` option, only the VDM data for observables which are supporte ```plaintext admin@sonic#show interfaces transceiver vdm flag Ethernet1 --detail LX - Represents the data for the lane number X -Current System Time: Wed Oct 16 03:46:41 2024 - +Current System Time: Wed Oct 17 03:46:41 2024 +Update interval: 10 seconds +Last updated: Wed Oct 17 03:46:41 2024 High Alarm High Warning Low Warning Low Alarm Flag/ Flag/ Flag/ Flag/ Change Count/ Change Count/ Change Count/ Change Count/ @@ -1938,6 +1960,9 @@ Shows the module and datapath state data along with various flags related to it. ```plaintext Example: admin@sonic:/home/admin# show int transceiver status Ethernet0 +Current System Time: Wed Oct 16 03:46:41 2024 +Update interval: 10 seconds +Last updated: Wed Oct 17 03:46:41 2024 Ethernet0: CMIS State (SW): READY TX disable status on lane 1: False @@ -2010,8 +2035,9 @@ This CLI shows the various module and datapath state flags for a given port alon ```plaintext admin@sonic:/home/admin# show int transceiver status flag Ethernet0 LX - Represents the data for the lane number X -Current System Time: Wed Oct 16 03:46:41 2024 - +Current System Time: Wed Oct 17 03:46:41 2024 +Update interval: 10 seconds +Last updated: Wed Oct 17 03:46:41 2024 Port Observable_Name Flag Status/Change Count/Last Set Time/Last Clear Time ----------- --------------------------- ------------------------------------------------------- Ethernet0 Tx fault on media L1 False/ 1/ Wed Oct 16 03:46:41 2024/ never @@ -2257,3 +2283,27 @@ During `xcvrd` stop, the `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`, `TRANSCEIVER_DOM_F When a transceiver is removed, `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`, `TRANSCEIVER_DOM_FLAG_SET_TIME`, and `TRANSCEIVER_DOM_FLAG_CLEAR_TIME` tables are deleted by the `SfpStateUpdateTask` thread. When the transceiver is inserted back, the `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`, `TRANSCEIVER_DOM_FLAG_SET_TIME`, and `TRANSCEIVER_DOM_FLAG_CLEAR_TIME` tables are recreated through the periodic polling routine of `DomInfoUpdateTask` and the flag change count and set/clear time are updated based on the current flag status. + +#### 4.2.6 Diagnostic Information Last Update Timestamp and Interval Period by `DomInfoUpdateTask` + +The `TRANSCEIVER_STATUS` table contains the following fields to capture the last update timestamp and interval period for the diagnostic information: + +1. **`dom_last_update_time`**: + - This field records the timestamp (in local timezone) when the diagnostic information was last updated. + - The timestamp is recorded in the format `Day Mon DD HH:MM:SS YYYY`. + - This timestamp is updated by the `DomInfoUpdateTask` thread after the last diagnostic information is read from the transceiver for a port. + +2. **`dom_update_interval`**: + - This field records the interval period (in seconds) at which the diagnostic information is updated by the `DomInfoUpdateTask` thread for a port. + - Unlike the `DOM_INFO_UPDATE_PERIOD_SECS` timer value, this field is updated dynamically to reflect the actual time taken to update the diagnostic information for a port in the `redis-db`. + - The time taken to read the diagnostic information from the transceiver can vary between successive polls based on: + - Transceiver type + - Number of diagnostic parameters supported by the transceiver + - Device platform (which can affect I2C read/write speed) + - Number of ports with the transceiver plugged in + - Number of ports in the breakout port group + +**Behavior of `dom_update_interval` Field**: + +- Initially, the `dom_update_interval` field is set to `0` (as part of the `TRANSCEIVER_STATUS` table creation) to indicate that the diagnostic information has not been updated yet. +- After the second diagnostic information update for a port by the `DomInfoUpdateTask` thread, the `dom_update_interval` field is set to the actual time taken to read the diagnostic information from the transceiver for that port. Specifically, the `dom_update_interval` field is updated with the difference between the current timestamp and the `dom_last_update_time`. From fd5500bfa579f809cc33f60d286cbc77db83e425 Mon Sep 17 00:00:00 2001 From: Mihir Patel Date: Tue, 29 Oct 2024 23:48:08 +0000 Subject: [PATCH 08/12] Enhanced section 4.2.6 --- .../CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md b/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md index bb80b1f9ef..7757244962 100644 --- a/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md +++ b/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md @@ -2306,4 +2306,4 @@ The `TRANSCEIVER_STATUS` table contains the following fields to capture the last **Behavior of `dom_update_interval` Field**: - Initially, the `dom_update_interval` field is set to `0` (as part of the `TRANSCEIVER_STATUS` table creation) to indicate that the diagnostic information has not been updated yet. -- After the second diagnostic information update for a port by the `DomInfoUpdateTask` thread, the `dom_update_interval` field is set to the actual time taken to read the diagnostic information from the transceiver for that port. Specifically, the `dom_update_interval` field is updated with the difference between the current timestamp and the `dom_last_update_time`. +- After the second diagnostic information update for a port by the `DomInfoUpdateTask` thread post `xcvrd` boot-up or transceiver insertion, the `dom_update_interval` field is set to the actual time taken to read the diagnostic information from the transceiver for that port. Specifically, the `dom_update_interval` field is updated with the difference between the current timestamp and the `dom_last_update_time`. From 2af789474fe9d86307f8af41247d9ac251aa2711 Mon Sep 17 00:00:00 2001 From: Mihir Patel Date: Fri, 1 Nov 2024 17:37:05 +0000 Subject: [PATCH 09/12] Renumbered flag related sections to be part of section 4.2.3 --- .../CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md b/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md index 7757244962..2f81c664f2 100644 --- a/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md +++ b/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md @@ -2252,7 +2252,7 @@ The following fields related to `datapath_firmware_fault` are updated in the `re #### 4.2.3 Details of Flag Analysis of Tables -**Note**: For simplicity, this section uses DOM as an example. However, the same analysis is applicable for VDM as well. +**Note**: For simplicity, this section uses DOM as an example. However, the same analysis is applicable for VDM and STATUS related flags as well. **Purpose of Flag Analysis:** @@ -2274,17 +2274,17 @@ The purpose of flag analysis is to track the status of various parameters and to - **TRANSCEIVER_DOM_FLAG_CLEAR_TIME:** - When a flag is cleared in the `TRANSCEIVER_DOM_FLAG` table, the current timestamp (based on local timezone) is recorded in this table. -#### 4.2.4 Flag Change Count and Time Set/Clear Behavior During `xcvrd` Restart +##### 4.2.3.1 Flag Change Count and Time Set/Clear Behavior During `xcvrd` Restart During `xcvrd` stop, the `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`, `TRANSCEIVER_DOM_FLAG_SET_TIME`, and `TRANSCEIVER_DOM_FLAG_CLEAR_TIME` tables are deleted by the `xcvrd` process. When `xcvrd` is restarted, the `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`, `TRANSCEIVER_DOM_FLAG_SET_TIME`, and `TRANSCEIVER_DOM_FLAG_CLEAR_TIME` tables are recreated and the flag change count and set/clear time are updated based on the current flag status (i.e. the value of these fields are not cached between `xcvrd` restarts). -#### 4.2.5 Flag Change Count and Time Set/Clear Behavior During Transceiver Removal and Insertion +##### 4.2.3.2 Flag Change Count and Time Set/Clear Behavior During Transceiver Removal and Insertion When a transceiver is removed, `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`, `TRANSCEIVER_DOM_FLAG_SET_TIME`, and `TRANSCEIVER_DOM_FLAG_CLEAR_TIME` tables are deleted by the `SfpStateUpdateTask` thread. When the transceiver is inserted back, the `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`, `TRANSCEIVER_DOM_FLAG_SET_TIME`, and `TRANSCEIVER_DOM_FLAG_CLEAR_TIME` tables are recreated through the periodic polling routine of `DomInfoUpdateTask` and the flag change count and set/clear time are updated based on the current flag status. -#### 4.2.6 Diagnostic Information Last Update Timestamp and Interval Period by `DomInfoUpdateTask` +#### 4.2.4 Diagnostic Information Last Update Timestamp and Interval Period by `DomInfoUpdateTask` The `TRANSCEIVER_STATUS` table contains the following fields to capture the last update timestamp and interval period for the diagnostic information: From 2cdae78828b036df765cf05109f7a0fd5c9bccfe Mon Sep 17 00:00:00 2001 From: Mihir Patel Date: Tue, 5 Nov 2024 03:28:03 +0000 Subject: [PATCH 10/12] Removed _flag from fields of FLAG related tables --- ...Diagnostic_Monitoring_Overview_in_SONiC.md | 376 +++++++++--------- 1 file changed, 188 insertions(+), 188 deletions(-) diff --git a/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md b/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md index 2f81c664f2..700d89be4d 100644 --- a/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md +++ b/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md @@ -117,30 +117,30 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver DOM flags for a port key = TRANSCEIVER_DOM_FLAG|ifname ; information module DOM flags on port ; field = value - temphighalarm_flag = BOOLEAN ; temperature high alarm flag - temphighwarning_flag = BOOLEAN ; temperature high warning flag - templowalarm_flag = BOOLEAN ; temperature low alarm flag - templowwarning_flag = BOOLEAN ; temperature low warning flag - vcchighalarm_flag = BOOLEAN ; vcc high alarm flag - vcchighwarning_flag = BOOLEAN ; vcc high warning flag - vcclowalarm_flag = BOOLEAN ; vcc low alarm flag - vcclowwarning_flag = BOOLEAN ; vcc low warning flag - txpowerhighalarm_flag{lane_num} = BOOLEAN ; tx power high alarm flag - txpowerlowalarm_flag{lane_num} = BOOLEAN ; tx power low alarm flag - txpowerhighwarning_flag{lane_num} = BOOLEAN ; tx power high warning flag - txpowerlowwarning_flag{lane_num} = BOOLEAN ; tx power low alarm flag - rxpowerhighalarm_flag{lane_num} = BOOLEAN ; rx power high alarm flag - rxpowerlowalarm_flag{lane_num} = BOOLEAN ; rx power low alarm flag - rxpowerhighwarning_flag{lane_num} = BOOLEAN ; rx power high warning flag - rxpowerlowwarning_flag{lane_num} = BOOLEAN ; rx power low warning flag - txbiashighalarm_flag{lane_num} = BOOLEAN ; tx bias high alarm flag - txbiaslowalarm_flag{lane_num} = BOOLEAN ; tx bias low alarm flag - txbiashighwarning_flag{lane_num} = BOOLEAN ; tx bias high warning flag - txbiaslowwarning_flag{lane_num} = BOOLEAN ; tx bias low warning flag - lasertemphighalarm_flag = BOOLEAN ; laser temperature high alarm flag - lasertemplowalarm_flag = BOOLEAN ; laser temperature low alarm flag - lasertemphighwarning_flag = BOOLEAN ; laser temperature high warning flag - lasertemplowwarning_flag = BOOLEAN ; laser temperature low warning flag + temphighalarm = BOOLEAN ; temperature high alarm flag + temphighwarning = BOOLEAN ; temperature high warning flag + templowalarm = BOOLEAN ; temperature low alarm flag + templowwarning = BOOLEAN ; temperature low warning flag + vcchighalarm = BOOLEAN ; vcc high alarm flag + vcchighwarning = BOOLEAN ; vcc high warning flag + vcclowalarm = BOOLEAN ; vcc low alarm flag + vcclowwarning = BOOLEAN ; vcc low warning flag + txpowerhighalarm{lane_num} = BOOLEAN ; tx power high alarm flag + txpowerlowalarm{lane_num} = BOOLEAN ; tx power low alarm flag + txpowerhighwarning{lane_num} = BOOLEAN ; tx power high warning flag + txpowerlowwarning{lane_num} = BOOLEAN ; tx power low alarm flag + rxpowerhighalarm{lane_num} = BOOLEAN ; rx power high alarm flag + rxpowerlowalarm{lane_num} = BOOLEAN ; rx power low alarm flag + rxpowerhighwarning{lane_num} = BOOLEAN ; rx power high warning flag + rxpowerlowwarning{lane_num} = BOOLEAN ; rx power low warning flag + txbiashighalarm{lane_num} = BOOLEAN ; tx bias high alarm flag + txbiaslowalarm{lane_num} = BOOLEAN ; tx bias low alarm flag + txbiashighwarning{lane_num} = BOOLEAN ; tx bias high warning flag + txbiaslowwarning{lane_num} = BOOLEAN ; tx bias low warning flag + lasertemphighalarm = BOOLEAN ; laser temperature high alarm flag + lasertemplowalarm = BOOLEAN ; laser temperature low alarm flag + lasertemphighwarning = BOOLEAN ; laser temperature high warning flag + lasertemplowwarning = BOOLEAN ; laser temperature low warning flag ``` #### 2.1.4 Transceiver DOM flag change count data @@ -530,47 +530,47 @@ The `TRANSCEIVER_VDM_HALARM_FLAG` table stores the flag status for the VDM data. ;Defines Transceiver VDM high alarm flag for a port key = TRANSCEIVER_VDM_HALARM_FLAG|ifname ; field = value - laser_temperature_media_halarm_flag{lane_num} = BOOLEAN ; laser temperature high alarm flag for media input - esnr_media_input_halarm_flag{lane_num} = BOOLEAN ; eSNR high alarm flag for media input - esnr_host_input_halarm_flag{lane_num} = BOOLEAN ; eSNR high alarm flag for host input - pam4_level_transition_media_input_halarm_flag{lane_num} = BOOLEAN ; PAM4 level transition high alarm flag for media input - pam4_level_transition_host_input_halarm_flag{lane_num} = BOOLEAN ; PAM4 level transition high alarm flag for host input - prefec_ber_min_media_input_halarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum high alarm flag for media input - prefec_ber_max_media_input_halarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum high alarm flag for media input - prefec_ber_avg_media_input_halarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER average high alarm flag for media input - prefec_ber_curr_media_input_halarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER current high alarm flag for media input - prefec_ber_min_host_input_halarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum high alarm flag for host input - prefec_ber_max_host_input_halarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum high alarm flag for host input - prefec_ber_avg_host_input_halarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER average high alarm flag for host input - prefec_ber_curr_host_input_halarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER current high alarm flag for host input - errored_frames_min_media_input_halarm_flag{lane_num} = BOOLEAN ; Errored frames minimum high alarm flag for media input - errored_frames_max_media_input_halarm_flag{lane_num} = BOOLEAN ; Errored frames maximum high alarm flag for media input - errored_frames_avg_media_input_halarm_flag{lane_num} = BOOLEAN ; Errored frames average high alarm flag for media input - errored_frames_curr_media_input_halarm_flag{lane_num} = BOOLEAN ; Errored frames current high alarm flag for media input - errored_frames_min_host_input_halarm_flag{lane_num} = BOOLEAN ; Errored frames minimum high alarm flag for host input - errored_frames_max_host_input_halarm_flag{lane_num} = BOOLEAN ; Errored frames maximum high alarm flag for host input - errored_frames_avg_host_input_halarm_flag{lane_num} = BOOLEAN ; Errored frames average high alarm flag for host input - errored_frames_curr_host_input_halarm_flag{lane_num} = BOOLEAN ; Errored frames current high alarm flag for host input + laser_temperature_media_halarm{lane_num} = BOOLEAN ; laser temperature high alarm flag for media input + esnr_media_input_halarm{lane_num} = BOOLEAN ; eSNR high alarm flag for media input + esnr_host_input_halarm{lane_num} = BOOLEAN ; eSNR high alarm flag for host input + pam4_level_transition_media_input_halarm{lane_num} = BOOLEAN ; PAM4 level transition high alarm flag for media input + pam4_level_transition_host_input_halarm{lane_num} = BOOLEAN ; PAM4 level transition high alarm flag for host input + prefec_ber_min_media_input_halarm{lane_num} = BOOLEAN ; Pre-FEC BER minimum high alarm flag for media input + prefec_ber_max_media_input_halarm{lane_num} = BOOLEAN ; Pre-FEC BER maximum high alarm flag for media input + prefec_ber_avg_media_input_halarm{lane_num} = BOOLEAN ; Pre-FEC BER average high alarm flag for media input + prefec_ber_curr_media_input_halarm{lane_num} = BOOLEAN ; Pre-FEC BER current high alarm flag for media input + prefec_ber_min_host_input_halarm{lane_num} = BOOLEAN ; Pre-FEC BER minimum high alarm flag for host input + prefec_ber_max_host_input_halarm{lane_num} = BOOLEAN ; Pre-FEC BER maximum high alarm flag for host input + prefec_ber_avg_host_input_halarm{lane_num} = BOOLEAN ; Pre-FEC BER average high alarm flag for host input + prefec_ber_curr_host_input_halarm{lane_num} = BOOLEAN ; Pre-FEC BER current high alarm flag for host input + errored_frames_min_media_input_halarm{lane_num} = BOOLEAN ; Errored frames minimum high alarm flag for media input + errored_frames_max_media_input_halarm{lane_num} = BOOLEAN ; Errored frames maximum high alarm flag for media input + errored_frames_avg_media_input_halarm{lane_num} = BOOLEAN ; Errored frames average high alarm flag for media input + errored_frames_curr_media_input_halarm{lane_num} = BOOLEAN ; Errored frames current high alarm flag for media input + errored_frames_min_host_input_halarm{lane_num} = BOOLEAN ; Errored frames minimum high alarm flag for host input + errored_frames_max_host_input_halarm{lane_num} = BOOLEAN ; Errored frames maximum high alarm flag for host input + errored_frames_avg_host_input_halarm{lane_num} = BOOLEAN ; Errored frames average high alarm flag for host input + errored_frames_curr_host_input_halarm{lane_num} = BOOLEAN ; Errored frames current high alarm flag for host input ;C-CMIS specific fields - biasxi_halarm_flag = BOOLEAN ; modulator bias xi in percentage (high alarm flag) - biasxq_halarm_flag = BOOLEAN ; modulator bias xq in percentage (high alarm flag) - biasxp_halarm_flag = BOOLEAN ; modulator bias xp in percentage (high alarm flag) - biasyi_halarm_flag = BOOLEAN ; modulator bias yi in percentage (high alarm flag) - biasyq_halarm_flag = BOOLEAN ; modulator bias yq in percentage (high alarm flag) - biasyp_halarm_flag = BOOLEAN ; modulator bias yq in percentage (high alarm flag) - cdshort_halarm_flag = BOOLEAN ; chromatic dispersion, high granularity, short link in ps/nm (high alarm flag) - cdlong_halarm_flag = BOOLEAN ; chromatic dispersion, high granularity, long link in ps/nm (high alarm flag) - dgd_halarm_flag = BOOLEAN ; differential group delay in ps (high alarm flag) - sopmd_halarm_flag = BOOLEAN ; second order polarization mode dispersion in ps^2 (high alarm flag) - soproc_halarm_flag = BOOLEAN ; state of polarization rate of change in krad/s (high alarm flag) - pdl_halarm_flag = BOOLEAN ; polarization dependent loss in db (high alarm flag) - osnr_halarm_flag = BOOLEAN ; optical signal to noise ratio in db (high alarm flag) - esnr_halarm_flag = BOOLEAN ; electrical signal to noise ratio in db (high alarm flag) - cfo_halarm_flag = BOOLEAN ; carrier frequency offset in Hz (high alarm flag) - txcurrpower_halarm_flag = BOOLEAN ; tx current output power in dbm (high alarm flag) - rxtotpower_halarm_flag = BOOLEAN ; rx total power in dbm (high alarm flag) - rxsigpower_halarm_flag = BOOLEAN; rx signal power in dbm (high alarm flag) + biasxi_halarm = BOOLEAN ; modulator bias xi in percentage (high alarm flag) + biasxq_halarm = BOOLEAN ; modulator bias xq in percentage (high alarm flag) + biasxp_halarm = BOOLEAN ; modulator bias xp in percentage (high alarm flag) + biasyi_halarm = BOOLEAN ; modulator bias yi in percentage (high alarm flag) + biasyq_halarm = BOOLEAN ; modulator bias yq in percentage (high alarm flag) + biasyp_halarm = BOOLEAN ; modulator bias yq in percentage (high alarm flag) + cdshort_halarm = BOOLEAN ; chromatic dispersion, high granularity, short link in ps/nm (high alarm flag) + cdlong_halarm = BOOLEAN ; chromatic dispersion, high granularity, long link in ps/nm (high alarm flag) + dgd_halarm = BOOLEAN ; differential group delay in ps (high alarm flag) + sopmd_halarm = BOOLEAN ; second order polarization mode dispersion in ps^2 (high alarm flag) + soproc_halarm = BOOLEAN ; state of polarization rate of change in krad/s (high alarm flag) + pdl_halarm = BOOLEAN ; polarization dependent loss in db (high alarm flag) + osnr_halarm = BOOLEAN ; optical signal to noise ratio in db (high alarm flag) + esnr_halarm = BOOLEAN ; electrical signal to noise ratio in db (high alarm flag) + cfo_halarm = BOOLEAN ; carrier frequency offset in Hz (high alarm flag) + txcurrpower_halarm = BOOLEAN ; tx current output power in dbm (high alarm flag) + rxtotpower_halarm = BOOLEAN ; rx total power in dbm (high alarm flag) + rxsigpower_halarm = BOOLEAN; rx signal power in dbm (high alarm flag) ``` lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. @@ -585,47 +585,47 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM low alarm flag for a port key = TRANSCEIVER_VDM_LALARM_FLAG|ifname ; field = value - laser_temperature_media_lalarm_flag{lane_num} = BOOLEAN ; laser temperature low alarm flag for media input - esnr_media_input_lalarm_flag{lane_num} = BOOLEAN ; eSNR low alarm flag for media input - esnr_host_input_lalarm_flag{lane_num} = BOOLEAN ; eSNR low alarm flag for host input - pam4_level_transition_media_input_lalarm_flag{lane_num} = BOOLEAN ; PAM4 level transition low alarm flag for media input - pam4_level_transition_host_input_lalarm_flag{lane_num} = BOOLEAN ; PAM4 level transition low alarm flag for host input - prefec_ber_min_media_input_lalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum low alarm flag for media input - prefec_ber_max_media_input_lalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum low alarm flag for media input - prefec_ber_avg_media_input_lalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER average low alarm flag for media input - prefec_ber_curr_media_input_lalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER current low alarm flag for media input - prefec_ber_min_host_input_lalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum low alarm flag for host input - prefec_ber_max_host_input_lalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum low alarm flag for host input - prefec_ber_avg_host_input_lalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER average low alarm flag for host input - prefec_ber_curr_host_input_lalarm_flag{lane_num} = BOOLEAN ; Pre-FEC BER current low alarm flag for host input - errored_frames_min_media_input_lalarm_flag{lane_num} = BOOLEAN ; Errored frames minimum low alarm flag for media input - errored_frames_max_media_input_lalarm_flag{lane_num} = BOOLEAN ; Errored frames maximum low alarm flag for media input - errored_frames_avg_media_input_lalarm_flag{lane_num} = BOOLEAN ; Errored frames average low alarm flag for media input - errored_frames_curr_media_input_lalarm_flag{lane_num} = BOOLEAN ; Errored frames current low alarm flag for media input - errored_frames_min_host_input_lalarm_flag{lane_num} = BOOLEAN ; Errored frames minimum low alarm flag for host input - errored_frames_max_host_input_lalarm_flag{lane_num} = BOOLEAN ; Errored frames maximum low alarm flag for host input - errored_frames_avg_host_input_lalarm_flag{lane_num} = BOOLEAN ; Errored frames average low alarm flag for host input - errored_frames_curr_host_input_lalarm_flag{lane_num} = BOOLEAN ; Errored frames current low alarm flag for host input + laser_temperature_media_lalarm{lane_num} = BOOLEAN ; laser temperature low alarm flag for media input + esnr_media_input_lalarm{lane_num} = BOOLEAN ; eSNR low alarm flag for media input + esnr_host_input_lalarm{lane_num} = BOOLEAN ; eSNR low alarm flag for host input + pam4_level_transition_media_input_lalarm{lane_num} = BOOLEAN ; PAM4 level transition low alarm flag for media input + pam4_level_transition_host_input_lalarm{lane_num} = BOOLEAN ; PAM4 level transition low alarm flag for host input + prefec_ber_min_media_input_lalarm{lane_num} = BOOLEAN ; Pre-FEC BER minimum low alarm flag for media input + prefec_ber_max_media_input_lalarm{lane_num} = BOOLEAN ; Pre-FEC BER maximum low alarm flag for media input + prefec_ber_avg_media_input_lalarm{lane_num} = BOOLEAN ; Pre-FEC BER average low alarm flag for media input + prefec_ber_curr_media_input_lalarm{lane_num} = BOOLEAN ; Pre-FEC BER current low alarm flag for media input + prefec_ber_min_host_input_lalarm{lane_num} = BOOLEAN ; Pre-FEC BER minimum low alarm flag for host input + prefec_ber_max_host_input_lalarm{lane_num} = BOOLEAN ; Pre-FEC BER maximum low alarm flag for host input + prefec_ber_avg_host_input_lalarm{lane_num} = BOOLEAN ; Pre-FEC BER average low alarm flag for host input + prefec_ber_curr_host_input_lalarm{lane_num} = BOOLEAN ; Pre-FEC BER current low alarm flag for host input + errored_frames_min_media_input_lalarm{lane_num} = BOOLEAN ; Errored frames minimum low alarm flag for media input + errored_frames_max_media_input_lalarm{lane_num} = BOOLEAN ; Errored frames maximum low alarm flag for media input + errored_frames_avg_media_input_lalarm{lane_num} = BOOLEAN ; Errored frames average low alarm flag for media input + errored_frames_curr_media_input_lalarm{lane_num} = BOOLEAN ; Errored frames current low alarm flag for media input + errored_frames_min_host_input_lalarm{lane_num} = BOOLEAN ; Errored frames minimum low alarm flag for host input + errored_frames_max_host_input_lalarm{lane_num} = BOOLEAN ; Errored frames maximum low alarm flag for host input + errored_frames_avg_host_input_lalarm{lane_num} = BOOLEAN ; Errored frames average low alarm flag for host input + errored_frames_curr_host_input_lalarm{lane_num} = BOOLEAN ; Errored frames current low alarm flag for host input ;C-CMIS specific fields - biasxi_lalarm_flag = BOOLEAN ; modulator bias xi in percentage (low alarm flag) - biasxq_lalarm_flag = BOOLEAN ; modulator bias xq in percentage (low alarm flag) - biasxp_lalarm_flag = BOOLEAN ; modulator bias xp in percentage (low alarm flag) - biasyi_lalarm_flag = BOOLEAN ; modulator bias yi in percentage (low alarm flag) - biasyq_lalarm_flag = BOOLEAN ; modulator bias yq in percentage (low alarm flag) - biasyp_lalarm_flag = BOOLEAN ; modulator bias yq in percentage (low alarm flag) - cdshort_lalarm_flag = BOOLEAN ; chromatic dispersion, high granularity, short link in ps/nm (low alarm flag) - cdlong_lalarm_flag = BOOLEAN ; chromatic dispersion, high granularity, long link in ps/nm (low alarm flag) - dgd_lalarm_flag = BOOLEAN ; differential group delay in ps (low alarm flag) - sopmd_lalarm_flag = BOOLEAN ; second order polarization mode dispersion in ps^2 (low alarm flag) - soproc_lalarm_flag = BOOLEAN ; state of polarization rate of change in krad/s (low alarm flag) - pdl_lalarm_flag = BOOLEAN ; polarization dependent loss in db (low alarm flag) - osnr_lalarm_flag = BOOLEAN ; optical signal to noise ratio in db (low alarm flag) - esnr_lalarm_flag = BOOLEAN ; electrical signal to noise ratio in db (low alarm flag) - cfo_lalarm_flag = BOOLEAN ; carrier frequency offset in Hz (low alarm flag) - txcurrpower_lalarm_flag = BOOLEAN ; tx current output power in dbm (low alarm flag) - rxtotpower_lalarm_flag = BOOLEAN ; rx total power in dbm (low alarm flag) - rxsigpower_lalarm_flag = BOOLEAN; rx signal power in dbm (low alarm flag) + biasxi_lalarm = BOOLEAN ; modulator bias xi in percentage (low alarm flag) + biasxq_lalarm = BOOLEAN ; modulator bias xq in percentage (low alarm flag) + biasxp_lalarm = BOOLEAN ; modulator bias xp in percentage (low alarm flag) + biasyi_lalarm = BOOLEAN ; modulator bias yi in percentage (low alarm flag) + biasyq_lalarm = BOOLEAN ; modulator bias yq in percentage (low alarm flag) + biasyp_lalarm = BOOLEAN ; modulator bias yq in percentage (low alarm flag) + cdshort_lalarm = BOOLEAN ; chromatic dispersion, high granularity, short link in ps/nm (low alarm flag) + cdlong_lalarm = BOOLEAN ; chromatic dispersion, high granularity, long link in ps/nm (low alarm flag) + dgd_lalarm = BOOLEAN ; differential group delay in ps (low alarm flag) + sopmd_lalarm = BOOLEAN ; second order polarization mode dispersion in ps^2 (low alarm flag) + soproc_lalarm = BOOLEAN ; state of polarization rate of change in krad/s (low alarm flag) + pdl_lalarm = BOOLEAN ; polarization dependent loss in db (low alarm flag) + osnr_lalarm = BOOLEAN ; optical signal to noise ratio in db (low alarm flag) + esnr_lalarm = BOOLEAN ; electrical signal to noise ratio in db (low alarm flag) + cfo_lalarm = BOOLEAN ; carrier frequency offset in Hz (low alarm flag) + txcurrpower_lalarm = BOOLEAN ; tx current output power in dbm (low alarm flag) + rxtotpower_lalarm = BOOLEAN ; rx total power in dbm (low alarm flag) + rxsigpower_lalarm = BOOLEAN; rx signal power in dbm (low alarm flag) ``` ##### 2.2.3.3 Transceiver VDM high warning flag data @@ -638,47 +638,47 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM high warning flag for a port key = TRANSCEIVER_VDM_HWARN_FLAG|ifname ; field = value - laser_temperature_media_hwarn_flag{lane_num} = BOOLEAN ; laser temperature high warning flag for media input - esnr_media_input_hwarn_flag{lane_num} = BOOLEAN ; eSNR high warning flag for media input - esnr_host_input_hwarn_flag{lane_num} = BOOLEAN ; eSNR high warning flag for host input - pam4_level_transition_media_input_hwarn_flag{lane_num} = BOOLEAN ; PAM4 level transition high warning flag for media input - pam4_level_transition_host_input_hwarn_flag{lane_num} = BOOLEAN ; PAM4 level transition high warning flag for host input - prefec_ber_min_media_input_hwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum high warning flag for media input - prefec_ber_max_media_input_hwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum high warning flag for media input - prefec_ber_avg_media_input_hwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER average high warning flag for media input - prefec_ber_curr_media_input_hwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER current high warning flag for media input - prefec_ber_min_host_input_hwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum high warning flag for host input - prefec_ber_max_host_input_hwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum high warning flag for host input - prefec_ber_avg_host_input_hwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER average high warning flag for host input - prefec_ber_curr_host_input_hwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER current high warning flag for host input - errored_frames_min_media_input_hwarn_flag{lane_num} = BOOLEAN ; Errored frames minimum high warning flag for media input - errored_frames_max_media_input_hwarn_flag{lane_num} = BOOLEAN ; Errored frames maximum high warning flag for media input - errored_frames_avg_media_input_hwarn_flag{lane_num} = BOOLEAN ; Errored frames average high warning flag for media input - errored_frames_curr_media_input_hwarn_flag{lane_num} = BOOLEAN ; Errored frames current high warning flag for media input - errored_frames_min_host_input_hwarn_flag{lane_num} = BOOLEAN ; Errored frames minimum high warning flag for host input - errored_frames_max_host_input_hwarn_flag{lane_num} = BOOLEAN ; Errored frames maximum high warning flag for host input - errored_frames_avg_host_input_hwarn_flag{lane_num} = BOOLEAN ; Errored frames average high warning flag for host input - errored_frames_curr_host_input_hwarn_flag{lane_num} = BOOLEAN ; Errored frames current high warning flag for host input + laser_temperature_media_hwarn{lane_num} = BOOLEAN ; laser temperature high warning flag for media input + esnr_media_input_hwarn{lane_num} = BOOLEAN ; eSNR high warning flag for media input + esnr_host_input_hwarn{lane_num} = BOOLEAN ; eSNR high warning flag for host input + pam4_level_transition_media_input_hwarn{lane_num} = BOOLEAN ; PAM4 level transition high warning flag for media input + pam4_level_transition_host_input_hwarn{lane_num} = BOOLEAN ; PAM4 level transition high warning flag for host input + prefec_ber_min_media_input_hwarn{lane_num} = BOOLEAN ; Pre-FEC BER minimum high warning flag for media input + prefec_ber_max_media_input_hwarn{lane_num} = BOOLEAN ; Pre-FEC BER maximum high warning flag for media input + prefec_ber_avg_media_input_hwarn{lane_num} = BOOLEAN ; Pre-FEC BER average high warning flag for media input + prefec_ber_curr_media_input_hwarn{lane_num} = BOOLEAN ; Pre-FEC BER current high warning flag for media input + prefec_ber_min_host_input_hwarn{lane_num} = BOOLEAN ; Pre-FEC BER minimum high warning flag for host input + prefec_ber_max_host_input_hwarn{lane_num} = BOOLEAN ; Pre-FEC BER maximum high warning flag for host input + prefec_ber_avg_host_input_hwarn{lane_num} = BOOLEAN ; Pre-FEC BER average high warning flag for host input + prefec_ber_curr_host_input_hwarn{lane_num} = BOOLEAN ; Pre-FEC BER current high warning flag for host input + errored_frames_min_media_input_hwarn{lane_num} = BOOLEAN ; Errored frames minimum high warning flag for media input + errored_frames_max_media_input_hwarn{lane_num} = BOOLEAN ; Errored frames maximum high warning flag for media input + errored_frames_avg_media_input_hwarn{lane_num} = BOOLEAN ; Errored frames average high warning flag for media input + errored_frames_curr_media_input_hwarn{lane_num} = BOOLEAN ; Errored frames current high warning flag for media input + errored_frames_min_host_input_hwarn{lane_num} = BOOLEAN ; Errored frames minimum high warning flag for host input + errored_frames_max_host_input_hwarn{lane_num} = BOOLEAN ; Errored frames maximum high warning flag for host input + errored_frames_avg_host_input_hwarn{lane_num} = BOOLEAN ; Errored frames average high warning flag for host input + errored_frames_curr_host_input_hwarn{lane_num} = BOOLEAN ; Errored frames current high warning flag for host input ;C-CMIS specific fields - biasxi_hwarn_flag = BOOLEAN ; modulator bias xi in percentage (high warning flag) - biasxq_hwarn_flag = BOOLEAN ; modulator bias xq in percentage (high warning flag) - biasxp_hwarn_flag = BOOLEAN ; modulator bias xp in percentage (high warning flag) - biasyi_hwarn_flag = BOOLEAN ; modulator bias yi in percentage (high warning flag) - biasyq_hwarn_flag = BOOLEAN ; modulator bias yq in percentage (high warning flag) - biasyp_hwarn_flag = BOOLEAN ; modulator bias yq in percentage (high warning flag) - cdshort_hwarn_flag = BOOLEAN ; chromatic dispersion, high granularity, short link in ps/nm (high warning flag) - cdlong_hwarn_flag = BOOLEAN ; chromatic dispersion, high granularity, long link in ps/nm (high warning flag) - dgd_hwarn_flag = BOOLEAN ; differential group delay in ps (high warning flag) - sopmd_hwarn_flag = BOOLEAN ; second order polarization mode dispersion in ps^2 (high warning flag) - soproc_hwarn_flag = BOOLEAN ; state of polarization rate of change in krad/s (high warning flag) - pdl_hwarn_flag = BOOLEAN ; polarization dependent loss in db (high warning flag) - osnr_hwarn_flag = BOOLEAN ; optical signal to noise ratio in db (high warning flag) - esnr_hwarn_flag = BOOLEAN ; electrical signal to noise ratio in db (high warning flag) - cfo_hwarn_flag = BOOLEAN ; carrier frequency offset in Hz (high warning flag) - txcurrpower_hwarn_flag = BOOLEAN ; tx current output power in dbm (high warning flag) - rxtotpower_hwarn_flag = BOOLEAN ; rx total power in dbm (high warning flag) - rxsigpower_hwarn_flag = BOOLEAN; rx signal power in dbm (high warning flag) + biasxi_hwarn = BOOLEAN ; modulator bias xi in percentage (high warning flag) + biasxq_hwarn = BOOLEAN ; modulator bias xq in percentage (high warning flag) + biasxp_hwarn = BOOLEAN ; modulator bias xp in percentage (high warning flag) + biasyi_hwarn = BOOLEAN ; modulator bias yi in percentage (high warning flag) + biasyq_hwarn = BOOLEAN ; modulator bias yq in percentage (high warning flag) + biasyp_hwarn = BOOLEAN ; modulator bias yq in percentage (high warning flag) + cdshort_hwarn = BOOLEAN ; chromatic dispersion, high granularity, short link in ps/nm (high warning flag) + cdlong_hwarn = BOOLEAN ; chromatic dispersion, high granularity, long link in ps/nm (high warning flag) + dgd_hwarn = BOOLEAN ; differential group delay in ps (high warning flag) + sopmd_hwarn = BOOLEAN ; second order polarization mode dispersion in ps^2 (high warning flag) + soproc_hwarn = BOOLEAN ; state of polarization rate of change in krad/s (high warning flag) + pdl_hwarn = BOOLEAN ; polarization dependent loss in db (high warning flag) + osnr_hwarn = BOOLEAN ; optical signal to noise ratio in db (high warning flag) + esnr_hwarn = BOOLEAN ; electrical signal to noise ratio in db (high warning flag) + cfo_hwarn = BOOLEAN ; carrier frequency offset in Hz (high warning flag) + txcurrpower_hwarn = BOOLEAN ; tx current output power in dbm (high warning flag) + rxtotpower_hwarn = BOOLEAN ; rx total power in dbm (high warning flag) + rxsigpower_hwarn = BOOLEAN; rx signal power in dbm (high warning flag) ``` ##### 2.2.3.4 Transceiver VDM low warning flag data @@ -691,47 +691,47 @@ lane_num: Represents lane number of the field. The lane number is an integer val ;Defines Transceiver VDM low warning flag for a port key = TRANSCEIVER_VDM_LWARN_FLAG|ifname ; field = value - laser_temperature_media_lwarn_flag{lane_num} = BOOLEAN ; laser temperature low warning flag for media input - esnr_media_input_lwarn_flag{lane_num} = BOOLEAN ; eSNR low warning flag for media input - esnr_host_input_lwarn_flag{lane_num} = BOOLEAN ; eSNR low warning flag for host input - pam4_level_transition_media_input_lwarn_flag{lane_num} = BOOLEAN ; PAM4 level transition low warning flag for media input - pam4_level_transition_host_input_lwarn_flag{lane_num} = BOOLEAN ; PAM4 level transition low warning flag for host input - prefec_ber_min_media_input_lwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum low warning flag for media input - prefec_ber_max_media_input_lwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum low warning flag for media input - prefec_ber_avg_media_input_lwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER average low warning flag for media input - prefec_ber_curr_media_input_lwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER current low warning flag for media input - prefec_ber_min_host_input_lwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER minimum low warning flag for host input - prefec_ber_max_host_input_lwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER maximum low warning flag for host input - prefec_ber_avg_host_input_lwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER average low warning flag for host input - prefec_ber_curr_host_input_lwarn_flag{lane_num} = BOOLEAN ; Pre-FEC BER current low warning flag for host input - errored_frames_min_media_input_lwarn_flag{lane_num} = BOOLEAN ; Errored frames minimum low warning flag for media input - errored_frames_max_media_input_lwarn_flag{lane_num} = BOOLEAN ; Errored frames maximum low warning flag for media input - errored_frames_avg_media_input_lwarn_flag{lane_num} = BOOLEAN ; Errored frames average low warning flag for media input - errored_frames_curr_media_input_lwarn_flag{lane_num} = BOOLEAN ; Errored frames current low warning flag for media input - errored_frames_min_host_input_lwarn_flag{lane_num} = BOOLEAN ; Errored frames minimum low warning flag for host input - errored_frames_max_host_input_lwarn_flag{lane_num} = BOOLEAN ; Errored frames maximum low warning flag for host input - errored_frames_avg_host_input_lwarn_flag{lane_num} = BOOLEAN ; Errored frames average low warning flag for host input - errored_frames_curr_host_input_lwarn_flag{lane_num} = BOOLEAN ; Errored frames current low warning flag for host input + laser_temperature_media_lwarn{lane_num} = BOOLEAN ; laser temperature low warning flag for media input + esnr_media_input_lwarn{lane_num} = BOOLEAN ; eSNR low warning flag for media input + esnr_host_input_lwarn{lane_num} = BOOLEAN ; eSNR low warning flag for host input + pam4_level_transition_media_input_lwarn{lane_num} = BOOLEAN ; PAM4 level transition low warning flag for media input + pam4_level_transition_host_input_lwarn{lane_num} = BOOLEAN ; PAM4 level transition low warning flag for host input + prefec_ber_min_media_input_lwarn{lane_num} = BOOLEAN ; Pre-FEC BER minimum low warning flag for media input + prefec_ber_max_media_input_lwarn{lane_num} = BOOLEAN ; Pre-FEC BER maximum low warning flag for media input + prefec_ber_avg_media_input_lwarn{lane_num} = BOOLEAN ; Pre-FEC BER average low warning flag for media input + prefec_ber_curr_media_input_lwarn{lane_num} = BOOLEAN ; Pre-FEC BER current low warning flag for media input + prefec_ber_min_host_input_lwarn{lane_num} = BOOLEAN ; Pre-FEC BER minimum low warning flag for host input + prefec_ber_max_host_input_lwarn{lane_num} = BOOLEAN ; Pre-FEC BER maximum low warning flag for host input + prefec_ber_avg_host_input_lwarn{lane_num} = BOOLEAN ; Pre-FEC BER average low warning flag for host input + prefec_ber_curr_host_input_lwarn{lane_num} = BOOLEAN ; Pre-FEC BER current low warning flag for host input + errored_frames_min_media_input_lwarn{lane_num} = BOOLEAN ; Errored frames minimum low warning flag for media input + errored_frames_max_media_input_lwarn{lane_num} = BOOLEAN ; Errored frames maximum low warning flag for media input + errored_frames_avg_media_input_lwarn{lane_num} = BOOLEAN ; Errored frames average low warning flag for media input + errored_frames_curr_media_input_lwarn{lane_num} = BOOLEAN ; Errored frames current low warning flag for media input + errored_frames_min_host_input_lwarn{lane_num} = BOOLEAN ; Errored frames minimum low warning flag for host input + errored_frames_max_host_input_lwarn{lane_num} = BOOLEAN ; Errored frames maximum low warning flag for host input + errored_frames_avg_host_input_lwarn{lane_num} = BOOLEAN ; Errored frames average low warning flag for host input + errored_frames_curr_host_input_lwarn{lane_num} = BOOLEAN ; Errored frames current low warning flag for host input ;C-CMIS specific fields - biasxi_lwarn_flag = BOOLEAN ; modulator bias xi in percentage (low warning flag) - biasxq_lwarn_flag = BOOLEAN ; modulator bias xq in percentage (low warning flag) - biasxp_lwarn_flag = BOOLEAN ; modulator bias xp in percentage (low warning flag) - biasyi_lwarn_flag = BOOLEAN ; modulator bias yi in percentage (low warning flag) - biasyq_lwarn_flag = BOOLEAN ; modulator bias yq in percentage (low warning flag) - biasyp_lwarn_flag = BOOLEAN ; modulator bias yq in percentage (low warning flag) - cdshort_lwarn_flag = BOOLEAN ; chromatic dispersion, high granularity, short link in ps/nm (low warning flag) - cdlong_lwarn_flag = BOOLEAN ; chromatic dispersion, high granularity, long link in ps/nm (low warning flag) - dgd_lwarn_flag = BOOLEAN ; differential group delay in ps (low warning flag) - sopmd_lwarn_flag = BOOLEAN ; second order polarization mode dispersion in ps^2 (low warning flag) - soproc_lwarn_flag = BOOLEAN ; state of polarization rate of change in krad/s (low warning flag) - pdl_lwarn_flag = BOOLEAN ; polarization dependent loss in db (low warning flag) - osnr_lwarn_flag = BOOLEAN ; optical signal to noise ratio in db (low warning flag) - esnr_lwarn_flag = BOOLEAN ; electrical signal to noise ratio in db (low warning flag) - cfo_lwarn_flag = BOOLEAN ; carrier frequency offset in Hz (low warning flag) - txcurrpower_lwarn_flag = BOOLEAN ; tx current output power in dbm (low warning flag) - rxtotpower_lwarn_flag = BOOLEAN ; rx total power in dbm (low warning flag) - rxsigpower_lwarn_flag = BOOLEAN; rx signal power in dbm (low warning flag) + biasxi_lwarn = BOOLEAN ; modulator bias xi in percentage (low warning flag) + biasxq_lwarn = BOOLEAN ; modulator bias xq in percentage (low warning flag) + biasxp_lwarn = BOOLEAN ; modulator bias xp in percentage (low warning flag) + biasyi_lwarn = BOOLEAN ; modulator bias yi in percentage (low warning flag) + biasyq_lwarn = BOOLEAN ; modulator bias yq in percentage (low warning flag) + biasyp_lwarn = BOOLEAN ; modulator bias yq in percentage (low warning flag) + cdshort_lwarn = BOOLEAN ; chromatic dispersion, high granularity, short link in ps/nm (low warning flag) + cdlong_lwarn = BOOLEAN ; chromatic dispersion, high granularity, long link in ps/nm (low warning flag) + dgd_lwarn = BOOLEAN ; differential group delay in ps (low warning flag) + sopmd_lwarn = BOOLEAN ; second order polarization mode dispersion in ps^2 (low warning flag) + soproc_lwarn = BOOLEAN ; state of polarization rate of change in krad/s (low warning flag) + pdl_lwarn = BOOLEAN ; polarization dependent loss in db (low warning flag) + osnr_lwarn = BOOLEAN ; optical signal to noise ratio in db (low warning flag) + esnr_lwarn = BOOLEAN ; electrical signal to noise ratio in db (low warning flag) + cfo_lwarn = BOOLEAN ; carrier frequency offset in Hz (low warning flag) + txcurrpower_lwarn = BOOLEAN ; tx current output power in dbm (low warning flag) + rxtotpower_lwarn = BOOLEAN ; rx total power in dbm (low warning flag) + rxsigpower_lwarn = BOOLEAN; rx signal power in dbm (low warning flag) ``` #### 2.2.4 Transceiver VDM flag change count data @@ -2152,10 +2152,10 @@ Example The following fields related to `temperature` are updated in the `redis-db` during a link down event: -- `temphighalarm_flag` in `TRANSCEIVER_DOM_FLAG` table -- `temphighwarning_flag` in `TRANSCEIVER_DOM_FLAG` table -- `templowwarning_flag` in `TRANSCEIVER_DOM_FLAG` table -- `templowalarm_flag` in `TRANSCEIVER_DOM_FLAG` table +- `temphighalarm` in `TRANSCEIVER_DOM_FLAG` table +- `temphighwarning` in `TRANSCEIVER_DOM_FLAG` table +- `templowwarning` in `TRANSCEIVER_DOM_FLAG` table +- `templowalarm` in `TRANSCEIVER_DOM_FLAG` table - `temphighalarm` in `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT` table - `temphighwarning` in `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT` table - `templowwarning` in `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT` table @@ -2199,10 +2199,10 @@ Example The following fields related to `esnr_media_input` are updated in the `redis-db` during a link down event: -- `esnr_media_input_halarm_flag{lane_num}` in `TRANSCEIVER_VDM_HALARM_FLAG` table -- `esnr_media_input_lalarm_flag{lane_num}` in `TRANSCEIVER_VDM_LALARM_FLAG` table -- `esnr_media_input_hwarn_flag{lane_num}` in `TRANSCEIVER_VDM_HWARN_FLAG` table -- `esnr_media_input_lwarn_flag{lane_num}` in `TRANSCEIVER_VDM_LWARN_FLAG` table +- `esnr_media_input_halarm{lane_num}` in `TRANSCEIVER_VDM_HALARM_FLAG` table +- `esnr_media_input_lalarm{lane_num}` in `TRANSCEIVER_VDM_LALARM_FLAG` table +- `esnr_media_input_hwarn{lane_num}` in `TRANSCEIVER_VDM_HWARN_FLAG` table +- `esnr_media_input_lwarn{lane_num}` in `TRANSCEIVER_VDM_LWARN_FLAG` table - `esnr_media_input_halarm{lane_num}` in `TRANSCEIVER_VDM_HALARM_FLAG_CHANGE_COUNT` table - `esnr_media_input_lalarm{lane_num}` in `TRANSCEIVER_VDM_LALARM_FLAG_CHANGE_COUNT` table - `esnr_media_input_hwarn{lane_num}` in `TRANSCEIVER_VDM_HWARN_FLAG_CHANGE_COUNT` table From cf25561916ea0e2e3f7fdbaa07dce27a99225b88 Mon Sep 17 00:00:00 2001 From: Mihir Patel Date: Thu, 7 Nov 2024 23:15:29 +0000 Subject: [PATCH 11/12] Changed TRANSCEIVER_VDM_CURRENT_SAMPLE to TRANSCEIVER_VDM_REAL_VALUE and enhanced the output of various CLIs using lane number --- ...Diagnostic_Monitoring_Overview_in_SONiC.md | 904 +++++++++--------- 1 file changed, 447 insertions(+), 457 deletions(-) diff --git a/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md b/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md index 700d89be4d..97ce85bfa6 100644 --- a/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md +++ b/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md @@ -20,7 +20,7 @@ The CMIS diagnostic monitoring data is stored in the `STATE_DB` database. The `S - `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`: Keeps a count of how many times each DOM flag has changed. - `TRANSCEIVER_DOM_FLAG_SET_TIME`: Records the last timestamp when each DOM flag was set. - `TRANSCEIVER_DOM_FLAG_CLEAR_TIME`: Records the last timestamp when each DOM flag was cleared. -- `TRANSCEIVER_VDM_CURRENT_SAMPLE`: Stores VDM sample data. +- `TRANSCEIVER_VDM_REAL_VALUE`: Stores VDM sample data. - `TRANSCEIVER_VDM_THRESHOLD`: Contains threshold values for VDM parameters. - `TRANSCEIVER_VDM_HALARM_THRESHOLD`: Stores the high alarm threshold values for the VDM data. - `TRANSCEIVER_VDM_LALARM_THRESHOLD`: Stores the low alarm threshold values for the VDM data. @@ -255,13 +255,13 @@ lane_num: Represents lane number of the field. The lane number is an integer val #### 2.2.1 Transceiver VDM sample data -The `TRANSCEIVER_VDM_CURRENT_SAMPLE` table stores the real time VDM data +The `TRANSCEIVER_VDM_REAL_VALUE` table stores the real time VDM data lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. ```plaintext ;Defines Transceiver VDM sample for a port - key = TRANSCEIVER_VDM_CURRENT_SAMPLE|ifname ; information module VDM sample on port + key = TRANSCEIVER_VDM_REAL_VALUE|ifname ; information module VDM sample on port ; field = value laser_temperature_media{lane_num} = FLOAT ; laser temperature value in Celsius for media input esnr_media_input{lane_num} = FLOAT ; eSNR value in dB for media input @@ -286,24 +286,24 @@ lane_num: Represents lane number of the field. The lane number is an integer val errored_frames_curr_host_input{lane_num} = FLOAT ; Errored frames current value for host input ;C-CMIS specific fields - biasxi = FLOAT ; modulator bias xi in percentage - biasxq = FLOAT ; modulator bias xq in percentage - biasxp = FLOAT ; modulator bias xp in percentage - biasyi = FLOAT ; modulator bias yi in percentage - biasyq = FLOAT ; modulator bias yq in percentage - biasyp = FLOAT ; modulator bias yq in percentage - cdshort = FLOAT ; chromatic dispersion, high granularity, short link in ps/nm - cdlong = FLOAT ; chromatic dispersion, high granularity, long link in ps/nm - dgd = FLOAT ; differential group delay in ps - sopmd = FLOAT ; second order polarization mode dispersion in ps^2 - soproc = FLOAT ; state of polarization rate of change in krad/s - pdl = FLOAT ; polarization dependent loss in db - osnr = FLOAT ; optical signal to noise ratio in db - esnr = FLOAT ; electrical signal to noise ratio in db - cfo = FLOAT ; carrier frequency offset in Hz - txcurrpower = FLOAT ; tx current output power in dbm - rxtotpower = FLOAT ; rx total power in dbm - rxsigpower = FLOAT ; rx signal power in dbm + biasxi{lane_num} = FLOAT ; modulator bias xi in percentage + biasxq{lane_num} = FLOAT ; modulator bias xq in percentage + biasxp{lane_num} = FLOAT ; modulator bias xp in percentage + biasyi{lane_num} = FLOAT ; modulator bias yi in percentage + biasyq{lane_num} = FLOAT ; modulator bias yq in percentage + biasyp{lane_num} = FLOAT ; modulator bias yq in percentage + cdshort{lane_num} = FLOAT ; chromatic dispersion, high granularity, short link in ps/nm + cdlong{lane_num} = FLOAT ; chromatic dispersion, high granularity, long link in ps/nm + dgd{lane_num} = FLOAT ; differential group delay in ps + sopmd{lane_num} = FLOAT ; second order polarization mode dispersion in ps^2 + soproc{lane_num} = FLOAT ; state of polarization rate of change in krad/s + pdl{lane_num} = FLOAT ; polarization dependent loss in db + osnr{lane_num} = FLOAT ; optical signal to noise ratio in db + esnr{lane_num} = FLOAT ; electrical signal to noise ratio in db + cfo{lane_num} = FLOAT ; carrier frequency offset in Hz + txcurrpower{lane_num} = FLOAT ; tx current output power in dbm + rxtotpower{lane_num} = FLOAT ; rx total power in dbm + rxsigpower{lane_num} = FLOAT ; rx signal power in dbm ``` #### 2.2.2 Transceiver VDM threshold data @@ -341,24 +341,24 @@ lane_num: Represents lane number of the field. The lane number is an integer val errored_frames_curr_host_input_halarm{lane_num} = FLOAT ; Errored frames current high alarm value for host input ;C-CMIS specific fields - biasxi_halarm = FLOAT ; modulator bias xi in percentage (high alarm) - biasxq_halarm = FLOAT ; modulator bias xq in percentage (high alarm) - biasxp_halarm = FLOAT ; modulator bias xp in percentage (high alarm) - biasyi_halarm = FLOAT ; modulator bias yi in percentage (high alarm) - biasyq_halarm = FLOAT ; modulator bias yq in percentage (high alarm) - biasyp_halarm = FLOAT ; modulator bias yq in percentage (high alarm) - cdshort_halarm = FLOAT ; chromatic dispersion, high granularity, short link in ps/nm (high alarm) - cdlong_halarm = FLOAT ; chromatic dispersion, high granularity, long link in ps/nm (high alarm) - dgd_halarm = FLOAT ; differential group delay in ps (high alarm) - sopmd_halarm = FLOAT ; second order polarization mode dispersion in ps^2 (high alarm) - soproc_halarm = FLOAT ; state of polarization rate of change in krad/s (high alarm) - pdl_halarm = FLOAT ; polarization dependent loss in db (high alarm) - osnr_halarm = FLOAT ; optical signal to noise ratio in db (high alarm) - esnr_halarm = FLOAT ; electrical signal to noise ratio in db (high alarm) - cfo_halarm = FLOAT ; carrier frequency offset in Hz (high alarm) - txcurrpower_halarm = FLOAT ; tx current output power in dbm (high alarm) - rxtotpower_halarm = FLOAT ; rx total power in dbm (high alarm) - rxsigpower_halarm = FLOAT ; rx signal power in dbm (high alarm) + biasxi_halarm{lane_num} = FLOAT ; modulator bias xi in percentage (high alarm) + biasxq_halarm{lane_num} = FLOAT ; modulator bias xq in percentage (high alarm) + biasxp_halarm{lane_num} = FLOAT ; modulator bias xp in percentage (high alarm) + biasyi_halarm{lane_num} = FLOAT ; modulator bias yi in percentage (high alarm) + biasyq_halarm{lane_num} = FLOAT ; modulator bias yq in percentage (high alarm) + biasyp_halarm{lane_num} = FLOAT ; modulator bias yq in percentage (high alarm) + cdshort_halarm{lane_num} = FLOAT ; chromatic dispersion, high granularity, short link in ps/nm (high alarm) + cdlong_halarm{lane_num} = FLOAT ; chromatic dispersion, high granularity, long link in ps/nm (high alarm) + dgd_halarm{lane_num} = FLOAT ; differential group delay in ps (high alarm) + sopmd_halarm{lane_num} = FLOAT ; second order polarization mode dispersion in ps^2 (high alarm) + soproc_halarm{lane_num} = FLOAT ; state of polarization rate of change in krad/s (high alarm) + pdl_halarm{lane_num} = FLOAT ; polarization dependent loss in db (high alarm) + osnr_halarm{lane_num} = FLOAT ; optical signal to noise ratio in db (high alarm) + esnr_halarm{lane_num} = FLOAT ; electrical signal to noise ratio in db (high alarm) + cfo_halarm{lane_num} = FLOAT ; carrier frequency offset in Hz (high alarm) + txcurrpower_halarm{lane_num} = FLOAT ; tx current output power in dbm (high alarm) + rxtotpower_halarm{lane_num} = FLOAT ; rx total power in dbm (high alarm) + rxsigpower_halarm{lane_num} = FLOAT ; rx signal power in dbm (high alarm) ``` ##### 2.2.2.2 Transceiver VDM low alarm threshold data @@ -394,24 +394,24 @@ lane_num: Represents lane number of the field. The lane number is an integer val errored_frames_curr_host_input_lalarm{lane_num} = FLOAT ; Errored frames current low alarm value for host input ;C-CMIS specific fields - biasxi_lalarm = FLOAT ; modulator bias xi in percentage (low alarm) - biasxq_lalarm = FLOAT ; modulator bias xq in percentage (low alarm) - biasxp_lalarm = FLOAT ; modulator bias xp in percentage (low alarm) - biasyi_lalarm = FLOAT ; modulator bias yi in percentage (low alarm) - biasyq_lalarm = FLOAT ; modulator bias yq in percentage (low alarm) - biasyp_lalarm = FLOAT ; modulator bias yq in percentage (low alarm) - cdshort_lalarm = FLOAT ; chromatic dispersion, high granularity, short link in ps/nm (low alarm) - cdlong_lalarm = FLOAT ; chromatic dispersion, high granularity, long link in ps/nm (low alarm) - dgd_lalarm = FLOAT ; differential group delay in ps (low alarm) - sopmd_lalarm = FLOAT ; second order polarization mode dispersion in ps^2 (low alarm) - soproc_lalarm = FLOAT ; state of polarization rate of change in krad/s (low alarm) - pdl_lalarm = FLOAT ; polarization dependent loss in db (low alarm) - osnr_lalarm = FLOAT ; optical signal to noise ratio in db (low alarm) - esnr_lalarm = FLOAT ; electrical signal to noise ratio in db (low alarm) - cfo_lalarm = FLOAT ; carrier frequency offset in Hz (low alarm) - txcurrpower_lalarm = FLOAT ; tx current output power in dbm (low alarm) - rxtotpower_lalarm = FLOAT ; rx total power in dbm (low alarm) - rxsigpower_lalarm = FLOAT ; rx signal power in dbm (low alarm) + biasxi_lalarm{lane_num} = FLOAT ; modulator bias xi in percentage (low alarm) + biasxq_lalarm{lane_num} = FLOAT ; modulator bias xq in percentage (low alarm) + biasxp_lalarm{lane_num} = FLOAT ; modulator bias xp in percentage (low alarm) + biasyi_lalarm{lane_num} = FLOAT ; modulator bias yi in percentage (low alarm) + biasyq_lalarm{lane_num} = FLOAT ; modulator bias yq in percentage (low alarm) + biasyp_lalarm{lane_num} = FLOAT ; modulator bias yq in percentage (low alarm) + cdshort_lalarm{lane_num} = FLOAT ; chromatic dispersion, high granularity, short link in ps/nm (low alarm) + cdlong_lalarm{lane_num} = FLOAT ; chromatic dispersion, high granularity, long link in ps/nm (low alarm) + dgd_lalarm{lane_num} = FLOAT ; differential group delay in ps (low alarm) + sopmd_lalarm{lane_num} = FLOAT ; second order polarization mode dispersion in ps^2 (low alarm) + soproc_lalarm{lane_num} = FLOAT ; state of polarization rate of change in krad/s (low alarm) + pdl_lalarm{lane_num} = FLOAT ; polarization dependent loss in db (low alarm) + osnr_lalarm{lane_num} = FLOAT ; optical signal to noise ratio in db (low alarm) + esnr_lalarm{lane_num} = FLOAT ; electrical signal to noise ratio in db (low alarm) + cfo_lalarm{lane_num} = FLOAT ; carrier frequency offset in Hz (low alarm) + txcurrpower_lalarm{lane_num} = FLOAT ; tx current output power in dbm (low alarm) + rxtotpower_lalarm{lane_num} = FLOAT ; rx total power in dbm (low alarm) + rxsigpower_lalarm{lane_num} = FLOAT ; rx signal power in dbm (low alarm) ``` ##### 2.2.2.3 Transceiver VDM high warning threshold data @@ -447,24 +447,24 @@ lane_num: Represents lane number of the field. The lane number is an integer val errored_frames_curr_host_input_hwarn{lane_num} = FLOAT ; Errored frames current high warning value for host input ;C-CMIS specific fields - biasxi_hwarn = FLOAT ; modulator bias xi in percentage (high warning) - biasxq_hwarn = FLOAT ; modulator bias xq in percentage (high warning) - biasxp_hwarn = FLOAT ; modulator bias xp in percentage (high warning) - biasyi_hwarn = FLOAT ; modulator bias yi in percentage (high warning) - biasyq_hwarn = FLOAT ; modulator bias yq in percentage (high warning) - biasyp_hwarn = FLOAT ; modulator bias yq in percentage (high warning) - cdshort_hwarn = FLOAT ; chromatic dispersion, high granularity, short link in ps/nm (high warning) - cdlong_hwarn = FLOAT ; chromatic dispersion, high granularity, long link in ps/nm (high warning) - dgd_hwarn = FLOAT ; differential group delay in ps (high warning) - sopmd_hwarn = FLOAT ; second order polarization mode dispersion in ps^2 (high warning) - soproc_hwarn = FLOAT ; state of polarization rate of change in krad/s (high warning) - pdl_hwarn = FLOAT ; polarization dependent loss in db (high warning) - osnr_hwarn = FLOAT ; optical signal to noise ratio in db (high warning) - esnr_hwarn = FLOAT ; electrical signal to noise ratio in db (high warning) - cfo_hwarn = FLOAT ; carrier frequency offset in Hz (high warning) - txcurrpower_hwarn = FLOAT ; tx current output power in dbm (high warning) - rxtotpower_hwarn = FLOAT ; rx total power in dbm (high warning) - rxsigpower_hwarn = FLOAT ; rx signal power in dbm (high warning) + biasxi_hwarn{lane_num} = FLOAT ; modulator bias xi in percentage (high warning) + biasxq_hwarn{lane_num} = FLOAT ; modulator bias xq in percentage (high warning) + biasxp_hwarn{lane_num} = FLOAT ; modulator bias xp in percentage (high warning) + biasyi_hwarn{lane_num} = FLOAT ; modulator bias yi in percentage (high warning) + biasyq_hwarn{lane_num} = FLOAT ; modulator bias yq in percentage (high warning) + biasyp_hwarn{lane_num} = FLOAT ; modulator bias yq in percentage (high warning) + cdshort_hwar{lane_num} = FLOAT ; chromatic dispersion, high granularity, short link in ps/nm (high warning) + cdlong_hwarn{lane_num} = FLOAT ; chromatic dispersion, high granularity, long link in ps/nm (high warning) + dgd_hwarn{lane_num} = FLOAT ; differential group delay in ps (high warning) + sopmd_hwarn{lane_num} = FLOAT ; second order polarization mode dispersion in ps^2 (high warning) + soproc_hwarn{lane_num} = FLOAT ; state of polarization rate of change in krad/s (high warning) + pdl_hwarn{lane_num} = FLOAT ; polarization dependent loss in db (high warning) + osnr_hwarn{lane_num} = FLOAT ; optical signal to noise ratio in db (high warning) + esnr_hwarn{lane_num} = FLOAT ; electrical signal to noise ratio in db (high warning) + cfo_hwarn{lane_num} = FLOAT ; carrier frequency offset in Hz (high warning) + txcurrpower_hwarn{lane_num} = FLOAT ; tx current output power in dbm (high warning) + rxtotpower_hwarn{lane_num} = FLOAT ; rx total power in dbm (high warning) + rxsigpower_hwarn{lane_num} = FLOAT ; rx signal power in dbm (high warning) ``` ##### 2.2.2.4 Transceiver VDM low warning threshold data @@ -500,24 +500,24 @@ lane_num: Represents lane number of the field. The lane number is an integer val errored_frames_curr_host_input_lwarn{lane_num} = FLOAT ; Errored frames current low warning value for host input ;C-CMIS specific fields - biasxi_lwarn = FLOAT ; modulator bias xi in percentage (low warning) - biasxq_lwarn = FLOAT ; modulator bias xq in percentage (low warning) - biasxp_lwarn = FLOAT ; modulator bias xp in percentage (low warning) - biasyi_lwarn = FLOAT ; modulator bias yi in percentage (low warning) - biasyq_lwarn = FLOAT ; modulator bias yq in percentage (low warning) - biasyp_lwarn = FLOAT ; modulator bias yq in percentage (low warning) - cdshort_lwarn = FLOAT ; chromatic dispersion, high granularity, short link in ps/nm (low warning) - cdlong_lwarn = FLOAT ; chromatic dispersion, high granularity, long link in ps/nm (low warning) - dgd_lwarn = FLOAT ; differential group delay in ps (low warning) - sopmd_lwarn = FLOAT ; second order polarization mode dispersion in ps^2 (low warning) - soproc_lwarn = FLOAT ; state of polarization rate of change in krad/s (low warning) - pdl_lwarn = FLOAT ; polarization dependent loss in db (low warning) - osnr_lwarn = FLOAT ; optical signal to noise ratio in db (low warning) - esnr_lwarn = FLOAT ; electrical signal to noise ratio in db (low warning) - cfo_lwarn = FLOAT ; carrier frequency offset in Hz (low warning) - txcurrpower_lwarn = FLOAT ; tx current output power in dbm (low warning) - rxtotpower_lwarn = FLOAT ; rx total power in dbm (low warning) - rxsigpower_lwarn = FLOAT ; rx signal power in dbm (low warning) + biasxi_lwarn{lane_num} = FLOAT ; modulator bias xi in percentage (low warning) + biasxq_lwarn{lane_num} = FLOAT ; modulator bias xq in percentage (low warning) + biasxp_lwarn{lane_num} = FLOAT ; modulator bias xp in percentage (low warning) + biasyi_lwarn{lane_num} = FLOAT ; modulator bias yi in percentage (low warning) + biasyq_lwarn{lane_num} = FLOAT ; modulator bias yq in percentage (low warning) + biasyp_lwarn{lane_num} = FLOAT ; modulator bias yq in percentage (low warning) + cdshort_lwarn{lane_num} = FLOAT ; chromatic dispersion, high granularity, short link in ps/nm (low warning) + cdlong_lwarn{lane_num} = FLOAT ; chromatic dispersion, high granularity, long link in ps/nm (low warning) + dgd_lwarn{lane_num} = FLOAT ; differential group delay in ps (low warning) + sopmd_lwarn{lane_num} = FLOAT ; second order polarization mode dispersion in ps^2 (low warning) + soproc_lwarn{lane_num} = FLOAT ; state of polarization rate of change in krad/s (low warning) + pdl_lwarn{lane_num} = FLOAT ; polarization dependent loss in db (low warning) + osnr_lwarn{lane_num} = FLOAT ; optical signal to noise ratio in db (low warning) + esnr_lwarn{lane_num} = FLOAT ; electrical signal to noise ratio in db (low warning) + cfo_lwarn{lane_num} = FLOAT ; carrier frequency offset in Hz (low warning) + txcurrpower_lwarn{lane_num} = FLOAT ; tx current output power in dbm (low warning) + rxtotpower_lwarn{lane_num} = FLOAT ; rx total power in dbm (low warning) + rxsigpower_lwarn{lane_num} = FLOAT ; rx signal power in dbm (low warning) ``` #### 2.2.3 Transceiver VDM flag data @@ -553,24 +553,24 @@ The `TRANSCEIVER_VDM_HALARM_FLAG` table stores the flag status for the VDM data. errored_frames_curr_host_input_halarm{lane_num} = BOOLEAN ; Errored frames current high alarm flag for host input ;C-CMIS specific fields - biasxi_halarm = BOOLEAN ; modulator bias xi in percentage (high alarm flag) - biasxq_halarm = BOOLEAN ; modulator bias xq in percentage (high alarm flag) - biasxp_halarm = BOOLEAN ; modulator bias xp in percentage (high alarm flag) - biasyi_halarm = BOOLEAN ; modulator bias yi in percentage (high alarm flag) - biasyq_halarm = BOOLEAN ; modulator bias yq in percentage (high alarm flag) - biasyp_halarm = BOOLEAN ; modulator bias yq in percentage (high alarm flag) - cdshort_halarm = BOOLEAN ; chromatic dispersion, high granularity, short link in ps/nm (high alarm flag) - cdlong_halarm = BOOLEAN ; chromatic dispersion, high granularity, long link in ps/nm (high alarm flag) - dgd_halarm = BOOLEAN ; differential group delay in ps (high alarm flag) - sopmd_halarm = BOOLEAN ; second order polarization mode dispersion in ps^2 (high alarm flag) - soproc_halarm = BOOLEAN ; state of polarization rate of change in krad/s (high alarm flag) - pdl_halarm = BOOLEAN ; polarization dependent loss in db (high alarm flag) - osnr_halarm = BOOLEAN ; optical signal to noise ratio in db (high alarm flag) - esnr_halarm = BOOLEAN ; electrical signal to noise ratio in db (high alarm flag) - cfo_halarm = BOOLEAN ; carrier frequency offset in Hz (high alarm flag) - txcurrpower_halarm = BOOLEAN ; tx current output power in dbm (high alarm flag) - rxtotpower_halarm = BOOLEAN ; rx total power in dbm (high alarm flag) - rxsigpower_halarm = BOOLEAN; rx signal power in dbm (high alarm flag) + biasxi_halarm{lane_num} = BOOLEAN ; modulator bias xi in percentage (high alarm flag) + biasxq_halarm{lane_num} = BOOLEAN ; modulator bias xq in percentage (high alarm flag) + biasxp_halarm{lane_num} = BOOLEAN ; modulator bias xp in percentage (high alarm flag) + biasyi_halarm{lane_num} = BOOLEAN ; modulator bias yi in percentage (high alarm flag) + biasyq_halarm{lane_num} = BOOLEAN ; modulator bias yq in percentage (high alarm flag) + biasyp_halarm{lane_num} = BOOLEAN ; modulator bias yq in percentage (high alarm flag) + cdshort_halarm{lane_num} = BOOLEAN ; chromatic dispersion, high granularity, short link in ps/nm (high alarm flag) + cdlong_halarm{lane_num} = BOOLEAN ; chromatic dispersion, high granularity, long link in ps/nm (high alarm flag) + dgd_halarm{lane_num} = BOOLEAN ; differential group delay in ps (high alarm flag) + sopmd_halarm{lane_num} = BOOLEAN ; second order polarization mode dispersion in ps^2 (high alarm flag) + soproc_halarm{lane_num} = BOOLEAN ; state of polarization rate of change in krad/s (high alarm flag) + pdl_halarm{lane_num} = BOOLEAN ; polarization dependent loss in db (high alarm flag) + osnr_halarm{lane_num} = BOOLEAN ; optical signal to noise ratio in db (high alarm flag) + esnr_halarm{lane_num} = BOOLEAN ; electrical signal to noise ratio in db (high alarm flag) + cfo_halarm{lane_num} = BOOLEAN ; carrier frequency offset in Hz (high alarm flag) + txcurrpower_halarm{lane_num} = BOOLEAN ; tx current output power in dbm (high alarm flag) + rxtotpower_halarm{lane_num} = BOOLEAN ; rx total power in dbm (high alarm flag) + rxsigpower_halarm{lane_num} = BOOLEAN; rx signal power in dbm (high alarm flag) ``` lane_num: Represents lane number of the field. The lane number is an integer value that ranges from 1 to 8. @@ -608,24 +608,24 @@ lane_num: Represents lane number of the field. The lane number is an integer val errored_frames_curr_host_input_lalarm{lane_num} = BOOLEAN ; Errored frames current low alarm flag for host input ;C-CMIS specific fields - biasxi_lalarm = BOOLEAN ; modulator bias xi in percentage (low alarm flag) - biasxq_lalarm = BOOLEAN ; modulator bias xq in percentage (low alarm flag) - biasxp_lalarm = BOOLEAN ; modulator bias xp in percentage (low alarm flag) - biasyi_lalarm = BOOLEAN ; modulator bias yi in percentage (low alarm flag) - biasyq_lalarm = BOOLEAN ; modulator bias yq in percentage (low alarm flag) - biasyp_lalarm = BOOLEAN ; modulator bias yq in percentage (low alarm flag) - cdshort_lalarm = BOOLEAN ; chromatic dispersion, high granularity, short link in ps/nm (low alarm flag) - cdlong_lalarm = BOOLEAN ; chromatic dispersion, high granularity, long link in ps/nm (low alarm flag) - dgd_lalarm = BOOLEAN ; differential group delay in ps (low alarm flag) - sopmd_lalarm = BOOLEAN ; second order polarization mode dispersion in ps^2 (low alarm flag) - soproc_lalarm = BOOLEAN ; state of polarization rate of change in krad/s (low alarm flag) - pdl_lalarm = BOOLEAN ; polarization dependent loss in db (low alarm flag) - osnr_lalarm = BOOLEAN ; optical signal to noise ratio in db (low alarm flag) - esnr_lalarm = BOOLEAN ; electrical signal to noise ratio in db (low alarm flag) - cfo_lalarm = BOOLEAN ; carrier frequency offset in Hz (low alarm flag) - txcurrpower_lalarm = BOOLEAN ; tx current output power in dbm (low alarm flag) - rxtotpower_lalarm = BOOLEAN ; rx total power in dbm (low alarm flag) - rxsigpower_lalarm = BOOLEAN; rx signal power in dbm (low alarm flag) + biasxi_lalarm{lane_num} = BOOLEAN ; modulator bias xi in percentage (low alarm flag) + biasxq_lalarm{lane_num} = BOOLEAN ; modulator bias xq in percentage (low alarm flag) + biasxp_lalarm{lane_num} = BOOLEAN ; modulator bias xp in percentage (low alarm flag) + biasyi_lalarm{lane_num} = BOOLEAN ; modulator bias yi in percentage (low alarm flag) + biasyq_lalarm{lane_num} = BOOLEAN ; modulator bias yq in percentage (low alarm flag) + biasyp_lalarm{lane_num} = BOOLEAN ; modulator bias yq in percentage (low alarm flag) + cdshort_lalarm{lane_num} = BOOLEAN ; chromatic dispersion, high granularity, short link in ps/nm (low alarm flag) + cdlong_lalarm{lane_num} = BOOLEAN ; chromatic dispersion, high granularity, long link in ps/nm (low alarm flag) + dgd_lalarm{lane_num} = BOOLEAN ; differential group delay in ps (low alarm flag) + sopmd_lalarm{lane_num} = BOOLEAN ; second order polarization mode dispersion in ps^2 (low alarm flag) + soproc_lalarm{lane_num} = BOOLEAN ; state of polarization rate of change in krad/s (low alarm flag) + pdl_lalarm{lane_num} = BOOLEAN ; polarization dependent loss in db (low alarm flag) + osnr_lalarm{lane_num} = BOOLEAN ; optical signal to noise ratio in db (low alarm flag) + esnr_lalarm{lane_num} = BOOLEAN ; electrical signal to noise ratio in db (low alarm flag) + cfo_lalarm{lane_num} = BOOLEAN ; carrier frequency offset in Hz (low alarm flag) + txcurrpower_lalarm{lane_num} = BOOLEAN ; tx current output power in dbm (low alarm flag) + rxtotpower_lalarm{lane_num} = BOOLEAN ; rx total power in dbm (low alarm flag) + rxsigpower_lalarm{lane_num} = BOOLEAN; rx signal power in dbm (low alarm flag) ``` ##### 2.2.3.3 Transceiver VDM high warning flag data @@ -661,24 +661,24 @@ lane_num: Represents lane number of the field. The lane number is an integer val errored_frames_curr_host_input_hwarn{lane_num} = BOOLEAN ; Errored frames current high warning flag for host input ;C-CMIS specific fields - biasxi_hwarn = BOOLEAN ; modulator bias xi in percentage (high warning flag) - biasxq_hwarn = BOOLEAN ; modulator bias xq in percentage (high warning flag) - biasxp_hwarn = BOOLEAN ; modulator bias xp in percentage (high warning flag) - biasyi_hwarn = BOOLEAN ; modulator bias yi in percentage (high warning flag) - biasyq_hwarn = BOOLEAN ; modulator bias yq in percentage (high warning flag) - biasyp_hwarn = BOOLEAN ; modulator bias yq in percentage (high warning flag) - cdshort_hwarn = BOOLEAN ; chromatic dispersion, high granularity, short link in ps/nm (high warning flag) - cdlong_hwarn = BOOLEAN ; chromatic dispersion, high granularity, long link in ps/nm (high warning flag) - dgd_hwarn = BOOLEAN ; differential group delay in ps (high warning flag) - sopmd_hwarn = BOOLEAN ; second order polarization mode dispersion in ps^2 (high warning flag) - soproc_hwarn = BOOLEAN ; state of polarization rate of change in krad/s (high warning flag) - pdl_hwarn = BOOLEAN ; polarization dependent loss in db (high warning flag) - osnr_hwarn = BOOLEAN ; optical signal to noise ratio in db (high warning flag) - esnr_hwarn = BOOLEAN ; electrical signal to noise ratio in db (high warning flag) - cfo_hwarn = BOOLEAN ; carrier frequency offset in Hz (high warning flag) - txcurrpower_hwarn = BOOLEAN ; tx current output power in dbm (high warning flag) - rxtotpower_hwarn = BOOLEAN ; rx total power in dbm (high warning flag) - rxsigpower_hwarn = BOOLEAN; rx signal power in dbm (high warning flag) + biasxi_hwarn{lane_num} = BOOLEAN ; modulator bias xi in percentage (high warning flag) + biasxq_hwarn{lane_num} = BOOLEAN ; modulator bias xq in percentage (high warning flag) + biasxp_hwarn{lane_num} = BOOLEAN ; modulator bias xp in percentage (high warning flag) + biasyi_hwarn{lane_num} = BOOLEAN ; modulator bias yi in percentage (high warning flag) + biasyq_hwarn{lane_num} = BOOLEAN ; modulator bias yq in percentage (high warning flag) + biasyp_hwarn{lane_num} = BOOLEAN ; modulator bias yq in percentage (high warning flag) + cdshort_hwarn{lane_num} = BOOLEAN ; chromatic dispersion, high granularity, short link in ps/nm (high warning flag) + cdlong_hwarn{lane_num} = BOOLEAN ; chromatic dispersion, high granularity, long link in ps/nm (high warning flag) + dgd_hwarn{lane_num} = BOOLEAN ; differential group delay in ps (high warning flag) + sopmd_hwarn{lane_num} = BOOLEAN ; second order polarization mode dispersion in ps^2 (high warning flag) + soproc_hwarn{lane_num} = BOOLEAN ; state of polarization rate of change in krad/s (high warning flag) + pdl_hwarn{lane_num} = BOOLEAN ; polarization dependent loss in db (high warning flag) + osnr_hwarn{lane_num} = BOOLEAN ; optical signal to noise ratio in db (high warning flag) + esnr_hwarn{lane_num} = BOOLEAN ; electrical signal to noise ratio in db (high warning flag) + cfo_hwarn{lane_num} = BOOLEAN ; carrier frequency offset in Hz (high warning flag) + txcurrpower_hwarn{lane_num} = BOOLEAN ; tx current output power in dbm (high warning flag) + rxtotpower_hwarn{lane_num} = BOOLEAN ; rx total power in dbm (high warning flag) + rxsigpower_hwarn{lane_num} = BOOLEAN; rx signal power in dbm (high warning flag) ``` ##### 2.2.3.4 Transceiver VDM low warning flag data @@ -714,24 +714,24 @@ lane_num: Represents lane number of the field. The lane number is an integer val errored_frames_curr_host_input_lwarn{lane_num} = BOOLEAN ; Errored frames current low warning flag for host input ;C-CMIS specific fields - biasxi_lwarn = BOOLEAN ; modulator bias xi in percentage (low warning flag) - biasxq_lwarn = BOOLEAN ; modulator bias xq in percentage (low warning flag) - biasxp_lwarn = BOOLEAN ; modulator bias xp in percentage (low warning flag) - biasyi_lwarn = BOOLEAN ; modulator bias yi in percentage (low warning flag) - biasyq_lwarn = BOOLEAN ; modulator bias yq in percentage (low warning flag) - biasyp_lwarn = BOOLEAN ; modulator bias yq in percentage (low warning flag) - cdshort_lwarn = BOOLEAN ; chromatic dispersion, high granularity, short link in ps/nm (low warning flag) - cdlong_lwarn = BOOLEAN ; chromatic dispersion, high granularity, long link in ps/nm (low warning flag) - dgd_lwarn = BOOLEAN ; differential group delay in ps (low warning flag) - sopmd_lwarn = BOOLEAN ; second order polarization mode dispersion in ps^2 (low warning flag) - soproc_lwarn = BOOLEAN ; state of polarization rate of change in krad/s (low warning flag) - pdl_lwarn = BOOLEAN ; polarization dependent loss in db (low warning flag) - osnr_lwarn = BOOLEAN ; optical signal to noise ratio in db (low warning flag) - esnr_lwarn = BOOLEAN ; electrical signal to noise ratio in db (low warning flag) - cfo_lwarn = BOOLEAN ; carrier frequency offset in Hz (low warning flag) - txcurrpower_lwarn = BOOLEAN ; tx current output power in dbm (low warning flag) - rxtotpower_lwarn = BOOLEAN ; rx total power in dbm (low warning flag) - rxsigpower_lwarn = BOOLEAN; rx signal power in dbm (low warning flag) + biasxi_lwarn{lane_num} = BOOLEAN ; modulator bias xi in percentage (low warning flag) + biasxq_lwarn{lane_num} = BOOLEAN ; modulator bias xq in percentage (low warning flag) + biasxp_lwarn{lane_num} = BOOLEAN ; modulator bias xp in percentage (low warning flag) + biasyi_lwarn{lane_num} = BOOLEAN ; modulator bias yi in percentage (low warning flag) + biasyq_lwarn{lane_num} = BOOLEAN ; modulator bias yq in percentage (low warning flag) + biasyp_lwarn{lane_num} = BOOLEAN ; modulator bias yq in percentage (low warning flag) + cdshort_lwarn{lane_num} = BOOLEAN ; chromatic dispersion, high granularity, short link in ps/nm (low warning flag) + cdlong_lwarn{lane_num} = BOOLEAN ; chromatic dispersion, high granularity, long link in ps/nm (low warning flag) + dgd_lwarn{lane_num} = BOOLEAN ; differential group delay in ps (low warning flag) + sopmd_lwarn{lane_num} = BOOLEAN ; second order polarization mode dispersion in ps^2 (low warning flag) + soproc_lwarn{lane_num} = BOOLEAN ; state of polarization rate of change in krad/s (low warning flag) + pdl_lwarn{lane_num} = BOOLEAN ; polarization dependent loss in db (low warning flag) + osnr_lwarn{lane_num} = BOOLEAN ; optical signal to noise ratio in db (low warning flag) + esnr_lwarn{lane_num} = BOOLEAN ; electrical signal to noise ratio in db (low warning flag) + cfo_lwarn{lane_num} = BOOLEAN ; carrier frequency offset in Hz (low warning flag) + txcurrpower_lwarn{lane_num} = BOOLEAN ; tx current output power in dbm (low warning flag) + rxtotpower_lwarn{lane_num} = BOOLEAN ; rx total power in dbm (low warning flag) + rxsigpower_lwarn{lane_num} = BOOLEAN; rx signal power in dbm (low warning flag) ``` #### 2.2.4 Transceiver VDM flag change count data @@ -769,24 +769,24 @@ lane_num: Represents lane number of the field. The lane number is an integer val errored_frames_curr_host_input_halarm{lane_num} = INTEGER ; Errored frames current high alarm flag change count for host input ;C-CMIS specific fields - biasxi_halarm = INTEGER ; modulator bias xi in percentage (high alarm flag change count) - biasxq_halarm = INTEGER ; modulator bias xq in percentage (high alarm flag change count) - biasxp_halarm = INTEGER ; modulator bias xp in percentage (high alarm flag change count) - biasyi_halarm = INTEGER ; modulator bias yi in percentage (high alarm flag change count) - biasyq_halarm = INTEGER ; modulator bias yq in percentage (high alarm flag change count) - biasyp_halarm = INTEGER ; modulator bias yq in percentage (high alarm flag change count) - cdshort_halarm = INTEGER ; chromatic dispersion, high granularity, short link in ps/nm (high alarm flag change count) - cdlong_halarm = INTEGER ; chromatic dispersion, high granularity, long link in ps/nm (high alarm flag change count) - dgd_halarm = INTEGER ; differential group delay in ps (high alarm flag change count) - sopmd_halarm = INTEGER ; second order polarization mode dispersion in ps^2 (high alarm flag change count) - soproc_halarm = INTEGER ; state of polarization rate of change in krad/s (high alarm flag change count) - pdl_halarm = INTEGER ; polarization dependent loss in db (high alarm flag change count) - osnr_halarm = INTEGER ; optical signal to noise ratio in db (high alarm flag change count) - esnr_halarm = INTEGER ; electrical signal to noise ratio in db (high alarm flag change count) - cfo_halarm = INTEGER ; carrier frequency offset in Hz (high alarm flag change count) - txcurrpower_halarm = INTEGER ; tx current output power in dbm (high alarm flag change count) - rxtotpower_halarm = INTEGER ; rx total power in dbm (high alarm flag change count) - rxsigpower_halarm = INTEGER; rx signal power in dbm (high alarm flag change count) + biasxi_halarm{lane_num} = INTEGER ; modulator bias xi in percentage (high alarm flag change count) + biasxq_halarm{lane_num} = INTEGER ; modulator bias xq in percentage (high alarm flag change count) + biasxp_halarm{lane_num} = INTEGER ; modulator bias xp in percentage (high alarm flag change count) + biasyi_halarm{lane_num} = INTEGER ; modulator bias yi in percentage (high alarm flag change count) + biasyq_halarm{lane_num} = INTEGER ; modulator bias yq in percentage (high alarm flag change count) + biasyp_halarm{lane_num} = INTEGER ; modulator bias yq in percentage (high alarm flag change count) + cdshort_halarm{lane_num} = INTEGER ; chromatic dispersion, high granularity, short link in ps/nm (high alarm flag change count) + cdlong_halarm{lane_num} = INTEGER ; chromatic dispersion, high granularity, long link in ps/nm (high alarm flag change count) + dgd_halarm{lane_num} = INTEGER ; differential group delay in ps (high alarm flag change count) + sopmd_halarm{lane_num} = INTEGER ; second order polarization mode dispersion in ps^2 (high alarm flag change count) + soproc_halarm{lane_num} = INTEGER ; state of polarization rate of change in krad/s (high alarm flag change count) + pdl_halarm{lane_num} = INTEGER ; polarization dependent loss in db (high alarm flag change count) + osnr_halarm{lane_num} = INTEGER ; optical signal to noise ratio in db (high alarm flag change count) + esnr_halarm{lane_num} = INTEGER ; electrical signal to noise ratio in db (high alarm flag change count) + cfo_halarm{lane_num} = INTEGER ; carrier frequency offset in Hz (high alarm flag change count) + txcurrpower_halarm{lane_num} = INTEGER ; tx current output power in dbm (high alarm flag change count) + rxtotpower_halarm{lane_num} = INTEGER ; rx total power in dbm (high alarm flag change count) + rxsigpower_halarm{lane_num} = INTEGER; rx signal power in dbm (high alarm flag change count) ``` ##### 2.2.4.2 Transceiver VDM low alarm flag change count data @@ -822,24 +822,24 @@ lane_num: Represents lane number of the field. The lane number is an integer val errored_frames_curr_host_input_lalarm{lane_num} = INTEGER ; Errored frames current low alarm flag change count for host input ;C-CMIS specific fields - biasxi_lalarm = INTEGER ; modulator bias xi in percentage (low alarm flag change count) - biasxq_lalarm = INTEGER ; modulator bias xq in percentage (low alarm flag change count) - biasxp_lalarm = INTEGER ; modulator bias xp in percentage (low alarm flag change count) - biasyi_lalarm = INTEGER ; modulator bias yi in percentage (low alarm flag change count) - biasyq_lalarm = INTEGER ; modulator bias yq in percentage (low alarm flag change count) - biasyp_lalarm = INTEGER ; modulator bias yq in percentage (low alarm flag change count) - cdshort_lalarm = INTEGER ; chromatic dispersion, low granularity, short link in ps/nm (low alarm flag change count) - cdlong_lalarm = INTEGER ; chromatic dispersion, low granularity, long link in ps/nm (low alarm flag change count) - dgd_lalarm = INTEGER ; differential group delay in ps (low alarm flag change count) - sopmd_lalarm = INTEGER ; second order polarization mode dispersion in ps^2 (low alarm flag change count) - soproc_lalarm = INTEGER ; state of polarization rate of change in krad/s (low alarm flag change count) - pdl_lalarm = INTEGER ; polarization dependent loss in db (low alarm flag change count) - osnr_lalarm = INTEGER ; optical signal to noise ratio in db (low alarm flag change count) - esnr_lalarm = INTEGER ; electrical signal to noise ratio in db (low alarm flag change count) - cfo_lalarm = INTEGER ; carrier frequency offset in Hz (low alarm flag change count) - txcurrpower_lalarm = INTEGER ; tx current output power in dbm (low alarm flag change count) - rxtotpower_lalarm = INTEGER ; rx total power in dbm (low alarm flag change count) - rxsigpower_lalarm = INTEGER; rx signal power in dbm (low alarm flag change count) + biasxi_lalarm{lane_num} = INTEGER ; modulator bias xi in percentage (low alarm flag change count) + biasxq_lalarm{lane_num} = INTEGER ; modulator bias xq in percentage (low alarm flag change count) + biasxp_lalarm{lane_num} = INTEGER ; modulator bias xp in percentage (low alarm flag change count) + biasyi_lalarm{lane_num} = INTEGER ; modulator bias yi in percentage (low alarm flag change count) + biasyq_lalarm{lane_num} = INTEGER ; modulator bias yq in percentage (low alarm flag change count) + biasyp_lalarm{lane_num} = INTEGER ; modulator bias yq in percentage (low alarm flag change count) + cdshort_lalarm{lane_num} = INTEGER ; chromatic dispersion, low granularity, short link in ps/nm (low alarm flag change count) + cdlong_lalarm{lane_num} = INTEGER ; chromatic dispersion, low granularity, long link in ps/nm (low alarm flag change count) + dgd_lalarm{lane_num} = INTEGER ; differential group delay in ps (low alarm flag change count) + sopmd_lalarm{lane_num} = INTEGER ; second order polarization mode dispersion in ps^2 (low alarm flag change count) + soproc_lalarm{lane_num} = INTEGER ; state of polarization rate of change in krad/s (low alarm flag change count) + pdl_lalarm{lane_num} = INTEGER ; polarization dependent loss in db (low alarm flag change count) + osnr_lalarm{lane_num} = INTEGER ; optical signal to noise ratio in db (low alarm flag change count) + esnr_lalarm{lane_num} = INTEGER ; electrical signal to noise ratio in db (low alarm flag change count) + cfo_lalarm{lane_num} = INTEGER ; carrier frequency offset in Hz (low alarm flag change count) + txcurrpower_lalarm{lane_num} = INTEGER ; tx current output power in dbm (low alarm flag change count) + rxtotpower_lalarm{lane_num} = INTEGER ; rx total power in dbm (low alarm flag change count) + rxsigpower_lalarm{lane_num} = INTEGER; rx signal power in dbm (low alarm flag change count) ``` ##### 2.2.4.3 Transceiver VDM high warning flag change count data @@ -983,24 +983,24 @@ lane_num: Represents lane number of the field. The lane number is an integer val errored_frames_curr_host_input_halarm{lane_num} = STR ; Errored frames current high alarm last set time for host input ;C-CMIS specific fields - biasxi_halarm = STR ; modulator bias xi in percentage (high alarm last set time) - biasxq_halarm = STR ; modulator bias xq in percentage (high alarm last set time) - biasxp_halarm = STR ; modulator bias xp in percentage (high alarm last set time) - biasyi_halarm = STR ; modulator bias yi in percentage (high alarm last set time) - biasyq_halarm = STR ; modulator bias yq in percentage (high alarm last set time) - biasyp_halarm = STR ; modulator bias yq in percentage (high alarm last set time) - cdshort_halarm = STR ; chromatic dispersion, high granularity, short link in ps/nm (high alarm last set time) - cdlong_halarm = STR ; chromatic dispersion, high granularity, long link in ps/nm (high alarm last set time) - dgd_halarm = STR ; differential group delay in ps (high alarm last set time) - sopmd_halarm = STR ; second order polarization mode dispersion in ps^2 (high alarm last set time) - soproc_halarm = STR ; state of polarization rate of change in krad/s (high alarm last set time) - pdl_halarm = STR ; polarization dependent loss in db (high alarm last set time) - osnr_halarm = STR ; optical signal to noise ratio in db (high alarm last set time) - esnr_halarm = STR ; electrical signal to noise ratio in db (high alarm last set time) - cfo_halarm = STR ; carrier frequency offset in Hz (high alarm last set time) - txcurrpower_halarm = STR ; tx current output power in dbm (high alarm last set time) - rxtotpower_halarm = STR ; rx total power in dbm (high alarm last set time) - rxsigpower_halarm = STR; rx signal power in dbm (high alarm last set time) + biasxi_halarm{lane_num} = STR ; modulator bias xi in percentage (high alarm last set time) + biasxq_halarm{lane_num} = STR ; modulator bias xq in percentage (high alarm last set time) + biasxp_halarm{lane_num} = STR ; modulator bias xp in percentage (high alarm last set time) + biasyi_halarm{lane_num} = STR ; modulator bias yi in percentage (high alarm last set time) + biasyq_halarm{lane_num} = STR ; modulator bias yq in percentage (high alarm last set time) + biasyp_halarm{lane_num} = STR ; modulator bias yq in percentage (high alarm last set time) + cdshort_halarm{lane_num} = STR ; chromatic dispersion, high granularity, short link in ps/nm (high alarm last set time) + cdlong_halarm{lane_num} = STR ; chromatic dispersion, high granularity, long link in ps/nm (high alarm last set time) + dgd_halarm{lane_num} = STR ; differential group delay in ps (high alarm last set time) + sopmd_halarm{lane_num} = STR ; second order polarization mode dispersion in ps^2 (high alarm last set time) + soproc_halarm{lane_num} = STR ; state of polarization rate of change in krad/s (high alarm last set time) + pdl_halarm{lane_num} = STR ; polarization dependent loss in db (high alarm last set time) + osnr_halarm{lane_num} = STR ; optical signal to noise ratio in db (high alarm last set time) + esnr_halarm{lane_num} = STR ; electrical signal to noise ratio in db (high alarm last set time) + cfo_halarm{lane_num} = STR ; carrier frequency offset in Hz (high alarm last set time) + txcurrpower_halarm{lane_num} = STR ; tx current output power in dbm (high alarm last set time) + rxtotpower_halarm{lane_num} = STR ; rx total power in dbm (high alarm last set time) + rxsigpower_halarm{lane_num} = STR; rx signal power in dbm (high alarm last set time) ``` ##### 2.2.5.2 Transceiver VDM low alarm flag time set data @@ -1036,24 +1036,24 @@ lane_num: Represents lane number of the field. The lane number is an integer val errored_frames_curr_host_input_lalarm{lane_num} = STR ; Errored frames current low alarm last set time for host input ;C-CMIS specific fields - biasxi_lalarm = STR ; modulator bias xi in percentage (low alarm last set time) - biasxq_lalarm = STR ; modulator bias xq in percentage (low alarm last set time) - biasxp_lalarm = STR ; modulator bias xp in percentage (low alarm last set time) - biasyi_lalarm = STR ; modulator bias yi in percentage (low alarm last set time) - biasyq_lalarm = STR ; modulator bias yq in percentage (low alarm last set time) - biasyp_lalarm = STR ; modulator bias yq in percentage (low alarm last set time) - cdshort_lalarm = STR ; chromatic dispersion, low granularity, short link in ps/nm (low alarm last set time) - cdlong_lalarm = STR ; chromatic dispersion, low granularity, long link in ps/nm (low alarm last set time) - dgd_lalarm = STR ; differential group delay in ps (low alarm last set time) - sopmd_lalarm = STR ; second order polarization mode dispersion in ps^2 (low alarm last set time) - soproc_lalarm = STR ; state of polarization rate of change in krad/s (low alarm last set time) - pdl_lalarm = STR ; polarization dependent loss in db (low alarm last set time) - osnr_lalarm = STR ; optical signal to noise ratio in db (low alarm last set time) - esnr_lalarm = STR ; electrical signal to noise ratio in db (low alarm last set time) - cfo_lalarm = STR ; carrier frequency offset in Hz (low alarm last set time) - txcurrpower_lalarm = STR ; tx current output power in dbm (low alarm last set time) - rxtotpower_lalarm = STR ; rx total power in dbm (low alarm last set time) - rxsigpower_lalarm = STR; rx signal power in dbm (low alarm last set time) + biasxi_lalarm{lane_num} = STR ; modulator bias xi in percentage (low alarm last set time) + biasxq_lalarm{lane_num} = STR ; modulator bias xq in percentage (low alarm last set time) + biasxp_lalarm{lane_num} = STR ; modulator bias xp in percentage (low alarm last set time) + biasyi_lalarm{lane_num} = STR ; modulator bias yi in percentage (low alarm last set time) + biasyq_lalarm{lane_num} = STR ; modulator bias yq in percentage (low alarm last set time) + biasyp_lalarm{lane_num} = STR ; modulator bias yq in percentage (low alarm last set time) + cdshort_lalarm{lane_num} = STR ; chromatic dispersion, low granularity, short link in ps/nm (low alarm last set time) + cdlong_lalarm{lane_num} = STR ; chromatic dispersion, low granularity, long link in ps/nm (low alarm last set time) + dgd_lalarm{lane_num} = STR ; differential group delay in ps (low alarm last set time) + sopmd_lalarm{lane_num} = STR ; second order polarization mode dispersion in ps^2 (low alarm last set time) + soproc_lalarm{lane_num} = STR ; state of polarization rate of change in krad/s (low alarm last set time) + pdl_lalarm{lane_num} = STR ; polarization dependent loss in db (low alarm last set time) + osnr_lalarm{lane_num} = STR ; optical signal to noise ratio in db (low alarm last set time) + esnr_lalarm{lane_num} = STR ; electrical signal to noise ratio in db (low alarm last set time) + cfo_lalarm{lane_num} = STR ; carrier frequency offset in Hz (low alarm last set time) + txcurrpower_lalarm{lane_num} = STR ; tx current output power in dbm (low alarm last set time) + rxtotpower_lalarm{lane_num} = STR ; rx total power in dbm (low alarm last set time) + rxsigpower_lalarm{lane_num} = STR; rx signal power in dbm (low alarm last set time) ``` ##### 2.2.5.3 Transceiver VDM high warning flag time set data @@ -1197,24 +1197,24 @@ lane_num: Represents lane number of the field. The lane number is an integer val errored_frames_curr_host_input_halarm{lane_num} = STR ; Errored frames current high alarm last clear time for host input ;C-CMIS specific fields - biasxi_halarm = STR ; modulator bias xi in percentage (high alarm last clear time) - biasxq_halarm = STR ; modulator bias xq in percentage (high alarm last clear time) - biasxp_halarm = STR ; modulator bias xp in percentage (high alarm last clear time) - biasyi_halarm = STR ; modulator bias yi in percentage (high alarm last clear time) - biasyq_halarm = STR ; modulator bias yq in percentage (high alarm last clear time) - biasyp_halarm = STR ; modulator bias yq in percentage (high alarm last clear time) - cdshort_halarm = STR ; chromatic dispersion, high granularity, short link in ps/nm (high alarm last clear time) - cdlong_halarm = STR ; chromatic dispersion, high granularity, long link in ps/nm (high alarm last clear time) - dgd_halarm = STR ; differential group delay in ps (high alarm last clear time) - sopmd_halarm = STR ; second order polarization mode dispersion in ps^2 (high alarm last clear time) - soproc_halarm = STR ; state of polarization rate of change in krad/s (high alarm last clear time) - pdl_halarm = STR ; polarization dependent loss in db (high alarm last clear time) - osnr_halarm = STR ; optical signal to noise ratio in db (high alarm last clear time) - esnr_halarm = STR ; electrical signal to noise ratio in db (high alarm last clear time) - cfo_halarm = STR ; carrier frequency offset in Hz (high alarm last clear time) - txcurrpower_halarm = STR ; tx current output power in dbm (high alarm last clear time) - rxtotpower_halarm = STR ; rx total power in dbm (high alarm last clear time) - rxsigpower_halarm = STR; rx signal power in dbm (high alarm last clear time) + biasxi_halarm{lane_num} = STR ; modulator bias xi in percentage (high alarm last clear time) + biasxq_halarm{lane_num} = STR ; modulator bias xq in percentage (high alarm last clear time) + biasxp_halarm{lane_num} = STR ; modulator bias xp in percentage (high alarm last clear time) + biasyi_halarm{lane_num} = STR ; modulator bias yi in percentage (high alarm last clear time) + biasyq_halarm{lane_num} = STR ; modulator bias yq in percentage (high alarm last clear time) + biasyp_halarm{lane_num} = STR ; modulator bias yq in percentage (high alarm last clear time) + cdshort_halarm{lane_num} = STR ; chromatic dispersion, high granularity, short link in ps/nm (high alarm last clear time) + cdlong_halarm{lane_num} = STR ; chromatic dispersion, high granularity, long link in ps/nm (high alarm last clear time) + dgd_halarm{lane_num} = STR ; differential group delay in ps (high alarm last clear time) + sopmd_halarm{lane_num} = STR ; second order polarization mode dispersion in ps^2 (high alarm last clear time) + soproc_halarm{lane_num} = STR ; state of polarization rate of change in krad/s (high alarm last clear time) + pdl_halarm{lane_num} = STR ; polarization dependent loss in db (high alarm last clear time) + osnr_halarm{lane_num} = STR ; optical signal to noise ratio in db (high alarm last clear time) + esnr_halarm{lane_num} = STR ; electrical signal to noise ratio in db (high alarm last clear time) + cfo_halarm{lane_num} = STR ; carrier frequency offset in Hz (high alarm last clear time) + txcurrpower_halarm{lane_num} = STR ; tx current output power in dbm (high alarm last clear time) + rxtotpower_halarm{lane_num} = STR ; rx total power in dbm (high alarm last clear time) + rxsigpower_halarm{lane_num} = STR; rx signal power in dbm (high alarm last clear time) ``` ##### 2.2.6.2 Transceiver VDM low alarm flag time clear data @@ -1250,24 +1250,24 @@ lane_num: Represents lane number of the field. The lane number is an integer val errored_frames_curr_host_input_lalarm{lane_num} = STR ; Errored frames current low alarm last clear time for host input ;C-CMIS specific fields - biasxi_lalarm = STR ; modulator bias xi in percentage (low alarm last clear time) - biasxq_lalarm = STR ; modulator bias xq in percentage (low alarm last clear time) - biasxp_lalarm = STR ; modulator bias xp in percentage (low alarm last clear time) - biasyi_lalarm = STR ; modulator bias yi in percentage (low alarm last clear time) - biasyq_lalarm = STR ; modulator bias yq in percentage (low alarm last clear time) - biasyp_lalarm = STR ; modulator bias yq in percentage (low alarm last clear time) - cdshort_lalarm = STR ; chromatic dispersion, low granularity, short link in ps/nm (low alarm last clear time) - cdlong_lalarm = STR ; chromatic dispersion, low granularity, long link in ps/nm (low alarm last clear time) - dgd_lalarm = STR ; differential group delay in ps (low alarm last clear time) - sopmd_lalarm = STR ; second order polarization mode dispersion in ps^2 (low alarm last clear time) - soproc_lalarm = STR ; state of polarization rate of change in krad/s (low alarm last clear time) - pdl_lalarm = STR ; polarization dependent loss in db (low alarm last clear time) - osnr_lalarm = STR ; optical signal to noise ratio in db (low alarm last clear time) - esnr_lalarm = STR ; electrical signal to noise ratio in db (low alarm last clear time) - cfo_lalarm = STR ; carrier frequency offset in Hz (low alarm last clear time) - txcurrpower_lalarm = STR ; tx current output power in dbm (low alarm last clear time) - rxtotpower_lalarm = STR ; rx total power in dbm (low alarm last clear time) - rxsigpower_lalarm = STR; rx signal power in dbm (low alarm last clear time) + biasxi_lalarm{lane_num} = STR ; modulator bias xi in percentage (low alarm last clear time) + biasxq_lalarm{lane_num} = STR ; modulator bias xq in percentage (low alarm last clear time) + biasxp_lalarm{lane_num} = STR ; modulator bias xp in percentage (low alarm last clear time) + biasyi_lalarm{lane_num} = STR ; modulator bias yi in percentage (low alarm last clear time) + biasyq_lalarm{lane_num} = STR ; modulator bias yq in percentage (low alarm last clear time) + biasyp_lalarm{lane_num} = STR ; modulator bias yq in percentage (low alarm last clear time) + cdshort_lalarm{lane_num} = STR ; chromatic dispersion, low granularity, short link in ps/nm (low alarm last clear time) + cdlong_lalarm{lane_num} = STR ; chromatic dispersion, low granularity, long link in ps/nm (low alarm last clear time) + dgd_lalarm{lane_num} = STR ; differential group delay in ps (low alarm last clear time) + sopmd_lalarm{lane_num} = STR ; second order polarization mode dispersion in ps^2 (low alarm last clear time) + soproc_lalarm{lane_num} = STR ; state of polarization rate of change in krad/s (low alarm last clear time) + pdl_lalarm{lane_num} = STR ; polarization dependent loss in db (low alarm last clear time) + osnr_lalarm{lane_num} = STR ; optical signal to noise ratio in db (low alarm last clear time) + esnr_lalarm{lane_num} = STR ; electrical signal to noise ratio in db (low alarm last clear time) + cfo_lalarm{lane_num} = STR ; carrier frequency offset in Hz (low alarm last clear time) + txcurrpower_lalarm{lane_num} = STR ; tx current output power in dbm (low alarm last clear time) + rxtotpower_lalarm{lane_num} = STR ; rx total power in dbm (low alarm last clear time) + rxsigpower_lalarm{lane_num} = STR; rx signal power in dbm (low alarm last clear time) ``` ##### 2.2.6.3 Transceiver VDM high warning flag time clear data @@ -1570,69 +1570,67 @@ This CLI shows the transceiver DOM and threshold values for a given port. ```plaintext CLI output format: -LX - Represents the data for the lane number X Current System Time: Day Mon DD HH:MM:SS YYYY Update interval: SS seconds Last updated: Day Mon DD HH:MM:SS YYYY - High Alarm High Warning Low Warning Low Alarm - Paramter_Name Threshold Threshold Threshold Threshold -Port (Unit) (Unit) (Unit) (Unit) (Unit) ------------ --------------- -------- -------- -------- -------- + High Alarm High Warning Low Warning Low Alarm + Paramter_Name Threshold Threshold Threshold Threshold +Port Lane (Unit) (Unit) (Unit) (Unit) (Unit) +----------- ----- --------------- -------- -------- -------- -------- Example: admin@sonic#show interfaces transceiver dom Ethernet1 -LX - Represents the data for the lane number X Current System Time: Wed Oct 17 03:46:41 2024 Update interval: 10 seconds Last updated: Wed Oct 17 03:46:41 2024 - High Alarm High Warning Low Warning Low Alarm - Temperature Threshold Threshold Threshold Threshold -Port (Celsius) (Celsius) (Celsius) (Celsius) (Celsius) ------------ --------------- -------- -------- -------- -------- -Ethernet1 50 90 80 -10 -20 - High Alarm High Warning Low Warning Low Alarm - Voltage Threshold Threshold Threshold Threshold -Port (Volts) (Volts) (Volts) (Volts) (Volts) ------------ --------------- -------- -------- -------- -------- -Ethernet1 3.295 3.6 3.465 3.135 3.105 - Tx Bias High Alarm High Warning Low Warning Low Alarm - Current Threshold Threshold Threshold Threshold -Port (mA) (mA) (mA) (mA) (mA) ------------ --------------- -------- -------- -------- -------- -Ethernet1 L1 - 106.952 340.0 320.0 60.0 50.0 - L2 - 106.952 340.0 320.0 60.0 50.0 - L3 - 106.952 340.0 320.0 60.0 50.0 - L4 - 106.952 340.0 320.0 60.0 50.0 - L5 - 106.952 340.0 320.0 60.0 50.0 - L6 - 106.952 340.0 320.0 60.0 50.0 - L7 - 106.952 340.0 320.0 60.0 50.0 - L8 - 106.952 340.0 320.0 60.0 50.0 - High Alarm High Warning Low Warning Low Alarm - TX Power Threshold Threshold Threshold Threshold -Port (dBm) (dBm) (dBm) (dBm) (dBm) ------------ --------------- -------- -------- -------- -------- -Ethernet1 L1 - 2.929 6.0 5.0 -10 -20.202 - L2 - 2.929 6.0 5.0 -10 -20.202 - L3 - 2.929 6.0 5.0 -10 -20.202 - L4 - 2.929 6.0 5.0 -10 -20.202 - L5 - 2.929 6.0 5.0 -10 -20.202 - L6 - 2.929 6.0 5.0 -10 -20.202 - L7 - 2.929 6.0 5.0 -10 -20.202 - L8 - 2.929 6.0 5.0 -10 -20.202 - High Alarm High Warning Low Warning Low Alarm - RX Power Threshold Threshold Threshold Threshold -Port (dBm) (dBm) (dBm) (dBm) (dBm) ------------ --------------- -------- -------- -------- -------- -Ethernet1 L1 - 2.01 4.5 3.0 -3.903 -4.903 - L2 - 2.01 4.5 3.0 -3.903 -4.903 - L3 - 2.01 4.5 3.0 -3.903 -4.903 - L4 - 2.01 4.5 3.0 -3.903 -4.903 - L5 - 2.01 4.5 3.0 -3.903 -4.903 - L6 - 2.01 4.5 3.0 -3.903 -4.903 - L7 - 2.01 4.5 3.0 -3.903 -4.903 - L8 - 2.01 4.5 3.0 -3.903 -4.903 + High Alarm High Warning Low Warning Low Alarm + Temperature Threshold Threshold Threshold Threshold +Port Lane (Celsius) (Celsius) (Celsius) (Celsius) (Celsius) +----------- ----- --------------- -------- -------- -------- -------- +Ethernet1 N/A 50 90 80 -10 -20 + High Alarm High Warning Low Warning Low Alarm + Temperature Threshold Threshold Threshold Threshold +Port Lane (Celsius) (Celsius) (Celsius) (Celsius) (Celsius) +----------- ----- --------------- -------- -------- -------- -------- +Ethernet1 N/A 3.295 3.6 3.465 3.135 3.105 + Tx Bias High Alarm High Warning Low Warning Low Alarm + Current Threshold Threshold Threshold Threshold +Port Lane (mA) (mA) (mA) (mA) (mA) +----------- ----- --------------- -------- -------- -------- -------- +Ethernet1 1 106.952 340.0 320.0 60.0 50.0 + 2 106.952 340.0 320.0 60.0 50.0 + 3 106.952 340.0 320.0 60.0 50.0 + 4 106.952 340.0 320.0 60.0 50.0 + 5 106.952 340.0 320.0 60.0 50.0 + 6 106.952 340.0 320.0 60.0 50.0 + 7 106.952 340.0 320.0 60.0 50.0 + 8 106.952 340.0 320.0 60.0 50.0 + High Alarm High Warning Low Warning Low Alarm + TX Power Threshold Threshold Threshold Threshold +Port Lane (dBm) (dBm) (dBm) (dBm) (dBm) +----------- ----- --------------- -------- -------- -------- -------- +Ethernet1 1 2.929 6.0 5.0 -10 -20.202 + 2 2.929 6.0 5.0 -10 -20.202 + 3 2.929 6.0 5.0 -10 -20.202 + 4 2.929 6.0 5.0 -10 -20.202 + 5 2.929 6.0 5.0 -10 -20.202 + 6 2.929 6.0 5.0 -10 -20.202 + 7 2.929 6.0 5.0 -10 -20.202 + 8 2.929 6.0 5.0 -10 -20.202 + High Alarm High Warning Low Warning Low Alarm + RX Power Threshold Threshold Threshold Threshold +Port Lane (dBm) (dBm) (dBm) (dBm) (dBm) +----------- ----- --------------- -------- -------- -------- -------- +Ethernet1 1 2.01 4.5 3.0 -3.903 -4.903 + 2 2.01 4.5 3.0 -3.903 -4.903 + 3 2.01 4.5 3.0 -3.903 -4.903 + 4 2.01 4.5 3.0 -3.903 -4.903 + 5 2.01 4.5 3.0 -3.903 -4.903 + 6 2.01 4.5 3.0 -3.903 -4.903 + 7 2.01 4.5 3.0 -3.903 -4.903 + 8 2.01 4.5 3.0 -3.903 -4.903 High Alarm High Warning Low Warning Low Alarm Laser Temp Threshold Threshold Threshold Threshold Port (Celsius) (Celsius) (Celsius) (Celsius) (Celsius) @@ -1660,7 +1658,6 @@ This CLI shows the transceiver DOM flags for a given port. ```plaintext CLI output format: -LX - Represents the data for the lane number X Current System Time: Day Mon DD HH:MM:SS YYYY Update interval: SS seconds Last updated: Day Mon DD HH:MM:SS YYYY @@ -1673,7 +1670,6 @@ Port Parameter_Name Last Clear Time Last Clear Time Example: admin@sonic#show interfaces transceiver dom flag Ethernet1 -LX - Represents the data for the lane number X Current System Time: Wed Oct 17 03:46:41 2024 Update interval: 10 seconds Last updated: Wed Oct 17 03:46:41 2024 @@ -1693,99 +1689,99 @@ Ethernet1 Voltage False/ False/ never/ never/ never/ never/ never never never never Ethernet1 Tx Bias Current False/ False/ False/ False/ - L1 0/ 0/ 0/ 0/ + Lane 1 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never never never Ethernet1 Tx Bias Current False/ False/ False/ False/ - L2 0/ 0/ 0/ 0/ + Lane 2 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never never never Ethernet1 Tx Bias Current False/ False/ False/ False/ - L3 0/ 0/ 0/ 0/ + Lane 3 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never never never Ethernet1 Tx Bias Current False/ False/ False/ False/ - L4 0/ 0/ 0/ 0/ + Lane 4 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never never never Ethernet1 Tx Bias Current False/ False/ False/ False/ - L5 0/ 0/ 0/ 0/ + Lane 5 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never never never Ethernet1 Tx Bias Current False/ False/ False/ False/ - L6 0/ 0/ 0/ 0/ + Lane 6 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never never never Ethernet1 Tx Bias Current False/ False/ False/ False/ - L7 0/ 0/ 0/ 0/ + Lane 7 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never never never Ethernet1 Tx Bias Current False/ False/ False/ False/ - L8 0/ 0/ 0/ 0/ + Lane 8 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never never never Ethernet1 Tx Power False/ False/ False/ False/ - L1 0/ 0/ 0/ 0/ + Lane 1 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never never never Ethernet1 Tx Power False/ False/ False/ False/ - L2 0/ 0/ 0/ 0/ + Lane 2 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never never never Ethernet1 Tx Power False/ False/ False/ False/ - L3 0/ 0/ 0/ 0/ + Lane 3 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never never never Ethernet1 Tx Power False/ False/ False/ False/ - L4 0/ 0/ 0/ 0/ + Lane 4 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never never never Ethernet1 Tx Power False/ False/ False/ False/ - L5 0/ 0/ 0/ 0/ + Lane 5 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never never never Ethernet1 Tx Power False/ False/ False/ False/ - L6 0/ 0/ 0/ 0/ + Lane 6 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never never never Ethernet1 Tx Power False/ False/ False/ False/ - L7 0/ 0/ 0/ 0/ + Lane 7 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never never never Ethernet1 Tx Power False/ False/ False/ False/ - L8 0/ 0/ 0/ 0/ + Lane 8 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never never never Ethernet1 Rx Power False/ False/ False/ False/ - L1 0/ 0/ 0/ 0/ + Lane 1 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never never never Ethernet1 Rx Power False/ False/ False/ False/ - L2 0/ 0/ 0/ 0/ + Lane 2 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never never never Ethernet1 Rx Power False/ False/ False/ False/ - L3 0/ 0/ 0/ 0/ + Lane 3 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never never never Ethernet1 Rx Power False/ False/ False/ False/ - L4 0/ 0/ 0/ 0/ + Lane 4 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never never never Ethernet1 Rx Power False/ False/ False/ False/ - L5 0/ 0/ 0/ 0/ + Lane 5 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never never never Ethernet1 Rx Power False/ False/ False/ False/ - L6 0/ 0/ 0/ 0/ + Lane 6 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never never never Ethernet1 Rx Power False/ False/ False/ False/ - L7 0/ 0/ 0/ 0/ + Lane 7 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never never never Ethernet1 Rx Power False/ False/ False/ False/ - L8 0/ 0/ 0/ 0/ + Lane 8 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never never never Ethernet1 Laser False/ False/ False/ False/ @@ -1803,7 +1799,6 @@ The CLI will show VDM data for observables which are supported by the module ven ```plaintext CLI output format: -LX - Represents the data for the lane number X Current System Time: Day Mon DD HH:MM:SS YYYY Update interval: SS seconds Last updated: Day Mon DD HH:MM:SS YYYY @@ -1814,34 +1809,33 @@ Port (Unit) (Unit) (Unit) (Unit) (Unit) Example: admin@sonic#show interfaces transceiver vdm Ethernet1 -LX - Represents the data for the lane number X Current System Time: Wed Oct 17 03:46:41 2024 Update interval: 10 seconds Last updated: Wed Oct 17 03:46:41 2024 - eSNR Media High Alarm High Warning Low Warning Low Alarm - Input Threshold Threshold Threshold Threshold -Port (dB) (dB) (dB) (dB) (dB) ------------ --------------- -------- -------- -------- -------- -Ethernet1 L1 - 23.480468 0 0 0 0 - L2 - 23.480468 0 0 0 0 - L3 - 23.480468 0 0 0 0 - L4 - 23.480468 0 0 0 0 - L5 - 23.480468 0 0 0 0 - L6 - 23.480468 0 0 0 0 - L7 - 23.480468 0 0 0 0 - L8 - 23.480468 0 0 0 0 - eSNR Media High Alarm High Warning Low Warning Low Alarm - Output Threshold Threshold Threshold Threshold -Port (dB) (dB) (dB) (dB) (dB) ------------ --------------- -------- -------- -------- -------- -Ethernet1 L1 - 23.480468 0 0 0 0 - L2 - 23.480468 0 0 0 0 - L3 - 23.480468 0 0 0 0 - L4 - 23.480468 0 0 0 0 - L5 - 23.480468 0 0 0 0 - L6 - 23.480468 0 0 0 0 - L7 - 23.480468 0 0 0 0 - L8 - 23.480468 0 0 0 0 + eSNR Media High Alarm High Warning Low Warning Low Alarm + Input Threshold Threshold Threshold Threshold +Port Lane (dB) (dB) (dB) (dB) (dB) +----------- ----- --------------- -------- -------- -------- -------- +Ethernet1 1 23.480468 0 0 0 0 + 2 23.480468 0 0 0 0 + 3 23.480468 0 0 0 0 + 4 23.480468 0 0 0 0 + 5 23.480468 0 0 0 0 + 6 23.480468 0 0 0 0 + 7 23.480468 0 0 0 0 + 8 23.480468 0 0 0 0 + eSNR Media High Alarm High Warning Low Warning Low Alarm + Output Threshold Threshold Threshold Threshold +Port Lane (dB) (dB) (dB) (dB) (dB) +----------- ----- --------------- -------- -------- -------- -------- +Ethernet1 1 23.480468 0 0 0 0 + 2 23.480468 0 0 0 0 + 3 23.480468 0 0 0 0 + 4 23.480468 0 0 0 0 + 5 23.480468 0 0 0 0 + 6 23.480468 0 0 0 0 + 7 23.480468 0 0 0 0 + 8 23.480468 0 0 0 0 . . . @@ -1856,7 +1850,6 @@ The `--detail` option can be used to show the data for all lanes and observables ```plaintext CLI output format: -LX - Represents the data for the lane number X Current System Time: Day Mon DD HH:MM:SS YYYY Update interval: SS seconds Last updated: Day Mon DD HH:MM:SS YYYY @@ -1869,7 +1862,6 @@ Port Observable_Name Last Clear Time Last Clear Time Example: admin@sonic#show interfaces transceiver vdm flag Ethernet1 -LX - Represents the data for the lane number X Current System Time: Wed Oct 17 03:46:41 2024 Update interval: 10 seconds Last updated: Wed Oct 17 03:46:41 2024 @@ -1880,13 +1872,13 @@ Last updated: Wed Oct 17 03:46:41 2024 Port Observable_Name Last Clear Time Last Clear Time Last Clear Time Last Clear Time ----------- --------------- ------------------------- ------------------------- ------------------------- ------------------------- Ethernet1 Laser Temp Media True/ False/ False/ False/ - L1 1/ 0/ 2/ 0/ + Lane 1 1/ 0/ 2/ 0/ Wed Oct 16 03:46:41 2024/ never/ Wed Oct 16 02:46:41 2024 never/ never never/ Wed Oct 16 03:46:41 2024 never Ethernet1 PAM4 Level False True False/ False/ Transition 0/ 1/ 0/ 0/ Media Input never/ Wed Oct 16 03:46:41 2024/ never/ never/ - L2 never never never never + Lane 2 never never never never . . . @@ -1895,11 +1887,10 @@ Upto all observables with at least one lane having a flag set to true ##### 3.2.2.1 VDM flags dump using the `--detail` option -With the `--detail` option, only the VDM data for observables which are supported by the module vendor will be displayed. With this option, the CLI will show data for all lanes and supported observables (irrespective of the flag status). +With the `--detail` option, the VDM data for all types of observables will be displayed. With this option, the CLI will show data for all lanes and supported observables (irrespective of the flag status). For unsupported observables, the CLI will show `N/A` for the data. ```plaintext admin@sonic#show interfaces transceiver vdm flag Ethernet1 --detail -LX - Represents the data for the lane number X Current System Time: Wed Oct 17 03:46:41 2024 Update interval: 10 seconds Last updated: Wed Oct 17 03:46:41 2024 @@ -1910,39 +1901,35 @@ Last updated: Wed Oct 17 03:46:41 2024 Port Observable_Name Last Clear Time Last Clear Time Last Clear Time Last Clear Time ----------- --------------- ------------------------- ------------------------- ------------------------- ------------------------- Ethernet1 Laser Temp Media True/ False/ False/ False/ - L1 1/ 0/ 2/ 0/ + Lane 1 1/ 0/ 2/ 0/ Wed Oct 16 03:46:41 2024/ never/ Wed Oct 16 02:46:41 2024 never/ never never/ Wed Oct 16 03:46:41 2024 never Ethernet1 Laser Temp Media False/ False/ False/ False/ - L2 0/ 0/ 0/ 0/ - never/ never/ never/ never/ - never never/ never never -Ethernet1 Laser Temp Media False/ False/ False/ False/ - L3 0/ 0/ 0/ 0/ + Lane 2 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never/ never never Ethernet1 Laser Temp Media False/ False/ False/ False/ - L3 0/ 0/ 0/ 0/ + Lane 3 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never/ never never Ethernet1 Laser Temp Media False/ False/ False/ False/ - L4 0/ 0/ 0/ 0/ + Lane 4 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never/ never never Ethernet1 Laser Temp Media False/ False/ False/ False/ - L5 0/ 0/ 0/ 0/ + Lane 5 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never/ never never Ethernet1 Laser Temp Media False/ False/ False/ False/ - L6 0/ 0/ 0/ 0/ + Lane 6 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never/ never never Ethernet1 Laser Temp Media False/ False/ False/ False/ - L7 0/ 0/ 0/ 0/ + Lane 7 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never/ never never Ethernet1 Laser Temp Media False/ False/ False/ False/ - L8 0/ 0/ 0/ 0/ + Lane 8 0/ 0/ 0/ 0/ never/ never/ never/ never/ never never/ never never . @@ -2034,68 +2021,67 @@ This CLI shows the various module and datapath state flags for a given port alon ```plaintext admin@sonic:/home/admin# show int transceiver status flag Ethernet0 -LX - Represents the data for the lane number X Current System Time: Wed Oct 17 03:46:41 2024 Update interval: 10 seconds Last updated: Wed Oct 17 03:46:41 2024 -Port Observable_Name Flag Status/Change Count/Last Set Time/Last Clear Time ------------ --------------------------- ------------------------------------------------------- -Ethernet0 Tx fault on media L1 False/ 1/ Wed Oct 16 03:46:41 2024/ never -Ethernet0 Tx fault on media L2 False/ 0/ never/ never -Ethernet0 Tx fault on media L3 False/ 0/ never/ never -Ethernet0 Tx fault on media L4 False/ 0/ never/ never -Ethernet0 Tx fault on media L5 False/ 0/ never/ never -Ethernet0 Tx fault on media L6 False/ 0/ never/ never -Ethernet0 Tx fault on media L7 False/ 0/ never/ never -Ethernet0 Tx fault on media L8 False/ 0/ never/ never -Ethernet0 Rx LOS on media L1 False/ 0/ never/ never -Ethernet0 Rx LOS on media L2 False/ 0/ never/ never -Ethernet0 Rx LOS on media L3 False/ 0/ never/ never -Ethernet0 Rx LOS on media L4 False/ 0/ never/ never -Ethernet0 Rx LOS on media L5 False/ 0/ never/ never -Ethernet0 Rx LOS on media L6 False/ 0/ never/ never -Ethernet0 Rx LOS on media L7 False/ 0/ never/ never -Ethernet0 Rx LOS on media L8 False/ 0/ never/ never -Ethernet0 Datapath firmware fault False/ 0/ never/ never -Ethernet0 Module firmware fault False/ 0/ never/ never -Ethernet0 Module state changed False/ 0/ never/ never -Ethernet0 Tx LOS on host L1 False/ 0/ never/ never -Ethernet0 Tx LOS on host L2 False/ 0/ never/ never -Ethernet0 Tx LOS on host L3 False/ 0/ never/ never -Ethernet0 Tx LOS on host L4 False/ 0/ never/ never -Ethernet0 Tx LOS on host L5 False/ 0/ never/ never -Ethernet0 Tx LOS on host L6 False/ 0/ never/ never -Ethernet0 Tx LOS on host L7 False/ 0/ never/ never -Ethernet0 Tx LOS on host L8 False/ 0/ never/ never -Ethernet0 Tx CDR LOL on host L1 False/ 0/ never/ never -Ethernet0 Tx CDR LOL on host L2 False/ 0/ never/ never -Ethernet0 Tx CDR LOL on host L3 False/ 0/ never/ never -Ethernet0 Tx CDR LOL on host L4 False/ 0/ never/ never -Ethernet0 Tx CDR LOL on host L5 False/ 0/ never/ never -Ethernet0 Tx CDR LOL on host L6 False/ 0/ never/ never -Ethernet0 Tx CDR LOL on host L7 False/ 0/ never/ never -Ethernet0 Tx CDR LOL on host L8 False/ 0/ never/ never -Ethernet0 Tx EQ fault on host L1 False/ 0/ never/ never -Ethernet0 Tx EQ fault on host L2 False/ 0/ never/ never -Ethernet0 Tx EQ fault on host L3 False/ 0/ never/ never -Ethernet0 Tx EQ fault on host L4 False/ 0/ never/ never -Ethernet0 Tx EQ fault on host L5 False/ 0/ never/ never -Ethernet0 Tx EQ fault on host L6 False/ 0/ never/ never -Ethernet0 Tx EQ fault on host L7 False/ 0/ never/ never -Ethernet0 Tx EQ fault on host L8 False/ 0/ never/ never -Ethernet0 Rx CDR LOL on media L1 False/ 0/ never/ never -Ethernet0 Rx CDR LOL on media L2 False/ 0/ never/ never -Ethernet0 Rx CDR LOL on media L3 False/ 0/ never/ never -Ethernet0 Rx CDR LOL on media L4 False/ 0/ never/ never -Ethernet0 Rx CDR LOL on media L5 False/ 0/ never/ never -Ethernet0 Rx CDR LOL on media L6 False/ 0/ never/ never -Ethernet0 Rx CDR LOL on media L7 False/ 0/ never/ never -Ethernet0 Rx CDR LOL on media L8 False/ 0/ never/ never -Ethernet0 Target output power out of range False/ 0/ never/ never -Ethernet0 Fine tuning out of range flag False/ 0/ never/ never -Ethernet0 Tuning not accepted flag False/ 0/ never/ never -Ethernet0 Invalid channel number flag False/ 0/ never/ never -Ethernet0 Tuning complete flag False/ 0/ never/ never +Port Observable_Name Flag Status/ Change Count/ Last Set Time/ Last Clear Time +----------- --------------------------- ------------------------------------------------------- +Ethernet0 Tx fault on media Lane 1 False/ 1/ Wed Oct 16 03:46:41 2024/ never +Ethernet0 Tx fault on media Lane 2 False/ 0/ never/ never +Ethernet0 Tx fault on media Lane 3 False/ 0/ never/ never +Ethernet0 Tx fault on media Lane 4 False/ 0/ never/ never +Ethernet0 Tx fault on media Lane 5 False/ 0/ never/ never +Ethernet0 Tx fault on media Lane 6 False/ 0/ never/ never +Ethernet0 Tx fault on media Lane 7 False/ 0/ never/ never +Ethernet0 Tx fault on media Lane 8 False/ 0/ never/ never +Ethernet0 Rx LOS on media Lane 1 False/ 0/ never/ never +Ethernet0 Rx LOS on media Lane 2 False/ 0/ never/ never +Ethernet0 Rx LOS on media Lane 3 False/ 0/ never/ never +Ethernet0 Rx LOS on media Lane 4 False/ 0/ never/ never +Ethernet0 Rx LOS on media Lane 5 False/ 0/ never/ never +Ethernet0 Rx LOS on media Lane 6 False/ 0/ never/ never +Ethernet0 Rx LOS on media Lane 7 False/ 0/ never/ never +Ethernet0 Rx LOS on media Lane 8 False/ 0/ never/ never +Ethernet0 Datapath firmware fault False/ 0/ never/ never +Ethernet0 Module firmware fault False/ 0/ never/ never +Ethernet0 Module state changed False/ 0/ never/ never +Ethernet0 Tx LOS on host Lane 1 False/ 0/ never/ never +Ethernet0 Tx LOS on host Lane 2 False/ 0/ never/ never +Ethernet0 Tx LOS on host Lane 3 False/ 0/ never/ never +Ethernet0 Tx LOS on host Lane 4 False/ 0/ never/ never +Ethernet0 Tx LOS on host Lane 5 False/ 0/ never/ never +Ethernet0 Tx LOS on host Lane 6 False/ 0/ never/ never +Ethernet0 Tx LOS on host Lane 7 False/ 0/ never/ never +Ethernet0 Tx LOS on host Lane 8 False/ 0/ never/ never +Ethernet0 Tx CDR LOL on host Lane 1 False/ 0/ never/ never +Ethernet0 Tx CDR LOL on host Lane 2 False/ 0/ never/ never +Ethernet0 Tx CDR LOL on host Lane 3 False/ 0/ never/ never +Ethernet0 Tx CDR LOL on host Lane 4 False/ 0/ never/ never +Ethernet0 Tx CDR LOL on host Lane 5 False/ 0/ never/ never +Ethernet0 Tx CDR LOL on host Lane 6 False/ 0/ never/ never +Ethernet0 Tx CDR LOL on host Lane 7 False/ 0/ never/ never +Ethernet0 Tx CDR LOL on host Lane 8 False/ 0/ never/ never +Ethernet0 Tx EQ fault on host Lane 1 False/ 0/ never/ never +Ethernet0 Tx EQ fault on host Lane 2 False/ 0/ never/ never +Ethernet0 Tx EQ fault on host Lane 3 False/ 0/ never/ never +Ethernet0 Tx EQ fault on host Lane 4 False/ 0/ never/ never +Ethernet0 Tx EQ fault on host Lane 5 False/ 0/ never/ never +Ethernet0 Tx EQ fault on host Lane 6 False/ 0/ never/ never +Ethernet0 Tx EQ fault on host Lane 7 False/ 0/ never/ never +Ethernet0 Tx EQ fault on host Lane 8 False/ 0/ never/ never +Ethernet0 Rx CDR LOL on media Lane 1 False/ 0/ never/ never +Ethernet0 Rx CDR LOL on media Lane 2 False/ 0/ never/ never +Ethernet0 Rx CDR LOL on media Lane 3 False/ 0/ never/ never +Ethernet0 Rx CDR LOL on media Lane 4 False/ 0/ never/ never +Ethernet0 Rx CDR LOL on media Lane 5 False/ 0/ never/ never +Ethernet0 Rx CDR LOL on media Lane 6 False/ 0/ never/ never +Ethernet0 Rx CDR LOL on media Lane 7 False/ 0/ never/ never +Ethernet0 Rx CDR LOL on media Lane 8 False/ 0/ never/ never +Ethernet0 Target output power out of range False/ 0/ never/ never +Ethernet0 Fine tuning out of range flag False/ 0/ never/ never +Ethernet0 Tuning not accepted flag False/ 0/ never/ never +Ethernet0 Invalid channel number flag False/ 0/ never/ never +Ethernet0 Tuning complete flag False/ 0/ never/ never ``` ## 4. SONiC CMIS diagnostic monitoring workflow @@ -2128,7 +2114,7 @@ The `DomInfoUpdateTask` thread is responsible for updating the dynamic diagnosti 8. If the transceiver supports VDM monitoring, perform the following steps: 1. Freeze the statistics by calling the CMIS API (`freeze_vdm_stats`) and wait for `FreezeDone` by calling `get_vdm_freeze_status`. Once the statistics are frozen, record the timestamp and copy the supported VDM and PM data from the transceiver. 2. Unfreeze the statistics by calling the CMIS API (`unfreeze_vdm_stats`). - 3. Update the `TRANSCEIVER_VDM_CURRENT_SAMPLE` and `TRANSCEIVER_PM` tables with both basic and statistic instance's data read for VDM and PM. + 3. Update the `TRANSCEIVER_VDM_REAL_VALUE` and `TRANSCEIVER_PM` tables with both basic and statistic instance's data read for VDM and PM. 4. Analyze the VDM flags by comparing the current data with the previous data and update the VDM flag, change count and time related tables. #### 4.2.2 Diagnostic Information Update During Link Down Event @@ -2262,8 +2248,12 @@ The purpose of flag analysis is to track the status of various parameters and to - `TRANSCEIVER_DOM_FLAG`: This table stores flags indicating the status of various DOM parameters. - `TRANSCEIVER_DOM_FLAG_CHANGE_COUNT`: This table keeps a count of how many times each DOM flag has changed. Upon initialization, the count is set to 0. -- `TRANSCEIVER_DOM_FLAG_SET_TIME`: This table records the timestamp (in local timezone) when each DOM flag was set. The timestamp is recorded in the format `Day Mon DD HH:MM:SS YYYY`. During initialization, the timestamp is set to `never` if the flag is not set. -- `TRANSCEIVER_DOM_FLAG_CLEAR_TIME`: This table records the timestamp (in local timezone) when each DOM flag was cleared. The timestamp is recorded in the format `Day Mon DD HH:MM:SS YYYY`. During initialization, the timestamp is set to `never` if the flag is set. +- `TRANSCEIVER_DOM_FLAG_SET_TIME`: This table records the timestamp (in local timezone) when each DOM flag was set. The timestamp is recorded in the format `Day Mon DD HH:MM:SS YYYY`. During initialization, the timestamp is set to `never` if the flag is not set. Since SONiC does not support flag-based interrupt handling, the timestamp refers to either: + - The timestamp at which the link was down, or + - The polling event timestamp if the flag was set during the routine polling by the `DomInfoUpdateTask` thread. +- `TRANSCEIVER_DOM_FLAG_CLEAR_TIME`: This table records the timestamp (in local timezone) when each DOM flag was cleared. The timestamp is recorded in the format `Day Mon DD HH:MM:SS YYYY`. During initialization, the timestamp is set to `never` if the flag is set. Since SONiC does not support flag-based interrupt handling, the timestamp refers to either: + - The timestamp at which the link was down, or + - The polling event timestamp if the flag was cleared during the routine polling by the `DomInfoUpdateTask` thread. **Example of Table Updates:** From aa4e56ffdd8fb50bfc6471150fbf8694912778fc Mon Sep 17 00:00:00 2001 From: Mihir Patel Date: Thu, 14 Nov 2024 17:16:30 +0000 Subject: [PATCH 12/12] Modified TRANSCEIVER_VDM_THRESHOLD to TRANSCEIVER_VDM_XXX_THRESHOLD --- .../CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md b/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md index 97ce85bfa6..670dd624c9 100644 --- a/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md +++ b/doc/platform_api/CMIS_Diagnostic_Monitoring_Overview_in_SONiC.md @@ -21,7 +21,6 @@ The CMIS diagnostic monitoring data is stored in the `STATE_DB` database. The `S - `TRANSCEIVER_DOM_FLAG_SET_TIME`: Records the last timestamp when each DOM flag was set. - `TRANSCEIVER_DOM_FLAG_CLEAR_TIME`: Records the last timestamp when each DOM flag was cleared. - `TRANSCEIVER_VDM_REAL_VALUE`: Stores VDM sample data. -- `TRANSCEIVER_VDM_THRESHOLD`: Contains threshold values for VDM parameters. - `TRANSCEIVER_VDM_HALARM_THRESHOLD`: Stores the high alarm threshold values for the VDM data. - `TRANSCEIVER_VDM_LALARM_THRESHOLD`: Stores the low alarm threshold values for the VDM data. - `TRANSCEIVER_VDM_HWARN_THRESHOLD`: Stores the high warning threshold values for the VDM data. @@ -2093,7 +2092,7 @@ The `SfpStateUpdateTask` thread is responsible for updating the static diagnosti The following tables are updated by the `SfpStateUpdateTask` thread: 1. `TRANSCEIVER_DOM_THRESHOLD` -2. `TRANSCEIVER_VDM_THRESHOLD` +2. `TRANSCEIVER_VDM_XXX_THRESHOLD` where `XXX` is the threshold type (`highalarm`, `highwarning`, `lowwarning`, `lowalarm`) ### 4.2 Dynamic Diagnostic Information