diff options
author | John Spray <jcspray@gmail.com> | 2015-04-07 12:58:54 +0200 |
---|---|---|
committer | John Spray <jcspray@gmail.com> | 2015-04-07 12:58:54 +0200 |
commit | 4d921ee6b777c1e06d459a6f036ba6c952ac2d73 (patch) | |
tree | e75126e55ff5cb51b5672f49551688313d01ccf0 /man | |
parent | Merge pull request #4271 from nehaummareddy/master (diff) | |
parent | doc: add daemon and daemonperf commands description to man (diff) | |
download | ceph-4d921ee6b777c1e06d459a6f036ba6c952ac2d73.tar.xz ceph-4d921ee6b777c1e06d459a6f036ba6c952ac2d73.zip |
Merge pull request #4265 from trociny/wip-11319
ceph daemonperf: add watch interval and count parameters
Reviewed-by: John Spray <john.spray@redhat.com>
Diffstat (limited to 'man')
-rw-r--r-- | man/8/ceph.rst | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/man/8/ceph.rst b/man/8/ceph.rst index 872d0424f36..4949252016b 100644 --- a/man/8/ceph.rst +++ b/man/8/ceph.rst @@ -13,6 +13,10 @@ Synopsis | **ceph** **config-key** [ *del* | *exists* | *get* | *list* | *put* ] ... +| **ceph** **daemon** *<name>* \| *<path>* *<command>* ... + +| **ceph** **daemonperf** *<name>* \| *<path>* [ *interval* [ *count* ] ] + | **ceph** **df** *{detail}* | **ceph** **fs** [ *ls* \| *new* \| *reset* \| *rm* ] ... @@ -202,6 +206,30 @@ Usage:: ceph config-key put <key> {<val>} +daemon +------ + +Submit admin-socket commands. + +Usage:: + + ceph daemon {daemon_name|socket_path} {command} ... + +Example:: + + ceph daemon osd.0 help + + +daemonperf +---------- + +Watch performance counters from a Ceph daemon. + +Usage:: + + ceph daemonperf {daemon_name|socket_path} [{interval} [{count}]] + + df -- |