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

A ThreadNetworkDiagnosticsCluster supports these elements if it supports feature ErrorCounts.

Type declaration

  • Readonlyattributes: {
        overrunCount: Attribute<number | bigint, any>;
    }
    • ReadonlyoverrunCount: Attribute<number | bigint, 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 ethernet network interface. The OverrunCount attribute shall be reset to 0 upon a reboot of the Node.

      MatterSpecification.v13.Core § 11.14.6.7

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

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

      • OverrunCount

      This command has no associated data. Upon completion, this command shall send a status code set to a value of SUCCESS back to the initiator.

      MatterSpecification.v13.Core § 11.14.7.1