Nomad
Command: operator debug
The operator debug
command builds an archive containing Nomad cluster
configuration and state information, Nomad server and client node
logs, and pprof profiles from the selected servers and client nodes.
If no selection option is specified, the debug archive contains only cluster meta information.
Usage
nomad operator debug [options]
This command accepts comma separated server-id
and node-id
IDs for
monitoring and pprof profiling. If IDs are provided, the command will
monitor logs for the duration
, saving a snapshot of Nomad state
every interval
. Captured logs and configurations are subjected to
redaction, but may still contain sensitive information and the archive
contents should be reviewed before sharing.
If an output
path is provided, debug
will create a timestamped
directory in that path instead of an archive. By default, the command
creates a compressed tar archive in the current directory.
Consul and Vault status and version information are included if configured.
General Options
-address=<addr>
: The address of the Nomad server. Overrides theNOMAD_ADDR
environment variable if set. Defaults tohttp://127.0.0.1:4646
.-region=<region>
: The region of the Nomad server to forward commands to. Overrides theNOMAD_REGION
environment variable if set. Defaults to the Agent's local region.-namespace=<namespace>
: The target namespace for queries and actions bound to a namespace. Overrides the NOMAD_NAMESPACE environment variable if set. If set to '*', job and alloc subcommands query all namespacecs authorized to user. Defaults to the "default" namespace.-no-color
: Disables colored command output. Alternatively,NOMAD_CLI_NO_COLOR
may be set.-ca-cert=<path>
: Path to a PEM encoded CA cert file to use to verify the Nomad server SSL certificate. Overrides theNOMAD_CACERT
environment variable if set.-ca-path=<path>
: Path to a directory of PEM encoded CA cert files to verify the Nomad server SSL certificate. If both-ca-cert
and-ca-path
are specified,-ca-cert
is used. Overrides theNOMAD_CAPATH
environment variable if set.-client-cert=<path>
: Path to a PEM encoded client certificate for TLS authentication to the Nomad server. Must also specify-client-key
. Overrides theNOMAD_CLIENT_CERT
environment variable if set.-client-key=<path>
: Path to an unencrypted PEM encoded private key matching the client certificate from-client-cert
. Overrides theNOMAD_CLIENT_KEY
environment variable if set.-tls-server-name=<value>
: The server name to use as the SNI host when connecting via TLS. Overrides theNOMAD_TLS_SERVER_NAME
environment variable if set.-tls-skip-verify
: Do not verify TLS certificate. This is highly not recommended. Verification will also be skipped ifNOMAD_SKIP_VERIFY
is set.-token
: The SecretID of an ACL token to use to authenticate API requests with. Overrides theNOMAD_TOKEN
environment variable if set.
Debug Options
-duration=2m
: Set the duration of the log monitor command. Defaults to"2m"
. Logs will be captured from specified servers and nodes atlog-level
.-interval=2m
: The interval between snapshots of the Nomad state. If unspecified, only one snapshot is captured.-log-level=DEBUG
: The log level to monitor. Defaults toDEBUG
.-node-id=n1,n2
: Comma separated list of Nomad client node ids, to monitor for logs and include pprof data. Accepts id prefixes.-server-id=s1,s2
: Comma separated list of Nomad server names, or the special server name "leader" to monitor for logs and include pprof data.-output=path
: Path to the parent directory of the output directory. Defaults to the current directory. If specified, no archive is built.-consul-http-addr=<addr>
: The address and port of the Consul HTTP agent. Overrides theCONSUL_HTTP_ADDR
environment variable.-consul-token=<token>
: Token used to query Consul. Overrides theCONSUL_HTTP_TOKEN
environment variable and the Consul token file.-consul-token-file=<path>
: Path to the Consul token file. Overrides theCONSUL_HTTP_TOKEN_FILE
environment variable.-consul-client-cert=<path>
: Path to the Consul client cert file. Overrides theCONSUL_CLIENT_CERT
environment variable.-consul-client-key=<path>
: Path to the Consul client key file. Overrides theCONSUL_CLIENT_KEY
environment variable.-consul-ca-cert=<path>
: Path to a CA file to use with Consul. Overrides theCONSUL_CACERT
environment variable and the Consul CA path.-consul-ca-path=<path>
: Path to a directory of PEM encoded CA cert files to verify the Consul certificate. Overrides theCONSUL_CAPATH
environment variable.-vault-address=<addr>
: The address and port of the Vault HTTP agent. Overrides theVAULT_ADDR
environment variable.-vault-token=<token>
: Token used to query Vault. Overrides theVAULT_TOKEN
environment variable.-vault-client-cert=<path>
: Path to the Vault client cert file. Overrides theVAULT_CLIENT_CERT
environment variable.-vault-client-key=<path>
: Path to the Vault client key file. Overrides theVAULT_CLIENT_KEY
environment variable.-vault-ca-cert=<path>
: Path to a CA file to use with Vault. Overrides theVAULT_CACERT
environment variable and the Vault CA path.-vault-ca-path=<path>
: Path to a directory of PEM encoded CA cert files to verify the Vault certificate. Overrides theVAULT_CAPATH
environment variable.
Output
This command prints the name of the timestamped archive file produced.
Examples
$ nomad operator debug -duration 20s -interval 5s -server-id leader -node-id 6e,dd
Starting debugger and capturing cluster data...
Interval: '5s'
Duration: '20s'
Capture interval 0000
Capture interval 0001
Capture interval 0002
Capture interval 0003
Created debug archive: nomad-debug-2020-07-20-205223Z.tar.gz