Skip to content

Commit 630f688

Browse files
Pterosaurvenkit-nexthop
authored andcommitted
Enable output queue for HFT (#3962)
What I did Enable SAI_TAM_TEL_TYPE_ATTR_SWITCH_ENABLE_OUTPUT_QUEUE_STATS to TAM_TEL_TYPE Why I did it This attribute is needed if the HFT want to support stats of IPG Signed-off-by: Venkit Kasiviswanathan <[email protected]>
1 parent 3e32231 commit 630f688

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

orchagent/high_frequency_telemetry/hftelprofile.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -722,6 +722,10 @@ sai_object_id_t HFTelProfile::getTAMTelTypeObjID(sai_object_type_t object_type)
722722
attr.value.booldata = true;
723723
attrs.push_back(attr);
724724

725+
attr.id = SAI_TAM_TEL_TYPE_ATTR_SWITCH_ENABLE_OUTPUT_QUEUE_STATS;
726+
attr.value.booldata = true;
727+
attrs.push_back(attr);
728+
725729
attr.id = SAI_TAM_TEL_TYPE_ATTR_MODE ;
726730
attr.value.s32 = SAI_TAM_TEL_TYPE_MODE_SINGLE_TYPE;
727731
attrs.push_back(attr);

0 commit comments

Comments
 (0)