From: Sage Weil Date: Tue, 25 Jul 2017 15:15:00 +0000 (-0400) Subject: doc/rados/operations/health-checks: document new health warning X-Git-Tag: v12.1.2~48^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=172d8f545cfe45959c0cc3f50d293968a1709fd0;p=ceph.git doc/rados/operations/health-checks: document new health warning Signed-off-by: Sage Weil --- diff --git a/doc/rados/operations/health-checks.rst b/doc/rados/operations/health-checks.rst index 4dced94e29b..55176fd72d8 100644 --- a/doc/rados/operations/health-checks.rst +++ b/doc/rados/operations/health-checks.rst @@ -128,6 +128,24 @@ MANY_OBJECTS_PER_PG ___________________ +POOL_APP_NOT_ENABLED +____________________ + +A pool exists that contains one or more objects but has not been +tagged for use by a particular application. + +Resolve this warning by labeling the pool for use by an application. For +example, if the pool is used by RBD,:: + + rbd pool init + +If the pool is being used by a custom application 'foo', you can also label +via the low-level command:: + + ceph osd pool application enable foo + +For more information, see :doc:`pools.rst#associate-pool-to-application`. + POOL_FULL _________