logstash-output-custom-solr 0.1.16 → 0.1.17

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
  SHA256:
3
- metadata.gz: 067dabce97cb87c1e73c9a4d73f2d51a7fbc75d67f0c26a8578c11ddba82536f
4
- data.tar.gz: 0dcfc3a358c9b3a8811cd07f973de433b2fb69024f203bb9114114820d36001b
3
+ metadata.gz: 86c9f58757a5ec21219f8503b1d4dd056ecf97de18dc3d0b1f29f570e0c36fdc
4
+ data.tar.gz: 88d041c8271fe64bfbce2d2f07a64b1469de5254c23bbb94f59c4fb2b7e7c3cd
5
5
  SHA512:
6
- metadata.gz: fec62c2f3651d6acd88e18e1fdae79ceddbcea74fb3b1ef0302c682ca088dc5c9e1ddfa18bfd3d6e4a85a93e03dc931dab3a1067c3642697cc9e8fd285b180be
7
- data.tar.gz: 9f5a5cf1a0fec21932b44731017c6f017b1bc3269451d59878191a2a134cf8d9f1466124b2b91325bc07d350c48e2d290e77e1ed1ec1103dbaed7dfa4ba2b634
6
+ metadata.gz: 36eec762b241e0263e9b33e1649bbcd96af50a6fa14e356224eebe1c54760ab477a5f211602a2ece894a37d0780f42fa91139074d10f1ac131b8192f676450ed
7
+ data.tar.gz: d3980a757f88c63c656ed5c2457f45dc4bfddbbad7ed8d180d80e327cc466d4025d00df520cc9e0fb4015339a5d66ca2f83c2f8abea5b8f92e196ddd2fb67d41
@@ -94,7 +94,7 @@ class LogStash::Outputs::Solr < LogStash::Outputs::Base
94
94
  document.merge!({@timestamp_field => document['@timestamp']})
95
95
  end
96
96
 
97
- @logger.info 'Record: %s' % document.inspect
97
+ @logger.debug 'Record: %s' % document.inspect
98
98
 
99
99
  collection = @collection
100
100
  if @collection_field and document.has_key?(@collection_field) then
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-output-custom-solr'
3
- s.version = "0.1.16"
3
+ s.version = "0.1.17"
4
4
  s.licenses = ["Apache License (2.0)"]
5
5
  s.summary = "Logstash output plugin for sending data to Solr."
6
6
  s.description = "Logstash output plugin for sending data to Solr. It supports SolrCloud, not only Standalone Solr."
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-custom-solr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.16
4
+ version: 0.1.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Minoru Osuka