fluent-plugin-newrelic 0.2.3 → 0.2.4

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
  SHA256:
3
- metadata.gz: c9f345b370976aeb0eeefe07a17d39ab4ec51b4a896e130736fee0a0816815ed
4
- data.tar.gz: 642c8efc84ea1a3aeed227079e4d73123e26d278a50f272d113d039214fbb174
3
+ metadata.gz: fee9e5d8ce77d5a79877171c346a8205752889e547b3857bb02c53355b3f4ec8
4
+ data.tar.gz: 7748b0e7317195d9457a8f9a4edc91b80b204e8fe4412f84c129f14910edd195
5
5
  SHA512:
6
- metadata.gz: 83444d5d3b4918088ed1356b45a7b4a0e054541fc199a895effbf5337712e0572617e36b09d0904ce0f00be34e101d647d97b56910a833304fe606352b7e1743
7
- data.tar.gz: dcd3b6db1cbfc9e1a4e2d7c2967ee0cc4a096bc96f9004ecc9e28cf14565ebca37912a301bdd7206fa9cb5d1d0b553ec09e2afd68949bc4466b775cf20433acf
6
+ metadata.gz: 7a10534bb6459af4f099ff07d61fb731ed127a550de3a022eb524d7e74919656586f3b9d3cd59741c2f2d1ba4a466aeecb5fcee858c6b4988a0d3d3cc99df96d
7
+ data.tar.gz: 88bbdf3a4b55d58281acb1b32b4b92cc66dae25daae42c48e9dbb0222ce4bdd21f8fb61ec8f2a857563a0883cedc2ab57a08efa9c2f6e1f2f65d97db89abd364
@@ -79,7 +79,6 @@ module Fluent
79
79
 
80
80
  def write(chunk)
81
81
  payload = {
82
- 'logs' => [],
83
82
  'common' => {
84
83
  'attributes' => {
85
84
  'plugin' => {
@@ -87,7 +86,8 @@ module Fluent
87
86
  'version' => NewrelicFluentdOutput::VERSION,
88
87
  }
89
88
  }
90
- }
89
+ },
90
+ 'logs' => []
91
91
  }
92
92
  chunk.msgpack_each do |ts, record|
93
93
  next unless record.is_a? Hash
@@ -1,3 +1,3 @@
1
1
  module NewrelicFluentdOutput
2
- VERSION = "0.2.3"
2
+ VERSION = "0.2.4"
3
3
  end
@@ -10,10 +10,6 @@ Gem::Specification.new do |spec|
10
10
  spec.licenses = ['Apache-2.0']
11
11
  spec.email = ["logging-team@newrelic.com"]
12
12
 
13
- # if spec.respond_to?(:metadata)
14
- # spec.metadata['allowed_push_host'] = "https://artifacts.datanerd.us/api/gems/newrelic-gems-local/"
15
- # end
16
-
17
13
  spec.summary = "Sends FluentD events to New Relic"
18
14
  spec.homepage = "https://github.com/newrelic/newrelic-fluentd-output"
19
15
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-newrelic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - New Relic Logging Team