]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
doc/man/8/ceph: document 'ceph mgr *' commands 16460/head
authorSage Weil <sage@redhat.com>
Fri, 21 Jul 2017 15:21:38 +0000 (11:21 -0400)
committerSage Weil <sage@redhat.com>
Fri, 21 Jul 2017 15:25:26 +0000 (11:25 -0400)
Signed-off-by: Sage Weil <sage@redhat.com>
doc/man/8/ceph.rst

index bbe0092d1a62820e75da543845bb2529a89fda69..78b82ba51d0e628b41fb06f7bc3879f9f15532c0 100644 (file)
@@ -442,6 +442,63 @@ Usage::
 
        ceph mon_status
 
+mgr
+---
+
+Ceph manager daemon configuration and management.
+
+Subcommand ``dump`` dumps the latest MgrMap, which describes the active
+and standby manager daemons.
+
+Usage::
+
+  ceph mgr dump
+
+Subcommand ``fail`` will mark a manager daemon as failed, removing it
+from the manager map.  If it is the active manager daemon a standby
+will take its place.
+
+Usage::
+
+  ceph mgr fail <name>
+
+Subcommand ``module ls`` will list currently enabled manager modules (plugins).
+
+Usage::
+
+  ceph mgr module ls
+
+Subcommand ``module enable`` will enable a manager module.  Available modules are included in MgrMap and visible via ``mgr dump``.
+
+Usage::
+
+  ceph mgr module enable <module>
+
+Subcommand ``module disable`` will disable an active manager module.
+
+Usage::
+
+  ceph mgr module disable <module>
+
+Subcommand ``metadata`` will report metadata about all manager daemons or, if the name is specified, a single manager daemon.
+
+Usage::
+
+  ceph mgr metadata [name]
+
+Subcommand ``versions`` will report a count of running daemon versions.
+
+Usage::
+
+  ceph mgr versions
+
+Subcommand ``count-metadata`` will report a count of any daemon metadata field.
+
+Usage::
+
+  ceph mgr count-metadata <field>
+
+
 osd
 ---