logstash-output-xmpp 3.0.3 → 3.0.4
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 +4 -4
- data/Gemfile +8 -1
- data/docs/index.asciidoc +6 -5
- data/logstash-output-xmpp.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5c242a2dc1c26681c0f6bcea2c10288c8b673f46
|
|
4
|
+
data.tar.gz: 8e4bc33c45cc018cdc36192a2d6c00fad7071f5b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 11e81471e6dc6e062c59d0ef09ef8a7434de0b36bdd06538cb9801dcd25072fc865c7f9080b05b257ee1fa5abfd4cc6a0651e31ab4411fc7f803a876e8cd5215
|
|
7
|
+
data.tar.gz: 03c90ed5cba829d0a1fbcd1526b9e5c4bf27adf315c6fbdd2b76bd09dd1e8f1cc0250b748d38f4020ff2ec08dc4792ecf92411de8e98e6180bddfbb73d04a481
|
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
|
data/docs/index.asciidoc
CHANGED
|
@@ -7,14 +7,14 @@ START - GENERATED VARIABLES, DO NOT EDIT!
|
|
|
7
7
|
:version: %VERSION%
|
|
8
8
|
:release_date: %RELEASE_DATE%
|
|
9
9
|
:changelog_url: %CHANGELOG_URL%
|
|
10
|
-
:include_path:
|
|
10
|
+
:include_path: ../../../../logstash/docs/include
|
|
11
11
|
///////////////////////////////////////////
|
|
12
12
|
END - GENERATED VARIABLES, DO NOT EDIT!
|
|
13
13
|
///////////////////////////////////////////
|
|
14
14
|
|
|
15
15
|
[id="plugins-{type}-{plugin}"]
|
|
16
16
|
|
|
17
|
-
=== Xmpp
|
|
17
|
+
=== Xmpp output plugin
|
|
18
18
|
|
|
19
19
|
include::{include_path}/plugin_header.asciidoc[]
|
|
20
20
|
|
|
@@ -28,7 +28,7 @@ use it for PubSub or general message passing for logstash to logstash.
|
|
|
28
28
|
[id="plugins-{type}s-{plugin}-options"]
|
|
29
29
|
==== Xmpp Output Configuration Options
|
|
30
30
|
|
|
31
|
-
This plugin supports the following configuration options plus the <<plugins-{type}s-common-options>> described later.
|
|
31
|
+
This plugin supports the following configuration options plus the <<plugins-{type}s-{plugin}-common-options>> described later.
|
|
32
32
|
|
|
33
33
|
[cols="<,<,<",options="header",]
|
|
34
34
|
|=======================================================================
|
|
@@ -41,7 +41,7 @@ This plugin supports the following configuration options plus the <<plugins-{typ
|
|
|
41
41
|
| <<plugins-{type}s-{plugin}-users>> |<<array,array>>|No
|
|
42
42
|
|=======================================================================
|
|
43
43
|
|
|
44
|
-
Also see <<plugins-{type}s-common-options>> for a list of options supported by all
|
|
44
|
+
Also see <<plugins-{type}s-{plugin}-common-options>> for a list of options supported by all
|
|
45
45
|
output plugins.
|
|
46
46
|
|
|
47
47
|
|
|
@@ -101,4 +101,5 @@ The users to send messages to
|
|
|
101
101
|
|
|
102
102
|
|
|
103
103
|
|
|
104
|
-
|
|
104
|
+
[id="plugins-{type}s-{plugin}-common-options"]
|
|
105
|
+
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.
|
|
4
|
+
s.version = '3.0.4'
|
|
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"
|
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.
|
|
4
|
+
version: 3.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
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
|