logstash-output-zabbix 0.1.4 → 1.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 +4 -4
- data/CHANGELOG.md +0 -0
- data/DEVELOPER.md +1 -1
- data/README.md +1 -1
- data/docker/README.md +7 -7
- data/docker/zabbix.sql +102 -102
- data/lib/logstash/outputs/zabbix.rb +68 -19
- data/logstash-output-zabbix.gemspec +2 -2
- data/spec/helpers/zabbix_helper.rb +69 -0
- data/spec/outputs/zabbix_spec.rb +120 -123
- metadata +6 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-output-zabbix
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.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: 2015-
|
11
|
+
date: 2015-06-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: logstash-core
|
@@ -87,7 +87,7 @@ dependencies:
|
|
87
87
|
prerelease: false
|
88
88
|
type: :development
|
89
89
|
- !ruby/object:Gem::Dependency
|
90
|
-
name:
|
90
|
+
name: longshoreman
|
91
91
|
version_requirements: !ruby/object:Gem::Requirement
|
92
92
|
requirements:
|
93
93
|
- - '>='
|
@@ -107,6 +107,7 @@ extensions: []
|
|
107
107
|
extra_rdoc_files: []
|
108
108
|
files:
|
109
109
|
- .gitignore
|
110
|
+
- CHANGELOG.md
|
110
111
|
- CONTRIBUTORS
|
111
112
|
- DEVELOPER.md
|
112
113
|
- Gemfile
|
@@ -121,6 +122,7 @@ files:
|
|
121
122
|
- docker/zabbix.sql
|
122
123
|
- lib/logstash/outputs/zabbix.rb
|
123
124
|
- logstash-output-zabbix.gemspec
|
125
|
+
- spec/helpers/zabbix_helper.rb
|
124
126
|
- spec/outputs/zabbix_spec.rb
|
125
127
|
homepage: http://www.elastic.co/guide/en/logstash/current/index.html
|
126
128
|
licenses:
|
@@ -149,4 +151,5 @@ signing_key:
|
|
149
151
|
specification_version: 4
|
150
152
|
summary: This output sends key/value pairs to a Zabbix server.
|
151
153
|
test_files:
|
154
|
+
- spec/helpers/zabbix_helper.rb
|
152
155
|
- spec/outputs/zabbix_spec.rb
|