]> git.proxmox.com Git - ceph.git/blame - ceph/doc/mgr/dashboard.rst
update sources to v12.1.1
[ceph.git] / ceph / doc / mgr / dashboard.rst
CommitLineData
31f18b77
FG
1dashboard plugin
2================
3
4Dashboard plugin visualizes the statistics of the cluster using a web server
224ce89b
WB
5hosted by ``ceph-mgr``.
6
7Enabling
8--------
9
10The *dashboard* module is enabled with::
11
12 ceph mgr module enable dashboard
13
14Configuration
15-------------
16
17Like most web applications, dashboard binds to a host name and port.
18By default, the ``ceph-mgr`` daemon hosting the dashboard (i.e., the
19currently active manager) will bind to port 7000 and any available
20IPv4 or IPv6 address on the host.
21
22Since each ``ceph-mgr`` hosts its own instance of dashboard, it may
23also be necessary to configure them separately. The hostname and port
24can be changed via the configuration key facility::
31f18b77
FG
25
26 ceph config-key put mgr/dashboard/$name/server_addr $IP
27 ceph config-key put mgr/dashboard/$name/server_port $PORT
28
224ce89b
WB
29where ``$name`` is the ID of the ceph-mgr who is hosting this
30dashboard web app.
31
32These settings can also be configured cluster-wide and not manager
33specific. For example,::
34
35 ceph config-key put mgr/dashboard/server_addr $IP
36 ceph config-key put mgr/dashboard/server_port $PORT
37
38If the port is not configured, the web app will bind to port ``7000``.
39If the address it not configured, the web app will bind to ``::``,
40which corresponds to all available IPv4 and IPv6 addresses.
41
42Load balancer
43-------------
31f18b77 44
224ce89b
WB
45Please note that the dashboard will *only* start on the manager which
46is active at that moment. Query the Ceph cluster status to see which
47manager is active (e.g., ``ceph mgr dump``). In order to make the
48dashboard available via a consistent URL regardless of which manager
49daemon is currently active, you may want to set up a load balancer
50front-end to direct traffic to whichever manager endpoint is
51available.