logstash-output-xmpp 3.0.2 → 3.0.3

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: 6d1e670262f2887c2b9f4c0e239b691e9dfeab2d
4
- data.tar.gz: e7417101578d88118d60ce76a6bf5d3ff2b0e971
3
+ metadata.gz: 1a9e38c21b7bba3ee4938e4a85d61c8c84903fd5
4
+ data.tar.gz: 0230f39b1aebe9b123b5f0452d86063c9044c049
5
5
  SHA512:
6
- metadata.gz: 5a7cfe273f2b53dfb4cdd0ce9906c2160f3af2ed8d8e87103b41536bd5b6788767425e385f5d59c69fc953cc9bf167a11a2e2373f6f4b5f6ea276eb9f3b9c764
7
- data.tar.gz: e7c5d45210ed3d9c399204a52fa0943d8135f1e31dceb91d965300831ee4c5d500db5c9336b6dfd8e4ce7ef1de6a7ec19f1525169e68e5df3820226afd18b1c8
6
+ metadata.gz: 060dc5c8af32fc1c0594b014247437e70772acb0e39bf8824b1fc3cfc6476f596e0f94e5053291fd195946a0df71cef364694001b79bcd2228c10b3303923e78
7
+ data.tar.gz: 2b37db4a2d279a3ee073ffcdcfbdcdaa5e109695939a62983fac048dac9aadf486a085c5d6712b6964ddec32b40c0e8d9aac068a4d6280dcde60439f083d1a8a
@@ -0,0 +1,104 @@
1
+ :plugin: xmpp
2
+ :type: output
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
+ === Xmpp
18
+
19
+ include::{include_path}/plugin_header.asciidoc[]
20
+
21
+ ==== Description
22
+
23
+ This output allows you ship events over XMPP/Jabber.
24
+
25
+ This plugin can be used for posting events to humans over XMPP, or you can
26
+ use it for PubSub or general message passing for logstash to logstash.
27
+
28
+ [id="plugins-{type}s-{plugin}-options"]
29
+ ==== Xmpp Output Configuration Options
30
+
31
+ This plugin supports the following configuration options plus the <<plugins-{type}s-common-options>> described later.
32
+
33
+ [cols="<,<,<",options="header",]
34
+ |=======================================================================
35
+ |Setting |Input type|Required
36
+ | <<plugins-{type}s-{plugin}-host>> |<<string,string>>|No
37
+ | <<plugins-{type}s-{plugin}-message>> |<<string,string>>|Yes
38
+ | <<plugins-{type}s-{plugin}-password>> |<<password,password>>|Yes
39
+ | <<plugins-{type}s-{plugin}-rooms>> |<<array,array>>|No
40
+ | <<plugins-{type}s-{plugin}-user>> |<<string,string>>|Yes
41
+ | <<plugins-{type}s-{plugin}-users>> |<<array,array>>|No
42
+ |=======================================================================
43
+
44
+ Also see <<plugins-{type}s-common-options>> for a list of options supported by all
45
+ output plugins.
46
+
47
+ &nbsp;
48
+
49
+ [id="plugins-{type}s-{plugin}-host"]
50
+ ===== `host`
51
+
52
+ * Value type is <<string,string>>
53
+ * There is no default value for this setting.
54
+
55
+ The xmpp server to connect to. This is optional. If you omit this setting,
56
+ the host on the user/identity is used. (foo.com for user@foo.com)
57
+
58
+ [id="plugins-{type}s-{plugin}-message"]
59
+ ===== `message`
60
+
61
+ * This is a required setting.
62
+ * Value type is <<string,string>>
63
+ * There is no default value for this setting.
64
+
65
+ The message to send. This supports dynamic strings like `%{host}`
66
+
67
+ [id="plugins-{type}s-{plugin}-password"]
68
+ ===== `password`
69
+
70
+ * This is a required setting.
71
+ * Value type is <<password,password>>
72
+ * There is no default value for this setting.
73
+
74
+ The xmpp password for the user/identity.
75
+
76
+ [id="plugins-{type}s-{plugin}-rooms"]
77
+ ===== `rooms`
78
+
79
+ * Value type is <<array,array>>
80
+ * There is no default value for this setting.
81
+
82
+ if muc/multi-user-chat required, give the name of the room that
83
+ you want to join: room@conference.domain/nick
84
+
85
+ [id="plugins-{type}s-{plugin}-user"]
86
+ ===== `user`
87
+
88
+ * This is a required setting.
89
+ * Value type is <<string,string>>
90
+ * There is no default value for this setting.
91
+
92
+ The user or resource ID, like foo@example.com.
93
+
94
+ [id="plugins-{type}s-{plugin}-users"]
95
+ ===== `users`
96
+
97
+ * Value type is <<array,array>>
98
+ * There is no default value for this setting.
99
+
100
+ The users to send messages to
101
+
102
+
103
+
104
+ include::{include_path}/{type}.asciidoc[]
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-output-xmpp'
4
- s.version = '3.0.2'
4
+ s.version = '3.0.3'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "This output allows you ship events over XMPP/Jabber"
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)/})
@@ -22,7 +22,7 @@ Gem::Specification.new do |s|
22
22
  # Gem dependencies
23
23
  s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
24
24
 
25
- s.add_runtime_dependency 'xmpp4r', ['0.5']
25
+ s.add_runtime_dependency 'xmpp4r', ['0.5.6']
26
26
 
27
27
  s.add_development_dependency 'logstash-devutils'
28
28
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-xmpp
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.2
4
+ version: 3.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-14 00:00:00.000000000 Z
11
+ date: 2017-05-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -35,7 +35,7 @@ dependencies:
35
35
  requirements:
36
36
  - - '='
37
37
  - !ruby/object:Gem::Version
38
- version: '0.5'
38
+ version: 0.5.6
39
39
  name: xmpp4r
40
40
  prerelease: false
41
41
  type: :runtime
@@ -43,7 +43,7 @@ dependencies:
43
43
  requirements:
44
44
  - - '='
45
45
  - !ruby/object:Gem::Version
46
- version: '0.5'
46
+ version: 0.5.6
47
47
  - !ruby/object:Gem::Dependency
48
48
  requirement: !ruby/object:Gem::Requirement
49
49
  requirements:
@@ -70,6 +70,7 @@ files:
70
70
  - LICENSE
71
71
  - NOTICE.TXT
72
72
  - README.md
73
+ - docs/index.asciidoc
73
74
  - lib/logstash/outputs/xmpp.rb
74
75
  - logstash-output-xmpp.gemspec
75
76
  - spec/outputs/xmpp_spec.rb
@@ -95,7 +96,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
95
96
  version: '0'
96
97
  requirements: []
97
98
  rubyforge_project:
98
- rubygems_version: 2.6.3
99
+ rubygems_version: 2.4.8
99
100
  signing_key:
100
101
  specification_version: 4
101
102
  summary: This output allows you ship events over XMPP/Jabber