Skip to content

Conversation

@Staphylo
Copy link
Contributor

Description

This change introduces a new DomThermalUpdateInfoTask thread. Its sole purpose is to poll the temperature information out of the transceivers and publish them in a new table called TRANSCEIVER_DOM_TEMPERATURE in STATE_DB.

This change mostly introduces new code.
It however refactors slightly the dom_mgr.py to maximize code reuse between the existing DomUpdateInfoTask and the newly introduced DomThermalInfoUpdateTask by inheriting from a common base class.

The new thread has a polling frequency of 5s to ensure that the data used.
Moving the entire post_port_dom_sensor_info_to_db to this new thread is not ideal because it takes much longer to run that simply gathering the temperature. For this reason a dedicated post_port_dom_temperature_info_to_db was introduced which runs in a fraction of the time.

Motivation and Context

Cooling becomes a challenge for more powerful optics.
These modules can heat up pretty quickly and the cooling algorithm needs to adjust quickly to these variations.
This can however only happen if the algorithm has recent data to use.
As of today the existing DomUpdateInfoTask responsible for updating all DOM, VDM, ... data into STATE_DB, but it is not going this frequently enough.
On a system fully loaded with 64 ports, the data would remain stale in the database for 2+ minutes.
This is not frequent enough to ensure safe, stable and efficient cooling.

How Has This Been Tested?

Unit tests where extended to test the features of this new table and thread.
Testing on a 32x800G and 64x800G system populated with OSFP optics.

Additional Information (Optional)

Benchmarking shows that polling the temperature out of a xcvr and publishing it in the databasse takes around 0.0016 for a 800G optics.
Considering a worst case of 0.002 and considering a device with 64 ports, this amounts to around 0.128s for every loop.
With this loop running every 5s this means this represent a ~2.5% of busyness time which is acceptable.

It should be noted that the DomUpdateInfoTask is currently not efficient at all due to the rather hidden select calls each with a 1s timeout, which for handle_port_update_event happens for every port.

@mssonicbld
Copy link
Collaborator

/azp run

@azure-pipelines
Copy link

Azure Pipelines successfully started running 1 pipeline(s).

@Staphylo
Copy link
Contributor Author

@prgeor @judyjoseph FYI this is still being tested but feel free to comment early

Copy link
Contributor

@bobby-nexthop bobby-nexthop left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for adding this change @Staphylo! LGTM

