ErrorCountsComponent: {
    attributes: {
        beaconLostCount: Attribute<number | null, any>;
        overrunCount: Attribute<number | bigint | null, any>;
    };
    commands: {
        resetCounts: Command<void, void, any>;
    };
}

A WiFiNetworkDiagnosticsCluster supports these elements if it supports feature ErrorCounts.

Type declaration

  • Readonlyattributes: {
        beaconLostCount: Attribute<number | null, any>;
        overrunCount: Attribute<number | bigint | null, any>;
    }
    • ReadonlybeaconLostCount: Attribute<number | null, any>

      The BeaconLostCount attribute shall indicate the count of the number of missed beacons the Node has detected. If the Node does not have an ability to count beacons expected and not received, this value may remain set to zero.

      MatterSpecification.v13.Core § 11.15.6.6

    • ReadonlyoverrunCount: Attribute<number | bigint | null, any>

      The OverrunCount attribute shall indicate the number of packets dropped either at ingress or egress, due to lack of buffer memory to retain all packets on the network interface. The OverrunCount attribute shall be reset to 0 upon a reboot of the Node.

      MatterSpecification.v13.Core § 11.15.6.13

  • Readonlycommands: {
        resetCounts: Command<void, void, any>;
    }
    • ReadonlyresetCounts: Command<void, void, any>

      Reception of this command shall reset the following attributes to 0:

      • BeaconLostCount

      • BeaconRxCount

      • PacketMulticastRxCount

      • PacketMulticastTxCount

      • PacketUnicastRxCount

      • PacketUnicastTxCount

      This command has no associated data.

      MatterSpecification.v13.Core § 11.15.7.1