logstash-output-rabbit-gelf 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/logstash-output-rabbit-gelf.gemspec +1 -1
- data/spec/outputs/rabbit-gelf_spec.rb +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 68ddcdf64bb88b12b36be944b90001b916219c0e
|
4
|
+
data.tar.gz: e0865eff2b2006e45a97b0d1af790a2d08fb7ca3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: be36c40b74987fadb2b6e452322c51cde527c21d8fa1eaa39e216b22e88f8eff3a131103ce34e59fd6fb431fc3c2b76f45d160803feba19e009d858e3ad7311b
|
7
|
+
data.tar.gz: 53dc1817c1a7cfb6b5dcf93f32bb86c7a2d3fe7bea6ab8f62f96a270cae52093d981845c9533554b57a1a0d1d9b435bef5798e6d91bab1136bee68c0993a6a52
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'logstash-output-rabbit-gelf'
|
3
|
-
s.version = "0.1.
|
3
|
+
s.version = "0.1.1"
|
4
4
|
s.licenses = ["Apache License (2.0)"]
|
5
5
|
s.summary = "Outputs gelf data to rabbit."
|
6
6
|
s.description = "This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program"
|
@@ -1,12 +1,12 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
require "logstash/devutils/rspec/spec_helper"
|
3
|
-
require "logstash/outputs/
|
3
|
+
require "logstash/outputs/rabbit-gelf"
|
4
4
|
require "logstash/codecs/plain"
|
5
5
|
require "logstash/event"
|
6
6
|
|
7
|
-
describe LogStash::Outputs::
|
7
|
+
describe LogStash::Outputs::RabbitGelf do
|
8
8
|
let(:sample_event) { LogStash::Event.new }
|
9
|
-
let(:output) { LogStash::Outputs::
|
9
|
+
let(:output) { LogStash::Outputs::RabbitGelf.new }
|
10
10
|
|
11
11
|
before do
|
12
12
|
output.register
|