Fix state & metric description
Also: add state=absent to last example
This commit is contained in:
parent
9342c16e78
commit
e0f513a903
1 changed files with 5 additions and 3 deletions
|
@ -36,7 +36,8 @@ options:
|
||||||
- This is the key that is used to determine whether a check exists
|
- This is the key that is used to determine whether a check exists
|
||||||
required: true
|
required: true
|
||||||
state:
|
state:
|
||||||
description: Whether the check should be present or not
|
description:
|
||||||
|
- Whether the check should be present or not
|
||||||
choices: [ 'present', 'absent' ]
|
choices: [ 'present', 'absent' ]
|
||||||
required: false
|
required: false
|
||||||
default: present
|
default: present
|
||||||
|
@ -102,7 +103,8 @@ options:
|
||||||
required: false
|
required: false
|
||||||
default: []
|
default: []
|
||||||
metric:
|
metric:
|
||||||
description: Whether the check is a metric
|
description:
|
||||||
|
- Whether the check is a metric
|
||||||
choices: [ 'yes', 'no' ]
|
choices: [ 'yes', 'no' ]
|
||||||
required: false
|
required: false
|
||||||
default: no
|
default: no
|
||||||
|
@ -169,7 +171,7 @@ EXAMPLES = '''
|
||||||
# Note that the check will still show up in the sensu dashboard,
|
# Note that the check will still show up in the sensu dashboard,
|
||||||
# to remove it completely you need to issue a DELETE request to the sensu api.
|
# to remove it completely you need to issue a DELETE request to the sensu api.
|
||||||
- name: check disk
|
- name: check disk
|
||||||
sensu_check: name=check_disk_capacity
|
sensu_check: name=check_disk_capacity state=absent
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue