From 4a021807761f49dfa7c7dbbebf95519e9c816c40 Mon Sep 17 00:00:00 2001 From: Justin Wong Date: Sun, 19 Jul 2026 06:31:17 +0000 Subject: [PATCH 1/6] Add new config to enable per-port counter discovery for syncd Adding a new HWSKU config to toggle per-port counter discovery when checking for counter to polls in syncd initialization. This config will be stored into CONFIG_DB and and used to decide what arguments to use to invoke syncd via syncd_init_common.sh Signed-off-by: Justin Wong --- .../enable_per_port_counter_discovery | 1 + files/build_templates/docker_image_ctl.j2 | 5 +++++ files/build_templates/swss_vars.j2 | 1 + src/sonic-yang-models/yang-models/sonic-device_metadata.yang | 5 +++++ 4 files changed, 12 insertions(+) create mode 100644 device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-C512S2/enable_per_port_counter_discovery diff --git a/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-C512S2/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-C512S2/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-C512S2/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/files/build_templates/docker_image_ctl.j2 b/files/build_templates/docker_image_ctl.j2 index bb18bea1343..2eda8168bf5 100644 --- a/files/build_templates/docker_image_ctl.j2 +++ b/files/build_templates/docker_image_ctl.j2 @@ -533,6 +533,11 @@ start() { if [ -f "$SUPPORTING_BULK_COUNTER_GROUPS" ]; then $SONIC_DB_CLI CONFIG_DB HSET 'DEVICE_METADATA|localhost' supporting_bulk_counter_groups@ $(cat $SUPPORTING_BULK_COUNTER_GROUPS) fi + + ENABLE_PER_PORT_COUNTER_DISCOVERY="$HWSKU_FOLDER/enable_per_port_counter_discovery" + if [ -f "$ENABLE_PER_PORT_COUNTER_DISCOVERY" ]; then + $SONIC_DB_CLI CONFIG_DB HSET 'DEVICE_METADATA|localhost' enable_per_port_counter_discovery $(cat $ENABLE_PER_PORT_COUNTER_DISCOVERY) + fi fi if [ "$CREATE_ONLY_CONFIG_DB_BUFFERS_JSON_FOUND" = true ]; then diff --git a/files/build_templates/swss_vars.j2 b/files/build_templates/swss_vars.j2 index f1633caf950..fb2341118ab 100644 --- a/files/build_templates/swss_vars.j2 +++ b/files/build_templates/swss_vars.j2 @@ -10,6 +10,7 @@ {%if DEVICE_METADATA.localhost.supporting_bulk_counter_groups is defined and DEVICE_METADATA.localhost.supporting_bulk_counter_groups != '' -%} "supporting_bulk_counter_groups": "{{ DEVICE_METADATA.localhost.supporting_bulk_counter_groups|join(',') }}", {% endif -%} + "enable_per_port_counter_discovery": {% if DEVICE_METADATA.localhost.enable_per_port_counter_discovery is defined and DEVICE_METADATA.localhost.enable_per_port_counter_discovery|string|lower == "true" %}"true"{% else %}"false"{% endif %}, "dual_tor": {% if DEVICE_METADATA.localhost.type == "ToRRouter" and DEVICE_METADATA.localhost.subtype == "DualToR" %}"enable"{% else %}"disable"{% endif %}, "dscp_remapping": {% if SYSTEM_DEFAULTS is defined and SYSTEM_DEFAULTS.tunnel_qos_remap is defined and SYSTEM_DEFAULTS.tunnel_qos_remap.status == "enabled" %}"enable"{% else %}"disable"{% endif %}, "swss_zmq": {% if SYSTEM_DEFAULTS is defined and SYSTEM_DEFAULTS.swss_zmq is defined and SYSTEM_DEFAULTS.swss_zmq.status == "enabled" %}"true"{% else %}"false"{% endif %}, diff --git a/src/sonic-yang-models/yang-models/sonic-device_metadata.yang b/src/sonic-yang-models/yang-models/sonic-device_metadata.yang index 0e8d48ba57b..4cf0de65231 100644 --- a/src/sonic-yang-models/yang-models/sonic-device_metadata.yang +++ b/src/sonic-yang-models/yang-models/sonic-device_metadata.yang @@ -302,6 +302,11 @@ module sonic-device_metadata { description "This field contains a list of counter groups that support bulk operation."; } + leaf enable_per_port_counter_discovery { + type boolean; + description "Enable per-port counter discovery with counter groups."; + } + leaf bgp_router_id { type inet:ipv4-address; description "BGP Router identifier"; From 02eb7d2d58062ebc52c86bbf7a9c624395adf98d Mon Sep 17 00:00:00 2001 From: Justin Wong Date: Mon, 20 Jul 2026 19:31:39 +0000 Subject: [PATCH 2/6] add doc change for yang configdb schema Signed-off-by: Justin Wong --- src/sonic-yang-models/doc/Configuration.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sonic-yang-models/doc/Configuration.md b/src/sonic-yang-models/doc/Configuration.md index 7306ce6001f..73ead823340 100644 --- a/src/sonic-yang-models/doc/Configuration.md +++ b/src/sonic-yang-models/doc/Configuration.md @@ -1102,6 +1102,7 @@ instance is supported in SONiC. "hwsku": "Force10-S6100", "default_bgp_status": "up", "docker_routing_config_mode": "unified", + "enable_per_port_counter_discovery": "false", "hostname": "sonic-s6100-01", "platform": "x86_64-dell_s6100_c2538-r0", "mac": "4c:76:25:f4:70:82", From cb357dc4197afff3ef4480932c175fea39b617d5 Mon Sep 17 00:00:00 2001 From: Justin Wong Date: Wed, 22 Jul 2026 19:01:55 +0000 Subject: [PATCH 3/6] Add new entry to be part of yang unit tests Add the new entry enable_per_port_counter_discovery to be part of yang's device_metadata unit test. Signed-off-by: Justin Wong --- .../tests/device_metadata.json | 7 +++++++ .../tests_config/device_metadata.json | 18 ++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/src/sonic-yang-models/tests/yang_model_tests/tests/device_metadata.json b/src/sonic-yang-models/tests/yang_model_tests/tests/device_metadata.json index 1904494658b..f23c6e6b312 100644 --- a/src/sonic-yang-models/tests/yang_model_tests/tests/device_metadata.json +++ b/src/sonic-yang-models/tests/yang_model_tests/tests/device_metadata.json @@ -247,6 +247,13 @@ "DEVICE_METADATA_VALID_SUPPORTING_BULK_COUNTER_GROUPS": { "desc": "Verifying the supporting_bulk_counter_groups value" }, + "DEVICE_METADATA_VALID_ENABLE_PER_PORT_COUNTER_DISCOVERY": { + "desc": "Verifying valid enable_per_port_counter_discovery value" + }, + "DEVICE_METADATA_INVALID_ENABLE_PER_PORT_COUNTER_DISCOVERY": { + "desc": "Verifying invalid enable_per_port_counter_discovery value", + "eStrKey": "InvalidValue" + }, "DEVICE_METADATA_VALID_BGP_ROUTER_ID": { "desc": "Verifying bgp_router_id configuration." }, diff --git a/src/sonic-yang-models/tests/yang_model_tests/tests_config/device_metadata.json b/src/sonic-yang-models/tests/yang_model_tests/tests_config/device_metadata.json index 5c40ada7c0a..16870fe00a6 100644 --- a/src/sonic-yang-models/tests/yang_model_tests/tests_config/device_metadata.json +++ b/src/sonic-yang-models/tests/yang_model_tests/tests_config/device_metadata.json @@ -739,6 +739,24 @@ } } }, + "DEVICE_METADATA_VALID_ENABLE_PER_PORT_COUNTER_DISCOVERY": { + "sonic-device_metadata:sonic-device_metadata": { + "sonic-device_metadata:DEVICE_METADATA": { + "sonic-device_metadata:localhost": { + "enable_per_port_counter_discovery": "true" + } + } + } + }, + "DEVICE_METADATA_INVALID_ENABLE_PER_PORT_COUNTER_DISCOVERY": { + "sonic-device_metadata:sonic-device_metadata": { + "sonic-device_metadata:DEVICE_METADATA": { + "sonic-device_metadata:localhost": { + "enable_per_port_counter_discovery": "invalid" + } + } + } + }, "DEVICE_METADATA_VALID_BGP_ROUTER_ID": { "sonic-device_metadata:sonic-device_metadata": { "sonic-device_metadata:DEVICE_METADATA": { From 5555ed0e33f10b630dd1768cd90092932ed90ac4 Mon Sep 17 00:00:00 2001 From: Justin Wong Date: Thu, 23 Jul 2026 00:31:15 +0000 Subject: [PATCH 4/6] Cast config file to all arista HWSKUs Cast the new enable_per_port_counter_discovery config file to all Arista HWSKUs as they all need the per-port counter discovery logic for counters to fully work. Signed-off-by: Justin Wong --- .../Arista-7050-Q16S64/enable_per_port_counter_discovery | 1 + .../Arista-7050-QX32-Flex/enable_per_port_counter_discovery | 1 + .../Arista-7050-QX32/enable_per_port_counter_discovery | 1 + .../Arista-7050QX-32S-S4Q31/enable_per_port_counter_discovery | 1 + .../Arista-7050QX-32S/enable_per_port_counter_discovery | 1 + .../Arista-7050QX32S-Q32/enable_per_port_counter_discovery | 1 + .../Arista-7050CX3-32S-C28S16/enable_per_port_counter_discovery | 1 + .../Arista-7050CX3-32S-C28S4/enable_per_port_counter_discovery | 1 + .../Arista-7050CX3-32S-C32/enable_per_port_counter_discovery | 1 + .../Arista-7050CX3-32S-C6S104/enable_per_port_counter_discovery | 1 + .../Arista-7050CX3-32S-D48C8/enable_per_port_counter_discovery | 1 + .../Arista-7050CX3-32S-S128/enable_per_port_counter_discovery | 1 + .../Arista-7050CX3-32S/enable_per_port_counter_discovery | 1 + .../Arista-7050DX4-32S/enable_per_port_counter_discovery | 1 + .../Arista-7050PX4-32S/enable_per_port_counter_discovery | 1 + .../Arista-7050SX3-48C8/enable_per_port_counter_discovery | 1 + .../Arista-7050SX3-48YC8-S48Q8/enable_per_port_counter_discovery | 1 + .../Arista-7050SX3-48YC8/enable_per_port_counter_discovery | 1 + .../Arista-7060CX-32S-C32/enable_per_port_counter_discovery | 1 + .../Arista-7060CX-32S-D48C8/enable_per_port_counter_discovery | 1 + .../Arista-7060CX-32S-Q24C8/enable_per_port_counter_discovery | 1 + .../Arista-7060CX-32S-Q32/enable_per_port_counter_discovery | 1 + .../Arista-7060CX-32S-T96C8/enable_per_port_counter_discovery | 1 + .../Arista-7060CX-32S/enable_per_port_counter_discovery | 1 + .../Arista-7060DX4-32/enable_per_port_counter_discovery | 1 + .../Arista-7060DX4-C32/enable_per_port_counter_discovery | 1 + .../enable_per_port_counter_discovery | 1 + .../enable_per_port_counter_discovery | 1 + .../enable_per_port_counter_discovery | 1 + .../Arista-7060DX5-32/enable_per_port_counter_discovery | 1 + .../Arista-7060DX5-64S/enable_per_port_counter_discovery | 1 + .../Arista-7060PX4-32/enable_per_port_counter_discovery | 1 + .../Arista-7060PX4-C64/enable_per_port_counter_discovery | 1 + .../Arista-7060PX4-O32/enable_per_port_counter_discovery | 1 + .../Arista-7060PX5-64S/enable_per_port_counter_discovery | 1 + .../enable_per_port_counter_discovery | 1 + .../enable_per_port_counter_discovery | 1 + .../enable_per_port_counter_discovery | 1 + .../enable_per_port_counter_discovery | 1 + .../enable_per_port_counter_discovery | 1 + .../enable_per_port_counter_discovery | 1 + .../enable_per_port_counter_discovery | 1 + .../Arista-7060X6-32PE/enable_per_port_counter_discovery | 1 + .../enable_per_port_counter_discovery | 1 + .../Arista-7060X6-64DE-64x400G/enable_per_port_counter_discovery | 1 + .../Arista-7060X6-64DE-O128S2/enable_per_port_counter_discovery | 1 + .../Arista-7060X6-64DE/enable_per_port_counter_discovery | 1 + .../enable_per_port_counter_discovery | 1 + .../Arista-7060X6-64PE-64x400G/enable_per_port_counter_discovery | 1 + .../Arista-7060X6-64PE-C224O8/enable_per_port_counter_discovery | 1 + .../Arista-7060X6-64PE-C256S2/enable_per_port_counter_discovery | 1 + .../Arista-7060X6-64PE-O128S2/enable_per_port_counter_discovery | 1 + .../Arista-7060X6-64PE-P32O64/enable_per_port_counter_discovery | 1 + .../Arista-7060X6-64PE-P32V128/enable_per_port_counter_discovery | 1 + .../Arista-7060X6-64PE/enable_per_port_counter_discovery | 1 + .../enable_per_port_counter_discovery | 1 + .../Arista-7060X6-64PE-B-O128/enable_per_port_counter_discovery | 1 + .../enable_per_port_counter_discovery | 1 + .../enable_per_port_counter_discovery | 1 + .../enable_per_port_counter_discovery | 1 + .../enable_per_port_counter_discovery | 1 + .../Arista-7060X6-64PE-B-P64/enable_per_port_counter_discovery | 1 + .../Arista-7170-32C-C32/enable_per_port_counter_discovery | 1 + .../Arista-7170-32CD-C32/enable_per_port_counter_discovery | 1 + .../Arista-7170-64C/enable_per_port_counter_discovery | 1 + .../Arista-7170-Q59S20/enable_per_port_counter_discovery | 1 + .../Arista-7170B-64C/enable_per_port_counter_discovery | 1 + .../Arista-720DT-48S/enable_per_port_counter_discovery | 1 + .../Arista-7260CX3-64/enable_per_port_counter_discovery | 1 + .../Arista-7260CX3-C64/enable_per_port_counter_discovery | 1 + .../Arista-7260CX3-D108C10/enable_per_port_counter_discovery | 1 + .../Arista-7260CX3-D108C8/enable_per_port_counter_discovery | 1 + .../Arista-7260CX3-D92C16/enable_per_port_counter_discovery | 1 + .../Arista-7260CX3-D96C16/enable_per_port_counter_discovery | 1 + .../Arista-7260CX3-Q64/enable_per_port_counter_discovery | 1 + .../Arista-7280CR3-C32D4/enable_per_port_counter_discovery | 1 + .../Arista-7280CR3-C40/enable_per_port_counter_discovery | 1 + .../Arista-7280CR3-C28S8/enable_per_port_counter_discovery | 1 + .../Arista-7280CR3-C32P4/enable_per_port_counter_discovery | 1 + .../Arista-7280CR3-C40/enable_per_port_counter_discovery | 1 + .../Arista-7280CR3-C32D4/enable_per_port_counter_discovery | 1 + .../Arista-7280CR3-C40/enable_per_port_counter_discovery | 1 + .../Arista-7280CR3-C32P4/enable_per_port_counter_discovery | 1 + .../Arista-7280CR3-C40/enable_per_port_counter_discovery | 1 + .../Arista-7280DR3A-36/enable_per_port_counter_discovery | 1 + .../enable_per_port_counter_discovery | 1 + .../Arista-7804R3-FM/enable_per_port_counter_discovery | 1 + .../Arista-7808R3-FM/enable_per_port_counter_discovery | 1 + .../Arista-7808R3A-FM/enable_per_port_counter_discovery | 1 + .../Arista-7800R3-48CQ2-C48/enable_per_port_counter_discovery | 1 + .../Arista-7800R3-48CQM2-C48/enable_per_port_counter_discovery | 1 + .../Arista-7800R3A-36D2-C36/enable_per_port_counter_discovery | 1 + .../Arista-7800R3A-36D2-C72/enable_per_port_counter_discovery | 1 + .../Arista-7800R3A-36D2-D36/enable_per_port_counter_discovery | 1 + 94 files changed, 94 insertions(+) create mode 100644 device/arista/x86_64-arista_7050_qx32/Arista-7050-Q16S64/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7050_qx32/Arista-7050-QX32-Flex/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7050_qx32/Arista-7050-QX32/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7050_qx32s/Arista-7050QX-32S-S4Q31/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7050_qx32s/Arista-7050QX-32S/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7050_qx32s/Arista-7050QX32S-Q32/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C28S16/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C28S4/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C32/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C6S104/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-D48C8/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-S128/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7050dx4_32s/Arista-7050DX4-32S/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7050px4_32s/Arista-7050PX4-32S/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7050sx3_48c8/Arista-7050SX3-48C8/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7050sx3_48yc8/Arista-7050SX3-48YC8-S48Q8/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7050sx3_48yc8/Arista-7050SX3-48YC8/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-C32/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-D48C8/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-Q24C8/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-Q32/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-T96C8/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060dx4_32/Arista-7060DX4-32/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060dx4_32/Arista-7060DX4-C32/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32-100Gx48-400Gx8/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32-200Gx48-100Gx32/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32-25Gx96-100Gx8-200Gx8/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060dx5_64s/Arista-7060DX5-64S/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060px4_32/Arista-7060PX4-32/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060px4_32/Arista-7060PX4-C64/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060px4_32/Arista-7060PX4-O32/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060px5_64s/Arista-7060PX5-64S/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_16pe_384c/Arista-7060X6-16PE-384C-O128S2-FANOUT/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_16pe_384c/Arista-7060X6-16PE-384C-O128S2-LAB/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_16pe_384c/Arista-7060X6-16PE-384C-O128S2/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S2-FANOUT/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S2-LAB/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S2/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S4/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_32pe/Arista-7060X6-32PE/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE-256x200G/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE-64x400G/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE-O128S2/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-256x200G/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-64x400G/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-C224O8/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-C256S2/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-O128S2/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-P32O64/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-P32V128/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-C448O16/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-O128/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-O128S2/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P28O72/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P32O64/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P32V128/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P64/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7170_32c/Arista-7170-32C-C32/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7170_32cd/Arista-7170-32CD-C32/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7170_64c/Arista-7170-64C/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7170_64c/Arista-7170-Q59S20/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7170b_64c/Arista-7170B-64C/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_720dt_48s/Arista-720DT-48S/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-64/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-C64/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D108C10/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D108C8/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D92C16/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D96C16/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-Q64/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7280cr3_32d4/Arista-7280CR3-C32D4/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7280cr3_32d4/Arista-7280CR3-C40/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7280cr3_32p4/Arista-7280CR3-C28S8/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7280cr3_32p4/Arista-7280CR3-C32P4/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7280cr3_32p4/Arista-7280CR3-C40/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7280cr3mk_32d4/Arista-7280CR3-C32D4/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7280cr3mk_32d4/Arista-7280CR3-C40/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7280cr3mk_32p4/Arista-7280CR3-C32P4/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7280cr3mk_32p4/Arista-7280CR3-C40/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7280dr3a_36/Arista-7280DR3A-36/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7280r4_32qf_32df/Arista-7280R4-32QF-32DF-64O/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7800_sup/Arista-7804R3-FM/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7800_sup/Arista-7808R3-FM/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7800_sup/Arista-7808R3A-FM/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7800r3_48cq2_lc/Arista-7800R3-48CQ2-C48/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7800r3_48cqm2_lc/Arista-7800R3-48CQM2-C48/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7800r3a_36d2_lc/Arista-7800R3A-36D2-C36/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7800r3a_36d2_lc/Arista-7800R3A-36D2-C72/enable_per_port_counter_discovery create mode 100644 device/arista/x86_64-arista_7800r3a_36d2_lc/Arista-7800R3A-36D2-D36/enable_per_port_counter_discovery diff --git a/device/arista/x86_64-arista_7050_qx32/Arista-7050-Q16S64/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050_qx32/Arista-7050-Q16S64/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7050_qx32/Arista-7050-Q16S64/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7050_qx32/Arista-7050-QX32-Flex/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050_qx32/Arista-7050-QX32-Flex/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7050_qx32/Arista-7050-QX32-Flex/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7050_qx32/Arista-7050-QX32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050_qx32/Arista-7050-QX32/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7050_qx32/Arista-7050-QX32/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7050_qx32s/Arista-7050QX-32S-S4Q31/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050_qx32s/Arista-7050QX-32S-S4Q31/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7050_qx32s/Arista-7050QX-32S-S4Q31/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7050_qx32s/Arista-7050QX-32S/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050_qx32s/Arista-7050QX-32S/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7050_qx32s/Arista-7050QX-32S/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7050_qx32s/Arista-7050QX32S-Q32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050_qx32s/Arista-7050QX32S-Q32/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7050_qx32s/Arista-7050QX32S-Q32/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C28S16/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C28S16/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C28S16/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C28S4/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C28S4/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C28S4/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C32/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C32/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C6S104/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C6S104/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C6S104/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-D48C8/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-D48C8/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-D48C8/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-S128/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-S128/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-S128/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7050dx4_32s/Arista-7050DX4-32S/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050dx4_32s/Arista-7050DX4-32S/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7050dx4_32s/Arista-7050DX4-32S/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7050px4_32s/Arista-7050PX4-32S/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050px4_32s/Arista-7050PX4-32S/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7050px4_32s/Arista-7050PX4-32S/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7050sx3_48c8/Arista-7050SX3-48C8/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050sx3_48c8/Arista-7050SX3-48C8/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7050sx3_48c8/Arista-7050SX3-48C8/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7050sx3_48yc8/Arista-7050SX3-48YC8-S48Q8/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050sx3_48yc8/Arista-7050SX3-48YC8-S48Q8/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7050sx3_48yc8/Arista-7050SX3-48YC8-S48Q8/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7050sx3_48yc8/Arista-7050SX3-48YC8/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050sx3_48yc8/Arista-7050SX3-48YC8/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7050sx3_48yc8/Arista-7050SX3-48YC8/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-C32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-C32/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-C32/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-D48C8/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-D48C8/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-D48C8/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-Q24C8/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-Q24C8/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-Q24C8/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-Q32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-Q32/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-Q32/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-T96C8/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-T96C8/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-T96C8/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060dx4_32/Arista-7060DX4-32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060dx4_32/Arista-7060DX4-32/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060dx4_32/Arista-7060DX4-32/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060dx4_32/Arista-7060DX4-C32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060dx4_32/Arista-7060DX4-C32/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060dx4_32/Arista-7060DX4-C32/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32-100Gx48-400Gx8/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32-100Gx48-400Gx8/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32-100Gx48-400Gx8/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32-200Gx48-100Gx32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32-200Gx48-100Gx32/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32-200Gx48-100Gx32/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32-25Gx96-100Gx8-200Gx8/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32-25Gx96-100Gx8-200Gx8/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32-25Gx96-100Gx8-200Gx8/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060dx5_64s/Arista-7060DX5-64S/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060dx5_64s/Arista-7060DX5-64S/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060dx5_64s/Arista-7060DX5-64S/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060px4_32/Arista-7060PX4-32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060px4_32/Arista-7060PX4-32/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060px4_32/Arista-7060PX4-32/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060px4_32/Arista-7060PX4-C64/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060px4_32/Arista-7060PX4-C64/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060px4_32/Arista-7060PX4-C64/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060px4_32/Arista-7060PX4-O32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060px4_32/Arista-7060PX4-O32/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060px4_32/Arista-7060PX4-O32/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060px5_64s/Arista-7060PX5-64S/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060px5_64s/Arista-7060PX5-64S/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060px5_64s/Arista-7060PX5-64S/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_16pe_384c/Arista-7060X6-16PE-384C-O128S2-FANOUT/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_16pe_384c/Arista-7060X6-16PE-384C-O128S2-FANOUT/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_16pe_384c/Arista-7060X6-16PE-384C-O128S2-FANOUT/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_16pe_384c/Arista-7060X6-16PE-384C-O128S2-LAB/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_16pe_384c/Arista-7060X6-16PE-384C-O128S2-LAB/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_16pe_384c/Arista-7060X6-16PE-384C-O128S2-LAB/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_16pe_384c/Arista-7060X6-16PE-384C-O128S2/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_16pe_384c/Arista-7060X6-16PE-384C-O128S2/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_16pe_384c/Arista-7060X6-16PE-384C-O128S2/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S2-FANOUT/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S2-FANOUT/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S2-FANOUT/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S2-LAB/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S2-LAB/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S2-LAB/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S2/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S2/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S2/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S4/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S4/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S4/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_32pe/Arista-7060X6-32PE/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_32pe/Arista-7060X6-32PE/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_32pe/Arista-7060X6-32PE/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE-256x200G/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE-256x200G/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE-256x200G/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE-64x400G/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE-64x400G/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE-64x400G/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE-O128S2/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE-O128S2/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE-O128S2/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-256x200G/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-256x200G/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-256x200G/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-64x400G/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-64x400G/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-64x400G/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-C224O8/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-C224O8/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-C224O8/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-C256S2/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-C256S2/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-C256S2/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-O128S2/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-O128S2/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-O128S2/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-P32O64/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-P32O64/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-P32O64/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-P32V128/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-P32V128/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-P32V128/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-C448O16/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-C448O16/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-C448O16/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-O128/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-O128/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-O128/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-O128S2/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-O128S2/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-O128S2/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P28O72/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P28O72/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P28O72/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P32O64/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P32O64/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P32O64/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P32V128/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P32V128/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P32V128/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P64/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P64/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P64/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7170_32c/Arista-7170-32C-C32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7170_32c/Arista-7170-32C-C32/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7170_32c/Arista-7170-32C-C32/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7170_32cd/Arista-7170-32CD-C32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7170_32cd/Arista-7170-32CD-C32/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7170_32cd/Arista-7170-32CD-C32/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7170_64c/Arista-7170-64C/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7170_64c/Arista-7170-64C/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7170_64c/Arista-7170-64C/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7170_64c/Arista-7170-Q59S20/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7170_64c/Arista-7170-Q59S20/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7170_64c/Arista-7170-Q59S20/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7170b_64c/Arista-7170B-64C/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7170b_64c/Arista-7170B-64C/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7170b_64c/Arista-7170B-64C/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_720dt_48s/Arista-720DT-48S/enable_per_port_counter_discovery b/device/arista/x86_64-arista_720dt_48s/Arista-720DT-48S/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_720dt_48s/Arista-720DT-48S/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-64/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-64/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-64/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-C64/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-C64/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-C64/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D108C10/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D108C10/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D108C10/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D108C8/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D108C8/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D108C8/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D92C16/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D92C16/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D92C16/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D96C16/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D96C16/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D96C16/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-Q64/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-Q64/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-Q64/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7280cr3_32d4/Arista-7280CR3-C32D4/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7280cr3_32d4/Arista-7280CR3-C32D4/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7280cr3_32d4/Arista-7280CR3-C32D4/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7280cr3_32d4/Arista-7280CR3-C40/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7280cr3_32d4/Arista-7280CR3-C40/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7280cr3_32d4/Arista-7280CR3-C40/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7280cr3_32p4/Arista-7280CR3-C28S8/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7280cr3_32p4/Arista-7280CR3-C28S8/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7280cr3_32p4/Arista-7280CR3-C28S8/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7280cr3_32p4/Arista-7280CR3-C32P4/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7280cr3_32p4/Arista-7280CR3-C32P4/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7280cr3_32p4/Arista-7280CR3-C32P4/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7280cr3_32p4/Arista-7280CR3-C40/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7280cr3_32p4/Arista-7280CR3-C40/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7280cr3_32p4/Arista-7280CR3-C40/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7280cr3mk_32d4/Arista-7280CR3-C32D4/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7280cr3mk_32d4/Arista-7280CR3-C32D4/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7280cr3mk_32d4/Arista-7280CR3-C32D4/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7280cr3mk_32d4/Arista-7280CR3-C40/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7280cr3mk_32d4/Arista-7280CR3-C40/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7280cr3mk_32d4/Arista-7280CR3-C40/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7280cr3mk_32p4/Arista-7280CR3-C32P4/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7280cr3mk_32p4/Arista-7280CR3-C32P4/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7280cr3mk_32p4/Arista-7280CR3-C32P4/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7280cr3mk_32p4/Arista-7280CR3-C40/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7280cr3mk_32p4/Arista-7280CR3-C40/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7280cr3mk_32p4/Arista-7280CR3-C40/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7280dr3a_36/Arista-7280DR3A-36/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7280dr3a_36/Arista-7280DR3A-36/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7280dr3a_36/Arista-7280DR3A-36/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7280r4_32qf_32df/Arista-7280R4-32QF-32DF-64O/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7280r4_32qf_32df/Arista-7280R4-32QF-32DF-64O/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7280r4_32qf_32df/Arista-7280R4-32QF-32DF-64O/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7800_sup/Arista-7804R3-FM/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7800_sup/Arista-7804R3-FM/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7800_sup/Arista-7804R3-FM/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7800_sup/Arista-7808R3-FM/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7800_sup/Arista-7808R3-FM/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7800_sup/Arista-7808R3-FM/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7800_sup/Arista-7808R3A-FM/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7800_sup/Arista-7808R3A-FM/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7800_sup/Arista-7808R3A-FM/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7800r3_48cq2_lc/Arista-7800R3-48CQ2-C48/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7800r3_48cq2_lc/Arista-7800R3-48CQ2-C48/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7800r3_48cq2_lc/Arista-7800R3-48CQ2-C48/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7800r3_48cqm2_lc/Arista-7800R3-48CQM2-C48/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7800r3_48cqm2_lc/Arista-7800R3-48CQM2-C48/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7800r3_48cqm2_lc/Arista-7800R3-48CQM2-C48/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7800r3a_36d2_lc/Arista-7800R3A-36D2-C36/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7800r3a_36d2_lc/Arista-7800R3A-36D2-C36/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7800r3a_36d2_lc/Arista-7800R3A-36D2-C36/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7800r3a_36d2_lc/Arista-7800R3A-36D2-C72/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7800r3a_36d2_lc/Arista-7800R3A-36D2-C72/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7800r3a_36d2_lc/Arista-7800R3A-36D2-C72/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true diff --git a/device/arista/x86_64-arista_7800r3a_36d2_lc/Arista-7800R3A-36D2-D36/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7800r3a_36d2_lc/Arista-7800R3A-36D2-D36/enable_per_port_counter_discovery new file mode 100644 index 00000000000..27ba77ddaf6 --- /dev/null +++ b/device/arista/x86_64-arista_7800r3a_36d2_lc/Arista-7800R3A-36D2-D36/enable_per_port_counter_discovery @@ -0,0 +1 @@ +true From ee0a99062023b04ca3594d1163dbc716c1afe8c9 Mon Sep 17 00:00:00 2001 From: Justin Wong Date: Thu, 23 Jul 2026 17:49:15 +0000 Subject: [PATCH 5/6] Revert "Cast config file to all arista HWSKUs" This reverts commit 9430c38f04cfe103eb46549348090523d6586851. Broadcom ASICs no longer need a config file to use the per-port discovery code path. Retaining config in Arista-7060X6-64PE-B-C512S2 as an example for what the config should look like. Signed-off-by: Justin Wong --- .../Arista-7050-Q16S64/enable_per_port_counter_discovery | 1 - .../Arista-7050-QX32-Flex/enable_per_port_counter_discovery | 1 - .../Arista-7050-QX32/enable_per_port_counter_discovery | 1 - .../Arista-7050QX-32S-S4Q31/enable_per_port_counter_discovery | 1 - .../Arista-7050QX-32S/enable_per_port_counter_discovery | 1 - .../Arista-7050QX32S-Q32/enable_per_port_counter_discovery | 1 - .../Arista-7050CX3-32S-C28S16/enable_per_port_counter_discovery | 1 - .../Arista-7050CX3-32S-C28S4/enable_per_port_counter_discovery | 1 - .../Arista-7050CX3-32S-C32/enable_per_port_counter_discovery | 1 - .../Arista-7050CX3-32S-C6S104/enable_per_port_counter_discovery | 1 - .../Arista-7050CX3-32S-D48C8/enable_per_port_counter_discovery | 1 - .../Arista-7050CX3-32S-S128/enable_per_port_counter_discovery | 1 - .../Arista-7050CX3-32S/enable_per_port_counter_discovery | 1 - .../Arista-7050DX4-32S/enable_per_port_counter_discovery | 1 - .../Arista-7050PX4-32S/enable_per_port_counter_discovery | 1 - .../Arista-7050SX3-48C8/enable_per_port_counter_discovery | 1 - .../Arista-7050SX3-48YC8-S48Q8/enable_per_port_counter_discovery | 1 - .../Arista-7050SX3-48YC8/enable_per_port_counter_discovery | 1 - .../Arista-7060CX-32S-C32/enable_per_port_counter_discovery | 1 - .../Arista-7060CX-32S-D48C8/enable_per_port_counter_discovery | 1 - .../Arista-7060CX-32S-Q24C8/enable_per_port_counter_discovery | 1 - .../Arista-7060CX-32S-Q32/enable_per_port_counter_discovery | 1 - .../Arista-7060CX-32S-T96C8/enable_per_port_counter_discovery | 1 - .../Arista-7060CX-32S/enable_per_port_counter_discovery | 1 - .../Arista-7060DX4-32/enable_per_port_counter_discovery | 1 - .../Arista-7060DX4-C32/enable_per_port_counter_discovery | 1 - .../enable_per_port_counter_discovery | 1 - .../enable_per_port_counter_discovery | 1 - .../enable_per_port_counter_discovery | 1 - .../Arista-7060DX5-32/enable_per_port_counter_discovery | 1 - .../Arista-7060DX5-64S/enable_per_port_counter_discovery | 1 - .../Arista-7060PX4-32/enable_per_port_counter_discovery | 1 - .../Arista-7060PX4-C64/enable_per_port_counter_discovery | 1 - .../Arista-7060PX4-O32/enable_per_port_counter_discovery | 1 - .../Arista-7060PX5-64S/enable_per_port_counter_discovery | 1 - .../enable_per_port_counter_discovery | 1 - .../enable_per_port_counter_discovery | 1 - .../enable_per_port_counter_discovery | 1 - .../enable_per_port_counter_discovery | 1 - .../enable_per_port_counter_discovery | 1 - .../enable_per_port_counter_discovery | 1 - .../enable_per_port_counter_discovery | 1 - .../Arista-7060X6-32PE/enable_per_port_counter_discovery | 1 - .../enable_per_port_counter_discovery | 1 - .../Arista-7060X6-64DE-64x400G/enable_per_port_counter_discovery | 1 - .../Arista-7060X6-64DE-O128S2/enable_per_port_counter_discovery | 1 - .../Arista-7060X6-64DE/enable_per_port_counter_discovery | 1 - .../enable_per_port_counter_discovery | 1 - .../Arista-7060X6-64PE-64x400G/enable_per_port_counter_discovery | 1 - .../Arista-7060X6-64PE-C224O8/enable_per_port_counter_discovery | 1 - .../Arista-7060X6-64PE-C256S2/enable_per_port_counter_discovery | 1 - .../Arista-7060X6-64PE-O128S2/enable_per_port_counter_discovery | 1 - .../Arista-7060X6-64PE-P32O64/enable_per_port_counter_discovery | 1 - .../Arista-7060X6-64PE-P32V128/enable_per_port_counter_discovery | 1 - .../Arista-7060X6-64PE/enable_per_port_counter_discovery | 1 - .../enable_per_port_counter_discovery | 1 - .../Arista-7060X6-64PE-B-O128/enable_per_port_counter_discovery | 1 - .../enable_per_port_counter_discovery | 1 - .../enable_per_port_counter_discovery | 1 - .../enable_per_port_counter_discovery | 1 - .../enable_per_port_counter_discovery | 1 - .../Arista-7060X6-64PE-B-P64/enable_per_port_counter_discovery | 1 - .../Arista-7170-32C-C32/enable_per_port_counter_discovery | 1 - .../Arista-7170-32CD-C32/enable_per_port_counter_discovery | 1 - .../Arista-7170-64C/enable_per_port_counter_discovery | 1 - .../Arista-7170-Q59S20/enable_per_port_counter_discovery | 1 - .../Arista-7170B-64C/enable_per_port_counter_discovery | 1 - .../Arista-720DT-48S/enable_per_port_counter_discovery | 1 - .../Arista-7260CX3-64/enable_per_port_counter_discovery | 1 - .../Arista-7260CX3-C64/enable_per_port_counter_discovery | 1 - .../Arista-7260CX3-D108C10/enable_per_port_counter_discovery | 1 - .../Arista-7260CX3-D108C8/enable_per_port_counter_discovery | 1 - .../Arista-7260CX3-D92C16/enable_per_port_counter_discovery | 1 - .../Arista-7260CX3-D96C16/enable_per_port_counter_discovery | 1 - .../Arista-7260CX3-Q64/enable_per_port_counter_discovery | 1 - .../Arista-7280CR3-C32D4/enable_per_port_counter_discovery | 1 - .../Arista-7280CR3-C40/enable_per_port_counter_discovery | 1 - .../Arista-7280CR3-C28S8/enable_per_port_counter_discovery | 1 - .../Arista-7280CR3-C32P4/enable_per_port_counter_discovery | 1 - .../Arista-7280CR3-C40/enable_per_port_counter_discovery | 1 - .../Arista-7280CR3-C32D4/enable_per_port_counter_discovery | 1 - .../Arista-7280CR3-C40/enable_per_port_counter_discovery | 1 - .../Arista-7280CR3-C32P4/enable_per_port_counter_discovery | 1 - .../Arista-7280CR3-C40/enable_per_port_counter_discovery | 1 - .../Arista-7280DR3A-36/enable_per_port_counter_discovery | 1 - .../enable_per_port_counter_discovery | 1 - .../Arista-7804R3-FM/enable_per_port_counter_discovery | 1 - .../Arista-7808R3-FM/enable_per_port_counter_discovery | 1 - .../Arista-7808R3A-FM/enable_per_port_counter_discovery | 1 - .../Arista-7800R3-48CQ2-C48/enable_per_port_counter_discovery | 1 - .../Arista-7800R3-48CQM2-C48/enable_per_port_counter_discovery | 1 - .../Arista-7800R3A-36D2-C36/enable_per_port_counter_discovery | 1 - .../Arista-7800R3A-36D2-C72/enable_per_port_counter_discovery | 1 - .../Arista-7800R3A-36D2-D36/enable_per_port_counter_discovery | 1 - 94 files changed, 94 deletions(-) delete mode 100644 device/arista/x86_64-arista_7050_qx32/Arista-7050-Q16S64/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7050_qx32/Arista-7050-QX32-Flex/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7050_qx32/Arista-7050-QX32/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7050_qx32s/Arista-7050QX-32S-S4Q31/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7050_qx32s/Arista-7050QX-32S/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7050_qx32s/Arista-7050QX32S-Q32/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C28S16/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C28S4/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C32/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C6S104/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-D48C8/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-S128/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7050dx4_32s/Arista-7050DX4-32S/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7050px4_32s/Arista-7050PX4-32S/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7050sx3_48c8/Arista-7050SX3-48C8/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7050sx3_48yc8/Arista-7050SX3-48YC8-S48Q8/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7050sx3_48yc8/Arista-7050SX3-48YC8/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-C32/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-D48C8/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-Q24C8/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-Q32/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-T96C8/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060dx4_32/Arista-7060DX4-32/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060dx4_32/Arista-7060DX4-C32/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32-100Gx48-400Gx8/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32-200Gx48-100Gx32/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32-25Gx96-100Gx8-200Gx8/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060dx5_64s/Arista-7060DX5-64S/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060px4_32/Arista-7060PX4-32/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060px4_32/Arista-7060PX4-C64/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060px4_32/Arista-7060PX4-O32/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060px5_64s/Arista-7060PX5-64S/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_16pe_384c/Arista-7060X6-16PE-384C-O128S2-FANOUT/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_16pe_384c/Arista-7060X6-16PE-384C-O128S2-LAB/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_16pe_384c/Arista-7060X6-16PE-384C-O128S2/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S2-FANOUT/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S2-LAB/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S2/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S4/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_32pe/Arista-7060X6-32PE/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE-256x200G/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE-64x400G/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE-O128S2/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-256x200G/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-64x400G/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-C224O8/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-C256S2/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-O128S2/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-P32O64/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-P32V128/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-C448O16/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-O128/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-O128S2/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P28O72/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P32O64/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P32V128/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P64/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7170_32c/Arista-7170-32C-C32/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7170_32cd/Arista-7170-32CD-C32/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7170_64c/Arista-7170-64C/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7170_64c/Arista-7170-Q59S20/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7170b_64c/Arista-7170B-64C/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_720dt_48s/Arista-720DT-48S/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-64/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-C64/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D108C10/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D108C8/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D92C16/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D96C16/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-Q64/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7280cr3_32d4/Arista-7280CR3-C32D4/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7280cr3_32d4/Arista-7280CR3-C40/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7280cr3_32p4/Arista-7280CR3-C28S8/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7280cr3_32p4/Arista-7280CR3-C32P4/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7280cr3_32p4/Arista-7280CR3-C40/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7280cr3mk_32d4/Arista-7280CR3-C32D4/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7280cr3mk_32d4/Arista-7280CR3-C40/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7280cr3mk_32p4/Arista-7280CR3-C32P4/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7280cr3mk_32p4/Arista-7280CR3-C40/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7280dr3a_36/Arista-7280DR3A-36/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7280r4_32qf_32df/Arista-7280R4-32QF-32DF-64O/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7800_sup/Arista-7804R3-FM/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7800_sup/Arista-7808R3-FM/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7800_sup/Arista-7808R3A-FM/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7800r3_48cq2_lc/Arista-7800R3-48CQ2-C48/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7800r3_48cqm2_lc/Arista-7800R3-48CQM2-C48/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7800r3a_36d2_lc/Arista-7800R3A-36D2-C36/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7800r3a_36d2_lc/Arista-7800R3A-36D2-C72/enable_per_port_counter_discovery delete mode 100644 device/arista/x86_64-arista_7800r3a_36d2_lc/Arista-7800R3A-36D2-D36/enable_per_port_counter_discovery diff --git a/device/arista/x86_64-arista_7050_qx32/Arista-7050-Q16S64/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050_qx32/Arista-7050-Q16S64/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7050_qx32/Arista-7050-Q16S64/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7050_qx32/Arista-7050-QX32-Flex/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050_qx32/Arista-7050-QX32-Flex/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7050_qx32/Arista-7050-QX32-Flex/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7050_qx32/Arista-7050-QX32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050_qx32/Arista-7050-QX32/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7050_qx32/Arista-7050-QX32/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7050_qx32s/Arista-7050QX-32S-S4Q31/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050_qx32s/Arista-7050QX-32S-S4Q31/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7050_qx32s/Arista-7050QX-32S-S4Q31/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7050_qx32s/Arista-7050QX-32S/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050_qx32s/Arista-7050QX-32S/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7050_qx32s/Arista-7050QX-32S/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7050_qx32s/Arista-7050QX32S-Q32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050_qx32s/Arista-7050QX32S-Q32/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7050_qx32s/Arista-7050QX32S-Q32/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C28S16/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C28S16/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C28S16/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C28S4/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C28S4/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C28S4/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C32/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C32/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C6S104/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C6S104/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C6S104/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-D48C8/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-D48C8/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-D48C8/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-S128/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-S128/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-S128/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7050dx4_32s/Arista-7050DX4-32S/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050dx4_32s/Arista-7050DX4-32S/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7050dx4_32s/Arista-7050DX4-32S/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7050px4_32s/Arista-7050PX4-32S/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050px4_32s/Arista-7050PX4-32S/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7050px4_32s/Arista-7050PX4-32S/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7050sx3_48c8/Arista-7050SX3-48C8/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050sx3_48c8/Arista-7050SX3-48C8/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7050sx3_48c8/Arista-7050SX3-48C8/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7050sx3_48yc8/Arista-7050SX3-48YC8-S48Q8/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050sx3_48yc8/Arista-7050SX3-48YC8-S48Q8/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7050sx3_48yc8/Arista-7050SX3-48YC8-S48Q8/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7050sx3_48yc8/Arista-7050SX3-48YC8/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7050sx3_48yc8/Arista-7050SX3-48YC8/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7050sx3_48yc8/Arista-7050SX3-48YC8/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-C32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-C32/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-C32/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-D48C8/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-D48C8/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-D48C8/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-Q24C8/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-Q24C8/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-Q24C8/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-Q32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-Q32/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-Q32/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-T96C8/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-T96C8/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S-T96C8/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060_cx32s/Arista-7060CX-32S/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060dx4_32/Arista-7060DX4-32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060dx4_32/Arista-7060DX4-32/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060dx4_32/Arista-7060DX4-32/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060dx4_32/Arista-7060DX4-C32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060dx4_32/Arista-7060DX4-C32/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060dx4_32/Arista-7060DX4-C32/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32-100Gx48-400Gx8/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32-100Gx48-400Gx8/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32-100Gx48-400Gx8/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32-200Gx48-100Gx32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32-200Gx48-100Gx32/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32-200Gx48-100Gx32/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32-25Gx96-100Gx8-200Gx8/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32-25Gx96-100Gx8-200Gx8/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32-25Gx96-100Gx8-200Gx8/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060dx5_32/Arista-7060DX5-32/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060dx5_64s/Arista-7060DX5-64S/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060dx5_64s/Arista-7060DX5-64S/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060dx5_64s/Arista-7060DX5-64S/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060px4_32/Arista-7060PX4-32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060px4_32/Arista-7060PX4-32/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060px4_32/Arista-7060PX4-32/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060px4_32/Arista-7060PX4-C64/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060px4_32/Arista-7060PX4-C64/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060px4_32/Arista-7060PX4-C64/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060px4_32/Arista-7060PX4-O32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060px4_32/Arista-7060PX4-O32/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060px4_32/Arista-7060PX4-O32/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060px5_64s/Arista-7060PX5-64S/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060px5_64s/Arista-7060PX5-64S/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060px5_64s/Arista-7060PX5-64S/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_16pe_384c/Arista-7060X6-16PE-384C-O128S2-FANOUT/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_16pe_384c/Arista-7060X6-16PE-384C-O128S2-FANOUT/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_16pe_384c/Arista-7060X6-16PE-384C-O128S2-FANOUT/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_16pe_384c/Arista-7060X6-16PE-384C-O128S2-LAB/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_16pe_384c/Arista-7060X6-16PE-384C-O128S2-LAB/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_16pe_384c/Arista-7060X6-16PE-384C-O128S2-LAB/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_16pe_384c/Arista-7060X6-16PE-384C-O128S2/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_16pe_384c/Arista-7060X6-16PE-384C-O128S2/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_16pe_384c/Arista-7060X6-16PE-384C-O128S2/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S2-FANOUT/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S2-FANOUT/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S2-FANOUT/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S2-LAB/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S2-LAB/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S2-LAB/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S2/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S2/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S2/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S4/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S4/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_16pe_384c_b/Arista-7060X6-16PE-384C-B-O128S4/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_32pe/Arista-7060X6-32PE/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_32pe/Arista-7060X6-32PE/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_32pe/Arista-7060X6-32PE/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE-256x200G/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE-256x200G/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE-256x200G/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE-64x400G/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE-64x400G/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE-64x400G/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE-O128S2/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE-O128S2/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE-O128S2/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_64de/Arista-7060X6-64DE/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-256x200G/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-256x200G/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-256x200G/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-64x400G/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-64x400G/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-64x400G/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-C224O8/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-C224O8/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-C224O8/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-C256S2/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-C256S2/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-C256S2/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-O128S2/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-O128S2/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-O128S2/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-P32O64/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-P32O64/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-P32O64/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-P32V128/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-P32V128/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE-P32V128/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_64pe/Arista-7060X6-64PE/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-C448O16/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-C448O16/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-C448O16/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-O128/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-O128/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-O128/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-O128S2/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-O128S2/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-O128S2/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P28O72/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P28O72/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P28O72/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P32O64/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P32O64/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P32O64/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P32V128/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P32V128/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P32V128/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P64/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P64/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7060x6_64pe_b/Arista-7060X6-64PE-B-P64/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7170_32c/Arista-7170-32C-C32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7170_32c/Arista-7170-32C-C32/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7170_32c/Arista-7170-32C-C32/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7170_32cd/Arista-7170-32CD-C32/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7170_32cd/Arista-7170-32CD-C32/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7170_32cd/Arista-7170-32CD-C32/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7170_64c/Arista-7170-64C/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7170_64c/Arista-7170-64C/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7170_64c/Arista-7170-64C/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7170_64c/Arista-7170-Q59S20/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7170_64c/Arista-7170-Q59S20/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7170_64c/Arista-7170-Q59S20/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7170b_64c/Arista-7170B-64C/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7170b_64c/Arista-7170B-64C/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7170b_64c/Arista-7170B-64C/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_720dt_48s/Arista-720DT-48S/enable_per_port_counter_discovery b/device/arista/x86_64-arista_720dt_48s/Arista-720DT-48S/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_720dt_48s/Arista-720DT-48S/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-64/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-64/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-64/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-C64/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-C64/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-C64/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D108C10/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D108C10/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D108C10/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D108C8/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D108C8/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D108C8/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D92C16/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D92C16/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D92C16/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D96C16/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D96C16/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-D96C16/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-Q64/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-Q64/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7260cx3_64/Arista-7260CX3-Q64/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7280cr3_32d4/Arista-7280CR3-C32D4/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7280cr3_32d4/Arista-7280CR3-C32D4/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7280cr3_32d4/Arista-7280CR3-C32D4/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7280cr3_32d4/Arista-7280CR3-C40/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7280cr3_32d4/Arista-7280CR3-C40/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7280cr3_32d4/Arista-7280CR3-C40/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7280cr3_32p4/Arista-7280CR3-C28S8/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7280cr3_32p4/Arista-7280CR3-C28S8/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7280cr3_32p4/Arista-7280CR3-C28S8/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7280cr3_32p4/Arista-7280CR3-C32P4/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7280cr3_32p4/Arista-7280CR3-C32P4/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7280cr3_32p4/Arista-7280CR3-C32P4/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7280cr3_32p4/Arista-7280CR3-C40/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7280cr3_32p4/Arista-7280CR3-C40/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7280cr3_32p4/Arista-7280CR3-C40/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7280cr3mk_32d4/Arista-7280CR3-C32D4/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7280cr3mk_32d4/Arista-7280CR3-C32D4/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7280cr3mk_32d4/Arista-7280CR3-C32D4/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7280cr3mk_32d4/Arista-7280CR3-C40/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7280cr3mk_32d4/Arista-7280CR3-C40/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7280cr3mk_32d4/Arista-7280CR3-C40/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7280cr3mk_32p4/Arista-7280CR3-C32P4/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7280cr3mk_32p4/Arista-7280CR3-C32P4/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7280cr3mk_32p4/Arista-7280CR3-C32P4/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7280cr3mk_32p4/Arista-7280CR3-C40/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7280cr3mk_32p4/Arista-7280CR3-C40/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7280cr3mk_32p4/Arista-7280CR3-C40/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7280dr3a_36/Arista-7280DR3A-36/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7280dr3a_36/Arista-7280DR3A-36/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7280dr3a_36/Arista-7280DR3A-36/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7280r4_32qf_32df/Arista-7280R4-32QF-32DF-64O/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7280r4_32qf_32df/Arista-7280R4-32QF-32DF-64O/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7280r4_32qf_32df/Arista-7280R4-32QF-32DF-64O/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7800_sup/Arista-7804R3-FM/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7800_sup/Arista-7804R3-FM/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7800_sup/Arista-7804R3-FM/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7800_sup/Arista-7808R3-FM/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7800_sup/Arista-7808R3-FM/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7800_sup/Arista-7808R3-FM/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7800_sup/Arista-7808R3A-FM/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7800_sup/Arista-7808R3A-FM/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7800_sup/Arista-7808R3A-FM/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7800r3_48cq2_lc/Arista-7800R3-48CQ2-C48/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7800r3_48cq2_lc/Arista-7800R3-48CQ2-C48/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7800r3_48cq2_lc/Arista-7800R3-48CQ2-C48/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7800r3_48cqm2_lc/Arista-7800R3-48CQM2-C48/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7800r3_48cqm2_lc/Arista-7800R3-48CQM2-C48/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7800r3_48cqm2_lc/Arista-7800R3-48CQM2-C48/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7800r3a_36d2_lc/Arista-7800R3A-36D2-C36/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7800r3a_36d2_lc/Arista-7800R3A-36D2-C36/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7800r3a_36d2_lc/Arista-7800R3A-36D2-C36/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7800r3a_36d2_lc/Arista-7800R3A-36D2-C72/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7800r3a_36d2_lc/Arista-7800R3A-36D2-C72/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7800r3a_36d2_lc/Arista-7800R3A-36D2-C72/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true diff --git a/device/arista/x86_64-arista_7800r3a_36d2_lc/Arista-7800R3A-36D2-D36/enable_per_port_counter_discovery b/device/arista/x86_64-arista_7800r3a_36d2_lc/Arista-7800R3A-36D2-D36/enable_per_port_counter_discovery deleted file mode 100644 index 27ba77ddaf6..00000000000 --- a/device/arista/x86_64-arista_7800r3a_36d2_lc/Arista-7800R3A-36D2-D36/enable_per_port_counter_discovery +++ /dev/null @@ -1 +0,0 @@ -true From 604c3d00430d9c23c3efddbbe49ceb24c7aec0da Mon Sep 17 00:00:00 2001 From: Justin Wong Date: Thu, 23 Jul 2026 21:59:12 +0000 Subject: [PATCH 6/6] Add ability to store 'undefined' state as '' Signed-off-by: Justin Wong --- files/build_templates/docker_image_ctl.j2 | 2 ++ files/build_templates/swss_vars.j2 | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/files/build_templates/docker_image_ctl.j2 b/files/build_templates/docker_image_ctl.j2 index 2eda8168bf5..1826f893904 100644 --- a/files/build_templates/docker_image_ctl.j2 +++ b/files/build_templates/docker_image_ctl.j2 @@ -537,6 +537,8 @@ start() { ENABLE_PER_PORT_COUNTER_DISCOVERY="$HWSKU_FOLDER/enable_per_port_counter_discovery" if [ -f "$ENABLE_PER_PORT_COUNTER_DISCOVERY" ]; then $SONIC_DB_CLI CONFIG_DB HSET 'DEVICE_METADATA|localhost' enable_per_port_counter_discovery $(cat $ENABLE_PER_PORT_COUNTER_DISCOVERY) + else + $SONIC_DB_CLI CONFIG_DB HDEL 'DEVICE_METADATA|localhost' enable_per_port_counter_discovery fi fi diff --git a/files/build_templates/swss_vars.j2 b/files/build_templates/swss_vars.j2 index fb2341118ab..25530e807d3 100644 --- a/files/build_templates/swss_vars.j2 +++ b/files/build_templates/swss_vars.j2 @@ -10,7 +10,8 @@ {%if DEVICE_METADATA.localhost.supporting_bulk_counter_groups is defined and DEVICE_METADATA.localhost.supporting_bulk_counter_groups != '' -%} "supporting_bulk_counter_groups": "{{ DEVICE_METADATA.localhost.supporting_bulk_counter_groups|join(',') }}", {% endif -%} - "enable_per_port_counter_discovery": {% if DEVICE_METADATA.localhost.enable_per_port_counter_discovery is defined and DEVICE_METADATA.localhost.enable_per_port_counter_discovery|string|lower == "true" %}"true"{% else %}"false"{% endif %}, + "enable_per_port_counter_discovery": {% if DEVICE_METADATA.localhost.enable_per_port_counter_discovery|string|lower == "true" %}"true"{% else %}"false"{% endif %}, + {% endif -%} "dual_tor": {% if DEVICE_METADATA.localhost.type == "ToRRouter" and DEVICE_METADATA.localhost.subtype == "DualToR" %}"enable"{% else %}"disable"{% endif %}, "dscp_remapping": {% if SYSTEM_DEFAULTS is defined and SYSTEM_DEFAULTS.tunnel_qos_remap is defined and SYSTEM_DEFAULTS.tunnel_qos_remap.status == "enabled" %}"enable"{% else %}"disable"{% endif %}, "swss_zmq": {% if SYSTEM_DEFAULTS is defined and SYSTEM_DEFAULTS.swss_zmq is defined and SYSTEM_DEFAULTS.swss_zmq.status == "enabled" %}"true"{% else %}"false"{% endif %},