def get_transceiver_dom_temperature(self, physical_port):
try:
return {
'temperature': self.sfp_obj_dict[physical_port].get_temperature(),
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

get_temperature reports 0 when it's not supported by the xcvr.
We should report N/A in such cases after initially checking whether this is supported by the xcvr during init.
We need to also re-verify this when an insertion/removal event is detected.

self.on_remove_logical_port(port_change_event)
self.port_mapping.handle_port_change_event(port_change_event)

def on_remove_logical_port(self, port_change_event):
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need to keep this API here as it is already defined in the base class DomInfoUpdateBase

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We want this logic to only run once. I could however move the code related to the dom_temperature_tbl in the DomThermalInfoUpdateTask and not have it in the main Dom loop.
The main advantage was that at this point the DomThermalInfoUpdateTask didn't have to be aware of OIR.

Copy link
Collaborator

@prgeor prgeor left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Staphylo can you please test physical OIR? Removal of the optics should clear the temp field and insertion should populate the table and values should get updated periodically?

@prgeor
Copy link
Collaborator

prgeor commented Oct 1, 2025

@Staphylo "With this loop running every 5s this means this represent a ~2.5% of busyness time which is acceptable."
Can you show the math to arrive at 2.5%?

@mihirpat1 mihirpat1 requested a review from Copilot October 3, 2025 05:23
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR introduces a new dedicated thread DomThermalInfoUpdateTask to poll temperature information from transceivers more frequently (every 5 seconds) compared to the existing DOM monitoring thread (60 seconds). This enables more responsive cooling algorithms for high-power optics that heat up quickly.

  • Adds new TRANSCEIVER_DOM_TEMPERATURE table for storing temperature-only data
  • Refactors DOM management by creating a common base class DomInfoUpdateBase
  • Implements optimized temperature-only polling function for better performance

Reviewed Changes

Copilot reviewed 6 out of 6 changed files in this pull request and generated 3 comments.

Show a summary per file
File Description
xcvr_table_helper.py Adds support for new TRANSCEIVER_DOM_TEMPERATURE table
xcvrd.py Integrates new thermal monitoring thread and updates cleanup operations
utils.py Adds temperature-specific data retrieval function
db_utils.py Implements database posting function for temperature data
dom_mgr.py Refactors DOM management with base class and adds thermal monitoring thread
test_xcvrd.py Updates tests to cover new thread and temperature table functionality

Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.

continue

if not sfp_status_helper.detect_port_in_error_status(logical_port_name, self.xcvr_table_helper.get_status_sw_tbl(asic_index)):
if not xcvrd._wrapper_get_presence(physical_port):
Copy link

Copilot AI Oct 3, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using the module-level function xcvrd._wrapper_get_presence creates a circular dependency and tight coupling. Consider injecting this dependency or using the common module's equivalent function.

Suggested change
if not xcvrd._wrapper_get_presence(physical_port):
if not common.get_presence(physical_port):

Copilot uses AI. Check for mistakes.
@Staphylo Staphylo force-pushed the xcvrd-thermal-thread branch from 875f690 to b85433b Compare October 6, 2025 14:13
@mssonicbld
Copy link
Collaborator

/azp run

@azure-pipelines
Copy link

Azure Pipelines successfully started running 1 pipeline(s).

Copy link
Contributor

@mihirpat1 mihirpat1 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Staphylo Can you please help with the below?

  1. Ensure that all the tables in update_port_db_diagnostics_on_link_change are updated with link change event
  2. Please capture an output of the TRANSCEIVER_DOM_TEMPERATURE table
  3. Please fix the test failure

@Junchao-Mellanox
Copy link
Collaborator

Junchao-Mellanox commented Oct 9, 2025

Which service / component is going to consume the temperature data? Why not change thermalctld who is already providing the temperature data to state DB?

@judyjoseph
Copy link
Contributor

Which service / component is going to consume the temperature data? Why not change thermalctld who is already providing the temperature data to state DB?

The idea here was to have a separate thread in xcvrd to get the optics temperature alone, to drive the cooling algorithm faster. The creation of this thread can be controlled via a knob -- need to be turned on only on those platforms which need this.

Btw @keboliu in thermalctld are you referring to this loop where SFP thermals are retrieved:

for thermal_index, thermal in enumerate(sfp.get_all_thermals()):
? My understanding was that only xcvrd is polling/getting the thermals of optics and storing it in TRANSRECEIVER_SENSOR tables.

@judyjoseph
Copy link
Contributor

/azp run

@azure-pipelines
Copy link

Azure Pipelines successfully started running 1 pipeline(s).

@Junchao-Mellanox
Copy link
Collaborator

Junchao-Mellanox commented Oct 10, 2025

Hi @judyjoseph, I am OK about the knob. However, thermalcltd is already saving the module temperature to STATE_DB::TEMPERATURE_INFO table, as you mentioned in your latest reply:

for thermal_index, thermal in enumerate(sfp.get_all_thermals()):
. I am not sure that we want to invent another thread to do the same job.

@Staphylo
Copy link
Contributor Author

We actually used to report xcvr temperature via the dedicated SfpBase.get_all_thermals() a while ago and were asked to not do so.
Not sure if that's something that would be accepted again but it does mean that on our platforms, only xcvrd is polling the temperature data and publishing it.

From my understanding there is a desire for xcvrd to have sole ownership of all the xcvrs to prevent unwanted IO during critical operations such as firmware upgrades.

On the other hand, thermalctld has a configurable polling rate (default is 60s) so it could be tweaked per platform to some desirable value.
This however would apply to every single sensor and not only xcvrs.

@Junchao-Mellanox
Copy link
Collaborator

@eddyk-nvidia @keboliu could you please kindly share your comment?

@Staphylo Staphylo force-pushed the xcvrd-thermal-thread branch from b85433b to 3a0f79d Compare October 17, 2025 12:51
@mssonicbld
Copy link
Collaborator

/azp run

@azure-pipelines
Copy link

Azure Pipelines successfully started running 1 pipeline(s).

@prgeor
Copy link
Collaborator

prgeor commented Oct 24, 2025

@Staphylo code coverage

@Staphylo Staphylo force-pushed the xcvrd-thermal-thread branch from 3a0f79d to efcf6df Compare October 29, 2025 16:47
@mssonicbld
Copy link
Collaborator

/azp run

@azure-pipelines
Copy link

Azure Pipelines successfully started running 1 pipeline(s).

@Staphylo Staphylo force-pushed the xcvrd-thermal-thread branch from efcf6df to e0e4aa0 Compare October 30, 2025 13:35
@mssonicbld
Copy link
Collaborator

/azp run

@azure-pipelines
Copy link

Azure Pipelines successfully started running 1 pipeline(s).

@Staphylo Staphylo force-pushed the xcvrd-thermal-thread branch from e0e4aa0 to 08f422b Compare November 5, 2025 16:00
@mssonicbld
Copy link
Collaborator

/azp run

@azure-pipelines
Copy link

Azure Pipelines successfully started running 1 pipeline(s).

Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

Copilot reviewed 6 out of 6 changed files in this pull request and generated 2 comments.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

For high power modules it is important to query the temperature often as they can
heat up quickly and the cooling algorithm needs to react quickly to avoid damaging
the transceiver modules.

Introducing a new DomThermalUpdateInfoTask thread which is solely polling the
temperature information out of the xcvrs and publishing these in a new
TRANSCEIVER_DOM_TEMPERATURE table in STATE_DB.

This is mostly additional code being added.
To maximize code reuse, the existing DomUpdateInfoTask has been refactored so that
it now share a base with the newly introduced DomThermalInfoUpdateTask.

Benchmarking shows that polling the temperature out of a xcvrand publishing it inr
the databasse takes around 0.0016 for 800G optics.
Considering a worst case of 0.002 and considering a device with 64 ports, this
amounts to around 0.128s for every loop.
With this loop running every 5s this means this represent a ~2.5% of busyness time.
Make the new DomThermalInfoUpdateTask optional. A program argument is
now necessary for xcvrd which can be set via the `pmon_daemon_control.json`

The new `--dom_temperature_poll_interval` option takes an update
interval in seconds.

Address misc comments
@Staphylo Staphylo force-pushed the xcvrd-thermal-thread branch from 08f422b to 9b6e3ac Compare November 17, 2025 16:44
@mssonicbld
Copy link
Collaborator

/azp run

@azure-pipelines
Copy link

Azure Pipelines successfully started running 1 pipeline(s).

@mihirpat1
Copy link
Contributor

@Staphylo Can you please help with the below?

  1. Ensure that all the tables in update_port_db_diagnostics_on_link_change are updated with link change event
  2. Please capture an output of the TRANSCEIVER_DOM_TEMPERATURE table
  3. Please fix the test failure

@Staphylo Can you please help to address this?

@mihirpat1
Copy link
Contributor

can you please test physical OIR? Removal of the optics should clear the temp field and insertion should populate the table and values should get updated periodically?

@Staphylo Can you please also address this?

Copy link
Contributor

@judyjoseph judyjoseph left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, please address a few comments above

@Staphylo
Copy link
Contributor Author

Staphylo commented Dec 4, 2025

Hi @mihirpat1

Here is an example of the table in one of my system

root@qsp503:~# sonic-db-cli STATE_DB keys 'TRANSCEIVER_DOM_TEMPERATURE|*' | sort -V
TRANSCEIVER_DOM_TEMPERATURE|Ethernet0
TRANSCEIVER_DOM_TEMPERATURE|Ethernet8
TRANSCEIVER_DOM_TEMPERATURE|Ethernet24
TRANSCEIVER_DOM_TEMPERATURE|Ethernet80
TRANSCEIVER_DOM_TEMPERATURE|Ethernet96
TRANSCEIVER_DOM_TEMPERATURE|Ethernet104
TRANSCEIVER_DOM_TEMPERATURE|Ethernet112
TRANSCEIVER_DOM_TEMPERATURE|Ethernet120
TRANSCEIVER_DOM_TEMPERATURE|Ethernet128
TRANSCEIVER_DOM_TEMPERATURE|Ethernet160
TRANSCEIVER_DOM_TEMPERATURE|Ethernet168
TRANSCEIVER_DOM_TEMPERATURE|Ethernet176
TRANSCEIVER_DOM_TEMPERATURE|Ethernet216
TRANSCEIVER_DOM_TEMPERATURE|Ethernet224
TRANSCEIVER_DOM_TEMPERATURE|Ethernet240
TRANSCEIVER_DOM_TEMPERATURE|Ethernet248
TRANSCEIVER_DOM_TEMPERATURE|Ethernet288
TRANSCEIVER_DOM_TEMPERATURE|Ethernet304
TRANSCEIVER_DOM_TEMPERATURE|Ethernet312
TRANSCEIVER_DOM_TEMPERATURE|Ethernet328
TRANSCEIVER_DOM_TEMPERATURE|Ethernet336
TRANSCEIVER_DOM_TEMPERATURE|Ethernet376
TRANSCEIVER_DOM_TEMPERATURE|Ethernet384
TRANSCEIVER_DOM_TEMPERATURE|Ethernet432
TRANSCEIVER_DOM_TEMPERATURE|Ethernet448
TRANSCEIVER_DOM_TEMPERATURE|Ethernet472
TRANSCEIVER_DOM_TEMPERATURE|Ethernet480
TRANSCEIVER_DOM_TEMPERATURE|Ethernet488
root@qsp503:~# sonic-db-cli STATE_DB hgetall 'TRANSCEIVER_DOM_TEMPERATURE|Ethernet224'
{'temperature': '54.184', 'last_update_time': 'Thu Dec 04 15:47:05 2025'}
root@qsp503:~# sonic-db-cli STATE_DB hgetall 'TRANSCEIVER_DOM_TEMPERATURE|Ethernet304'
{'temperature': '62.871', 'last_update_time': 'Thu Dec 04 15:47:05 2025'}

I instrumented the get_presence() to be able to simulate a removal as I cannot get physical access to a system.
I simulated a removal of Ethernet304 and I can see the associated TRANSCEIVER_DOM_TEMPERATURE table entry being cleared (as well as other entries).

@mihirpat1
Copy link
Contributor

Hi @mihirpat1

Here is an example of the table in one of my system

root@qsp503:~# sonic-db-cli STATE_DB keys 'TRANSCEIVER_DOM_TEMPERATURE|*' | sort -V
TRANSCEIVER_DOM_TEMPERATURE|Ethernet0
TRANSCEIVER_DOM_TEMPERATURE|Ethernet8
TRANSCEIVER_DOM_TEMPERATURE|Ethernet24
TRANSCEIVER_DOM_TEMPERATURE|Ethernet80
TRANSCEIVER_DOM_TEMPERATURE|Ethernet96
TRANSCEIVER_DOM_TEMPERATURE|Ethernet104
TRANSCEIVER_DOM_TEMPERATURE|Ethernet112
TRANSCEIVER_DOM_TEMPERATURE|Ethernet120
TRANSCEIVER_DOM_TEMPERATURE|Ethernet128
TRANSCEIVER_DOM_TEMPERATURE|Ethernet160
TRANSCEIVER_DOM_TEMPERATURE|Ethernet168
TRANSCEIVER_DOM_TEMPERATURE|Ethernet176
TRANSCEIVER_DOM_TEMPERATURE|Ethernet216
TRANSCEIVER_DOM_TEMPERATURE|Ethernet224
TRANSCEIVER_DOM_TEMPERATURE|Ethernet240
TRANSCEIVER_DOM_TEMPERATURE|Ethernet248
TRANSCEIVER_DOM_TEMPERATURE|Ethernet288
TRANSCEIVER_DOM_TEMPERATURE|Ethernet304
TRANSCEIVER_DOM_TEMPERATURE|Ethernet312
TRANSCEIVER_DOM_TEMPERATURE|Ethernet328
TRANSCEIVER_DOM_TEMPERATURE|Ethernet336
TRANSCEIVER_DOM_TEMPERATURE|Ethernet376
TRANSCEIVER_DOM_TEMPERATURE|Ethernet384
TRANSCEIVER_DOM_TEMPERATURE|Ethernet432
TRANSCEIVER_DOM_TEMPERATURE|Ethernet448
TRANSCEIVER_DOM_TEMPERATURE|Ethernet472
TRANSCEIVER_DOM_TEMPERATURE|Ethernet480
TRANSCEIVER_DOM_TEMPERATURE|Ethernet488
root@qsp503:~# sonic-db-cli STATE_DB hgetall 'TRANSCEIVER_DOM_TEMPERATURE|Ethernet224'
{'temperature': '54.184', 'last_update_time': 'Thu Dec 04 15:47:05 2025'}
root@qsp503:~# sonic-db-cli STATE_DB hgetall 'TRANSCEIVER_DOM_TEMPERATURE|Ethernet304'
{'temperature': '62.871', 'last_update_time': 'Thu Dec 04 15:47:05 2025'}

I instrumented the get_presence() to be able to simulate a removal as I cannot get physical access to a system. I simulated a removal of Ethernet304 and I can see the associated TRANSCEIVER_DOM_TEMPERATURE table entry being cleared (as well as other entries).

Thanks @Staphylo!
Did you also get a chance to validate the below?
Ensure that all the tables in update_port_db_diagnostics_on_link_change are updated with link change event

@Staphylo
Copy link
Contributor Author

Staphylo commented Dec 5, 2025

I checked shutting down the interface and dumping all the tables again.
I can confirm that the various FLAG table where updated as expected.
However note that the link state does not matter for transceiver temperature monitoring, it is a continuous process.

root@qsp503:~# show interface status | grep Ethernet304
Ethernet304  289,290,291,292,293,294,295,296     800G   9100     rs    etp39  routed      up       up     Optic    OSFP  Arista Networks  OSFP-800G-2XDR4         off        3

root@qsp503:~# for key in $(sonic-db-cli STATE_DB keys 'TRANSCEIVER_*|Ethernet304'); do echo "$key"; sonic-db-cli STATE_DB hgetall "$key"; echo; done
TRANSCEIVER_VDM_LWARN_THRESHOLD|Ethernet304
{'laser_temperature_media1': 'N/A', 'laser_temperature_media2': 'N/A', 'laser_temperature_media3': 'N/A', 'laser_temperature_media4': 'N/A', 'laser_temperature_media5': 'N/A', 'laser_temperature_media6': 'N/A', 'laser_temperature_media7': 'N/A', 'laser_temperature_media8': 'N/A', 'esnr_media_input1': 'N/A', 'esnr_media_input2': 'N/A', 'esnr_media_input3': 'N/A', 'esnr_media_input4': 'N/A', 'esnr_media_input5': 'N/A', 'esnr_media_input6': 'N/A', 'esnr_media_input7': 'N/A', 'esnr_media_input8': 'N/A', 'pam4_level_transition_media_input1': 'N/A', 'pam4_level_transition_media_input2': 'N/A', 'pam4_level_transition_media_input3': 'N/A', 'pam4_level_transition_media_input4': 'N/A', 'pam4_level_transition_media_input5': 'N/A', 'pam4_level_transition_media_input6': 'N/A', 'pam4_level_transition_media_input7': 'N/A', 'pam4_level_transition_media_input8': 'N/A', 'prefec_ber_min_media_input1': 'N/A', 'prefec_ber_min_media_input2': 'N/A', 'prefec_ber_min_media_input3': 'N/A', 'prefec_ber_min_media_input4': 'N/A', 'prefec_ber_min_media_input5': 'N/A', 'prefec_ber_min_media_input6': 'N/A', 'prefec_ber_min_media_input7': 'N/A', 'prefec_ber_min_media_input8': 'N/A', 'prefec_ber_max_media_input1': 'N/A', 'prefec_ber_max_media_input2': 'N/A', 'prefec_ber_max_media_input3': 'N/A', 'prefec_ber_max_media_input4': 'N/A', 'prefec_ber_max_media_input5': 'N/A', 'prefec_ber_max_media_input6': 'N/A', 'prefec_ber_max_media_input7': 'N/A', 'prefec_ber_max_media_input8': 'N/A', 'prefec_ber_avg_media_input1': 'N/A', 'prefec_ber_avg_media_input2': 'N/A', 'prefec_ber_avg_media_input3': 'N/A', 'prefec_ber_avg_media_input4': 'N/A', 'prefec_ber_avg_media_input5': 'N/A', 'prefec_ber_avg_media_input6': 'N/A', 'prefec_ber_avg_media_input7': 'N/A', 'prefec_ber_avg_media_input8': 'N/A', 'prefec_ber_curr_media_input1': 'N/A', 'prefec_ber_curr_media_input2': 'N/A', 'prefec_ber_curr_media_input3': 'N/A', 'prefec_ber_curr_media_input4': 'N/A', 'prefec_ber_curr_media_input5': 'N/A', 'prefec_ber_curr_media_input6': 'N/A', 'prefec_ber_curr_media_input7': 'N/A', 'prefec_ber_curr_media_input8': 'N/A', 'errored_frames_min_media_input1': 'N/A', 'errored_frames_min_media_input2': 'N/A', 'errored_frames_min_media_input3': 'N/A', 'errored_frames_min_media_input4': 'N/A', 'errored_frames_min_media_input5': 'N/A', 'errored_frames_min_media_input6': 'N/A', 'errored_frames_min_media_input7': 'N/A', 'errored_frames_min_media_input8': 'N/A', 'errored_frames_max_media_input1': 'N/A', 'errored_frames_max_media_input2': 'N/A', 'errored_frames_max_media_input3': 'N/A', 'errored_frames_max_media_input4': 'N/A', 'errored_frames_max_media_input5': 'N/A', 'errored_frames_max_media_input6': 'N/A', 'errored_frames_max_media_input7': 'N/A', 'errored_frames_max_media_input8': 'N/A', 'errored_frames_avg_media_input1': 'N/A', 'errored_frames_avg_media_input2': 'N/A', 'errored_frames_avg_media_input3': 'N/A', 'errored_frames_avg_media_input4': 'N/A', 'errored_frames_avg_media_input5': 'N/A', 'errored_frames_avg_media_input6': 'N/A', 'errored_frames_avg_media_input7': 'N/A', 'errored_frames_avg_media_input8': 'N/A', 'errored_frames_curr_media_input1': 'N/A', 'errored_frames_curr_media_input2': 'N/A', 'errored_frames_curr_media_input3': 'N/A', 'errored_frames_curr_media_input4': 'N/A', 'errored_frames_curr_media_input5': 'N/A', 'errored_frames_curr_media_input6': 'N/A', 'errored_frames_curr_media_input7': 'N/A', 'errored_frames_curr_media_input8': 'N/A', 'esnr_host_input1': 'N/A', 'esnr_host_input2': 'N/A', 'esnr_host_input3': 'N/A', 'esnr_host_input4': 'N/A', 'esnr_host_input5': 'N/A', 'esnr_host_input6': 'N/A', 'esnr_host_input7': 'N/A', 'esnr_host_input8': 'N/A', 'pam4_level_transition_host_input1': 'N/A', 'pam4_level_transition_host_input2': 'N/A', 'pam4_level_transition_host_input3': 'N/A', 'pam4_level_transition_host_input4': 'N/A', 'pam4_level_transition_host_input5': 'N/A', 'pam4_level_transition_host_input6': 'N/A', 'pam4_level_transition_host_input7': 'N/A', 'pam4_level_transition_host_input8': 'N/A', 'prefec_ber_min_host_input1': 'N/A', 'prefec_ber_min_host_input2': 'N/A', 'prefec_ber_min_host_input3': 'N/A', 'prefec_ber_min_host_input4': 'N/A', 'prefec_ber_min_host_input5': 'N/A', 'prefec_ber_min_host_input6': 'N/A', 'prefec_ber_min_host_input7': 'N/A', 'prefec_ber_min_host_input8': 'N/A', 'prefec_ber_max_host_input1': 'N/A', 'prefec_ber_max_host_input2': 'N/A', 'prefec_ber_max_host_input3': 'N/A', 'prefec_ber_max_host_input4': 'N/A', 'prefec_ber_max_host_input5': 'N/A', 'prefec_ber_max_host_input6': 'N/A', 'prefec_ber_max_host_input7': 'N/A', 'prefec_ber_max_host_input8': 'N/A', 'prefec_ber_avg_host_input1': 'N/A', 'prefec_ber_avg_host_input2': 'N/A', 'prefec_ber_avg_host_input3': 'N/A', 'prefec_ber_avg_host_input4': 'N/A', 'prefec_ber_avg_host_input5': 'N/A', 'prefec_ber_avg_host_input6': 'N/A', 'prefec_ber_avg_host_input7': 'N/A', 'prefec_ber_avg_host_input8': 'N/A', 'prefec_ber_curr_host_input1': 'N/A', 'prefec_ber_curr_host_input2': 'N/A', 'prefec_ber_curr_host_input3': 'N/A', 'prefec_ber_curr_host_input4': 'N/A', 'prefec_ber_curr_host_input5': 'N/A', 'prefec_ber_curr_host_input6': 'N/A', 'prefec_ber_curr_host_input7': 'N/A', 'prefec_ber_curr_host_input8': 'N/A', 'errored_frames_min_host_input1': 'N/A', 'errored_frames_min_host_input2': 'N/A', 'errored_frames_min_host_input3': 'N/A', 'errored_frames_min_host_input4': 'N/A', 'errored_frames_min_host_input5': 'N/A', 'errored_frames_min_host_input6': 'N/A', 'errored_frames_min_host_input7': 'N/A', 'errored_frames_min_host_input8': 'N/A', 'errored_frames_max_host_input1': 'N/A', 'errored_frames_max_host_input2': 'N/A', 'errored_frames_max_host_input3': 'N/A', 'errored_frames_max_host_input4': 'N/A', 'errored_frames_max_host_input5': 'N/A', 'errored_frames_max_host_input6': 'N/A', 'errored_frames_max_host_input7': 'N/A', 'errored_frames_max_host_input8': 'N/A', 'errored_frames_avg_host_input1': 'N/A', 'errored_frames_avg_host_input2': 'N/A', 'errored_frames_avg_host_input3': 'N/A', 'errored_frames_avg_host_input4': 'N/A', 'errored_frames_avg_host_input5': 'N/A', 'errored_frames_avg_host_input6': 'N/A', 'errored_frames_avg_host_input7': 'N/A', 'errored_frames_avg_host_input8': 'N/A', 'errored_frames_curr_host_input1': 'N/A', 'errored_frames_curr_host_input2': 'N/A', 'errored_frames_curr_host_input3': 'N/A', 'errored_frames_curr_host_input4': 'N/A', 'errored_frames_curr_host_input5': 'N/A', 'errored_frames_curr_host_input6': 'N/A', 'errored_frames_curr_host_input7': 'N/A', 'errored_frames_curr_host_input8': 'N/A', 'last_update_time': 'Fri Dec 05 10:34:55 2025'}

TRANSCEIVER_DOM_SENSOR|Ethernet304
{'temperature': '62.879', 'voltage': '3.296', 'tx1bias': '85.3', 'rx1power': '1.345', 'tx1power': '1.371', 'tx2bias': '75.4', 'rx2power': '0.964', 'tx2power': '1.585', 'tx3bias': '70.3', 'rx3power': '1.225', 'tx3power': '1.343', 'tx4bias': '78.272', 'rx4power': '1.702', 'tx4power': '1.583', 'tx5bias': '75.2', 'rx5power': '1.443', 'tx5power': '1.545', 'tx6bias': '80.0', 'rx6power': '2.909', 'tx6power': '1.755', 'tx7bias': '70.3', 'rx7power': '2.281', 'tx7power': '1.67', 'tx8bias': '80.0', 'rx8power': '1.935', 'tx8power': '1.754', 'laser_temperature': '64.9765625', 'last_update_time': 'Fri Dec 05 10:51:29 2025'}

TRANSCEIVER_DOM_TEMPERATURE|Ethernet304
{'temperature': '62.945', 'last_update_time': 'Fri Dec 05 10:52:51 2025'}

TRANSCEIVER_DOM_THRESHOLD|Ethernet304
{'temphighalarm': '78.0', 'templowalarm': '-8.0', 'temphighwarning': '73.0', 'templowwarning': '-3.0', 'vcchighalarm': '3.63', 'vcclowalarm': '2.97', 'vcchighwarning': '3.465', 'vcclowwarning': '3.135', 'rxpowerhighalarm': '6.5', 'rxpowerlowalarm': '-9.401', 'rxpowerhighwarning': '5.5', 'rxpowerlowwarning': '-8.401', 'txpowerhighalarm': '6.0', 'txpowerlowalarm': '-4.4', 'txpowerhighwarning': '4.0', 'txpowerlowwarning': '-2.4', 'txbiashighalarm': '130.0', 'txbiaslowalarm': '35.0', 'txbiashighwarning': '125.0', 'txbiaslowwarning': '40.0', 'lasertemphighalarm': '80.0', 'lasertemplowalarm': '10.0', 'lasertemphighwarning': '75.0', 'lasertemplowwarning': '15.0', 'last_update_time': 'Fri Dec 05 10:34:55 2025'}

TRANSCEIVER_STATUS_FLAG_SET_TIME|Ethernet304
{'datapath_firmware_fault': 'never', 'module_firmware_fault': 'never', 'module_state_changed': 'never', 'tx1fault': 'never', 'tx2fault': 'never', 'tx3fault': 'never', 'tx4fault': 'never', 'tx5fault': 'never', 'tx6fault': 'never', 'tx7fault': 'never', 'tx8fault': 'never', 'rx1los': 'never', 'rx2los': 'never', 'rx3los': 'never', 'rx4los': 'never', 'rx5los': 'never', 'rx6los': 'never', 'rx7los': 'never', 'rx8los': 'never', 'tx1los_hostlane': 'never', 'tx2los_hostlane': 'never', 'tx3los_hostlane': 'never', 'tx4los_hostlane': 'never', 'tx5los_hostlane': 'never', 'tx6los_hostlane': 'never', 'tx7los_hostlane': 'never', 'tx8los_hostlane': 'never', 'tx1cdrlol_hostlane': 'never', 'tx2cdrlol_hostlane': 'never', 'tx3cdrlol_hostlane': 'never', 'tx4cdrlol_hostlane': 'never', 'tx5cdrlol_hostlane': 'never', 'tx6cdrlol_hostlane': 'never', 'tx7cdrlol_hostlane': 'never', 'tx8cdrlol_hostlane': 'never', 'tx1_eq_fault': 'never', 'tx2_eq_fault': 'never', 'tx3_eq_fault': 'never', 'tx4_eq_fault': 'never', 'tx5_eq_fault': 'never', 'tx6_eq_fault': 'never', 'tx7_eq_fault': 'never', 'tx8_eq_fault': 'never', 'rx1cdrlol': 'never', 'rx2cdrlol': 'never', 'rx3cdrlol': 'never', 'rx4cdrlol': 'never', 'rx5cdrlol': 'never', 'rx6cdrlol': 'never', 'rx7cdrlol': 'never', 'rx8cdrlol': 'never'}

TRANSCEIVER_VDM_LALARM_THRESHOLD|Ethernet304
{'laser_temperature_media1': 'N/A', 'laser_temperature_media2': 'N/A', 'laser_temperature_media3': 'N/A', 'laser_temperature_media4': 'N/A', 'laser_temperature_media5': 'N/A', 'laser_temperature_media6': 'N/A', 'laser_temperature_media7': 'N/A', 'laser_temperature_media8': 'N/A', 'esnr_media_input1': 'N/A', 'esnr_media_input2': 'N/A', 'esnr_media_input3': 'N/A', 'esnr_media_input4': 'N/A', 'esnr_media_input5': 'N/A', 'esnr_media_input6': 'N/A', 'esnr_media_input7': 'N/A', 'esnr_media_input8': 'N/A', 'pam4_level_transition_media_input1': 'N/A', 'pam4_level_transition_media_input2': 'N/A', 'pam4_level_transition_media_input3': 'N/A', 'pam4_level_transition_media_input4': 'N/A', 'pam4_level_transition_media_input5': 'N/A', 'pam4_level_transition_media_input6': 'N/A', 'pam4_level_transition_media_input7': 'N/A', 'pam4_level_transition_media_input8': 'N/A', 'prefec_ber_min_media_input1': 'N/A', 'prefec_ber_min_media_input2': 'N/A', 'prefec_ber_min_media_input3': 'N/A', 'prefec_ber_min_media_input4': 'N/A', 'prefec_ber_min_media_input5': 'N/A', 'prefec_ber_min_media_input6': 'N/A', 'prefec_ber_min_media_input7': 'N/A', 'prefec_ber_min_media_input8': 'N/A', 'prefec_ber_max_media_input1': 'N/A', 'prefec_ber_max_media_input2': 'N/A', 'prefec_ber_max_media_input3': 'N/A', 'prefec_ber_max_media_input4': 'N/A', 'prefec_ber_max_media_input5': 'N/A', 'prefec_ber_max_media_input6': 'N/A', 'prefec_ber_max_media_input7': 'N/A', 'prefec_ber_max_media_input8': 'N/A', 'prefec_ber_avg_media_input1': 'N/A', 'prefec_ber_avg_media_input2': 'N/A', 'prefec_ber_avg_media_input3': 'N/A', 'prefec_ber_avg_media_input4': 'N/A', 'prefec_ber_avg_media_input5': 'N/A', 'prefec_ber_avg_media_input6': 'N/A', 'prefec_ber_avg_media_input7': 'N/A', 'prefec_ber_avg_media_input8': 'N/A', 'prefec_ber_curr_media_input1': 'N/A', 'prefec_ber_curr_media_input2': 'N/A', 'prefec_ber_curr_media_input3': 'N/A', 'prefec_ber_curr_media_input4': 'N/A', 'prefec_ber_curr_media_input5': 'N/A', 'prefec_ber_curr_media_input6': 'N/A', 'prefec_ber_curr_media_input7': 'N/A', 'prefec_ber_curr_media_input8': 'N/A', 'errored_frames_min_media_input1': 'N/A', 'errored_frames_min_media_input2': 'N/A', 'errored_frames_min_media_input3': 'N/A', 'errored_frames_min_media_input4': 'N/A', 'errored_frames_min_media_input5': 'N/A', 'errored_frames_min_media_input6': 'N/A', 'errored_frames_min_media_input7': 'N/A', 'errored_frames_min_media_input8': 'N/A', 'errored_frames_max_media_input1': 'N/A', 'errored_frames_max_media_input2': 'N/A', 'errored_frames_max_media_input3': 'N/A', 'errored_frames_max_media_input4': 'N/A', 'errored_frames_max_media_input5': 'N/A', 'errored_frames_max_media_input6': 'N/A', 'errored_frames_max_media_input7': 'N/A', 'errored_frames_max_media_input8': 'N/A', 'errored_frames_avg_media_input1': 'N/A', 'errored_frames_avg_media_input2': 'N/A', 'errored_frames_avg_media_input3': 'N/A', 'errored_frames_avg_media_input4': 'N/A', 'errored_frames_avg_media_input5': 'N/A', 'errored_frames_avg_media_input6': 'N/A', 'errored_frames_avg_media_input7': 'N/A', 'errored_frames_avg_media_input8': 'N/A', 'errored_frames_curr_media_input1': 'N/A', 'errored_frames_curr_media_input2': 'N/A', 'errored_frames_curr_media_input3': 'N/A', 'errored_frames_curr_media_input4': 'N/A', 'errored_frames_curr_media_input5': 'N/A', 'errored_frames_curr_media_input6': 'N/A', 'errored_frames_curr_media_input7': 'N/A', 'errored_frames_curr_media_input8': 'N/A', 'esnr_host_input1': 'N/A', 'esnr_host_input2': 'N/A', 'esnr_host_input3': 'N/A', 'esnr_host_input4': 'N/A', 'esnr_host_input5': 'N/A', 'esnr_host_input6': 'N/A', 'esnr_host_input7': 'N/A', 'esnr_host_input8': 'N/A', 'pam4_level_transition_host_input1': 'N/A', 'pam4_level_transition_host_input2': 'N/A', 'pam4_level_transition_host_input3': 'N/A', 'pam4_level_transition_host_input4': 'N/A', 'pam4_level_transition_host_input5': 'N/A', 'pam4_level_transition_host_input6': 'N/A', 'pam4_level_transition_host_input7': 'N/A', 'pam4_level_transition_host_input8': 'N/A', 'prefec_ber_min_host_input1': 'N/A', 'prefec_ber_min_host_input2': 'N/A', 'prefec_ber_min_host_input3': 'N/A', 'prefec_ber_min_host_input4': 'N/A', 'prefec_ber_min_host_input5': 'N/A', 'prefec_ber_min_host_input6': 'N/A', 'prefec_ber_min_host_input7': 'N/A', 'prefec_ber_min_host_input8': 'N/A', 'prefec_ber_max_host_input1': 'N/A', 'prefec_ber_max_host_input2': 'N/A', 'prefec_ber_max_host_input3': 'N/A', 'prefec_ber_max_host_input4': 'N/A', 'prefec_ber_max_host_input5': 'N/A', 'prefec_ber_max_host_input6': 'N/A', 'prefec_ber_max_host_input7': 'N/A', 'prefec_ber_max_host_input8': 'N/A', 'prefec_ber_avg_host_input1': 'N/A', 'prefec_ber_avg_host_input2': 'N/A', 'prefec_ber_avg_host_input3': 'N/A', 'prefec_ber_avg_host_input4': 'N/A', 'prefec_ber_avg_host_input5': 'N/A', 'prefec_ber_avg_host_input6': 'N/A', 'prefec_ber_avg_host_input7': 'N/A', 'prefec_ber_avg_host_input8': 'N/A', 'prefec_ber_curr_host_input1': 'N/A', 'prefec_ber_curr_host_input2': 'N/A', 'prefec_ber_curr_host_input3': 'N/A', 'prefec_ber_curr_host_input4': 'N/A', 'prefec_ber_curr_host_input5': 'N/A', 'prefec_ber_curr_host_input6': 'N/A', 'prefec_ber_curr_host_input7': 'N/A', 'prefec_ber_curr_host_input8': 'N/A', 'errored_frames_min_host_input1': 'N/A', 'errored_frames_min_host_input2': 'N/A', 'errored_frames_min_host_input3': 'N/A', 'errored_frames_min_host_input4': 'N/A', 'errored_frames_min_host_input5': 'N/A', 'errored_frames_min_host_input6': 'N/A', 'errored_frames_min_host_input7': 'N/A', 'errored_frames_min_host_input8': 'N/A', 'errored_frames_max_host_input1': 'N/A', 'errored_frames_max_host_input2': 'N/A', 'errored_frames_max_host_input3': 'N/A', 'errored_frames_max_host_input4': 'N/A', 'errored_frames_max_host_input5': 'N/A', 'errored_frames_max_host_input6': 'N/A', 'errored_frames_max_host_input7': 'N/A', 'errored_frames_max_host_input8': 'N/A', 'errored_frames_avg_host_input1': 'N/A', 'errored_frames_avg_host_input2': 'N/A', 'errored_frames_avg_host_input3': 'N/A', 'errored_frames_avg_host_input4': 'N/A', 'errored_frames_avg_host_input5': 'N/A', 'errored_frames_avg_host_input6': 'N/A', 'errored_frames_avg_host_input7': 'N/A', 'errored_frames_avg_host_input8': 'N/A', 'errored_frames_curr_host_input1': 'N/A', 'errored_frames_curr_host_input2': 'N/A', 'errored_frames_curr_host_input3': 'N/A', 'errored_frames_curr_host_input4': 'N/A', 'errored_frames_curr_host_input5': 'N/A', 'errored_frames_curr_host_input6': 'N/A', 'errored_frames_curr_host_input7': 'N/A', 'errored_frames_curr_host_input8': 'N/A', 'last_update_time': 'Fri Dec 05 10:34:55 2025'}

TRANSCEIVER_FIRMWARE_INFO|Ethernet304
{'active_firmware': '3.7.0', 'inactive_firmware': '0.0.0'}

TRANSCEIVER_VDM_HWARN_THRESHOLD|Ethernet304
{'laser_temperature_media1': 'N/A', 'laser_temperature_media2': 'N/A', 'laser_temperature_media3': 'N/A', 'laser_temperature_media4': 'N/A', 'laser_temperature_media5': 'N/A', 'laser_temperature_media6': 'N/A', 'laser_temperature_media7': 'N/A', 'laser_temperature_media8': 'N/A', 'esnr_media_input1': 'N/A', 'esnr_media_input2': 'N/A', 'esnr_media_input3': 'N/A', 'esnr_media_input4': 'N/A', 'esnr_media_input5': 'N/A', 'esnr_media_input6': 'N/A', 'esnr_media_input7': 'N/A', 'esnr_media_input8': 'N/A', 'pam4_level_transition_media_input1': 'N/A', 'pam4_level_transition_media_input2': 'N/A', 'pam4_level_transition_media_input3': 'N/A', 'pam4_level_transition_media_input4': 'N/A', 'pam4_level_transition_media_input5': 'N/A', 'pam4_level_transition_media_input6': 'N/A', 'pam4_level_transition_media_input7': 'N/A', 'pam4_level_transition_media_input8': 'N/A', 'prefec_ber_min_media_input1': 'N/A', 'prefec_ber_min_media_input2': 'N/A', 'prefec_ber_min_media_input3': 'N/A', 'prefec_ber_min_media_input4': 'N/A', 'prefec_ber_min_media_input5': 'N/A', 'prefec_ber_min_media_input6': 'N/A', 'prefec_ber_min_media_input7': 'N/A', 'prefec_ber_min_media_input8': 'N/A', 'prefec_ber_max_media_input1': 'N/A', 'prefec_ber_max_media_input2': 'N/A', 'prefec_ber_max_media_input3': 'N/A', 'prefec_ber_max_media_input4': 'N/A', 'prefec_ber_max_media_input5': 'N/A', 'prefec_ber_max_media_input6': 'N/A', 'prefec_ber_max_media_input7': 'N/A', 'prefec_ber_max_media_input8': 'N/A', 'prefec_ber_avg_media_input1': 'N/A', 'prefec_ber_avg_media_input2': 'N/A', 'prefec_ber_avg_media_input3': 'N/A', 'prefec_ber_avg_media_input4': 'N/A', 'prefec_ber_avg_media_input5': 'N/A', 'prefec_ber_avg_media_input6': 'N/A', 'prefec_ber_avg_media_input7': 'N/A', 'prefec_ber_avg_media_input8': 'N/A', 'prefec_ber_curr_media_input1': 'N/A', 'prefec_ber_curr_media_input2': 'N/A', 'prefec_ber_curr_media_input3': 'N/A', 'prefec_ber_curr_media_input4': 'N/A', 'prefec_ber_curr_media_input5': 'N/A', 'prefec_ber_curr_media_input6': 'N/A', 'prefec_ber_curr_media_input7': 'N/A', 'prefec_ber_curr_media_input8': 'N/A', 'errored_frames_min_media_input1': 'N/A', 'errored_frames_min_media_input2': 'N/A', 'errored_frames_min_media_input3': 'N/A', 'errored_frames_min_media_input4': 'N/A', 'errored_frames_min_media_input5': 'N/A', 'errored_frames_min_media_input6': 'N/A', 'errored_frames_min_media_input7': 'N/A', 'errored_frames_min_media_input8': 'N/A', 'errored_frames_max_media_input1': 'N/A', 'errored_frames_max_media_input2': 'N/A', 'errored_frames_max_media_input3': 'N/A', 'errored_frames_max_media_input4': 'N/A', 'errored_frames_max_media_input5': 'N/A', 'errored_frames_max_media_input6': 'N/A', 'errored_frames_max_media_input7': 'N/A', 'errored_frames_max_media_input8': 'N/A', 'errored_frames_avg_media_input1': 'N/A', 'errored_frames_avg_media_input2': 'N/A', 'errored_frames_avg_media_input3': 'N/A', 'errored_frames_avg_media_input4': 'N/A', 'errored_frames_avg_media_input5': 'N/A', 'errored_frames_avg_media_input6': 'N/A', 'errored_frames_avg_media_input7': 'N/A', 'errored_frames_avg_media_input8': 'N/A', 'errored_frames_curr_media_input1': 'N/A', 'errored_frames_curr_media_input2': 'N/A', 'errored_frames_curr_media_input3': 'N/A', 'errored_frames_curr_media_input4': 'N/A', 'errored_frames_curr_media_input5': 'N/A', 'errored_frames_curr_media_input6': 'N/A', 'errored_frames_curr_media_input7': 'N/A', 'errored_frames_curr_media_input8': 'N/A', 'esnr_host_input1': 'N/A', 'esnr_host_input2': 'N/A', 'esnr_host_input3': 'N/A', 'esnr_host_input4': 'N/A', 'esnr_host_input5': 'N/A', 'esnr_host_input6': 'N/A', 'esnr_host_input7': 'N/A', 'esnr_host_input8': 'N/A', 'pam4_level_transition_host_input1': 'N/A', 'pam4_level_transition_host_input2': 'N/A', 'pam4_level_transition_host_input3': 'N/A', 'pam4_level_transition_host_input4': 'N/A', 'pam4_level_transition_host_input5': 'N/A', 'pam4_level_transition_host_input6': 'N/A', 'pam4_level_transition_host_input7': 'N/A', 'pam4_level_transition_host_input8': 'N/A', 'prefec_ber_min_host_input1': 'N/A', 'prefec_ber_min_host_input2': 'N/A', 'prefec_ber_min_host_input3': 'N/A', 'prefec_ber_min_host_input4': 'N/A', 'prefec_ber_min_host_input5': 'N/A', 'prefec_ber_min_host_input6': 'N/A', 'prefec_ber_min_host_input7': 'N/A', 'prefec_ber_min_host_input8': 'N/A', 'prefec_ber_max_host_input1': 'N/A', 'prefec_ber_max_host_input2': 'N/A', 'prefec_ber_max_host_input3': 'N/A', 'prefec_ber_max_host_input4': 'N/A', 'prefec_ber_max_host_input5': 'N/A', 'prefec_ber_max_host_input6': 'N/A', 'prefec_ber_max_host_input7': 'N/A', 'prefec_ber_max_host_input8': 'N/A', 'prefec_ber_avg_host_input1': 'N/A', 'prefec_ber_avg_host_input2': 'N/A', 'prefec_ber_avg_host_input3': 'N/A', 'prefec_ber_avg_host_input4': 'N/A', 'prefec_ber_avg_host_input5': 'N/A', 'prefec_ber_avg_host_input6': 'N/A', 'prefec_ber_avg_host_input7': 'N/A', 'prefec_ber_avg_host_input8': 'N/A', 'prefec_ber_curr_host_input1': 'N/A', 'prefec_ber_curr_host_input2': 'N/A', 'prefec_ber_curr_host_input3': 'N/A', 'prefec_ber_curr_host_input4': 'N/A', 'prefec_ber_curr_host_input5': 'N/A', 'prefec_ber_curr_host_input6': 'N/A', 'prefec_ber_curr_host_input7': 'N/A', 'prefec_ber_curr_host_input8': 'N/A', 'errored_frames_min_host_input1': 'N/A', 'errored_frames_min_host_input2': 'N/A', 'errored_frames_min_host_input3': 'N/A', 'errored_frames_min_host_input4': 'N/A', 'errored_frames_min_host_input5': 'N/A', 'errored_frames_min_host_input6': 'N/A', 'errored_frames_min_host_input7': 'N/A', 'errored_frames_min_host_input8': 'N/A', 'errored_frames_max_host_input1': 'N/A', 'errored_frames_max_host_input2': 'N/A', 'errored_frames_max_host_input3': 'N/A', 'errored_frames_max_host_input4': 'N/A', 'errored_frames_max_host_input5': 'N/A', 'errored_frames_max_host_input6': 'N/A', 'errored_frames_max_host_input7': 'N/A', 'errored_frames_max_host_input8': 'N/A', 'errored_frames_avg_host_input1': 'N/A', 'errored_frames_avg_host_input2': 'N/A', 'errored_frames_avg_host_input3': 'N/A', 'errored_frames_avg_host_input4': 'N/A', 'errored_frames_avg_host_input5': 'N/A', 'errored_frames_avg_host_input6': 'N/A', 'errored_frames_avg_host_input7': 'N/A', 'errored_frames_avg_host_input8': 'N/A', 'errored_frames_curr_host_input1': 'N/A', 'errored_frames_curr_host_input2': 'N/A', 'errored_frames_curr_host_input3': 'N/A', 'errored_frames_curr_host_input4': 'N/A', 'errored_frames_curr_host_input5': 'N/A', 'errored_frames_curr_host_input6': 'N/A', 'errored_frames_curr_host_input7': 'N/A', 'errored_frames_curr_host_input8': 'N/A', 'last_update_time': 'Fri Dec 05 10:34:55 2025'}

TRANSCEIVER_STATUS_SW|Ethernet304
{'cmis_state': 'READY', 'status': '1', 'error': 'N/A'}

TRANSCEIVER_STATUS_FLAG_CLEAR_TIME|Ethernet304
{'datapath_firmware_fault': 'never', 'module_firmware_fault': 'never', 'module_state_changed': 'never', 'tx1fault': 'never', 'tx2fault': 'never', 'tx3fault': 'never', 'tx4fault': 'never', 'tx5fault': 'never', 'tx6fault': 'never', 'tx7fault': 'never', 'tx8fault': 'never', 'rx1los': 'Fri Dec 05 10:36:48 2025', 'rx2los': 'Fri Dec 05 10:36:48 2025', 'rx3los': 'Fri Dec 05 10:36:48 2025', 'rx4los': 'Fri Dec 05 10:36:48 2025', 'rx5los': 'Fri Dec 05 10:36:48 2025', 'rx6los': 'Fri Dec 05 10:36:48 2025', 'rx7los': 'Fri Dec 05 10:36:48 2025', 'rx8los': 'Fri Dec 05 10:36:48 2025', 'tx1los_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx2los_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx3los_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx4los_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx5los_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx6los_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx7los_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx8los_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx1cdrlol_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx2cdrlol_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx3cdrlol_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx4cdrlol_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx5cdrlol_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx6cdrlol_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx7cdrlol_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx8cdrlol_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx1_eq_fault': 'never', 'tx2_eq_fault': 'never', 'tx3_eq_fault': 'never', 'tx4_eq_fault': 'never', 'tx5_eq_fault': 'never', 'tx6_eq_fault': 'never', 'tx7_eq_fault': 'never', 'tx8_eq_fault': 'never', 'rx1cdrlol': 'Fri Dec 05 10:36:48 2025', 'rx2cdrlol': 'Fri Dec 05 10:36:48 2025', 'rx3cdrlol': 'Fri Dec 05 10:36:48 2025', 'rx4cdrlol': 'Fri Dec 05 10:36:48 2025', 'rx5cdrlol': 'Fri Dec 05 10:36:48 2025', 'rx6cdrlol': 'Fri Dec 05 10:36:48 2025', 'rx7cdrlol': 'Fri Dec 05 10:36:48 2025', 'rx8cdrlol': 'Fri Dec 05 10:36:48 2025'}

TRANSCEIVER_DOM_FLAG_CLEAR_TIME|Ethernet304
{'tempHAlarm': 'never', 'tempLAlarm': 'never', 'tempHWarn': 'never', 'tempLWarn': 'never', 'vccHAlarm': 'never', 'vccLAlarm': 'never', 'vccHWarn': 'never', 'vccLWarn': 'never', 'lasertempHAlarm': 'never', 'lasertempLAlarm': 'never', 'lasertempHWarn': 'never', 'lasertempLWarn': 'never', 'tx1powerHAlarm': 'never', 'tx1powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx1powerHWarn': 'never', 'tx1powerLWarn': 'Fri Dec 05 10:36:48 2025', 'tx2powerHAlarm': 'never', 'tx2powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx2powerHWarn': 'never', 'tx2powerLWarn': 'Fri Dec 05 10:36:48 2025', 'tx3powerHAlarm': 'never', 'tx3powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx3powerHWarn': 'never', 'tx3powerLWarn': 'Fri Dec 05 10:36:48 2025', 'tx4powerHAlarm': 'never', 'tx4powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx4powerHWarn': 'never', 'tx4powerLWarn': 'Fri Dec 05 10:36:48 2025', 'tx5powerHAlarm': 'never', 'tx5powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx5powerHWarn': 'never', 'tx5powerLWarn': 'Fri Dec 05 10:36:48 2025', 'tx6powerHAlarm': 'never', 'tx6powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx6powerHWarn': 'never', 'tx6powerLWarn': 'Fri Dec 05 10:36:48 2025', 'tx7powerHAlarm': 'never', 'tx7powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx7powerHWarn': 'never', 'tx7powerLWarn': 'Fri Dec 05 10:36:48 2025', 'tx8powerHAlarm': 'never', 'tx8powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx8powerHWarn': 'never', 'tx8powerLWarn': 'Fri Dec 05 10:36:48 2025', 'rx1powerHAlarm': 'never', 'rx1powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'rx1powerHWarn': 'never', 'rx1powerLWarn': 'Fri Dec 05 10:36:48 2025', 'rx2powerHAlarm': 'never', 'rx2powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'rx2powerHWarn': 'never', 'rx2powerLWarn': 'Fri Dec 05 10:36:48 2025', 'rx3powerHAlarm': 'never', 'rx3powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'rx3powerHWarn': 'never', 'rx3powerLWarn': 'Fri Dec 05 10:36:48 2025', 'rx4powerHAlarm': 'never', 'rx4powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'rx4powerHWarn': 'never', 'rx4powerLWarn': 'Fri Dec 05 10:36:48 2025', 'rx5powerHAlarm': 'never', 'rx5powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'rx5powerHWarn': 'never', 'rx5powerLWarn': 'Fri Dec 05 10:36:48 2025', 'rx6powerHAlarm': 'never', 'rx6powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'rx6powerHWarn': 'never', 'rx6powerLWarn': 'Fri Dec 05 10:36:48 2025', 'rx7powerHAlarm': 'never', 'rx7powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'rx7powerHWarn': 'never', 'rx7powerLWarn': 'Fri Dec 05 10:36:48 2025', 'rx8powerHAlarm': 'never', 'rx8powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'rx8powerHWarn': 'never', 'rx8powerLWarn': 'Fri Dec 05 10:36:48 2025', 'tx1biasHAlarm': 'never', 'tx1biasLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx1biasHWarn': 'never', 'tx1biasLWarn': 'Fri Dec 05 10:36:48 2025', 'tx2biasHAlarm': 'never', 'tx2biasLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx2biasHWarn': 'never', 'tx2biasLWarn': 'Fri Dec 05 10:36:48 2025', 'tx3biasHAlarm': 'never', 'tx3biasLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx3biasHWarn': 'never', 'tx3biasLWarn': 'Fri Dec 05 10:36:48 2025', 'tx4biasHAlarm': 'never', 'tx4biasLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx4biasHWarn': 'never', 'tx4biasLWarn': 'Fri Dec 05 10:36:48 2025', 'tx5biasHAlarm': 'never', 'tx5biasLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx5biasHWarn': 'never', 'tx5biasLWarn': 'Fri Dec 05 10:36:48 2025', 'tx6biasHAlarm': 'never', 'tx6biasLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx6biasHWarn': 'never', 'tx6biasLWarn': 'Fri Dec 05 10:36:48 2025', 'tx7biasHAlarm': 'never', 'tx7biasLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx7biasHWarn': 'never', 'tx7biasLWarn': 'Fri Dec 05 10:36:48 2025', 'tx8biasHAlarm': 'never', 'tx8biasLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx8biasHWarn': 'never', 'tx8biasLWarn': 'Fri Dec 05 10:36:48 2025'}

TRANSCEIVER_DOM_FLAG|Ethernet304
{'tempHAlarm': 'False', 'tempLAlarm': 'False', 'tempHWarn': 'False', 'tempLWarn': 'False', 'vccHAlarm': 'False', 'vccLAlarm': 'False', 'vccHWarn': 'False', 'vccLWarn': 'False', 'lasertempHAlarm': 'False', 'lasertempLAlarm': 'False', 'lasertempHWarn': 'False', 'lasertempLWarn': 'False', 'tx1powerHAlarm': 'False', 'tx1powerLAlarm': 'False', 'tx1powerHWarn': 'False', 'tx1powerLWarn': 'False', 'tx2powerHAlarm': 'False', 'tx2powerLAlarm': 'False', 'tx2powerHWarn': 'False', 'tx2powerLWarn': 'False', 'tx3powerHAlarm': 'False', 'tx3powerLAlarm': 'False', 'tx3powerHWarn': 'False', 'tx3powerLWarn': 'False', 'tx4powerHAlarm': 'False', 'tx4powerLAlarm': 'False', 'tx4powerHWarn': 'False', 'tx4powerLWarn': 'False', 'tx5powerHAlarm': 'False', 'tx5powerLAlarm': 'False', 'tx5powerHWarn': 'False', 'tx5powerLWarn': 'False', 'tx6powerHAlarm': 'False', 'tx6powerLAlarm': 'False', 'tx6powerHWarn': 'False', 'tx6powerLWarn': 'False', 'tx7powerHAlarm': 'False', 'tx7powerLAlarm': 'False', 'tx7powerHWarn': 'False', 'tx7powerLWarn': 'False', 'tx8powerHAlarm': 'False', 'tx8powerLAlarm': 'False', 'tx8powerHWarn': 'False', 'tx8powerLWarn': 'False', 'rx1powerHAlarm': 'False', 'rx1powerLAlarm': 'False', 'rx1powerHWarn': 'False', 'rx1powerLWarn': 'False', 'rx2powerHAlarm': 'False', 'rx2powerLAlarm': 'False', 'rx2powerHWarn': 'False', 'rx2powerLWarn': 'False', 'rx3powerHAlarm': 'False', 'rx3powerLAlarm': 'False', 'rx3powerHWarn': 'False', 'rx3powerLWarn': 'False', 'rx4powerHAlarm': 'False', 'rx4powerLAlarm': 'False', 'rx4powerHWarn': 'False', 'rx4powerLWarn': 'False', 'rx5powerHAlarm': 'False', 'rx5powerLAlarm': 'False', 'rx5powerHWarn': 'False', 'rx5powerLWarn': 'False', 'rx6powerHAlarm': 'False', 'rx6powerLAlarm': 'False', 'rx6powerHWarn': 'False', 'rx6powerLWarn': 'False', 'rx7powerHAlarm': 'False', 'rx7powerLAlarm': 'False', 'rx7powerHWarn': 'False', 'rx7powerLWarn': 'False', 'rx8powerHAlarm': 'False', 'rx8powerLAlarm': 'False', 'rx8powerHWarn': 'False', 'rx8powerLWarn': 'False', 'tx1biasHAlarm': 'False', 'tx1biasLAlarm': 'False', 'tx1biasHWarn': 'False', 'tx1biasLWarn': 'False', 'tx2biasHAlarm': 'False', 'tx2biasLAlarm': 'False', 'tx2biasHWarn': 'False', 'tx2biasLWarn': 'False', 'tx3biasHAlarm': 'False', 'tx3biasLAlarm': 'False', 'tx3biasHWarn': 'False', 'tx3biasLWarn': 'False', 'tx4biasHAlarm': 'False', 'tx4biasLAlarm': 'False', 'tx4biasHWarn': 'False', 'tx4biasLWarn': 'False', 'tx5biasHAlarm': 'False', 'tx5biasLAlarm': 'False', 'tx5biasHWarn': 'False', 'tx5biasLWarn': 'False', 'tx6biasHAlarm': 'False', 'tx6biasLAlarm': 'False', 'tx6biasHWarn': 'False', 'tx6biasLWarn': 'False', 'tx7biasHAlarm': 'False', 'tx7biasLAlarm': 'False', 'tx7biasHWarn': 'False', 'tx7biasLWarn': 'False', 'tx8biasHAlarm': 'False', 'tx8biasLAlarm': 'False', 'tx8biasHWarn': 'False', 'tx8biasLWarn': 'False', 'last_update_time': 'Fri Dec 05 10:51:29 2025'}

TRANSCEIVER_DOM_FLAG_CHANGE_COUNT|Ethernet304
{'tempHAlarm': '0', 'tempLAlarm': '0', 'tempHWarn': '0', 'tempLWarn': '0', 'vccHAlarm': '0', 'vccLAlarm': '0', 'vccHWarn': '0', 'vccLWarn': '0', 'lasertempHAlarm': '0', 'lasertempLAlarm': '0', 'lasertempHWarn': '0', 'lasertempLWarn': '0', 'tx1powerHAlarm': '0', 'tx1powerLAlarm': '1', 'tx1powerHWarn': '0', 'tx1powerLWarn': '1', 'tx2powerHAlarm': '0', 'tx2powerLAlarm': '1', 'tx2powerHWarn': '0', 'tx2powerLWarn': '1', 'tx3powerHAlarm': '0', 'tx3powerLAlarm': '1', 'tx3powerHWarn': '0', 'tx3powerLWarn': '1', 'tx4powerHAlarm': '0', 'tx4powerLAlarm': '1', 'tx4powerHWarn': '0', 'tx4powerLWarn': '1', 'tx5powerHAlarm': '0', 'tx5powerLAlarm': '1', 'tx5powerHWarn': '0', 'tx5powerLWarn': '1', 'tx6powerHAlarm': '0', 'tx6powerLAlarm': '1', 'tx6powerHWarn': '0', 'tx6powerLWarn': '1', 'tx7powerHAlarm': '0', 'tx7powerLAlarm': '1', 'tx7powerHWarn': '0', 'tx7powerLWarn': '1', 'tx8powerHAlarm': '0', 'tx8powerLAlarm': '1', 'tx8powerHWarn': '0', 'tx8powerLWarn': '1', 'rx1powerHAlarm': '0', 'rx1powerLAlarm': '1', 'rx1powerHWarn': '0', 'rx1powerLWarn': '1', 'rx2powerHAlarm': '0', 'rx2powerLAlarm': '1', 'rx2powerHWarn': '0', 'rx2powerLWarn': '1', 'rx3powerHAlarm': '0', 'rx3powerLAlarm': '1', 'rx3powerHWarn': '0', 'rx3powerLWarn': '1', 'rx4powerHAlarm': '0', 'rx4powerLAlarm': '1', 'rx4powerHWarn': '0', 'rx4powerLWarn': '1', 'rx5powerHAlarm': '0', 'rx5powerLAlarm': '1', 'rx5powerHWarn': '0', 'rx5powerLWarn': '1', 'rx6powerHAlarm': '0', 'rx6powerLAlarm': '1', 'rx6powerHWarn': '0', 'rx6powerLWarn': '1', 'rx7powerHAlarm': '0', 'rx7powerLAlarm': '1', 'rx7powerHWarn': '0', 'rx7powerLWarn': '1', 'rx8powerHAlarm': '0', 'rx8powerLAlarm': '1', 'rx8powerHWarn': '0', 'rx8powerLWarn': '1', 'tx1biasHAlarm': '0', 'tx1biasLAlarm': '1', 'tx1biasHWarn': '0', 'tx1biasLWarn': '1', 'tx2biasHAlarm': '0', 'tx2biasLAlarm': '1', 'tx2biasHWarn': '0', 'tx2biasLWarn': '1', 'tx3biasHAlarm': '0', 'tx3biasLAlarm': '1', 'tx3biasHWarn': '0', 'tx3biasLWarn': '1', 'tx4biasHAlarm': '0', 'tx4biasLAlarm': '1', 'tx4biasHWarn': '0', 'tx4biasLWarn': '1', 'tx5biasHAlarm': '0', 'tx5biasLAlarm': '1', 'tx5biasHWarn': '0', 'tx5biasLWarn': '1', 'tx6biasHAlarm': '0', 'tx6biasLAlarm': '1', 'tx6biasHWarn': '0', 'tx6biasLWarn': '1', 'tx7biasHAlarm': '0', 'tx7biasLAlarm': '1', 'tx7biasHWarn': '0', 'tx7biasLWarn': '1', 'tx8biasHAlarm': '0', 'tx8biasLAlarm': '1', 'tx8biasHWarn': '0', 'tx8biasLWarn': '1'}

TRANSCEIVER_STATUS_FLAG|Ethernet304
{'datapath_firmware_fault': 'False', 'module_firmware_fault': 'False', 'module_state_changed': 'False', 'tx1fault': 'False', 'tx2fault': 'False', 'tx3fault': 'False', 'tx4fault': 'False', 'tx5fault': 'False', 'tx6fault': 'False', 'tx7fault': 'False', 'tx8fault': 'False', 'rx1los': 'False', 'rx2los': 'False', 'rx3los': 'False', 'rx4los': 'False', 'rx5los': 'False', 'rx6los': 'False', 'rx7los': 'False', 'rx8los': 'False', 'tx1los_hostlane': 'False', 'tx2los_hostlane': 'False', 'tx3los_hostlane': 'False', 'tx4los_hostlane': 'False', 'tx5los_hostlane': 'False', 'tx6los_hostlane': 'False', 'tx7los_hostlane': 'False', 'tx8los_hostlane': 'False', 'tx1cdrlol_hostlane': 'False', 'tx2cdrlol_hostlane': 'False', 'tx3cdrlol_hostlane': 'False', 'tx4cdrlol_hostlane': 'False', 'tx5cdrlol_hostlane': 'False', 'tx6cdrlol_hostlane': 'False', 'tx7cdrlol_hostlane': 'False', 'tx8cdrlol_hostlane': 'False', 'tx1_eq_fault': 'N/A', 'tx2_eq_fault': 'N/A', 'tx3_eq_fault': 'N/A', 'tx4_eq_fault': 'N/A', 'tx5_eq_fault': 'N/A', 'tx6_eq_fault': 'N/A', 'tx7_eq_fault': 'N/A', 'tx8_eq_fault': 'N/A', 'rx1cdrlol': 'False', 'rx2cdrlol': 'False', 'rx3cdrlol': 'False', 'rx4cdrlol': 'False', 'rx5cdrlol': 'False', 'rx6cdrlol': 'False', 'rx7cdrlol': 'False', 'rx8cdrlol': 'False', 'last_update_time': 'Fri Dec 05 10:51:29 2025'}

TRANSCEIVER_DOM_FLAG_SET_TIME|Ethernet304
{'tempHAlarm': 'never', 'tempLAlarm': 'never', 'tempHWarn': 'never', 'tempLWarn': 'never', 'vccHAlarm': 'never', 'vccLAlarm': 'never', 'vccHWarn': 'never', 'vccLWarn': 'never', 'lasertempHAlarm': 'never', 'lasertempLAlarm': 'never', 'lasertempHWarn': 'never', 'lasertempLWarn': 'never', 'tx1powerHAlarm': 'never', 'tx1powerLAlarm': 'never', 'tx1powerHWarn': 'never', 'tx1powerLWarn': 'never', 'tx2powerHAlarm': 'never', 'tx2powerLAlarm': 'never', 'tx2powerHWarn': 'never', 'tx2powerLWarn': 'never', 'tx3powerHAlarm': 'never', 'tx3powerLAlarm': 'never', 'tx3powerHWarn': 'never', 'tx3powerLWarn': 'never', 'tx4powerHAlarm': 'never', 'tx4powerLAlarm': 'never', 'tx4powerHWarn': 'never', 'tx4powerLWarn': 'never', 'tx5powerHAlarm': 'never', 'tx5powerLAlarm': 'never', 'tx5powerHWarn': 'never', 'tx5powerLWarn': 'never', 'tx6powerHAlarm': 'never', 'tx6powerLAlarm': 'never', 'tx6powerHWarn': 'never', 'tx6powerLWarn': 'never', 'tx7powerHAlarm': 'never', 'tx7powerLAlarm': 'never', 'tx7powerHWarn': 'never', 'tx7powerLWarn': 'never', 'tx8powerHAlarm': 'never', 'tx8powerLAlarm': 'never', 'tx8powerHWarn': 'never', 'tx8powerLWarn': 'never', 'rx1powerHAlarm': 'never', 'rx1powerLAlarm': 'never', 'rx1powerHWarn': 'never', 'rx1powerLWarn': 'never', 'rx2powerHAlarm': 'never', 'rx2powerLAlarm': 'never', 'rx2powerHWarn': 'never', 'rx2powerLWarn': 'never', 'rx3powerHAlarm': 'never', 'rx3powerLAlarm': 'never', 'rx3powerHWarn': 'never', 'rx3powerLWarn': 'never', 'rx4powerHAlarm': 'never', 'rx4powerLAlarm': 'never', 'rx4powerHWarn': 'never', 'rx4powerLWarn': 'never', 'rx5powerHAlarm': 'never', 'rx5powerLAlarm': 'never', 'rx5powerHWarn': 'never', 'rx5powerLWarn': 'never', 'rx6powerHAlarm': 'never', 'rx6powerLAlarm': 'never', 'rx6powerHWarn': 'never', 'rx6powerLWarn': 'never', 'rx7powerHAlarm': 'never', 'rx7powerLAlarm': 'never', 'rx7powerHWarn': 'never', 'rx7powerLWarn': 'never', 'rx8powerHAlarm': 'never', 'rx8powerLAlarm': 'never', 'rx8powerHWarn': 'never', 'rx8powerLWarn': 'never', 'tx1biasHAlarm': 'never', 'tx1biasLAlarm': 'never', 'tx1biasHWarn': 'never', 'tx1biasLWarn': 'never', 'tx2biasHAlarm': 'never', 'tx2biasLAlarm': 'never', 'tx2biasHWarn': 'never', 'tx2biasLWarn': 'never', 'tx3biasHAlarm': 'never', 'tx3biasLAlarm': 'never', 'tx3biasHWarn': 'never', 'tx3biasLWarn': 'never', 'tx4biasHAlarm': 'never', 'tx4biasLAlarm': 'never', 'tx4biasHWarn': 'never', 'tx4biasLWarn': 'never', 'tx5biasHAlarm': 'never', 'tx5biasLAlarm': 'never', 'tx5biasHWarn': 'never', 'tx5biasLWarn': 'never', 'tx6biasHAlarm': 'never', 'tx6biasLAlarm': 'never', 'tx6biasHWarn': 'never', 'tx6biasLWarn': 'never', 'tx7biasHAlarm': 'never', 'tx7biasLAlarm': 'never', 'tx7biasHWarn': 'never', 'tx7biasLWarn': 'never', 'tx8biasHAlarm': 'never', 'tx8biasLAlarm': 'never', 'tx8biasHWarn': 'never', 'tx8biasLWarn': 'never'}

TRANSCEIVER_STATUS|Ethernet304
{'module_state': 'ModuleReady', 'module_fault_cause': 'No Fault detected', 'DP1State': 'DataPathActivated', 'DP2State': 'DataPathActivated', 'DP3State': 'DataPathActivated', 'DP4State': 'DataPathActivated', 'DP5State': 'DataPathActivated', 'DP6State': 'DataPathActivated', 'DP7State': 'DataPathActivated', 'DP8State': 'DataPathActivated', 'tx1OutputStatus': 'True', 'tx2OutputStatus': 'True', 'tx3OutputStatus': 'True', 'tx4OutputStatus': 'True', 'tx5OutputStatus': 'True', 'tx6OutputStatus': 'True', 'tx7OutputStatus': 'True', 'tx8OutputStatus': 'True', 'rx1OutputStatusHostlane': 'True', 'rx2OutputStatusHostlane': 'True', 'rx3OutputStatusHostlane': 'True', 'rx4OutputStatusHostlane': 'True', 'rx5OutputStatusHostlane': 'True', 'rx6OutputStatusHostlane': 'True', 'rx7OutputStatusHostlane': 'True', 'rx8OutputStatusHostlane': 'True', 'tx_disabled_channel': '0', 'tx1disable': 'False', 'tx2disable': 'False', 'tx3disable': 'False', 'tx4disable': 'False', 'tx5disable': 'False', 'tx6disable': 'False', 'tx7disable': 'False', 'tx8disable': 'False', 'config_state_hostlane1': 'ConfigSuccess', 'config_state_hostlane2': 'ConfigSuccess', 'config_state_hostlane3': 'ConfigSuccess', 'config_state_hostlane4': 'ConfigSuccess', 'config_state_hostlane5': 'ConfigSuccess', 'config_state_hostlane6': 'ConfigSuccess', 'config_state_hostlane7': 'ConfigSuccess', 'config_state_hostlane8': 'ConfigSuccess', 'dpdeinit_hostlane1': 'False', 'dpdeinit_hostlane2': 'False', 'dpdeinit_hostlane3': 'False', 'dpdeinit_hostlane4': 'False', 'dpdeinit_hostlane5': 'False', 'dpdeinit_hostlane6': 'False', 'dpdeinit_hostlane7': 'False', 'dpdeinit_hostlane8': 'False', 'dpinit_pending_hostlane1': 'False', 'dpinit_pending_hostlane2': 'False', 'dpinit_pending_hostlane3': 'False', 'dpinit_pending_hostlane4': 'False', 'dpinit_pending_hostlane5': 'False', 'dpinit_pending_hostlane6': 'False', 'dpinit_pending_hostlane7': 'False', 'dpinit_pending_hostlane8': 'False', 'last_update_time': 'Fri Dec 05 10:51:29 2025'}

TRANSCEIVER_INFO|Ethernet304
{'media_interface_technology': '1310 nm EML', 'nominal_bit_rate': 'N/A', 'is_replaceable': 'True', 'active_apsel_hostlane7': '2', 'ext_rateselect_compliance': 'N/A', 'hardware_rev': '1.0', 'model': 'OSFP-800G-2XDR4', 'active_apsel_hostlane3': '2', 'media_lane_count': '8', 'active_apsel_hostlane8': '2', 'encoding': 'N/A', 'vendor_oui': '00-1c-73', 'active_apsel_hostlane5': '2', 'cmis_rev': '5.0', 'cable_type': 'Length Cable Assembly(m)', 'active_apsel_hostlane4': '2', 'cable_length': '0.0', 'ext_identifier': 'Power Class 8 (16.0W Max)', 'active_apsel_hostlane1': '2', 'vendor_rev': '51', 'vdm_supported': 'False', 'connector': 'MPO 1x12', 'specification_compliance': 'sm_media_interface', 'type': 'OSFP 8X Pluggable Transceiver', 'manufacturer': 'Arista Networks', 'host_lane_count': '8', 'application_advertisement': "{1: {'host_electrical_interface_id': '400GAUI-4-L C2M (Annex 120G)', 'module_media_interface_id': '400GBASE-DR4 (Cl 124)', 'media_lane_count': 4, 'host_lane_count': 4, 'host_lane_assignment_options': 17, 'media_lane_assignment_options': 17}, 2: {'host_electrical_interface_id': '800GAUI-8 L C2M (Annex 120G)', 'module_media_interface_id': 'Undefined', 'media_lane_count': 8, 'host_lane_count': 8, 'host_lane_assignment_options': 1, 'media_lane_assignment_options': 1}, 3: {'host_electrical_interface_id': '200GAUI-2-L C2M (Annex 120G)', 'module_media_interface_id': 'Undefined', 'media_lane_count': 2, 'host_lane_count': 2, 'host_lane_assignment_options': 85, 'media_lane_assignment_options': 85}, 4: {'host_electrical_interface_id': '100GAUI-1-L C2M (Annex 120G)', 'module_media_interface_id': '100G-FR/100GBASE-FR1 (Cl 140)', 'media_lane_count': 1, 'host_lane_count': 1, 'host_lane_assignment_options': 255, 'media_lane_assignment_options': 255}}", 'serial': 'XTG245001190', 'active_apsel_hostlane2': '2', 'type_abbrv_name': 'OSFP-8X', 'vendor_date': '2024-12-12', 'active_apsel_hostlane6': '2'}

TRANSCEIVER_VDM_HALARM_THRESHOLD|Ethernet304
{'laser_temperature_media1': 'N/A', 'laser_temperature_media2': 'N/A', 'laser_temperature_media3': 'N/A', 'laser_temperature_media4': 'N/A', 'laser_temperature_media5': 'N/A', 'laser_temperature_media6': 'N/A', 'laser_temperature_media7': 'N/A', 'laser_temperature_media8': 'N/A', 'esnr_media_input1': 'N/A', 'esnr_media_input2': 'N/A', 'esnr_media_input3': 'N/A', 'esnr_media_input4': 'N/A', 'esnr_media_input5': 'N/A', 'esnr_media_input6': 'N/A', 'esnr_media_input7': 'N/A', 'esnr_media_input8': 'N/A', 'pam4_level_transition_media_input1': 'N/A', 'pam4_level_transition_media_input2': 'N/A', 'pam4_level_transition_media_input3': 'N/A', 'pam4_level_transition_media_input4': 'N/A', 'pam4_level_transition_media_input5': 'N/A', 'pam4_level_transition_media_input6': 'N/A', 'pam4_level_transition_media_input7': 'N/A', 'pam4_level_transition_media_input8': 'N/A', 'prefec_ber_min_media_input1': 'N/A', 'prefec_ber_min_media_input2': 'N/A', 'prefec_ber_min_media_input3': 'N/A', 'prefec_ber_min_media_input4': 'N/A', 'prefec_ber_min_media_input5': 'N/A', 'prefec_ber_min_media_input6': 'N/A', 'prefec_ber_min_media_input7': 'N/A', 'prefec_ber_min_media_input8': 'N/A', 'prefec_ber_max_media_input1': 'N/A', 'prefec_ber_max_media_input2': 'N/A', 'prefec_ber_max_media_input3': 'N/A', 'prefec_ber_max_media_input4': 'N/A', 'prefec_ber_max_media_input5': 'N/A', 'prefec_ber_max_media_input6': 'N/A', 'prefec_ber_max_media_input7': 'N/A', 'prefec_ber_max_media_input8': 'N/A', 'prefec_ber_avg_media_input1': 'N/A', 'prefec_ber_avg_media_input2': 'N/A', 'prefec_ber_avg_media_input3': 'N/A', 'prefec_ber_avg_media_input4': 'N/A', 'prefec_ber_avg_media_input5': 'N/A', 'prefec_ber_avg_media_input6': 'N/A', 'prefec_ber_avg_media_input7': 'N/A', 'prefec_ber_avg_media_input8': 'N/A', 'prefec_ber_curr_media_input1': 'N/A', 'prefec_ber_curr_media_input2': 'N/A', 'prefec_ber_curr_media_input3': 'N/A', 'prefec_ber_curr_media_input4': 'N/A', 'prefec_ber_curr_media_input5': 'N/A', 'prefec_ber_curr_media_input6': 'N/A', 'prefec_ber_curr_media_input7': 'N/A', 'prefec_ber_curr_media_input8': 'N/A', 'errored_frames_min_media_input1': 'N/A', 'errored_frames_min_media_input2': 'N/A', 'errored_frames_min_media_input3': 'N/A', 'errored_frames_min_media_input4': 'N/A', 'errored_frames_min_media_input5': 'N/A', 'errored_frames_min_media_input6': 'N/A', 'errored_frames_min_media_input7': 'N/A', 'errored_frames_min_media_input8': 'N/A', 'errored_frames_max_media_input1': 'N/A', 'errored_frames_max_media_input2': 'N/A', 'errored_frames_max_media_input3': 'N/A', 'errored_frames_max_media_input4': 'N/A', 'errored_frames_max_media_input5': 'N/A', 'errored_frames_max_media_input6': 'N/A', 'errored_frames_max_media_input7': 'N/A', 'errored_frames_max_media_input8': 'N/A', 'errored_frames_avg_media_input1': 'N/A', 'errored_frames_avg_media_input2': 'N/A', 'errored_frames_avg_media_input3': 'N/A', 'errored_frames_avg_media_input4': 'N/A', 'errored_frames_avg_media_input5': 'N/A', 'errored_frames_avg_media_input6': 'N/A', 'errored_frames_avg_media_input7': 'N/A', 'errored_frames_avg_media_input8': 'N/A', 'errored_frames_curr_media_input1': 'N/A', 'errored_frames_curr_media_input2': 'N/A', 'errored_frames_curr_media_input3': 'N/A', 'errored_frames_curr_media_input4': 'N/A', 'errored_frames_curr_media_input5': 'N/A', 'errored_frames_curr_media_input6': 'N/A', 'errored_frames_curr_media_input7': 'N/A', 'errored_frames_curr_media_input8': 'N/A', 'esnr_host_input1': 'N/A', 'esnr_host_input2': 'N/A', 'esnr_host_input3': 'N/A', 'esnr_host_input4': 'N/A', 'esnr_host_input5': 'N/A', 'esnr_host_input6': 'N/A', 'esnr_host_input7': 'N/A', 'esnr_host_input8': 'N/A', 'pam4_level_transition_host_input1': 'N/A', 'pam4_level_transition_host_input2': 'N/A', 'pam4_level_transition_host_input3': 'N/A', 'pam4_level_transition_host_input4': 'N/A', 'pam4_level_transition_host_input5': 'N/A', 'pam4_level_transition_host_input6': 'N/A', 'pam4_level_transition_host_input7': 'N/A', 'pam4_level_transition_host_input8': 'N/A', 'prefec_ber_min_host_input1': 'N/A', 'prefec_ber_min_host_input2': 'N/A', 'prefec_ber_min_host_input3': 'N/A', 'prefec_ber_min_host_input4': 'N/A', 'prefec_ber_min_host_input5': 'N/A', 'prefec_ber_min_host_input6': 'N/A', 'prefec_ber_min_host_input7': 'N/A', 'prefec_ber_min_host_input8': 'N/A', 'prefec_ber_max_host_input1': 'N/A', 'prefec_ber_max_host_input2': 'N/A', 'prefec_ber_max_host_input3': 'N/A', 'prefec_ber_max_host_input4': 'N/A', 'prefec_ber_max_host_input5': 'N/A', 'prefec_ber_max_host_input6': 'N/A', 'prefec_ber_max_host_input7': 'N/A', 'prefec_ber_max_host_input8': 'N/A', 'prefec_ber_avg_host_input1': 'N/A', 'prefec_ber_avg_host_input2': 'N/A', 'prefec_ber_avg_host_input3': 'N/A', 'prefec_ber_avg_host_input4': 'N/A', 'prefec_ber_avg_host_input5': 'N/A', 'prefec_ber_avg_host_input6': 'N/A', 'prefec_ber_avg_host_input7': 'N/A', 'prefec_ber_avg_host_input8': 'N/A', 'prefec_ber_curr_host_input1': 'N/A', 'prefec_ber_curr_host_input2': 'N/A', 'prefec_ber_curr_host_input3': 'N/A', 'prefec_ber_curr_host_input4': 'N/A', 'prefec_ber_curr_host_input5': 'N/A', 'prefec_ber_curr_host_input6': 'N/A', 'prefec_ber_curr_host_input7': 'N/A', 'prefec_ber_curr_host_input8': 'N/A', 'errored_frames_min_host_input1': 'N/A', 'errored_frames_min_host_input2': 'N/A', 'errored_frames_min_host_input3': 'N/A', 'errored_frames_min_host_input4': 'N/A', 'errored_frames_min_host_input5': 'N/A', 'errored_frames_min_host_input6': 'N/A', 'errored_frames_min_host_input7': 'N/A', 'errored_frames_min_host_input8': 'N/A', 'errored_frames_max_host_input1': 'N/A', 'errored_frames_max_host_input2': 'N/A', 'errored_frames_max_host_input3': 'N/A', 'errored_frames_max_host_input4': 'N/A', 'errored_frames_max_host_input5': 'N/A', 'errored_frames_max_host_input6': 'N/A', 'errored_frames_max_host_input7': 'N/A', 'errored_frames_max_host_input8': 'N/A', 'errored_frames_avg_host_input1': 'N/A', 'errored_frames_avg_host_input2': 'N/A', 'errored_frames_avg_host_input3': 'N/A', 'errored_frames_avg_host_input4': 'N/A', 'errored_frames_avg_host_input5': 'N/A', 'errored_frames_avg_host_input6': 'N/A', 'errored_frames_avg_host_input7': 'N/A', 'errored_frames_avg_host_input8': 'N/A', 'errored_frames_curr_host_input1': 'N/A', 'errored_frames_curr_host_input2': 'N/A', 'errored_frames_curr_host_input3': 'N/A', 'errored_frames_curr_host_input4': 'N/A', 'errored_frames_curr_host_input5': 'N/A', 'errored_frames_curr_host_input6': 'N/A', 'errored_frames_curr_host_input7': 'N/A', 'errored_frames_curr_host_input8': 'N/A', 'last_update_time': 'Fri Dec 05 10:34:55 2025'}

TRANSCEIVER_STATUS_FLAG_CHANGE_COUNT|Ethernet304
{'datapath_firmware_fault': '0', 'module_firmware_fault': '0', 'module_state_changed': '0', 'tx1fault': '0', 'tx2fault': '0', 'tx3fault': '0', 'tx4fault': '0', 'tx5fault': '0', 'tx6fault': '0', 'tx7fault': '0', 'tx8fault': '0', 'rx1los': '1', 'rx2los': '1', 'rx3los': '1', 'rx4los': '1', 'rx5los': '1', 'rx6los': '1', 'rx7los': '1', 'rx8los': '1', 'tx1los_hostlane': '1', 'tx2los_hostlane': '1', 'tx3los_hostlane': '1', 'tx4los_hostlane': '1', 'tx5los_hostlane': '1', 'tx6los_hostlane': '1', 'tx7los_hostlane': '1', 'tx8los_hostlane': '1', 'tx1cdrlol_hostlane': '1', 'tx2cdrlol_hostlane': '1', 'tx3cdrlol_hostlane': '1', 'tx4cdrlol_hostlane': '1', 'tx5cdrlol_hostlane': '1', 'tx6cdrlol_hostlane': '1', 'tx7cdrlol_hostlane': '1', 'tx8cdrlol_hostlane': '1', 'tx1_eq_fault': '0', 'tx2_eq_fault': '0', 'tx3_eq_fault': '0', 'tx4_eq_fault': '0', 'tx5_eq_fault': '0', 'tx6_eq_fault': '0', 'tx7_eq_fault': '0', 'tx8_eq_fault': '0', 'rx1cdrlol': '1', 'rx2cdrlol': '1', 'rx3cdrlol': '1', 'rx4cdrlol': '1', 'rx5cdrlol': '1', 'rx6cdrlol': '1', 'rx7cdrlol': '1', 'rx8cdrlol': '1'}

Then after shutting down the interface

root@qsp503:~# config interface shutdown Ethernet304

root@qsp503:~# show interface status | grep Ethernet304
Ethernet304  289,290,291,292,293,294,295,296     800G   9100     rs    etp39  routed    down     down     Optic    OSFP  Arista Networks  OSFP-800G-2XDR4         off        4

root@qsp503:~# for key in $(sonic-db-cli STATE_DB keys 'TRANSCEIVER_*|Ethernet304'); do echo "$key"; sonic-db-cli STATE_DB hgetall "$key"; done
TRANSCEIVER_VDM_LWARN_THRESHOLD|Ethernet304
{'laser_temperature_media1': 'N/A', 'laser_temperature_media2': 'N/A', 'laser_temperature_media3': 'N/A', 'laser_temperature_media4': 'N/A', 'laser_temperature_media5': 'N/A', 'laser_temperature_media6': 'N/A', 'laser_temperature_media7': 'N/A', 'laser_temperature_media8': 'N/A', 'esnr_media_input1': 'N/A', 'esnr_media_input2': 'N/A', 'esnr_media_input3': 'N/A', 'esnr_media_input4': 'N/A', 'esnr_media_input5': 'N/A', 'esnr_media_input6': 'N/A', 'esnr_media_input7': 'N/A', 'esnr_media_input8': 'N/A', 'pam4_level_transition_media_input1': 'N/A', 'pam4_level_transition_media_input2': 'N/A', 'pam4_level_transition_media_input3': 'N/A', 'pam4_level_transition_media_input4': 'N/A', 'pam4_level_transition_media_input5': 'N/A', 'pam4_level_transition_media_input6': 'N/A', 'pam4_level_transition_media_input7': 'N/A', 'pam4_level_transition_media_input8': 'N/A', 'prefec_ber_min_media_input1': 'N/A', 'prefec_ber_min_media_input2': 'N/A', 'prefec_ber_min_media_input3': 'N/A', 'prefec_ber_min_media_input4': 'N/A', 'prefec_ber_min_media_input5': 'N/A', 'prefec_ber_min_media_input6': 'N/A', 'prefec_ber_min_media_input7': 'N/A', 'prefec_ber_min_media_input8': 'N/A', 'prefec_ber_max_media_input1': 'N/A', 'prefec_ber_max_media_input2': 'N/A', 'prefec_ber_max_media_input3': 'N/A', 'prefec_ber_max_media_input4': 'N/A', 'prefec_ber_max_media_input5': 'N/A', 'prefec_ber_max_media_input6': 'N/A', 'prefec_ber_max_media_input7': 'N/A', 'prefec_ber_max_media_input8': 'N/A', 'prefec_ber_avg_media_input1': 'N/A', 'prefec_ber_avg_media_input2': 'N/A', 'prefec_ber_avg_media_input3': 'N/A', 'prefec_ber_avg_media_input4': 'N/A', 'prefec_ber_avg_media_input5': 'N/A', 'prefec_ber_avg_media_input6': 'N/A', 'prefec_ber_avg_media_input7': 'N/A', 'prefec_ber_avg_media_input8': 'N/A', 'prefec_ber_curr_media_input1': 'N/A', 'prefec_ber_curr_media_input2': 'N/A', 'prefec_ber_curr_media_input3': 'N/A', 'prefec_ber_curr_media_input4': 'N/A', 'prefec_ber_curr_media_input5': 'N/A', 'prefec_ber_curr_media_input6': 'N/A', 'prefec_ber_curr_media_input7': 'N/A', 'prefec_ber_curr_media_input8': 'N/A', 'errored_frames_min_media_input1': 'N/A', 'errored_frames_min_media_input2': 'N/A', 'errored_frames_min_media_input3': 'N/A', 'errored_frames_min_media_input4': 'N/A', 'errored_frames_min_media_input5': 'N/A', 'errored_frames_min_media_input6': 'N/A', 'errored_frames_min_media_input7': 'N/A', 'errored_frames_min_media_input8': 'N/A', 'errored_frames_max_media_input1': 'N/A', 'errored_frames_max_media_input2': 'N/A', 'errored_frames_max_media_input3': 'N/A', 'errored_frames_max_media_input4': 'N/A', 'errored_frames_max_media_input5': 'N/A', 'errored_frames_max_media_input6': 'N/A', 'errored_frames_max_media_input7': 'N/A', 'errored_frames_max_media_input8': 'N/A', 'errored_frames_avg_media_input1': 'N/A', 'errored_frames_avg_media_input2': 'N/A', 'errored_frames_avg_media_input3': 'N/A', 'errored_frames_avg_media_input4': 'N/A', 'errored_frames_avg_media_input5': 'N/A', 'errored_frames_avg_media_input6': 'N/A', 'errored_frames_avg_media_input7': 'N/A', 'errored_frames_avg_media_input8': 'N/A', 'errored_frames_curr_media_input1': 'N/A', 'errored_frames_curr_media_input2': 'N/A', 'errored_frames_curr_media_input3': 'N/A', 'errored_frames_curr_media_input4': 'N/A', 'errored_frames_curr_media_input5': 'N/A', 'errored_frames_curr_media_input6': 'N/A', 'errored_frames_curr_media_input7': 'N/A', 'errored_frames_curr_media_input8': 'N/A', 'esnr_host_input1': 'N/A', 'esnr_host_input2': 'N/A', 'esnr_host_input3': 'N/A', 'esnr_host_input4': 'N/A', 'esnr_host_input5': 'N/A', 'esnr_host_input6': 'N/A', 'esnr_host_input7': 'N/A', 'esnr_host_input8': 'N/A', 'pam4_level_transition_host_input1': 'N/A', 'pam4_level_transition_host_input2': 'N/A', 'pam4_level_transition_host_input3': 'N/A', 'pam4_level_transition_host_input4': 'N/A', 'pam4_level_transition_host_input5': 'N/A', 'pam4_level_transition_host_input6': 'N/A', 'pam4_level_transition_host_input7': 'N/A', 'pam4_level_transition_host_input8': 'N/A', 'prefec_ber_min_host_input1': 'N/A', 'prefec_ber_min_host_input2': 'N/A', 'prefec_ber_min_host_input3': 'N/A', 'prefec_ber_min_host_input4': 'N/A', 'prefec_ber_min_host_input5': 'N/A', 'prefec_ber_min_host_input6': 'N/A', 'prefec_ber_min_host_input7': 'N/A', 'prefec_ber_min_host_input8': 'N/A', 'prefec_ber_max_host_input1': 'N/A', 'prefec_ber_max_host_input2': 'N/A', 'prefec_ber_max_host_input3': 'N/A', 'prefec_ber_max_host_input4': 'N/A', 'prefec_ber_max_host_input5': 'N/A', 'prefec_ber_max_host_input6': 'N/A', 'prefec_ber_max_host_input7': 'N/A', 'prefec_ber_max_host_input8': 'N/A', 'prefec_ber_avg_host_input1': 'N/A', 'prefec_ber_avg_host_input2': 'N/A', 'prefec_ber_avg_host_input3': 'N/A', 'prefec_ber_avg_host_input4': 'N/A', 'prefec_ber_avg_host_input5': 'N/A', 'prefec_ber_avg_host_input6': 'N/A', 'prefec_ber_avg_host_input7': 'N/A', 'prefec_ber_avg_host_input8': 'N/A', 'prefec_ber_curr_host_input1': 'N/A', 'prefec_ber_curr_host_input2': 'N/A', 'prefec_ber_curr_host_input3': 'N/A', 'prefec_ber_curr_host_input4': 'N/A', 'prefec_ber_curr_host_input5': 'N/A', 'prefec_ber_curr_host_input6': 'N/A', 'prefec_ber_curr_host_input7': 'N/A', 'prefec_ber_curr_host_input8': 'N/A', 'errored_frames_min_host_input1': 'N/A', 'errored_frames_min_host_input2': 'N/A', 'errored_frames_min_host_input3': 'N/A', 'errored_frames_min_host_input4': 'N/A', 'errored_frames_min_host_input5': 'N/A', 'errored_frames_min_host_input6': 'N/A', 'errored_frames_min_host_input7': 'N/A', 'errored_frames_min_host_input8': 'N/A', 'errored_frames_max_host_input1': 'N/A', 'errored_frames_max_host_input2': 'N/A', 'errored_frames_max_host_input3': 'N/A', 'errored_frames_max_host_input4': 'N/A', 'errored_frames_max_host_input5': 'N/A', 'errored_frames_max_host_input6': 'N/A', 'errored_frames_max_host_input7': 'N/A', 'errored_frames_max_host_input8': 'N/A', 'errored_frames_avg_host_input1': 'N/A', 'errored_frames_avg_host_input2': 'N/A', 'errored_frames_avg_host_input3': 'N/A', 'errored_frames_avg_host_input4': 'N/A', 'errored_frames_avg_host_input5': 'N/A', 'errored_frames_avg_host_input6': 'N/A', 'errored_frames_avg_host_input7': 'N/A', 'errored_frames_avg_host_input8': 'N/A', 'errored_frames_curr_host_input1': 'N/A', 'errored_frames_curr_host_input2': 'N/A', 'errored_frames_curr_host_input3': 'N/A', 'errored_frames_curr_host_input4': 'N/A', 'errored_frames_curr_host_input5': 'N/A', 'errored_frames_curr_host_input6': 'N/A', 'errored_frames_curr_host_input7': 'N/A', 'errored_frames_curr_host_input8': 'N/A', 'last_update_time': 'Fri Dec 05 10:34:55 2025'}

TRANSCEIVER_DOM_SENSOR|Ethernet304
{'temperature': '62.879', 'voltage': '3.296', 'tx1bias': '85.3', 'rx1power': '1.345', 'tx1power': '1.371', 'tx2bias': '75.4', 'rx2power': '0.964', 'tx2power': '1.585', 'tx3bias': '70.3', 'rx3power': '1.225', 'tx3power': '1.343', 'tx4bias': '78.272', 'rx4power': '1.702', 'tx4power': '1.583', 'tx5bias': '75.2', 'rx5power': '1.443', 'tx5power': '1.545', 'tx6bias': '80.0', 'rx6power': '2.909', 'tx6power': '1.755', 'tx7bias': '70.3', 'rx7power': '2.281', 'tx7power': '1.67', 'tx8bias': '80.0', 'rx8power': '1.935', 'tx8power': '1.754', 'laser_temperature': '64.9765625', 'last_update_time': 'Fri Dec 05 10:51:29 2025'}

TRANSCEIVER_DOM_TEMPERATURE|Ethernet304
{'temperature': '59.809', 'last_update_time': 'Fri Dec 05 10:53:31 2025'}

TRANSCEIVER_DOM_THRESHOLD|Ethernet304
{'temphighalarm': '78.0', 'templowalarm': '-8.0', 'temphighwarning': '73.0', 'templowwarning': '-3.0', 'vcchighalarm': '3.63', 'vcclowalarm': '2.97', 'vcchighwarning': '3.465', 'vcclowwarning': '3.135', 'rxpowerhighalarm': '6.5', 'rxpowerlowalarm': '-9.401', 'rxpowerhighwarning': '5.5', 'rxpowerlowwarning': '-8.401', 'txpowerhighalarm': '6.0', 'txpowerlowalarm': '-4.4', 'txpowerhighwarning': '4.0', 'txpowerlowwarning': '-2.4', 'txbiashighalarm': '130.0', 'txbiaslowalarm': '35.0', 'txbiashighwarning': '125.0', 'txbiaslowwarning': '40.0', 'lasertemphighalarm': '80.0', 'lasertemplowalarm': '10.0', 'lasertemphighwarning': '75.0', 'lasertemplowwarning': '15.0', 'last_update_time': 'Fri Dec 05 10:34:55 2025'}

TRANSCEIVER_STATUS_FLAG_SET_TIME|Ethernet304
{'datapath_firmware_fault': 'never', 'module_firmware_fault': 'never', 'module_state_changed': 'never', 'tx1fault': 'never', 'tx2fault': 'never', 'tx3fault': 'never', 'tx4fault': 'never', 'tx5fault': 'never', 'tx6fault': 'never', 'tx7fault': 'never', 'tx8fault': 'never', 'rx1los': 'never', 'rx2los': 'never', 'rx3los': 'never', 'rx4los': 'never', 'rx5los': 'never', 'rx6los': 'never', 'rx7los': 'never', 'rx8los': 'never', 'tx1los_hostlane': 'Fri Dec 05 10:53:25 2025', 'tx2los_hostlane': 'Fri Dec 05 10:53:25 2025', 'tx3los_hostlane': 'Fri Dec 05 10:53:25 2025', 'tx4los_hostlane': 'Fri Dec 05 10:53:25 2025', 'tx5los_hostlane': 'Fri Dec 05 10:53:25 2025', 'tx6los_hostlane': 'Fri Dec 05 10:53:25 2025', 'tx7los_hostlane': 'Fri Dec 05 10:53:25 2025', 'tx8los_hostlane': 'Fri Dec 05 10:53:25 2025', 'tx1cdrlol_hostlane': 'Fri Dec 05 10:53:25 2025', 'tx2cdrlol_hostlane': 'Fri Dec 05 10:53:25 2025', 'tx3cdrlol_hostlane': 'Fri Dec 05 10:53:25 2025', 'tx4cdrlol_hostlane': 'Fri Dec 05 10:53:25 2025', 'tx5cdrlol_hostlane': 'Fri Dec 05 10:53:25 2025', 'tx6cdrlol_hostlane': 'Fri Dec 05 10:53:25 2025', 'tx7cdrlol_hostlane': 'Fri Dec 05 10:53:25 2025', 'tx8cdrlol_hostlane': 'Fri Dec 05 10:53:25 2025', 'tx1_eq_fault': 'never', 'tx2_eq_fault': 'never', 'tx3_eq_fault': 'never', 'tx4_eq_fault': 'never', 'tx5_eq_fault': 'never', 'tx6_eq_fault': 'never', 'tx7_eq_fault': 'never', 'tx8_eq_fault': 'never', 'rx1cdrlol': 'never', 'rx2cdrlol': 'never', 'rx3cdrlol': 'never', 'rx4cdrlol': 'never', 'rx5cdrlol': 'never', 'rx6cdrlol': 'never', 'rx7cdrlol': 'never', 'rx8cdrlol': 'never'}

TRANSCEIVER_VDM_LALARM_THRESHOLD|Ethernet304
{'laser_temperature_media1': 'N/A', 'laser_temperature_media2': 'N/A', 'laser_temperature_media3': 'N/A', 'laser_temperature_media4': 'N/A', 'laser_temperature_media5': 'N/A', 'laser_temperature_media6': 'N/A', 'laser_temperature_media7': 'N/A', 'laser_temperature_media8': 'N/A', 'esnr_media_input1': 'N/A', 'esnr_media_input2': 'N/A', 'esnr_media_input3': 'N/A', 'esnr_media_input4': 'N/A', 'esnr_media_input5': 'N/A', 'esnr_media_input6': 'N/A', 'esnr_media_input7': 'N/A', 'esnr_media_input8': 'N/A', 'pam4_level_transition_media_input1': 'N/A', 'pam4_level_transition_media_input2': 'N/A', 'pam4_level_transition_media_input3': 'N/A', 'pam4_level_transition_media_input4': 'N/A', 'pam4_level_transition_media_input5': 'N/A', 'pam4_level_transition_media_input6': 'N/A', 'pam4_level_transition_media_input7': 'N/A', 'pam4_level_transition_media_input8': 'N/A', 'prefec_ber_min_media_input1': 'N/A', 'prefec_ber_min_media_input2': 'N/A', 'prefec_ber_min_media_input3': 'N/A', 'prefec_ber_min_media_input4': 'N/A', 'prefec_ber_min_media_input5': 'N/A', 'prefec_ber_min_media_input6': 'N/A', 'prefec_ber_min_media_input7': 'N/A', 'prefec_ber_min_media_input8': 'N/A', 'prefec_ber_max_media_input1': 'N/A', 'prefec_ber_max_media_input2': 'N/A', 'prefec_ber_max_media_input3': 'N/A', 'prefec_ber_max_media_input4': 'N/A', 'prefec_ber_max_media_input5': 'N/A', 'prefec_ber_max_media_input6': 'N/A', 'prefec_ber_max_media_input7': 'N/A', 'prefec_ber_max_media_input8': 'N/A', 'prefec_ber_avg_media_input1': 'N/A', 'prefec_ber_avg_media_input2': 'N/A', 'prefec_ber_avg_media_input3': 'N/A', 'prefec_ber_avg_media_input4': 'N/A', 'prefec_ber_avg_media_input5': 'N/A', 'prefec_ber_avg_media_input6': 'N/A', 'prefec_ber_avg_media_input7': 'N/A', 'prefec_ber_avg_media_input8': 'N/A', 'prefec_ber_curr_media_input1': 'N/A', 'prefec_ber_curr_media_input2': 'N/A', 'prefec_ber_curr_media_input3': 'N/A', 'prefec_ber_curr_media_input4': 'N/A', 'prefec_ber_curr_media_input5': 'N/A', 'prefec_ber_curr_media_input6': 'N/A', 'prefec_ber_curr_media_input7': 'N/A', 'prefec_ber_curr_media_input8': 'N/A', 'errored_frames_min_media_input1': 'N/A', 'errored_frames_min_media_input2': 'N/A', 'errored_frames_min_media_input3': 'N/A', 'errored_frames_min_media_input4': 'N/A', 'errored_frames_min_media_input5': 'N/A', 'errored_frames_min_media_input6': 'N/A', 'errored_frames_min_media_input7': 'N/A', 'errored_frames_min_media_input8': 'N/A', 'errored_frames_max_media_input1': 'N/A', 'errored_frames_max_media_input2': 'N/A', 'errored_frames_max_media_input3': 'N/A', 'errored_frames_max_media_input4': 'N/A', 'errored_frames_max_media_input5': 'N/A', 'errored_frames_max_media_input6': 'N/A', 'errored_frames_max_media_input7': 'N/A', 'errored_frames_max_media_input8': 'N/A', 'errored_frames_avg_media_input1': 'N/A', 'errored_frames_avg_media_input2': 'N/A', 'errored_frames_avg_media_input3': 'N/A', 'errored_frames_avg_media_input4': 'N/A', 'errored_frames_avg_media_input5': 'N/A', 'errored_frames_avg_media_input6': 'N/A', 'errored_frames_avg_media_input7': 'N/A', 'errored_frames_avg_media_input8': 'N/A', 'errored_frames_curr_media_input1': 'N/A', 'errored_frames_curr_media_input2': 'N/A', 'errored_frames_curr_media_input3': 'N/A', 'errored_frames_curr_media_input4': 'N/A', 'errored_frames_curr_media_input5': 'N/A', 'errored_frames_curr_media_input6': 'N/A', 'errored_frames_curr_media_input7': 'N/A', 'errored_frames_curr_media_input8': 'N/A', 'esnr_host_input1': 'N/A', 'esnr_host_input2': 'N/A', 'esnr_host_input3': 'N/A', 'esnr_host_input4': 'N/A', 'esnr_host_input5': 'N/A', 'esnr_host_input6': 'N/A', 'esnr_host_input7': 'N/A', 'esnr_host_input8': 'N/A', 'pam4_level_transition_host_input1': 'N/A', 'pam4_level_transition_host_input2': 'N/A', 'pam4_level_transition_host_input3': 'N/A', 'pam4_level_transition_host_input4': 'N/A', 'pam4_level_transition_host_input5': 'N/A', 'pam4_level_transition_host_input6': 'N/A', 'pam4_level_transition_host_input7': 'N/A', 'pam4_level_transition_host_input8': 'N/A', 'prefec_ber_min_host_input1': 'N/A', 'prefec_ber_min_host_input2': 'N/A', 'prefec_ber_min_host_input3': 'N/A', 'prefec_ber_min_host_input4': 'N/A', 'prefec_ber_min_host_input5': 'N/A', 'prefec_ber_min_host_input6': 'N/A', 'prefec_ber_min_host_input7': 'N/A', 'prefec_ber_min_host_input8': 'N/A', 'prefec_ber_max_host_input1': 'N/A', 'prefec_ber_max_host_input2': 'N/A', 'prefec_ber_max_host_input3': 'N/A', 'prefec_ber_max_host_input4': 'N/A', 'prefec_ber_max_host_input5': 'N/A', 'prefec_ber_max_host_input6': 'N/A', 'prefec_ber_max_host_input7': 'N/A', 'prefec_ber_max_host_input8': 'N/A', 'prefec_ber_avg_host_input1': 'N/A', 'prefec_ber_avg_host_input2': 'N/A', 'prefec_ber_avg_host_input3': 'N/A', 'prefec_ber_avg_host_input4': 'N/A', 'prefec_ber_avg_host_input5': 'N/A', 'prefec_ber_avg_host_input6': 'N/A', 'prefec_ber_avg_host_input7': 'N/A', 'prefec_ber_avg_host_input8': 'N/A', 'prefec_ber_curr_host_input1': 'N/A', 'prefec_ber_curr_host_input2': 'N/A', 'prefec_ber_curr_host_input3': 'N/A', 'prefec_ber_curr_host_input4': 'N/A', 'prefec_ber_curr_host_input5': 'N/A', 'prefec_ber_curr_host_input6': 'N/A', 'prefec_ber_curr_host_input7': 'N/A', 'prefec_ber_curr_host_input8': 'N/A', 'errored_frames_min_host_input1': 'N/A', 'errored_frames_min_host_input2': 'N/A', 'errored_frames_min_host_input3': 'N/A', 'errored_frames_min_host_input4': 'N/A', 'errored_frames_min_host_input5': 'N/A', 'errored_frames_min_host_input6': 'N/A', 'errored_frames_min_host_input7': 'N/A', 'errored_frames_min_host_input8': 'N/A', 'errored_frames_max_host_input1': 'N/A', 'errored_frames_max_host_input2': 'N/A', 'errored_frames_max_host_input3': 'N/A', 'errored_frames_max_host_input4': 'N/A', 'errored_frames_max_host_input5': 'N/A', 'errored_frames_max_host_input6': 'N/A', 'errored_frames_max_host_input7': 'N/A', 'errored_frames_max_host_input8': 'N/A', 'errored_frames_avg_host_input1': 'N/A', 'errored_frames_avg_host_input2': 'N/A', 'errored_frames_avg_host_input3': 'N/A', 'errored_frames_avg_host_input4': 'N/A', 'errored_frames_avg_host_input5': 'N/A', 'errored_frames_avg_host_input6': 'N/A', 'errored_frames_avg_host_input7': 'N/A', 'errored_frames_avg_host_input8': 'N/A', 'errored_frames_curr_host_input1': 'N/A', 'errored_frames_curr_host_input2': 'N/A', 'errored_frames_curr_host_input3': 'N/A', 'errored_frames_curr_host_input4': 'N/A', 'errored_frames_curr_host_input5': 'N/A', 'errored_frames_curr_host_input6': 'N/A', 'errored_frames_curr_host_input7': 'N/A', 'errored_frames_curr_host_input8': 'N/A', 'last_update_time': 'Fri Dec 05 10:34:55 2025'}

TRANSCEIVER_FIRMWARE_INFO|Ethernet304
{'active_firmware': '3.7.0', 'inactive_firmware': '0.0.0'}

TRANSCEIVER_VDM_HWARN_THRESHOLD|Ethernet304
{'laser_temperature_media1': 'N/A', 'laser_temperature_media2': 'N/A', 'laser_temperature_media3': 'N/A', 'laser_temperature_media4': 'N/A', 'laser_temperature_media5': 'N/A', 'laser_temperature_media6': 'N/A', 'laser_temperature_media7': 'N/A', 'laser_temperature_media8': 'N/A', 'esnr_media_input1': 'N/A', 'esnr_media_input2': 'N/A', 'esnr_media_input3': 'N/A', 'esnr_media_input4': 'N/A', 'esnr_media_input5': 'N/A', 'esnr_media_input6': 'N/A', 'esnr_media_input7': 'N/A', 'esnr_media_input8': 'N/A', 'pam4_level_transition_media_input1': 'N/A', 'pam4_level_transition_media_input2': 'N/A', 'pam4_level_transition_media_input3': 'N/A', 'pam4_level_transition_media_input4': 'N/A', 'pam4_level_transition_media_input5': 'N/A', 'pam4_level_transition_media_input6': 'N/A', 'pam4_level_transition_media_input7': 'N/A', 'pam4_level_transition_media_input8': 'N/A', 'prefec_ber_min_media_input1': 'N/A', 'prefec_ber_min_media_input2': 'N/A', 'prefec_ber_min_media_input3': 'N/A', 'prefec_ber_min_media_input4': 'N/A', 'prefec_ber_min_media_input5': 'N/A', 'prefec_ber_min_media_input6': 'N/A', 'prefec_ber_min_media_input7': 'N/A', 'prefec_ber_min_media_input8': 'N/A', 'prefec_ber_max_media_input1': 'N/A', 'prefec_ber_max_media_input2': 'N/A', 'prefec_ber_max_media_input3': 'N/A', 'prefec_ber_max_media_input4': 'N/A', 'prefec_ber_max_media_input5': 'N/A', 'prefec_ber_max_media_input6': 'N/A', 'prefec_ber_max_media_input7': 'N/A', 'prefec_ber_max_media_input8': 'N/A', 'prefec_ber_avg_media_input1': 'N/A', 'prefec_ber_avg_media_input2': 'N/A', 'prefec_ber_avg_media_input3': 'N/A', 'prefec_ber_avg_media_input4': 'N/A', 'prefec_ber_avg_media_input5': 'N/A', 'prefec_ber_avg_media_input6': 'N/A', 'prefec_ber_avg_media_input7': 'N/A', 'prefec_ber_avg_media_input8': 'N/A', 'prefec_ber_curr_media_input1': 'N/A', 'prefec_ber_curr_media_input2': 'N/A', 'prefec_ber_curr_media_input3': 'N/A', 'prefec_ber_curr_media_input4': 'N/A', 'prefec_ber_curr_media_input5': 'N/A', 'prefec_ber_curr_media_input6': 'N/A', 'prefec_ber_curr_media_input7': 'N/A', 'prefec_ber_curr_media_input8': 'N/A', 'errored_frames_min_media_input1': 'N/A', 'errored_frames_min_media_input2': 'N/A', 'errored_frames_min_media_input3': 'N/A', 'errored_frames_min_media_input4': 'N/A', 'errored_frames_min_media_input5': 'N/A', 'errored_frames_min_media_input6': 'N/A', 'errored_frames_min_media_input7': 'N/A', 'errored_frames_min_media_input8': 'N/A', 'errored_frames_max_media_input1': 'N/A', 'errored_frames_max_media_input2': 'N/A', 'errored_frames_max_media_input3': 'N/A', 'errored_frames_max_media_input4': 'N/A', 'errored_frames_max_media_input5': 'N/A', 'errored_frames_max_media_input6': 'N/A', 'errored_frames_max_media_input7': 'N/A', 'errored_frames_max_media_input8': 'N/A', 'errored_frames_avg_media_input1': 'N/A', 'errored_frames_avg_media_input2': 'N/A', 'errored_frames_avg_media_input3': 'N/A', 'errored_frames_avg_media_input4': 'N/A', 'errored_frames_avg_media_input5': 'N/A', 'errored_frames_avg_media_input6': 'N/A', 'errored_frames_avg_media_input7': 'N/A', 'errored_frames_avg_media_input8': 'N/A', 'errored_frames_curr_media_input1': 'N/A', 'errored_frames_curr_media_input2': 'N/A', 'errored_frames_curr_media_input3': 'N/A', 'errored_frames_curr_media_input4': 'N/A', 'errored_frames_curr_media_input5': 'N/A', 'errored_frames_curr_media_input6': 'N/A', 'errored_frames_curr_media_input7': 'N/A', 'errored_frames_curr_media_input8': 'N/A', 'esnr_host_input1': 'N/A', 'esnr_host_input2': 'N/A', 'esnr_host_input3': 'N/A', 'esnr_host_input4': 'N/A', 'esnr_host_input5': 'N/A', 'esnr_host_input6': 'N/A', 'esnr_host_input7': 'N/A', 'esnr_host_input8': 'N/A', 'pam4_level_transition_host_input1': 'N/A', 'pam4_level_transition_host_input2': 'N/A', 'pam4_level_transition_host_input3': 'N/A', 'pam4_level_transition_host_input4': 'N/A', 'pam4_level_transition_host_input5': 'N/A', 'pam4_level_transition_host_input6': 'N/A', 'pam4_level_transition_host_input7': 'N/A', 'pam4_level_transition_host_input8': 'N/A', 'prefec_ber_min_host_input1': 'N/A', 'prefec_ber_min_host_input2': 'N/A', 'prefec_ber_min_host_input3': 'N/A', 'prefec_ber_min_host_input4': 'N/A', 'prefec_ber_min_host_input5': 'N/A', 'prefec_ber_min_host_input6': 'N/A', 'prefec_ber_min_host_input7': 'N/A', 'prefec_ber_min_host_input8': 'N/A', 'prefec_ber_max_host_input1': 'N/A', 'prefec_ber_max_host_input2': 'N/A', 'prefec_ber_max_host_input3': 'N/A', 'prefec_ber_max_host_input4': 'N/A', 'prefec_ber_max_host_input5': 'N/A', 'prefec_ber_max_host_input6': 'N/A', 'prefec_ber_max_host_input7': 'N/A', 'prefec_ber_max_host_input8': 'N/A', 'prefec_ber_avg_host_input1': 'N/A', 'prefec_ber_avg_host_input2': 'N/A', 'prefec_ber_avg_host_input3': 'N/A', 'prefec_ber_avg_host_input4': 'N/A', 'prefec_ber_avg_host_input5': 'N/A', 'prefec_ber_avg_host_input6': 'N/A', 'prefec_ber_avg_host_input7': 'N/A', 'prefec_ber_avg_host_input8': 'N/A', 'prefec_ber_curr_host_input1': 'N/A', 'prefec_ber_curr_host_input2': 'N/A', 'prefec_ber_curr_host_input3': 'N/A', 'prefec_ber_curr_host_input4': 'N/A', 'prefec_ber_curr_host_input5': 'N/A', 'prefec_ber_curr_host_input6': 'N/A', 'prefec_ber_curr_host_input7': 'N/A', 'prefec_ber_curr_host_input8': 'N/A', 'errored_frames_min_host_input1': 'N/A', 'errored_frames_min_host_input2': 'N/A', 'errored_frames_min_host_input3': 'N/A', 'errored_frames_min_host_input4': 'N/A', 'errored_frames_min_host_input5': 'N/A', 'errored_frames_min_host_input6': 'N/A', 'errored_frames_min_host_input7': 'N/A', 'errored_frames_min_host_input8': 'N/A', 'errored_frames_max_host_input1': 'N/A', 'errored_frames_max_host_input2': 'N/A', 'errored_frames_max_host_input3': 'N/A', 'errored_frames_max_host_input4': 'N/A', 'errored_frames_max_host_input5': 'N/A', 'errored_frames_max_host_input6': 'N/A', 'errored_frames_max_host_input7': 'N/A', 'errored_frames_max_host_input8': 'N/A', 'errored_frames_avg_host_input1': 'N/A', 'errored_frames_avg_host_input2': 'N/A', 'errored_frames_avg_host_input3': 'N/A', 'errored_frames_avg_host_input4': 'N/A', 'errored_frames_avg_host_input5': 'N/A', 'errored_frames_avg_host_input6': 'N/A', 'errored_frames_avg_host_input7': 'N/A', 'errored_frames_avg_host_input8': 'N/A', 'errored_frames_curr_host_input1': 'N/A', 'errored_frames_curr_host_input2': 'N/A', 'errored_frames_curr_host_input3': 'N/A', 'errored_frames_curr_host_input4': 'N/A', 'errored_frames_curr_host_input5': 'N/A', 'errored_frames_curr_host_input6': 'N/A', 'errored_frames_curr_host_input7': 'N/A', 'errored_frames_curr_host_input8': 'N/A', 'last_update_time': 'Fri Dec 05 10:34:55 2025'}

TRANSCEIVER_STATUS_SW|Ethernet304
{'cmis_state': 'READY', 'status': '1', 'error': 'N/A'}

TRANSCEIVER_STATUS_FLAG_CLEAR_TIME|Ethernet304
{'datapath_firmware_fault': 'never', 'module_firmware_fault': 'never', 'module_state_changed': 'never', 'tx1fault': 'never', 'tx2fault': 'never', 'tx3fault': 'never', 'tx4fault': 'never', 'tx5fault': 'never', 'tx6fault': 'never', 'tx7fault': 'never', 'tx8fault': 'never', 'rx1los': 'Fri Dec 05 10:36:48 2025', 'rx2los': 'Fri Dec 05 10:36:48 2025', 'rx3los': 'Fri Dec 05 10:36:48 2025', 'rx4los': 'Fri Dec 05 10:36:48 2025', 'rx5los': 'Fri Dec 05 10:36:48 2025', 'rx6los': 'Fri Dec 05 10:36:48 2025', 'rx7los': 'Fri Dec 05 10:36:48 2025', 'rx8los': 'Fri Dec 05 10:36:48 2025', 'tx1los_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx2los_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx3los_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx4los_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx5los_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx6los_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx7los_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx8los_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx1cdrlol_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx2cdrlol_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx3cdrlol_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx4cdrlol_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx5cdrlol_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx6cdrlol_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx7cdrlol_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx8cdrlol_hostlane': 'Fri Dec 05 10:36:48 2025', 'tx1_eq_fault': 'never', 'tx2_eq_fault': 'never', 'tx3_eq_fault': 'never', 'tx4_eq_fault': 'never', 'tx5_eq_fault': 'never', 'tx6_eq_fault': 'never', 'tx7_eq_fault': 'never', 'tx8_eq_fault': 'never', 'rx1cdrlol': 'Fri Dec 05 10:36:48 2025', 'rx2cdrlol': 'Fri Dec 05 10:36:48 2025', 'rx3cdrlol': 'Fri Dec 05 10:36:48 2025', 'rx4cdrlol': 'Fri Dec 05 10:36:48 2025', 'rx5cdrlol': 'Fri Dec 05 10:36:48 2025', 'rx6cdrlol': 'Fri Dec 05 10:36:48 2025', 'rx7cdrlol': 'Fri Dec 05 10:36:48 2025', 'rx8cdrlol': 'Fri Dec 05 10:36:48 2025'}

TRANSCEIVER_DOM_FLAG_CLEAR_TIME|Ethernet304
{'tempHAlarm': 'never', 'tempLAlarm': 'never', 'tempHWarn': 'never', 'tempLWarn': 'never', 'vccHAlarm': 'never', 'vccLAlarm': 'never', 'vccHWarn': 'never', 'vccLWarn': 'never', 'lasertempHAlarm': 'never', 'lasertempLAlarm': 'never', 'lasertempHWarn': 'never', 'lasertempLWarn': 'never', 'tx1powerHAlarm': 'never', 'tx1powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx1powerHWarn': 'never', 'tx1powerLWarn': 'Fri Dec 05 10:36:48 2025', 'tx2powerHAlarm': 'never', 'tx2powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx2powerHWarn': 'never', 'tx2powerLWarn': 'Fri Dec 05 10:36:48 2025', 'tx3powerHAlarm': 'never', 'tx3powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx3powerHWarn': 'never', 'tx3powerLWarn': 'Fri Dec 05 10:36:48 2025', 'tx4powerHAlarm': 'never', 'tx4powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx4powerHWarn': 'never', 'tx4powerLWarn': 'Fri Dec 05 10:36:48 2025', 'tx5powerHAlarm': 'never', 'tx5powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx5powerHWarn': 'never', 'tx5powerLWarn': 'Fri Dec 05 10:36:48 2025', 'tx6powerHAlarm': 'never', 'tx6powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx6powerHWarn': 'never', 'tx6powerLWarn': 'Fri Dec 05 10:36:48 2025', 'tx7powerHAlarm': 'never', 'tx7powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx7powerHWarn': 'never', 'tx7powerLWarn': 'Fri Dec 05 10:36:48 2025', 'tx8powerHAlarm': 'never', 'tx8powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx8powerHWarn': 'never', 'tx8powerLWarn': 'Fri Dec 05 10:36:48 2025', 'rx1powerHAlarm': 'never', 'rx1powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'rx1powerHWarn': 'never', 'rx1powerLWarn': 'Fri Dec 05 10:36:48 2025', 'rx2powerHAlarm': 'never', 'rx2powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'rx2powerHWarn': 'never', 'rx2powerLWarn': 'Fri Dec 05 10:36:48 2025', 'rx3powerHAlarm': 'never', 'rx3powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'rx3powerHWarn': 'never', 'rx3powerLWarn': 'Fri Dec 05 10:36:48 2025', 'rx4powerHAlarm': 'never', 'rx4powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'rx4powerHWarn': 'never', 'rx4powerLWarn': 'Fri Dec 05 10:36:48 2025', 'rx5powerHAlarm': 'never', 'rx5powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'rx5powerHWarn': 'never', 'rx5powerLWarn': 'Fri Dec 05 10:36:48 2025', 'rx6powerHAlarm': 'never', 'rx6powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'rx6powerHWarn': 'never', 'rx6powerLWarn': 'Fri Dec 05 10:36:48 2025', 'rx7powerHAlarm': 'never', 'rx7powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'rx7powerHWarn': 'never', 'rx7powerLWarn': 'Fri Dec 05 10:36:48 2025', 'rx8powerHAlarm': 'never', 'rx8powerLAlarm': 'Fri Dec 05 10:36:48 2025', 'rx8powerHWarn': 'never', 'rx8powerLWarn': 'Fri Dec 05 10:36:48 2025', 'tx1biasHAlarm': 'never', 'tx1biasLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx1biasHWarn': 'never', 'tx1biasLWarn': 'Fri Dec 05 10:36:48 2025', 'tx2biasHAlarm': 'never', 'tx2biasLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx2biasHWarn': 'never', 'tx2biasLWarn': 'Fri Dec 05 10:36:48 2025', 'tx3biasHAlarm': 'never', 'tx3biasLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx3biasHWarn': 'never', 'tx3biasLWarn': 'Fri Dec 05 10:36:48 2025', 'tx4biasHAlarm': 'never', 'tx4biasLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx4biasHWarn': 'never', 'tx4biasLWarn': 'Fri Dec 05 10:36:48 2025', 'tx5biasHAlarm': 'never', 'tx5biasLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx5biasHWarn': 'never', 'tx5biasLWarn': 'Fri Dec 05 10:36:48 2025', 'tx6biasHAlarm': 'never', 'tx6biasLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx6biasHWarn': 'never', 'tx6biasLWarn': 'Fri Dec 05 10:36:48 2025', 'tx7biasHAlarm': 'never', 'tx7biasLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx7biasHWarn': 'never', 'tx7biasLWarn': 'Fri Dec 05 10:36:48 2025', 'tx8biasHAlarm': 'never', 'tx8biasLAlarm': 'Fri Dec 05 10:36:48 2025', 'tx8biasHWarn': 'never', 'tx8biasLWarn': 'Fri Dec 05 10:36:48 2025'}

TRANSCEIVER_DOM_FLAG|Ethernet304
{'tempHAlarm': 'False', 'tempLAlarm': 'False', 'tempHWarn': 'False', 'tempLWarn': 'False', 'vccHAlarm': 'False', 'vccLAlarm': 'False', 'vccHWarn': 'False', 'vccLWarn': 'False', 'lasertempHAlarm': 'False', 'lasertempLAlarm': 'False', 'lasertempHWarn': 'False', 'lasertempLWarn': 'False', 'tx1powerHAlarm': 'False', 'tx1powerLAlarm': 'True', 'tx1powerHWarn': 'False', 'tx1powerLWarn': 'True', 'tx2powerHAlarm': 'False', 'tx2powerLAlarm': 'True', 'tx2powerHWarn': 'False', 'tx2powerLWarn': 'True', 'tx3powerHAlarm': 'False', 'tx3powerLAlarm': 'True', 'tx3powerHWarn': 'False', 'tx3powerLWarn': 'True', 'tx4powerHAlarm': 'False', 'tx4powerLAlarm': 'True', 'tx4powerHWarn': 'False', 'tx4powerLWarn': 'True', 'tx5powerHAlarm': 'False', 'tx5powerLAlarm': 'True', 'tx5powerHWarn': 'False', 'tx5powerLWarn': 'True', 'tx6powerHAlarm': 'False', 'tx6powerLAlarm': 'False', 'tx6powerHWarn': 'False', 'tx6powerLWarn': 'False', 'tx7powerHAlarm': 'False', 'tx7powerLAlarm': 'False', 'tx7powerHWarn': 'False', 'tx7powerLWarn': 'False', 'tx8powerHAlarm': 'False', 'tx8powerLAlarm': 'False', 'tx8powerHWarn': 'False', 'tx8powerLWarn': 'False', 'rx1powerHAlarm': 'False', 'rx1powerLAlarm': 'False', 'rx1powerHWarn': 'False', 'rx1powerLWarn': 'False', 'rx2powerHAlarm': 'False', 'rx2powerLAlarm': 'False', 'rx2powerHWarn': 'False', 'rx2powerLWarn': 'False', 'rx3powerHAlarm': 'False', 'rx3powerLAlarm': 'False', 'rx3powerHWarn': 'False', 'rx3powerLWarn': 'False', 'rx4powerHAlarm': 'False', 'rx4powerLAlarm': 'False', 'rx4powerHWarn': 'False', 'rx4powerLWarn': 'False', 'rx5powerHAlarm': 'False', 'rx5powerLAlarm': 'False', 'rx5powerHWarn': 'False', 'rx5powerLWarn': 'False', 'rx6powerHAlarm': 'False', 'rx6powerLAlarm': 'False', 'rx6powerHWarn': 'False', 'rx6powerLWarn': 'False', 'rx7powerHAlarm': 'False', 'rx7powerLAlarm': 'False', 'rx7powerHWarn': 'False', 'rx7powerLWarn': 'False', 'rx8powerHAlarm': 'False', 'rx8powerLAlarm': 'False', 'rx8powerHWarn': 'False', 'rx8powerLWarn': 'False', 'tx1biasHAlarm': 'False', 'tx1biasLAlarm': 'True', 'tx1biasHWarn': 'False', 'tx1biasLWarn': 'True', 'tx2biasHAlarm': 'False', 'tx2biasLAlarm': 'True', 'tx2biasHWarn': 'False', 'tx2biasLWarn': 'True', 'tx3biasHAlarm': 'False', 'tx3biasLAlarm': 'True', 'tx3biasHWarn': 'False', 'tx3biasLWarn': 'True', 'tx4biasHAlarm': 'False', 'tx4biasLAlarm': 'True', 'tx4biasHWarn': 'False', 'tx4biasLWarn': 'True', 'tx5biasHAlarm': 'False', 'tx5biasLAlarm': 'True', 'tx5biasHWarn': 'False', 'tx5biasLWarn': 'True', 'tx6biasHAlarm': 'False', 'tx6biasLAlarm': 'True', 'tx6biasHWarn': 'False', 'tx6biasLWarn': 'True', 'tx7biasHAlarm': 'False', 'tx7biasLAlarm': 'True', 'tx7biasHWarn': 'False', 'tx7biasLWarn': 'True', 'tx8biasHAlarm': 'False', 'tx8biasLAlarm': 'True', 'tx8biasHWarn': 'False', 'tx8biasLWarn': 'True', 'last_update_time': 'Fri Dec 05 10:53:25 2025'}

TRANSCEIVER_DOM_FLAG_CHANGE_COUNT|Ethernet304
{'tempHAlarm': '0', 'tempLAlarm': '0', 'tempHWarn': '0', 'tempLWarn': '0', 'vccHAlarm': '0', 'vccLAlarm': '0', 'vccHWarn': '0', 'vccLWarn': '0', 'lasertempHAlarm': '0', 'lasertempLAlarm': '0', 'lasertempHWarn': '0', 'lasertempLWarn': '0', 'tx1powerHAlarm': '0', 'tx1powerLAlarm': '2', 'tx1powerHWarn': '0', 'tx1powerLWarn': '2', 'tx2powerHAlarm': '0', 'tx2powerLAlarm': '2', 'tx2powerHWarn': '0', 'tx2powerLWarn': '2', 'tx3powerHAlarm': '0', 'tx3powerLAlarm': '2', 'tx3powerHWarn': '0', 'tx3powerLWarn': '2', 'tx4powerHAlarm': '0', 'tx4powerLAlarm': '2', 'tx4powerHWarn': '0', 'tx4powerLWarn': '2', 'tx5powerHAlarm': '0', 'tx5powerLAlarm': '2', 'tx5powerHWarn': '0', 'tx5powerLWarn': '2', 'tx6powerHAlarm': '0', 'tx6powerLAlarm': '1', 'tx6powerHWarn': '0', 'tx6powerLWarn': '1', 'tx7powerHAlarm': '0', 'tx7powerLAlarm': '1', 'tx7powerHWarn': '0', 'tx7powerLWarn': '1', 'tx8powerHAlarm': '0', 'tx8powerLAlarm': '1', 'tx8powerHWarn': '0', 'tx8powerLWarn': '1', 'rx1powerHAlarm': '0', 'rx1powerLAlarm': '1', 'rx1powerHWarn': '0', 'rx1powerLWarn': '1', 'rx2powerHAlarm': '0', 'rx2powerLAlarm': '1', 'rx2powerHWarn': '0', 'rx2powerLWarn': '1', 'rx3powerHAlarm': '0', 'rx3powerLAlarm': '1', 'rx3powerHWarn': '0', 'rx3powerLWarn': '1', 'rx4powerHAlarm': '0', 'rx4powerLAlarm': '1', 'rx4powerHWarn': '0', 'rx4powerLWarn': '1', 'rx5powerHAlarm': '0', 'rx5powerLAlarm': '1', 'rx5powerHWarn': '0', 'rx5powerLWarn': '1', 'rx6powerHAlarm': '0', 'rx6powerLAlarm': '1', 'rx6powerHWarn': '0', 'rx6powerLWarn': '1', 'rx7powerHAlarm': '0', 'rx7powerLAlarm': '1', 'rx7powerHWarn': '0', 'rx7powerLWarn': '1', 'rx8powerHAlarm': '0', 'rx8powerLAlarm': '1', 'rx8powerHWarn': '0', 'rx8powerLWarn': '1', 'tx1biasHAlarm': '0', 'tx1biasLAlarm': '2', 'tx1biasHWarn': '0', 'tx1biasLWarn': '2', 'tx2biasHAlarm': '0', 'tx2biasLAlarm': '2', 'tx2biasHWarn': '0', 'tx2biasLWarn': '2', 'tx3biasHAlarm': '0', 'tx3biasLAlarm': '2', 'tx3biasHWarn': '0', 'tx3biasLWarn': '2', 'tx4biasHAlarm': '0', 'tx4biasLAlarm': '2', 'tx4biasHWarn': '0', 'tx4biasLWarn': '2', 'tx5biasHAlarm': '0', 'tx5biasLAlarm': '2', 'tx5biasHWarn': '0', 'tx5biasLWarn': '2', 'tx6biasHAlarm': '0', 'tx6biasLAlarm': '2', 'tx6biasHWarn': '0', 'tx6biasLWarn': '2', 'tx7biasHAlarm': '0', 'tx7biasLAlarm': '2', 'tx7biasHWarn': '0', 'tx7biasLWarn': '2', 'tx8biasHAlarm': '0', 'tx8biasLAlarm': '2', 'tx8biasHWarn': '0', 'tx8biasLWarn': '2'}

TRANSCEIVER_STATUS_FLAG|Ethernet304
{'datapath_firmware_fault': 'False', 'module_firmware_fault': 'False', 'module_state_changed': 'False', 'tx1fault': 'False', 'tx2fault': 'False', 'tx3fault': 'False', 'tx4fault': 'False', 'tx5fault': 'False', 'tx6fault': 'False', 'tx7fault': 'False', 'tx8fault': 'False', 'rx1los': 'False', 'rx2los': 'False', 'rx3los': 'False', 'rx4los': 'False', 'rx5los': 'False', 'rx6los': 'False', 'rx7los': 'False', 'rx8los': 'False', 'tx1los_hostlane': 'True', 'tx2los_hostlane': 'True', 'tx3los_hostlane': 'True', 'tx4los_hostlane': 'True', 'tx5los_hostlane': 'True', 'tx6los_hostlane': 'True', 'tx7los_hostlane': 'True', 'tx8los_hostlane': 'True', 'tx1cdrlol_hostlane': 'True', 'tx2cdrlol_hostlane': 'True', 'tx3cdrlol_hostlane': 'True', 'tx4cdrlol_hostlane': 'True', 'tx5cdrlol_hostlane': 'True', 'tx6cdrlol_hostlane': 'True', 'tx7cdrlol_hostlane': 'True', 'tx8cdrlol_hostlane': 'True', 'tx1_eq_fault': 'N/A', 'tx2_eq_fault': 'N/A', 'tx3_eq_fault': 'N/A', 'tx4_eq_fault': 'N/A', 'tx5_eq_fault': 'N/A', 'tx6_eq_fault': 'N/A', 'tx7_eq_fault': 'N/A', 'tx8_eq_fault': 'N/A', 'rx1cdrlol': 'False', 'rx2cdrlol': 'False', 'rx3cdrlol': 'False', 'rx4cdrlol': 'False', 'rx5cdrlol': 'False', 'rx6cdrlol': 'False', 'rx7cdrlol': 'False', 'rx8cdrlol': 'False', 'last_update_time': 'Fri Dec 05 10:53:25 2025'}

TRANSCEIVER_DOM_FLAG_SET_TIME|Ethernet304
{'tempHAlarm': 'never', 'tempLAlarm': 'never', 'tempHWarn': 'never', 'tempLWarn': 'never', 'vccHAlarm': 'never', 'vccLAlarm': 'never', 'vccHWarn': 'never', 'vccLWarn': 'never', 'lasertempHAlarm': 'never', 'lasertempLAlarm': 'never', 'lasertempHWarn': 'never', 'lasertempLWarn': 'never', 'tx1powerHAlarm': 'never', 'tx1powerLAlarm': 'Fri Dec 05 10:53:25 2025', 'tx1powerHWarn': 'never', 'tx1powerLWarn': 'Fri Dec 05 10:53:25 2025', 'tx2powerHAlarm': 'never', 'tx2powerLAlarm': 'Fri Dec 05 10:53:25 2025', 'tx2powerHWarn': 'never', 'tx2powerLWarn': 'Fri Dec 05 10:53:25 2025', 'tx3powerHAlarm': 'never', 'tx3powerLAlarm': 'Fri Dec 05 10:53:25 2025', 'tx3powerHWarn': 'never', 'tx3powerLWarn': 'Fri Dec 05 10:53:25 2025', 'tx4powerHAlarm': 'never', 'tx4powerLAlarm': 'Fri Dec 05 10:53:25 2025', 'tx4powerHWarn': 'never', 'tx4powerLWarn': 'Fri Dec 05 10:53:25 2025', 'tx5powerHAlarm': 'never', 'tx5powerLAlarm': 'Fri Dec 05 10:53:25 2025', 'tx5powerHWarn': 'never', 'tx5powerLWarn': 'Fri Dec 05 10:53:25 2025', 'tx6powerHAlarm': 'never', 'tx6powerLAlarm': 'never', 'tx6powerHWarn': 'never', 'tx6powerLWarn': 'never', 'tx7powerHAlarm': 'never', 'tx7powerLAlarm': 'never', 'tx7powerHWarn': 'never', 'tx7powerLWarn': 'never', 'tx8powerHAlarm': 'never', 'tx8powerLAlarm': 'never', 'tx8powerHWarn': 'never', 'tx8powerLWarn': 'never', 'rx1powerHAlarm': 'never', 'rx1powerLAlarm': 'never', 'rx1powerHWarn': 'never', 'rx1powerLWarn': 'never', 'rx2powerHAlarm': 'never', 'rx2powerLAlarm': 'never', 'rx2powerHWarn': 'never', 'rx2powerLWarn': 'never', 'rx3powerHAlarm': 'never', 'rx3powerLAlarm': 'never', 'rx3powerHWarn': 'never', 'rx3powerLWarn': 'never', 'rx4powerHAlarm': 'never', 'rx4powerLAlarm': 'never', 'rx4powerHWarn': 'never', 'rx4powerLWarn': 'never', 'rx5powerHAlarm': 'never', 'rx5powerLAlarm': 'never', 'rx5powerHWarn': 'never', 'rx5powerLWarn': 'never', 'rx6powerHAlarm': 'never', 'rx6powerLAlarm': 'never', 'rx6powerHWarn': 'never', 'rx6powerLWarn': 'never', 'rx7powerHAlarm': 'never', 'rx7powerLAlarm': 'never', 'rx7powerHWarn': 'never', 'rx7powerLWarn': 'never', 'rx8powerHAlarm': 'never', 'rx8powerLAlarm': 'never', 'rx8powerHWarn': 'never', 'rx8powerLWarn': 'never', 'tx1biasHAlarm': 'never', 'tx1biasLAlarm': 'Fri Dec 05 10:53:25 2025', 'tx1biasHWarn': 'never', 'tx1biasLWarn': 'Fri Dec 05 10:53:25 2025', 'tx2biasHAlarm': 'never', 'tx2biasLAlarm': 'Fri Dec 05 10:53:25 2025', 'tx2biasHWarn': 'never', 'tx2biasLWarn': 'Fri Dec 05 10:53:25 2025', 'tx3biasHAlarm': 'never', 'tx3biasLAlarm': 'Fri Dec 05 10:53:25 2025', 'tx3biasHWarn': 'never', 'tx3biasLWarn': 'Fri Dec 05 10:53:25 2025', 'tx4biasHAlarm': 'never', 'tx4biasLAlarm': 'Fri Dec 05 10:53:25 2025', 'tx4biasHWarn': 'never', 'tx4biasLWarn': 'Fri Dec 05 10:53:25 2025', 'tx5biasHAlarm': 'never', 'tx5biasLAlarm': 'Fri Dec 05 10:53:25 2025', 'tx5biasHWarn': 'never', 'tx5biasLWarn': 'Fri Dec 05 10:53:25 2025', 'tx6biasHAlarm': 'never', 'tx6biasLAlarm': 'Fri Dec 05 10:53:25 2025', 'tx6biasHWarn': 'never', 'tx6biasLWarn': 'Fri Dec 05 10:53:25 2025', 'tx7biasHAlarm': 'never', 'tx7biasLAlarm': 'Fri Dec 05 10:53:25 2025', 'tx7biasHWarn': 'never', 'tx7biasLWarn': 'Fri Dec 05 10:53:25 2025', 'tx8biasHAlarm': 'never', 'tx8biasLAlarm': 'Fri Dec 05 10:53:25 2025', 'tx8biasHWarn': 'never', 'tx8biasLWarn': 'Fri Dec 05 10:53:25 2025'}

TRANSCEIVER_STATUS|Ethernet304
{'module_state': 'ModuleReady', 'module_fault_cause': 'No Fault detected', 'DP1State': 'DataPathActivated', 'DP2State': 'DataPathActivated', 'DP3State': 'DataPathActivated', 'DP4State': 'DataPathActivated', 'DP5State': 'DataPathActivated', 'DP6State': 'DataPathActivated', 'DP7State': 'DataPathActivated', 'DP8State': 'DataPathActivated', 'tx1OutputStatus': 'True', 'tx2OutputStatus': 'True', 'tx3OutputStatus': 'True', 'tx4OutputStatus': 'True', 'tx5OutputStatus': 'True', 'tx6OutputStatus': 'True', 'tx7OutputStatus': 'True', 'tx8OutputStatus': 'True', 'rx1OutputStatusHostlane': 'True', 'rx2OutputStatusHostlane': 'True', 'rx3OutputStatusHostlane': 'True', 'rx4OutputStatusHostlane': 'True', 'rx5OutputStatusHostlane': 'True', 'rx6OutputStatusHostlane': 'True', 'rx7OutputStatusHostlane': 'True', 'rx8OutputStatusHostlane': 'True', 'tx_disabled_channel': '0', 'tx1disable': 'False', 'tx2disable': 'False', 'tx3disable': 'False', 'tx4disable': 'False', 'tx5disable': 'False', 'tx6disable': 'False', 'tx7disable': 'False', 'tx8disable': 'False', 'config_state_hostlane1': 'ConfigSuccess', 'config_state_hostlane2': 'ConfigSuccess', 'config_state_hostlane3': 'ConfigSuccess', 'config_state_hostlane4': 'ConfigSuccess', 'config_state_hostlane5': 'ConfigSuccess', 'config_state_hostlane6': 'ConfigSuccess', 'config_state_hostlane7': 'ConfigSuccess', 'config_state_hostlane8': 'ConfigSuccess', 'dpdeinit_hostlane1': 'False', 'dpdeinit_hostlane2': 'False', 'dpdeinit_hostlane3': 'False', 'dpdeinit_hostlane4': 'False', 'dpdeinit_hostlane5': 'False', 'dpdeinit_hostlane6': 'False', 'dpdeinit_hostlane7': 'False', 'dpdeinit_hostlane8': 'False', 'dpinit_pending_hostlane1': 'False', 'dpinit_pending_hostlane2': 'False', 'dpinit_pending_hostlane3': 'False', 'dpinit_pending_hostlane4': 'False', 'dpinit_pending_hostlane5': 'False', 'dpinit_pending_hostlane6': 'False', 'dpinit_pending_hostlane7': 'False', 'dpinit_pending_hostlane8': 'False', 'last_update_time': 'Fri Dec 05 10:51:29 2025'}

TRANSCEIVER_INFO|Ethernet304
{'media_interface_technology': '1310 nm EML', 'nominal_bit_rate': 'N/A', 'is_replaceable': 'True', 'active_apsel_hostlane7': 'N/A', 'ext_rateselect_compliance': 'N/A', 'hardware_rev': '1.0', 'model': 'OSFP-800G-2XDR4', 'active_apsel_hostlane3': 'N/A', 'media_lane_count': 'N/A', 'active_apsel_hostlane8': 'N/A', 'encoding': 'N/A', 'vendor_oui': '00-1c-73', 'active_apsel_hostlane5': 'N/A', 'cmis_rev': '5.0', 'cable_type': 'Length Cable Assembly(m)', 'active_apsel_hostlane4': 'N/A', 'cable_length': '0.0', 'ext_identifier': 'Power Class 8 (16.0W Max)', 'active_apsel_hostlane1': 'N/A', 'vendor_rev': '51', 'vdm_supported': 'False', 'connector': 'MPO 1x12', 'specification_compliance': 'sm_media_interface', 'type': 'OSFP 8X Pluggable Transceiver', 'manufacturer': 'Arista Networks', 'host_lane_count': 'N/A', 'application_advertisement': "{1: {'host_electrical_interface_id': '400GAUI-4-L C2M (Annex 120G)', 'module_media_interface_id': '400GBASE-DR4 (Cl 124)', 'media_lane_count': 4, 'host_lane_count': 4, 'host_lane_assignment_options': 17, 'media_lane_assignment_options': 17}, 2: {'host_electrical_interface_id': '800GAUI-8 L C2M (Annex 120G)', 'module_media_interface_id': 'Undefined', 'media_lane_count': 8, 'host_lane_count': 8, 'host_lane_assignment_options': 1, 'media_lane_assignment_options': 1}, 3: {'host_electrical_interface_id': '200GAUI-2-L C2M (Annex 120G)', 'module_media_interface_id': 'Undefined', 'media_lane_count': 2, 'host_lane_count': 2, 'host_lane_assignment_options': 85, 'media_lane_assignment_options': 85}, 4: {'host_electrical_interface_id': '100GAUI-1-L C2M (Annex 120G)', 'module_media_interface_id': '100G-FR/100GBASE-FR1 (Cl 140)', 'media_lane_count': 1, 'host_lane_count': 1, 'host_lane_assignment_options': 255, 'media_lane_assignment_options': 255}}", 'serial': 'XTG245001190', 'active_apsel_hostlane2': 'N/A', 'type_abbrv_name': 'OSFP-8X', 'vendor_date': '2024-12-12', 'active_apsel_hostlane6': 'N/A'}

TRANSCEIVER_VDM_HALARM_THRESHOLD|Ethernet304
{'laser_temperature_media1': 'N/A', 'laser_temperature_media2': 'N/A', 'laser_temperature_media3': 'N/A', 'laser_temperature_media4': 'N/A', 'laser_temperature_media5': 'N/A', 'laser_temperature_media6': 'N/A', 'laser_temperature_media7': 'N/A', 'laser_temperature_media8': 'N/A', 'esnr_media_input1': 'N/A', 'esnr_media_input2': 'N/A', 'esnr_media_input3': 'N/A', 'esnr_media_input4': 'N/A', 'esnr_media_input5': 'N/A', 'esnr_media_input6': 'N/A', 'esnr_media_input7': 'N/A', 'esnr_media_input8': 'N/A', 'pam4_level_transition_media_input1': 'N/A', 'pam4_level_transition_media_input2': 'N/A', 'pam4_level_transition_media_input3': 'N/A', 'pam4_level_transition_media_input4': 'N/A', 'pam4_level_transition_media_input5': 'N/A', 'pam4_level_transition_media_input6': 'N/A', 'pam4_level_transition_media_input7': 'N/A', 'pam4_level_transition_media_input8': 'N/A', 'prefec_ber_min_media_input1': 'N/A', 'prefec_ber_min_media_input2': 'N/A', 'prefec_ber_min_media_input3': 'N/A', 'prefec_ber_min_media_input4': 'N/A', 'prefec_ber_min_media_input5': 'N/A', 'prefec_ber_min_media_input6': 'N/A', 'prefec_ber_min_media_input7': 'N/A', 'prefec_ber_min_media_input8': 'N/A', 'prefec_ber_max_media_input1': 'N/A', 'prefec_ber_max_media_input2': 'N/A', 'prefec_ber_max_media_input3': 'N/A', 'prefec_ber_max_media_input4': 'N/A', 'prefec_ber_max_media_input5': 'N/A', 'prefec_ber_max_media_input6': 'N/A', 'prefec_ber_max_media_input7': 'N/A', 'prefec_ber_max_media_input8': 'N/A', 'prefec_ber_avg_media_input1': 'N/A', 'prefec_ber_avg_media_input2': 'N/A', 'prefec_ber_avg_media_input3': 'N/A', 'prefec_ber_avg_media_input4': 'N/A', 'prefec_ber_avg_media_input5': 'N/A', 'prefec_ber_avg_media_input6': 'N/A', 'prefec_ber_avg_media_input7': 'N/A', 'prefec_ber_avg_media_input8': 'N/A', 'prefec_ber_curr_media_input1': 'N/A', 'prefec_ber_curr_media_input2': 'N/A', 'prefec_ber_curr_media_input3': 'N/A', 'prefec_ber_curr_media_input4': 'N/A', 'prefec_ber_curr_media_input5': 'N/A', 'prefec_ber_curr_media_input6': 'N/A', 'prefec_ber_curr_media_input7': 'N/A', 'prefec_ber_curr_media_input8': 'N/A', 'errored_frames_min_media_input1': 'N/A', 'errored_frames_min_media_input2': 'N/A', 'errored_frames_min_media_input3': 'N/A', 'errored_frames_min_media_input4': 'N/A', 'errored_frames_min_media_input5': 'N/A', 'errored_frames_min_media_input6': 'N/A', 'errored_frames_min_media_input7': 'N/A', 'errored_frames_min_media_input8': 'N/A', 'errored_frames_max_media_input1': 'N/A', 'errored_frames_max_media_input2': 'N/A', 'errored_frames_max_media_input3': 'N/A', 'errored_frames_max_media_input4': 'N/A', 'errored_frames_max_media_input5': 'N/A', 'errored_frames_max_media_input6': 'N/A', 'errored_frames_max_media_input7': 'N/A', 'errored_frames_max_media_input8': 'N/A', 'errored_frames_avg_media_input1': 'N/A', 'errored_frames_avg_media_input2': 'N/A', 'errored_frames_avg_media_input3': 'N/A', 'errored_frames_avg_media_input4': 'N/A', 'errored_frames_avg_media_input5': 'N/A', 'errored_frames_avg_media_input6': 'N/A', 'errored_frames_avg_media_input7': 'N/A', 'errored_frames_avg_media_input8': 'N/A', 'errored_frames_curr_media_input1': 'N/A', 'errored_frames_curr_media_input2': 'N/A', 'errored_frames_curr_media_input3': 'N/A', 'errored_frames_curr_media_input4': 'N/A', 'errored_frames_curr_media_input5': 'N/A', 'errored_frames_curr_media_input6': 'N/A', 'errored_frames_curr_media_input7': 'N/A', 'errored_frames_curr_media_input8': 'N/A', 'esnr_host_input1': 'N/A', 'esnr_host_input2': 'N/A', 'esnr_host_input3': 'N/A', 'esnr_host_input4': 'N/A', 'esnr_host_input5': 'N/A', 'esnr_host_input6': 'N/A', 'esnr_host_input7': 'N/A', 'esnr_host_input8': 'N/A', 'pam4_level_transition_host_input1': 'N/A', 'pam4_level_transition_host_input2': 'N/A', 'pam4_level_transition_host_input3': 'N/A', 'pam4_level_transition_host_input4': 'N/A', 'pam4_level_transition_host_input5': 'N/A', 'pam4_level_transition_host_input6': 'N/A', 'pam4_level_transition_host_input7': 'N/A', 'pam4_level_transition_host_input8': 'N/A', 'prefec_ber_min_host_input1': 'N/A', 'prefec_ber_min_host_input2': 'N/A', 'prefec_ber_min_host_input3': 'N/A', 'prefec_ber_min_host_input4': 'N/A', 'prefec_ber_min_host_input5': 'N/A', 'prefec_ber_min_host_input6': 'N/A', 'prefec_ber_min_host_input7': 'N/A', 'prefec_ber_min_host_input8': 'N/A', 'prefec_ber_max_host_input1': 'N/A', 'prefec_ber_max_host_input2': 'N/A', 'prefec_ber_max_host_input3': 'N/A', 'prefec_ber_max_host_input4': 'N/A', 'prefec_ber_max_host_input5': 'N/A', 'prefec_ber_max_host_input6': 'N/A', 'prefec_ber_max_host_input7': 'N/A', 'prefec_ber_max_host_input8': 'N/A', 'prefec_ber_avg_host_input1': 'N/A', 'prefec_ber_avg_host_input2': 'N/A', 'prefec_ber_avg_host_input3': 'N/A', 'prefec_ber_avg_host_input4': 'N/A', 'prefec_ber_avg_host_input5': 'N/A', 'prefec_ber_avg_host_input6': 'N/A', 'prefec_ber_avg_host_input7': 'N/A', 'prefec_ber_avg_host_input8': 'N/A', 'prefec_ber_curr_host_input1': 'N/A', 'prefec_ber_curr_host_input2': 'N/A', 'prefec_ber_curr_host_input3': 'N/A', 'prefec_ber_curr_host_input4': 'N/A', 'prefec_ber_curr_host_input5': 'N/A', 'prefec_ber_curr_host_input6': 'N/A', 'prefec_ber_curr_host_input7': 'N/A', 'prefec_ber_curr_host_input8': 'N/A', 'errored_frames_min_host_input1': 'N/A', 'errored_frames_min_host_input2': 'N/A', 'errored_frames_min_host_input3': 'N/A', 'errored_frames_min_host_input4': 'N/A', 'errored_frames_min_host_input5': 'N/A', 'errored_frames_min_host_input6': 'N/A', 'errored_frames_min_host_input7': 'N/A', 'errored_frames_min_host_input8': 'N/A', 'errored_frames_max_host_input1': 'N/A', 'errored_frames_max_host_input2': 'N/A', 'errored_frames_max_host_input3': 'N/A', 'errored_frames_max_host_input4': 'N/A', 'errored_frames_max_host_input5': 'N/A', 'errored_frames_max_host_input6': 'N/A', 'errored_frames_max_host_input7': 'N/A', 'errored_frames_max_host_input8': 'N/A', 'errored_frames_avg_host_input1': 'N/A', 'errored_frames_avg_host_input2': 'N/A', 'errored_frames_avg_host_input3': 'N/A', 'errored_frames_avg_host_input4': 'N/A', 'errored_frames_avg_host_input5': 'N/A', 'errored_frames_avg_host_input6': 'N/A', 'errored_frames_avg_host_input7': 'N/A', 'errored_frames_avg_host_input8': 'N/A', 'errored_frames_curr_host_input1': 'N/A', 'errored_frames_curr_host_input2': 'N/A', 'errored_frames_curr_host_input3': 'N/A', 'errored_frames_curr_host_input4': 'N/A', 'errored_frames_curr_host_input5': 'N/A', 'errored_frames_curr_host_input6': 'N/A', 'errored_frames_curr_host_input7': 'N/A', 'errored_frames_curr_host_input8': 'N/A', 'last_update_time': 'Fri Dec 05 10:34:55 2025'}

TRANSCEIVER_STATUS_FLAG_CHANGE_COUNT|Ethernet304
{'datapath_firmware_fault': '0', 'module_firmware_fault': '0', 'module_state_changed': '0', 'tx1fault': '0', 'tx2fault': '0', 'tx3fault': '0', 'tx4fault': '0', 'tx5fault': '0', 'tx6fault': '0', 'tx7fault': '0', 'tx8fault': '0', 'rx1los': '1', 'rx2los': '1', 'rx3los': '1', 'rx4los': '1', 'rx5los': '1', 'rx6los': '1', 'rx7los': '1', 'rx8los': '1', 'tx1los_hostlane': '2', 'tx2los_hostlane': '2', 'tx3los_hostlane': '2', 'tx4los_hostlane': '2', 'tx5los_hostlane': '2', 'tx6los_hostlane': '2', 'tx7los_hostlane': '2', 'tx8los_hostlane': '2', 'tx1cdrlol_hostlane': '2', 'tx2cdrlol_hostlane': '2', 'tx3cdrlol_hostlane': '2', 'tx4cdrlol_hostlane': '2', 'tx5cdrlol_hostlane': '2', 'tx6cdrlol_hostlane': '2', 'tx7cdrlol_hostlane': '2', 'tx8cdrlol_hostlane': '2', 'tx1_eq_fault': '0', 'tx2_eq_fault': '0', 'tx3_eq_fault': '0', 'tx4_eq_fault': '0', 'tx5_eq_fault': '0', 'tx6_eq_fault': '0', 'tx7_eq_fault': '0', 'tx8_eq_fault': '0', 'rx1cdrlol': '1', 'rx2cdrlol': '1', 'rx3cdrlol': '1', 'rx4cdrlol': '1', 'rx5cdrlol': '1', 'rx6cdrlol': '1', 'rx7cdrlol': '1', 'rx8cdrlol': '1'}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

7 participants