logstash-output-datadog 2.0.4 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a7a60b4d27ca23e7dccde35a7fc26b12106eb383
4
- data.tar.gz: 42dac2baec58493be3f6ad852846620bc7619690
3
+ metadata.gz: dca93dfd33f2539e71b4b58196c6e0ed95d6df6c
4
+ data.tar.gz: 1881e43bf74c353b59958ec567ec12522dcf993c
5
5
  SHA512:
6
- metadata.gz: 9327c776775f6d5f55bbf4b53ab88a184bcdd8a450d9051b5127a5b5c8d247a3218c478232991c47c3f19c8e7dbbd1bd313f3c1577642ff7921ce093a0bacf25
7
- data.tar.gz: 89be3b124542764aca3de04736b577643bffcf1d5e522a8f12a8a9e35a352538e8c91330dc9604115374bafd0eea0dbabaa5e93f9ba23e4be415e27bc03934ee
6
+ metadata.gz: 251e12e2abb1b264881c981586bb5bf427525ecfe908cb6f4d8ba3bb1325c0c4877874d41ee796691ce87e304bd1759c12bdfcdc6f782a13142d486fc31756a6
7
+ data.tar.gz: 20f188cf9587ecac9b77d9e8068b0ba97625f68803559b64c4e106f391f215d4d1c255bad512dad56a59b8f90124e6734d2311b2b2df1e0de62d9aab09727d9b
@@ -1,7 +1,14 @@
1
- # 2.0.4
1
+ ## 3.0.0
2
+ - Update to the new plugin api
3
+ - relax constraints on the logstash-core-plugin-api
4
+ - Update .travis.yml
5
+
6
+ ## 2.0.4
2
7
  - Depend on logstash-core-plugin-api instead of logstash-core, removing the need to mass update plugins on major releases of logstash
3
- # 2.0.3
8
+
9
+ ## 2.0.3
4
10
  - New dependency requirements for logstash-core for the 5.0 release
11
+
5
12
  ## 2.0.0
6
13
  - Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
7
14
  instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2012–2015 Elasticsearch <http://www.elastic.co>
1
+ Copyright (c) 2012–2016 Elasticsearch <http://www.elastic.co>
2
2
 
3
3
  Licensed under the Apache License, Version 2.0 (the "License");
4
4
  you may not use this file except in compliance with the License.
data/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  # Logstash Plugin
2
2
 
3
- [![Build
4
- Status](http://build-eu-00.elastic.co/view/LS%20Plugins/view/LS%20Outputs/job/logstash-plugin-output-datadog-unit/badge/icon)](http://build-eu-00.elastic.co/view/LS%20Plugins/view/LS%20Outputs/job/logstash-plugin-output-datadog-unit/)
3
+ [![Travis Build Status](https://travis-ci.org/logstash-plugins/logstash-output-datadog.svg)](https://travis-ci.org/logstash-plugins/logstash-output-datadog)
5
4
 
6
5
  This is a plugin for [Logstash](https://github.com/elastic/logstash).
7
6
 
@@ -56,7 +55,12 @@ gem "logstash-filter-awesome", :path => "/your/local/logstash-filter-awesome"
56
55
  ```
57
56
  - Install plugin
58
57
  ```sh
58
+ # Logstash 2.3 and higher
59
+ bin/logstash-plugin install --no-verify
60
+
61
+ # Prior to Logstash 2.3
59
62
  bin/plugin install --no-verify
63
+
60
64
  ```
61
65
  - Run Logstash with your plugin
62
66
  ```sh
@@ -74,7 +78,12 @@ gem build logstash-filter-awesome.gemspec
74
78
  ```
75
79
  - Install the plugin from the Logstash home
76
80
  ```sh
77
- bin/plugin install /your/local/plugin/logstash-filter-awesome.gem
81
+ # Logstash 2.3 and higher
82
+ bin/logstash-plugin install --no-verify
83
+
84
+ # Prior to Logstash 2.3
85
+ bin/plugin install --no-verify
86
+
78
87
  ```
79
88
  - Start Logstash and proceed to test the plugin
80
89
 
@@ -53,9 +53,6 @@ class LogStash::Outputs::Datadog < LogStash::Outputs::Base
53
53
 
54
54
  public
55
55
  def receive(event)
56
-
57
-
58
-
59
56
  dd_event = Hash.new
60
57
  dd_event['title'] = event.sprintf(@title)
61
58
  dd_event['text'] = event.sprintf(@text)
@@ -72,7 +69,7 @@ class LogStash::Outputs::Datadog < LogStash::Outputs::Base
72
69
  if @dd_tags
73
70
  tagz = @dd_tags.collect {|x| event.sprintf(x) }
74
71
  else
75
- tagz = event["tags"]
72
+ tagz = event.get("tags")
76
73
  end
77
74
  dd_event['tags'] = tagz if tagz
78
75
 
@@ -1,10 +1,9 @@
1
1
  Gem::Specification.new do |s|
2
-
3
2
  s.name = 'logstash-output-datadog'
4
- s.version = '2.0.4'
3
+ s.version = '3.0.0'
5
4
  s.licenses = ['Apache License (2.0)']
6
5
  s.summary = "This output lets you send events (for now. soon metrics) to DataDogHQ based on Logstash events"
7
- s.description = "This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program"
6
+ s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
8
7
  s.authors = ["Elastic"]
9
8
  s.email = 'info@elastic.co'
10
9
  s.homepage = "http://www.elastic.co/guide/en/logstash/current/index.html"
@@ -20,7 +19,7 @@ Gem::Specification.new do |s|
20
19
  s.metadata = { "logstash_plugin" => "true", "logstash_group" => "output" }
21
20
 
22
21
  # Gem dependencies
23
- s.add_runtime_dependency "logstash-core-plugin-api", "~> 1.0"
22
+ s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
24
23
 
25
24
  s.add_development_dependency 'logstash-devutils'
26
25
  end
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-datadog
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.4
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-24 00:00:00.000000000 Z
11
+ date: 2016-09-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
15
15
  requirements:
16
- - - "~>"
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '1.60'
19
+ - - "<="
17
20
  - !ruby/object:Gem::Version
18
- version: '1.0'
21
+ version: '2.99'
19
22
  name: logstash-core-plugin-api
20
23
  prerelease: false
21
24
  type: :runtime
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '1.60'
30
+ - - "<="
25
31
  - !ruby/object:Gem::Version
26
- version: '1.0'
32
+ version: '2.99'
27
33
  - !ruby/object:Gem::Dependency
28
34
  requirement: !ruby/object:Gem::Requirement
29
35
  requirements:
@@ -38,7 +44,7 @@ dependencies:
38
44
  - - ">="
39
45
  - !ruby/object:Gem::Version
40
46
  version: '0'
41
- description: This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program
47
+ description: This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program
42
48
  email: info@elastic.co
43
49
  executables: []
44
50
  extensions: []