logstash-input-mongoprofile 0.1.13 → 0.1.14

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: d5318172030ec608a7cb72c650a4479ee20ac281
4
- data.tar.gz: b2513d1d8eab34f21f098b2473c59fe7dd161e13
3
+ metadata.gz: 9f1791577f9d52eae124d6f9603624d9ff2db228
4
+ data.tar.gz: 0db3f8282ddf833154b8e1db77f78496da25e91b
5
5
  SHA512:
6
- metadata.gz: 6442c5dd84aff724677bdb18d63235c33f818440270743d16dde5570cfedd2be5a8eba0c836b1549fbbc7da19926dd4473cbdf3d59d4d3565e7d66d237d721a0
7
- data.tar.gz: 1fd6ce5e7f1ae37b3105d14b47fdf08edef12b625a66c5505d093122b89db09a4f555429a24e40216d16dc14eb2a7f047a37095a91e9fc174c4b2e569e302d1a
6
+ metadata.gz: 0bace47f999c477d705a29026390c5ef63b65a5c1d6a971c4a81cc415c121cc1cff9705b1d9c03a6f753809632ca4588869ca00655491c48c209fc7ea3d28fe7
7
+ data.tar.gz: 5067c562a892770f2d0c9b588bc60810d4e5e431b3ba063564fd0b669aa1e31ee66fe3e2d5a10d5aae95d3b29e397099261969a17336dc1f9e2a026751672d8c
@@ -35,7 +35,7 @@ class LogStash::Inputs::Mongoprofile < LogStash::Inputs::Base
35
35
  begin
36
36
 
37
37
  @controller.get_next_events.each do |event|
38
- @logger.info("Send event #{event}")
38
+ @logger.debug("Send event #{event}")
39
39
 
40
40
  decorate(event)
41
41
  queue << event
@@ -126,7 +126,7 @@ class DocumentParser
126
126
  event = LogStash::Event.new('host' => @host)
127
127
 
128
128
  document.each do |key, value|
129
- @logger.info("Try set event field key: #{key} value: #{value}")
129
+ @logger.debug("Try set event field key: #{key} value: #{value}")
130
130
  event.set(key, value)
131
131
  end
132
132
 
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-input-mongoprofile'
3
- s.version = '0.1.13'
3
+ s.version = '0.1.14'
4
4
  s.licenses = ['Apache License (2.0)']
5
5
  s.summary = 'MongoDB system.profile input plugin'
6
6
  s.description = 'MongoDB system.profile input plugin'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-mongoprofile
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.13
4
+ version: 0.1.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Artem Antonov