Logs

Ceph performs extensive logging. In Chapter 4, Planning your the Deployment, we discussed the need to provision ample drive space to accommodate spikes in log volume and to allow healthy retention intervals. In Chapter 8, Ceph Architecture: Under the Hood we will explore the severity levels of Ceph's log messages.

Ceph can be configured to log directly through the central syslog or rsyslog service, but by default it writes to local files. These are managed by the stock Linux logrotate facility. Here's the default rotation stanza that the Ceph Jewel release installs.

# cat /etc/logrotate.d/ceph.logrotate
/var/log/ceph/*.log {
    rotate 7
    daily
    compress
    sharedscripts
    postrotate
 killall -q -1 ceph-mon ceph-mds ceph-osd ceph-fuse radosgw ...

Get Learning Ceph - Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.