logstash-input-ganglia 3.1.0 → 3.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e71cd4eb2c312f38f6a9cdd424a1b40eaa104095
4
- data.tar.gz: 8ce6c1eace0180133fe1408b4267224447e1e835
3
+ metadata.gz: 8fee7b60b63a23948a6713f24d6745899aa24c7a
4
+ data.tar.gz: 70fc5561032f704aa11bc38016ad75f390aca998
5
5
  SHA512:
6
- metadata.gz: e201136446763096ad428755dbf2896ec589d7ce5ede7bdac752a513efd5dc1e2963c4baa63ea267667afda2267b21ca1e712491b3f158e883d5e5067eda5517
7
- data.tar.gz: abb1831b01ad5fa9206a10daa9c64c71dcb1ac98a4b64b93a8e957adb470e7a4e3d9abffb76314850a172a1c165aa331d91cd421700677781adf093597f74010
6
+ metadata.gz: 6ef71d03b8ebc892862b1317d6c99b03bda07110ad1db5d932f33d297a5152f5f950183d34d5ed2a5aa83b80fed54166853dc8a3559dcc1161de0361564c744e
7
+ data.tar.gz: 62204ef7585fee173aa85354e0c9a8164cf4f27fd14527ca2cf0760cdc321168c1a4a945317b433ab6d011f0428f9677e5629161c15ca2c891b55522faa3238b
data/Gemfile CHANGED
@@ -1,4 +1,11 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- # Specify your gem's dependencies in logstash-mass_effect.gemspec
4
3
  gemspec
4
+
5
+ logstash_path = ENV["LOGSTASH_PATH"] || "../../logstash"
6
+ use_logstash_source = ENV["LOGSTASH_SOURCE"] && ENV["LOGSTASH_SOURCE"].to_s == "1"
7
+
8
+ if Dir.exist?(logstash_path) && use_logstash_source
9
+ gem 'logstash-core', :path => "#{logstash_path}/logstash-core"
10
+ gem 'logstash-core-plugin-api', :path => "#{logstash_path}/logstash-core-plugin-api"
11
+ end
@@ -0,0 +1,63 @@
1
+ :plugin: ganglia
2
+ :type: input
3
+
4
+ ///////////////////////////////////////////
5
+ START - GENERATED VARIABLES, DO NOT EDIT!
6
+ ///////////////////////////////////////////
7
+ :version: %VERSION%
8
+ :release_date: %RELEASE_DATE%
9
+ :changelog_url: %CHANGELOG_URL%
10
+ :include_path: ../../../../logstash/docs/include
11
+ ///////////////////////////////////////////
12
+ END - GENERATED VARIABLES, DO NOT EDIT!
13
+ ///////////////////////////////////////////
14
+
15
+ [id="plugins-{type}-{plugin}"]
16
+
17
+ === Ganglia input plugin
18
+
19
+ include::{include_path}/plugin_header.asciidoc[]
20
+
21
+ ==== Description
22
+
23
+ Read ganglia packets from the network via udp
24
+
25
+
26
+ [id="plugins-{type}s-{plugin}-options"]
27
+ ==== Ganglia Input Configuration Options
28
+
29
+ This plugin supports the following configuration options plus the <<plugins-{type}s-{plugin}-common-options>> described later.
30
+
31
+ [cols="<,<,<",options="header",]
32
+ |=======================================================================
33
+ |Setting |Input type|Required
34
+ | <<plugins-{type}s-{plugin}-host>> |<<string,string>>|No
35
+ | <<plugins-{type}s-{plugin}-port>> |<<number,number>>|No
36
+ |=======================================================================
37
+
38
+ Also see <<plugins-{type}s-{plugin}-common-options>> for a list of options supported by all
39
+ input plugins.
40
+
41
+ &nbsp;
42
+
43
+ [id="plugins-{type}s-{plugin}-host"]
44
+ ===== `host`
45
+
46
+ * Value type is <<string,string>>
47
+ * Default value is `"0.0.0.0"`
48
+
49
+ The address to listen on
50
+
51
+ [id="plugins-{type}s-{plugin}-port"]
52
+ ===== `port`
53
+
54
+ * Value type is <<number,number>>
55
+ * Default value is `8649`
56
+
57
+ The port to listen on. Remember that ports less than 1024 (privileged
58
+ ports) may require root to use.
59
+
60
+
61
+
62
+ [id="plugins-{type}s-{plugin}-common-options"]
63
+ include::{include_path}/{type}.asciidoc[]
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-input-ganglia'
4
- s.version = '3.1.0'
4
+ s.version = '3.1.1'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Read ganglia packets from the network via udp"
7
7
  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"
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
11
11
  s.require_paths = ["lib"]
12
12
 
13
13
  # Files
14
- s.files = Dir['lib/**/*','spec/**/*','vendor/**/*','*.gemspec','*.md','CONTRIBUTORS','Gemfile','LICENSE','NOTICE.TXT']
14
+ s.files = Dir["lib/**/*","spec/**/*","*.gemspec","*.md","CONTRIBUTORS","Gemfile","LICENSE","NOTICE.TXT", "vendor/jar-dependencies/**/*.jar", "vendor/jar-dependencies/**/*.rb", "VERSION", "docs/**/*"]
15
15
 
16
16
  # Tests
17
17
  s.test_files = s.files.grep(%r{^(test|spec|features)/})
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-ganglia
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 3.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-26 00:00:00.000000000 Z
11
+ date: 2017-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -98,6 +98,7 @@ files:
98
98
  - LICENSE
99
99
  - NOTICE.TXT
100
100
  - README.md
101
+ - docs/index.asciidoc
101
102
  - lib/logstash/inputs/ganglia.rb
102
103
  - lib/logstash/inputs/ganglia/gmondpacket.rb
103
104
  - lib/logstash/inputs/ganglia/xdr.rb