]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
doc/mgr/cephadm: document how to see the logs 33488/head
authorSage Weil <sage@redhat.com>
Mon, 24 Feb 2020 15:03:54 +0000 (09:03 -0600)
committerSage Weil <sage@redhat.com>
Thu, 27 Feb 2020 18:05:42 +0000 (12:05 -0600)
Signed-off-by: Sage Weil <sage@redhat.com>
doc/cephadm/index.rst

index fdd07b3764920d2d188059b5b9bcbce49c9fbbcb..96ebdc9d05ca0e7a3509b61db7519c2217206db2 100644 (file)
@@ -104,6 +104,28 @@ administrator key in a global location::
    [any node] $ sudo install -m 0644 ceph.conf /etc/ceph/ceph.conf
    [any node] $ sudo install -m 0600 ceph.keyring /etc/ceph/ceph.keyring
 
+Watching cephadm log messages
+=============================
+
+Cephadm logs to the ``cephadm`` cluster log channel, which means you can monitor progress in realtime with::
+
+  ceph -W cephadm
+
+By default it will show info-level events and above.  To see
+debug-level messages too,::
+
+  ceph config set mgr/cephadm/log_to_cluster_level debug
+  ceph -W cephadm --watch-debug
+
+Be careful: the debug messagse are very verbose!
+
+You can see recent events with::
+
+  ceph log last cephadm
+
+These events are also logged to the ``ceph.cephadm.log`` file on
+monitor hosts and/or to the monitor-daemon stderr.
+
 Adding hosts to the cluster
 ===========================