logstash-input-relp 3.0.0 → 3.0.1

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: 540969952b5be2771c0b89951e69f0a3187aab48
4
- data.tar.gz: 6c9b98332f8484d64f8ea59310cba5c1a13ed1e3
3
+ metadata.gz: 379a2dbfcdd2436cb15ffa0f0b2027076619cfc7
4
+ data.tar.gz: 2f9a346b25f2618baa1906c5891e2d03d4339f9d
5
5
  SHA512:
6
- metadata.gz: 1d3eb59a6efbf1c083c452649a59f0dc8a8c5bbc48024fdd9bed09d52823e0e9dd16319a7a765d22e9ac9a69ef7549a5abf9878404d07a125ed7d538e89a5622
7
- data.tar.gz: 7e3852abd0cb4757a2456885456f2cf03ed2c74acde72c520fce5fdebdbfa4acc4acd4063b9db6cf19633188c9173ed93e9a8a9a2858f4bd93393c5d6f03fc99
6
+ metadata.gz: b4c2017a9f47b0d9e471f888f46423eca5aed0636fa7d0298fed9f50eb0f054a0e9269fede399e6dfa93229d2f0b5fe3e304c234832fc71d73f98165000e21e8
7
+ data.tar.gz: 7e4f9938c6e3bae52143d7a5157181f13d9644f40a2a7cd906577fffe6cd56a6e24ce6f8289827c506418ab1066b605a7ad4dffa80131367e32a85a982229c62
data/Gemfile CHANGED
@@ -1,2 +1,11 @@
1
1
  source 'https://rubygems.org'
2
- gemspec
2
+
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,126 @@
1
+ :plugin: relp
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
+ === Relp input plugin
18
+
19
+ include::{include_path}/plugin_header.asciidoc[]
20
+
21
+ ==== Description
22
+
23
+ Read RELP events over a TCP socket.
24
+
25
+ For more information about RELP, see
26
+ <http://www.rsyslog.com/doc/imrelp.html>
27
+
28
+ This protocol implements application-level acknowledgements to help protect
29
+ against message loss.
30
+
31
+ Message acks only function as far as messages being put into the queue for
32
+ filters; anything lost after that point will not be retransmitted
33
+
34
+ [id="plugins-{type}s-{plugin}-options"]
35
+ ==== Relp Input Configuration Options
36
+
37
+ This plugin supports the following configuration options plus the <<plugins-{type}s-{plugin}-common-options>> described later.
38
+
39
+ [cols="<,<,<",options="header",]
40
+ |=======================================================================
41
+ |Setting |Input type|Required
42
+ | <<plugins-{type}s-{plugin}-host>> |<<string,string>>|No
43
+ | <<plugins-{type}s-{plugin}-port>> |<<number,number>>|Yes
44
+ | <<plugins-{type}s-{plugin}-ssl_cacert>> |a valid filesystem path|No
45
+ | <<plugins-{type}s-{plugin}-ssl_cert>> |a valid filesystem path|No
46
+ | <<plugins-{type}s-{plugin}-ssl_enable>> |<<boolean,boolean>>|No
47
+ | <<plugins-{type}s-{plugin}-ssl_key>> |a valid filesystem path|No
48
+ | <<plugins-{type}s-{plugin}-ssl_key_passphrase>> |<<password,password>>|No
49
+ | <<plugins-{type}s-{plugin}-ssl_verify>> |<<boolean,boolean>>|No
50
+ |=======================================================================
51
+
52
+ Also see <<plugins-{type}s-{plugin}-common-options>> for a list of options supported by all
53
+ input plugins.
54
+
55
+ &nbsp;
56
+
57
+ [id="plugins-{type}s-{plugin}-host"]
58
+ ===== `host`
59
+
60
+ * Value type is <<string,string>>
61
+ * Default value is `"0.0.0.0"`
62
+
63
+ The address to listen on.
64
+
65
+ [id="plugins-{type}s-{plugin}-port"]
66
+ ===== `port`
67
+
68
+ * This is a required setting.
69
+ * Value type is <<number,number>>
70
+ * There is no default value for this setting.
71
+
72
+ The port to listen on.
73
+
74
+ [id="plugins-{type}s-{plugin}-ssl_cacert"]
75
+ ===== `ssl_cacert`
76
+
77
+ * Value type is <<path,path>>
78
+ * There is no default value for this setting.
79
+
80
+ The SSL CA certificate, chainfile or CA path. The system CA path is automatically included.
81
+
82
+ [id="plugins-{type}s-{plugin}-ssl_cert"]
83
+ ===== `ssl_cert`
84
+
85
+ * Value type is <<path,path>>
86
+ * There is no default value for this setting.
87
+
88
+ SSL certificate path
89
+
90
+ [id="plugins-{type}s-{plugin}-ssl_enable"]
91
+ ===== `ssl_enable`
92
+
93
+ * Value type is <<boolean,boolean>>
94
+ * Default value is `false`
95
+
96
+ Enable SSL (must be set for other `ssl_` options to take effect).
97
+
98
+ [id="plugins-{type}s-{plugin}-ssl_key"]
99
+ ===== `ssl_key`
100
+
101
+ * Value type is <<path,path>>
102
+ * There is no default value for this setting.
103
+
104
+ SSL key path
105
+
106
+ [id="plugins-{type}s-{plugin}-ssl_key_passphrase"]
107
+ ===== `ssl_key_passphrase`
108
+
109
+ * Value type is <<password,password>>
110
+ * Default value is `nil`
111
+
112
+ SSL key passphrase
113
+
114
+ [id="plugins-{type}s-{plugin}-ssl_verify"]
115
+ ===== `ssl_verify`
116
+
117
+ * Value type is <<boolean,boolean>>
118
+ * Default value is `true`
119
+
120
+ Verify the identity of the other end of the SSL connection against the CA.
121
+ For input, sets the field `sslsubject` to that of the client certificate.
122
+
123
+
124
+
125
+ [id="plugins-{type}s-{plugin}-common-options"]
126
+ include::{include_path}/{type}.asciidoc[]
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-input-relp'
4
- s.version = '3.0.0'
4
+ s.version = '3.0.1'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Read RELP events over a TCP socket."
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-relp
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-30 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
@@ -84,6 +84,7 @@ files:
84
84
  - LICENSE
85
85
  - NOTICE.TXT
86
86
  - README.md
87
+ - docs/index.asciidoc
87
88
  - lib/logstash/inputs/relp.rb
88
89
  - lib/logstash/util/relp.rb
89
90
  - logstash-input-relp.gemspec