Skip to main content
Version: 3.27.2

Backend.tcpKeepalive

The read-only tcpKeepalive property of a Backend instance returns an object providing the TCP keepalive configuration, if any, otherwise returning null if TCP keepalive is not enabled.

This object has the following properties:

  • timeSecs : number or null.
    • Configure how long to wait after the last sent data over the TCP connection before starting to send TCP keepalive probes.
  • intervalSecs : number or null.
    • Configure how long to wait between each TCP keepalive probe sent to the backend to determine if it is still active.
  • probes : number or null.
    • Number of probes to send to the backend before it is considered dead.

Value

A Object or null.