From a9121fecda9dae6cc03f32163f9f91117a24f348 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Sat, 3 Aug 2013 14:52:06 -0400 Subject: [PATCH] Discussed datadog module at OSCON with DD folks, does not make sense to send event types for anything other than myapps here. --- library/monitoring/datadog_event | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/library/monitoring/datadog_event b/library/monitoring/datadog_event index 3e453df464b..3b180635d5f 100644 --- a/library/monitoring/datadog_event +++ b/library/monitoring/datadog_event @@ -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']