open-consul/website/source/docs/commands/info.html.markdown

77 lines
2.0 KiB
Markdown
Raw Normal View History

2014-02-24 01:09:59 +00:00
---
layout: "docs"
page_title: "Commands: Info"
sidebar_current: "docs-commands-info"
---
# Consul Info
Command: `consul info`
The info command provides various debugging information that can be
useful to operators. Depending on if the agent is a client or server,
information about different sub-systems will be returned.
2014-04-09 18:06:27 +00:00
There are currently the top-level keys for:
* agent: Provides information about the agent
* consul: Information about the consul library (client or server)
* raft: Provides info about the Raft [consensus library](/docs/internals/consensus.html)
* serf_lan: Provides info about the LAN [gossip pool](/docs/internals/gossip.html)
* serf_wan: Provides info about the WAN [gossip pool](/docs/internals/gossip.html)
2014-02-24 01:09:59 +00:00
Here is an example output:
agent:
check_monitors = 0
check_ttls = 0
checks = 0
services = 0
consul:
bootstrap = true
2014-02-24 02:11:07 +00:00
known_datacenters = 1
2014-02-24 01:09:59 +00:00
leader = true
server = true
raft:
2014-02-24 02:13:51 +00:00
applied_index = 45832
commit_index = 45832
2014-02-24 01:09:59 +00:00
fsm_pending = 0
2014-02-24 02:13:51 +00:00
last_log_index = 45832
2014-02-24 02:11:07 +00:00
last_log_term = 4
2014-02-24 01:09:59 +00:00
last_snapshot_index = 45713
last_snapshot_term = 1
2014-02-24 02:13:51 +00:00
num_peers = 2
2014-02-24 01:09:59 +00:00
state = Leader
2014-02-24 02:11:07 +00:00
term = 4
2014-04-01 04:15:37 +00:00
serf_lan:
event_queue = 0
event_time = 2
2014-02-24 02:11:07 +00:00
failed = 0
2014-04-01 04:15:37 +00:00
intent_queue = 0
2014-02-24 02:11:07 +00:00
left = 0
2014-04-01 04:15:37 +00:00
member_time = 7
2014-02-24 02:13:51 +00:00
members = 3
2014-04-01 04:15:37 +00:00
query_queue = 0
query_time = 1
serf_wan:
event_queue = 0
event_time = 1
2014-02-24 02:11:07 +00:00
failed = 0
2014-04-01 04:15:37 +00:00
intent_queue = 0
2014-02-24 02:11:07 +00:00
left = 0
2014-04-01 04:15:37 +00:00
member_time = 1
2014-02-24 01:09:59 +00:00
members = 1
2014-04-01 04:15:37 +00:00
query_queue = 0
query_time = 1
2014-02-24 01:09:59 +00:00
## Usage
Usage: `consul info`
The command-line flags are all optional. The list of available flags are:
* `-rpc-addr` - Address to the RPC server of the agent you want to contact
to send this command. If this isn't specified, the command will contact
"127.0.0.1:8400" which is the default RPC address of a Consul agent.