mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Discussed datadog module at OSCON with DD folks, does not make sense to send
event types for anything other than myapps here.
This commit is contained in:
parent
e9747af8b7
commit
a9121fecda
1 changed files with 1 additions and 18 deletions
|
@ -54,23 +54,6 @@ options:
|
|||
description: ["An arbitrary string to use for aggregation."]
|
||||
required: false
|
||||
default: null
|
||||
source_type_name:
|
||||
description: ["The type of event being posted."]
|
||||
required: false
|
||||
default: null
|
||||
choices:
|
||||
- 'nagios'
|
||||
- 'hudson'
|
||||
- 'jenkins'
|
||||
- 'user'
|
||||
- 'my apps'
|
||||
- 'feed'
|
||||
- 'chef'
|
||||
- 'puppet'
|
||||
- 'git'
|
||||
- 'bitbucket'
|
||||
- 'fabric'
|
||||
- 'capistrano'
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
|
@ -103,7 +86,7 @@ def main():
|
|||
),
|
||||
aggregation_key=dict(required=False, default=None),
|
||||
source_type_name=dict(
|
||||
required=False, default=None,
|
||||
required=False, default='my apps',
|
||||
choices=['nagios', 'hudson', 'jenkins', 'user', 'my apps',
|
||||
'feed', 'chef', 'puppet', 'git', 'bitbucket', 'fabric',
|
||||
'capistrano']
|
||||
|
|
Loading…
Reference in a new issue