logstash-output-honeycomb_json_batch 0.4.0 → 0.4.1

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
- SHA1:
3
- metadata.gz: fd568b09ed2a77babbec42357ed60e4ee12c32df
4
- data.tar.gz: 00caf9501849ce3937d6ea8877982eaf688f8a98
2
+ SHA256:
3
+ metadata.gz: 84696dc5da1f4d425ce9003aa9ac876bbfed36c5b7bff79e635abbf506b5702a
4
+ data.tar.gz: 7726fb278687c3b49fee79e102b4edf7a75745c465c46dc7d73c921311a7152a
5
5
  SHA512:
6
- metadata.gz: 2df87955e54aa555ad1100076bc90921e8f8dce14c4366736f873bf315940f30ce0bd7ea526b08296734fdcc7d2734248eb719d6ce146058e16376d6340d41d1
7
- data.tar.gz: 515b7bc976a2e6a08637ed742c654047392e64e8f07d43c2795ecae936d208c14ea3a232e83d95722dbbb345c9049991ec749a556fe6bc842b917a109a01ea0c
6
+ metadata.gz: 57cf99f4d3c6b94fcbafff0bedb38028ebd5ac01a76075baf836c166c6f429df54dfceaf8ee21fb92788d550dc3283a109f32718f65186adcaa50704b5e81835
7
+ data.tar.gz: 7befb5276d3d277f566d43684bd23b8c7dd157ddd81ce7923b9d3f9455c099f2e78abca61410b29c30a6ad496b8693cd6da05de7fe684a633039b2fcf1212afa
data/README.md CHANGED
@@ -1,4 +1,7 @@
1
- # logstash-output-honeycomb_json_batch [![Gem Version](https://badge.fury.io/rb/logstash-output-honeycomb_json_batch.svg)](https://badge.fury.io/rb/logstash-output-honeycomb_json_batch)
1
+ # logstash-output-honeycomb_json_batch
2
+
3
+ [![Build Status](https://travis-ci.org/honeycombio/logstash-output-honeycomb_json_batch.svg?branch=master)](https://travis-ci.org/honeycombio/logstash-output-honeycomb_json_batch)
4
+ [![Gem Version](https://badge.fury.io/rb/logstash-output-honeycomb_json_batch.svg)](https://badge.fury.io/rb/logstash-output-honeycomb_json_batch)
2
5
 
3
6
  A logstash plugin for interacting with [Honeycomb](https://honeycomb.io) at high volumes. (For more information about using Honeycomb, see [our docs](https://honeycomb.io/docs/).)
4
7
 
@@ -99,6 +102,6 @@ Travis will upload tagged releases to Rubygems. To release a new version
99
102
 
100
103
  1. Bump the value of `VERSION` in `lib/logstash/outputs/honeycomb_json_batch.rb`
101
104
  2. Bump the version in `logstash-output-honeycomb_json_batch.gemspec`
102
- 3. Commit changes and run `git tag v0.3.2` (for example)
105
+ 3. Commit changes and run `git tag v0.3.2 -m v0.3.2` (for example)
103
106
  4. `git push --follow-tags`
104
107
  5. Make sure the build succeeds.
@@ -28,7 +28,7 @@ class LogStash::Outputs::HoneycombJSONBatch < LogStash::Outputs::Base
28
28
 
29
29
  config :pool_max, :validate => :number, :default => 10
30
30
 
31
- VERSION = "0.4.0"
31
+ VERSION = "0.4.1"
32
32
 
33
33
  def register
34
34
  @total = 0
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-output-honeycomb_json_batch'
3
- s.version = '0.4.0'
3
+ s.version = '0.4.1'
4
4
  s.licenses = ['Apache-2.0']
5
5
  s.summary = "This output lets you `POST` batches of events to the Honeycomb.io API endpoint"
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/logstash-plugin install gemname. This gem is not a stand-alone program"
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
20
20
 
21
21
  # Gem dependencies
22
22
  s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
23
- s.add_runtime_dependency "logstash-mixin-http_client", ">= 2.2.1", "< 6.0.0"
23
+ s.add_runtime_dependency "logstash-mixin-http_client", ">= 2.2.1", "< 7.0.0"
24
24
 
25
25
  s.add_development_dependency 'logstash-devutils'
26
26
  end
@@ -87,7 +87,7 @@ describe LogStash::Outputs::HoneycombJSONBatch do
87
87
  expect(client).to receive(:post).
88
88
  with("#{ api_host }/1/batch/#{DATASET}", hash_including(:body => LogStash::Json.dump(
89
89
  [
90
- { "time" => event1.timestamp.to_s, "data" => { "alpha" => 1.0, "@version" => "1" } },
90
+ { "time" => event1.timestamp.to_s, "data" => { "@version" => "1", "alpha" => 1.0 } },
91
91
  { "time" => event2.timestamp.to_s, "data" => { "@version" => "1", "beta" => 2.0 } },
92
92
  { "time" => event3.timestamp.to_s, "data" => { "@version" => "1", "gamma" => 3.0 } }
93
93
  ]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-honeycomb_json_batch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Honeycomb
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-06-20 00:00:00.000000000 Z
11
+ date: 2018-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: logstash-core-plugin-api
@@ -39,7 +39,7 @@ dependencies:
39
39
  version: 2.2.1
40
40
  - - "<"
41
41
  - !ruby/object:Gem::Version
42
- version: 6.0.0
42
+ version: 7.0.0
43
43
  type: :runtime
44
44
  prerelease: false
45
45
  version_requirements: !ruby/object:Gem::Requirement
@@ -49,7 +49,7 @@ dependencies:
49
49
  version: 2.2.1
50
50
  - - "<"
51
51
  - !ruby/object:Gem::Version
52
- version: 6.0.0
52
+ version: 7.0.0
53
53
  - !ruby/object:Gem::Dependency
54
54
  name: logstash-devutils
55
55
  requirement: !ruby/object:Gem::Requirement
@@ -100,7 +100,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
100
100
  version: '0'
101
101
  requirements: []
102
102
  rubyforge_project:
103
- rubygems_version: 2.4.8
103
+ rubygems_version: 2.7.4
104
104
  signing_key:
105
105
  specification_version: 4
106
106
  summary: This output lets you `POST` batches of events to the Honeycomb.io API endpoint