sentry-netstat

Retrieves the network connection list from a remote sentry.

Command properties

PropertyDescription
Command typeTransforming
Required permissionAdministrator
License usageN/A
Parallel executionSupported
Distributed executionNot supported

Syntax

sentry-netstat [timeout=INT]

Options

timeout=INT
RPC timeout in seconds. Accepts a value between 1 and 600. (Default: 30)

Input fields

FieldTypeRequiredDescription
guidstringRequiredSentry unique identifier.

Output fields

FieldTypeDescription
guidstringSentry unique identifier.
pidintegerProcess ID.
protocolstringProtocol (tcp, tcp6, udp, udp6).
local_ipipaddrLocal IP address.
local_portintegerLocal port number.
remote_ipipaddrRemote IP address.
remote_portintegerRemote port number.
statestringConnection state (e.g., LISTEN, ESTABLISHED, TIME_WAIT).
_errorstringError message added to the original record if an error occurs.

Error codes

Parsing errors
Error codeMessageDescription
23100No permission to call sentry RPC.A user without administrator privileges ran the command.
23101Invalid sentry RPC timeout option value. Use a value between 1 and 600.The timeout option value is not an integer or is outside the range 1–600.
Runtime errors

Errors are returned via the _error field:

Error messageDescription
guid is nullThe guid field value in the input record is null.
guid should be stringThe guid field value in the input record is not a string.
guid should be non empty stringThe guid field value in the input record is an empty string.
not connectedThe sentry is not connected.
timeoutThe RPC request timed out.
disconnectedThe connection was lost while processing the RPC request.

Other RPC exception messages may be returned depending on the state of the system where the sentry is installed.

Description

The sentry-netstat command reads the guid field of each input record, sends an asynchronous RPC message to the corresponding sentry, and retrieves the network connection list. It returns connection information for TCP, TCP6, UDP, and UDP6 protocols, with a protocol field added to each connection to identify the protocol type.

Results are returned in the order RPC response messages are received from sentries, so the output record order may differ from the input record order.

The maximum length of the asynchronous RPC request queue is 100 by default and can be adjusted using the logpresso.core.sentry_rpc_parallel environment variable.

To retrieve results from all Data Nodes at once in a cluster environment, use the sonar-sentry-netstat command.

Examples

  1. Retrieve the network connection list from all sentries

    sentry | fields guid | sentry-netstat
    

    Retrieves the current network connection list from all connected sentries.

  2. Retrieve only LISTEN connections from a specific sentry

    sentry | fields guid | sentry-netstat | search state == "LISTEN"
    

    Filters only network connections in the LISTEN state from all sentries.

  3. Retrieve with a 60-second timeout

    sentry | fields guid | sentry-netstat timeout=60
    

    Retrieves the network connection list from sentries with the RPC timeout set to 60 seconds.