Diagnosing problems in NATS JetStream clusters requires:
- knowledge of JetStream concepts
- knowledge of the NATS Command Line Interface (CLI)
The following tips and commands (while not an exhaustive list) can be useful when diagnosing problems in NATS JetStream clusters:
- Look at nats-server logs. By default, only warning and error logs are produced, but debug and trace logs can be turned on from the command line using
-D
and-DV
, respectively. Alternatively, enablingdebug
ortrace
in the server config. - Make sure that in the NATS JetStream configuration, at least one system user is configured in this section:
{ $SYS { users } }
.
Command | Description |
---|---|
nats account info |
Verify that JetStream is enabled on account |
Command | Description |
---|---|
nats server ls |
List known servers |
nats server ping |
Ping all servers |
nats server info |
Show information about a single server |
nats server check |
Health check for NATS servers |
Command | Description |
---|---|
nats server report connections |
Report on connections |
nats server report accounts |
Report on account activity |
nats server report jetstream |
Report on JetStream activity |
Command | Description |
---|---|
nats server request jetstream |
Show JetStream details |
nats server request subscriptions |
Show subscription information |
nats server request variables |
Show runtime variables |
nats server request connections |
Show connection details |
nats server request routes |
Show route details |
nats server request gateways |
Show gateway details |
nats server request leafnodes |
Show leafnode details |
nats server request accounts |
Show account details |
Command | Description |
---|---|
nats server cluster step-down |
Force a new leader election by standing down the current meta leader |
nats server cluster peer-remove |
Removes a server from a JetStream cluster |
Command | Description |
---|---|
nats traffic |
Monitor NATS traffic. (Experimental command) |