mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
states.disk: add documentation
This commit is contained in:
parent
6080846cce
commit
aedc4e15e5
1 changed files with 44 additions and 8 deletions
|
@ -2,7 +2,34 @@
|
|||
'''
|
||||
Disk monitoring state
|
||||
|
||||
Monitor the state of disk resources
|
||||
Monitor the state of disk resources.
|
||||
|
||||
The ``disk.status`` function can be used to report that the used space of a
|
||||
filesystem is within the specified limits.
|
||||
|
||||
.. code-block:: sls
|
||||
|
||||
used_space:
|
||||
disk.status:
|
||||
- name: /dev/xda1
|
||||
- maximum: 79%
|
||||
- minumum: 11%
|
||||
|
||||
It can be used with an ``onfail`` requisite, for example, to take additional
|
||||
action in response to or in preparation for other states.
|
||||
|
||||
.. code-block:: sls
|
||||
|
||||
storage_threshold:
|
||||
disk.status:
|
||||
- name: /dev/xda1
|
||||
- maximum: 97%
|
||||
|
||||
clear_cache:
|
||||
cmd.run:
|
||||
- name: rm -r /var/cache/app
|
||||
- onfail:
|
||||
- disk: storage_threshold
|
||||
'''
|
||||
from __future__ import absolute_import
|
||||
|
||||
|
@ -17,6 +44,15 @@ __monitor__ = [
|
|||
def status(name, maximum=None, minimum=None):
|
||||
'''
|
||||
Return the current disk usage stats for the named mount point
|
||||
|
||||
name
|
||||
Filesystem with which to check used space
|
||||
|
||||
minimum
|
||||
The required minimum amount of used space in percent
|
||||
|
||||
maximum
|
||||
The required maximum amount of used space in percent
|
||||
'''
|
||||
# Monitoring state, no changes will be made so no test interface needed
|
||||
ret = {'name': name,
|
||||
|
@ -47,17 +83,17 @@ def status(name, maximum=None, minimum=None):
|
|||
ret['comment'] += 'Min must be less than max'
|
||||
if ret['comment']:
|
||||
return ret
|
||||
cap = int(data[name]['capacity'].strip('%'))
|
||||
capacity = int(data[name]['capacity'].strip('%'))
|
||||
ret['data'] = data[name]
|
||||
if minimum:
|
||||
if cap < minimum:
|
||||
ret['comment'] = 'Disk is below minimum of {0} at {1}'.format(
|
||||
minimum, cap)
|
||||
if capacity < minimum:
|
||||
ret['comment'] = 'Disk used space is below minimum of {0} at {1}'.format(
|
||||
minimum, capacity)
|
||||
return ret
|
||||
if maximum:
|
||||
if cap > maximum:
|
||||
ret['comment'] = 'Disk is above maximum of {0} at {1}'.format(
|
||||
maximum, cap)
|
||||
if capacity > maximum:
|
||||
ret['comment'] = 'Disk used space is above maximum of {0} at {1}'.format(
|
||||
maximum, capacity)
|
||||
return ret
|
||||
ret['comment'] = 'Disk in acceptable range'
|
||||
ret['result'] = True
|
||||
|
|
Loading…
Add table
Reference in a new issue