PacketCountsComponent: {
    attributes: {
        beaconRxCount: Attribute<number | null, any>;
        packetMulticastRxCount: Attribute<number | null, any>;
        packetMulticastTxCount: Attribute<number | null, any>;
        packetUnicastRxCount: Attribute<number | null, any>;
        packetUnicastTxCount: Attribute<number | null, any>;
    };
}

A WiFiNetworkDiagnosticsCluster supports these elements if it supports feature PacketCounts.

Type declaration

  • Readonlyattributes: {
        beaconRxCount: Attribute<number | null, any>;
        packetMulticastRxCount: Attribute<number | null, any>;
        packetMulticastTxCount: Attribute<number | null, any>;
        packetUnicastRxCount: Attribute<number | null, any>;
        packetUnicastTxCount: Attribute<number | null, any>;
    }
    • ReadonlybeaconRxCount: Attribute<number | null, any>

      The BeaconRxCount attribute shall indicate the count of the number of received beacons. The

      total number of expected beacons that could have been received during the interval since association SHOULD match the sum of BeaconRxCount and BeaconLostCount. If the Node does not have an ability to report count of beacons received, this value may remain set to zero.

      MatterSpecification.v13.Core § 11.15.6.7

    • ReadonlypacketMulticastRxCount: Attribute<number | null, any>

      The PacketMulticastRxCount attribute shall indicate the number of multicast packets received by the Node.

      MatterSpecification.v13.Core § 11.15.6.8

    • ReadonlypacketMulticastTxCount: Attribute<number | null, any>

      The PacketMulticastTxCount attribute shall indicate the number of multicast packets transmitted by the Node.

      MatterSpecification.v13.Core § 11.15.6.9

    • ReadonlypacketUnicastRxCount: Attribute<number | null, any>

      The PacketUnicastRxCount attribute shall indicate the number of unicast packets received by the Node.

      MatterSpecification.v13.Core § 11.15.6.10

    • ReadonlypacketUnicastTxCount: Attribute<number | null, any>

      The PacketUnicastTxCount attribute shall indicate the number of unicast packets transmitted by the Node.

      MatterSpecification.v13.Core § 11.15.6.11