TX packets experienced errors-radware-alteon-os

TX packets experienced errors-radware-alteon-os

Vendor: radware

OS: alteon-os

Description:
Indeni tracks the number of packets that had issues and alerts if the ratio is too high.

Remediation Steps:
Packet errors usually occur when there is a mismatch in the speed and duplex settings on two sides of a cable, or a damaged cable.

radware-api-config-portStatsTable

Failed to fetch the data: https://bitbucket.org/indeni/indeni-knowledge/src/master/parsers/src/radware/alteon/api-config-portStatsTable/api-config-portStatsTable.ind.yaml

radware-api-config-portStatsTable

name: radware-api-config-portStatsTable
description: Fetch the packet statistics of the ports.
type: monitoring
monitoring_interval: 1 minute
requires:
    os.name: alteon-os
    vendor: radware
    or:
    -   vsx: 'true'
    -   standalone: 'true'
comments:
    network-interface-tx-bits:
        why: |
            Capture the interface Transmitted bits counter. Knowing the amount of bits and packets flowing through an
            interface can help estimate an interface's performance and utilization.
        how: |
            This script gets the information using "/config/PortStatsTable" path through the Alteon API gateway.
        can-with-snmp: true
        can-with-syslog: false
    network-interface-rx-bits:
        why: |
            Capture the interface Received bits counter. Knowing the amount of bits and packets flowing through an
            interface can help estimate an interface's performance and utilization.
        how: |
            This script gets the information using "/config/PortStatsTable" path through the Alteon API gateway.
        can-with-snmp: true
        can-with-syslog: false
    network-interface-tx-errors:
        why: |
            Capture the interface Transmit Errors counter. Transmit errors indicate an issue with duplex/speed matching.
        how: |
            This script gets the information using "/config/PortStatsTable" path through the Alteon API gateway.
        can-with-snmp: true
        can-with-syslog: false
    network-interface-rx-errors:
        why: |
            Capture the interface Receive Errors counter. Receive errors indicate an issue with duplex/speed matching.
        how: |
            This script gets the information using "/config/PortStatsTable" path through the Alteon API gateway.
        can-with-snmp: true
        can-with-syslog: false
    network-interface-tx-dropped:
        why: |
            Capture the interface Transmit Drop counter. Packet loss may have severe impact to the traffic utilization
            (retransmission for TCP apps) and to the performance of the applications.
        how: |
            This script gets the information using "/config/PortStatsTable" path through the Alteon API gateway.
        can-with-snmp: true
        can-with-syslog: false
    network-interface-rx-dropped:
        why: |
            Capture the interface Receive Drop counter. Packet loss may have severe impact to the traffic utilization
            (retransmission for TCP apps) and to the performance of the applications.
        how: |
            This script gets the information using "/config/PortStatsTable" path through the Alteon API gateway.
        can-with-snmp: true
        can-with-syslog: false
    network-interface-rx-packets:
        why: |
            Capture the interface Received Packet counter. Knowing the amount of bits and packets flowing through an
            interface can help estimate an interface's performance and utilization
        how: |
            This script gets the information using "/config/PortStatsTable" path through the Alteon API gateway.
        can-with-snmp: true
        can-with-syslog: false
    network-interface-tx-packets:
        why: |
            Capture the interface Transmitted Packet counter. Knowing the amount of bits and packets flowing through an
            interface can help estimate an interface's performance and utilization.
        how: |
            This script gets the information using "/config/PortStatsTable" path through the Alteon API gateway.
        can-with-snmp: true
        can-with-syslog: false
steps:
-   run:
        type: HTTP
        command: /config/PortStatsTable
    parse:
        type: JSON
        file: api-config-portStatsTable.parser.1.json.yaml

cross_vendor_tx_error

Failed to fetch the data: https://bitbucket.org/indeni/indeni-knowledge/src/master/rules/templatebased/crossvendor/cross_vendor_tx_error.scala