Class SingleAggregatedConnectionResponseDataAttributes

Attributes for an aggregated connection.

Hierarchy

  • SingleAggregatedConnectionResponseDataAttributes

Constructors

Properties

additionalProperties?: {
    [key: string]: any;
}

A container for additional, undeclared properties. This is a holder for any undeclared properties as specified with the 'additionalProperties' keyword in the OAS document.

Type declaration

  • [key: string]: any
bytesSentByClient?: number

The total number of bytes sent by the client over the given period.

bytesSentByServer?: number

The total number of bytes sent by the server over the given period.

groupBys?: {
    [key: string]: string[];
}

The key, value pairs for each group by.

Type declaration

  • [key: string]: string[]
packetsSentByClient?: number

The total number of packets sent by the client over the given period.

packetsSentByServer?: number

The total number of packets sent by the server over the given period.

rttMicroSeconds?: number

Measured as TCP smoothed round trip time in microseconds (the time between a TCP frame being sent and acknowledged).

tcpClosedConnections?: number

The number of TCP connections in a closed state. Measured in connections per second from the client.

tcpEstablishedConnections?: number

The number of TCP connections in an established state. Measured in connections per second from the client.

tcpRefusals?: number

The number of TCP connections that were refused by the server. Typically this indicates an attempt to connect to an IP/port that is not receiving connections, or a firewall/security misconfiguration.

tcpResets?: number

The number of TCP connections that were reset by the server.

tcpRetransmits?: number

TCP Retransmits represent detected failures that are retransmitted to ensure delivery. Measured in count of retransmits from the client.

tcpTimeouts?: number

The number of TCP connections that timed out from the perspective of the operating system. This can indicate general connectivity and latency issues.

Generated using TypeDoc