fluent-plugin-sentry-rubrik 0.0.9 → 0.0.10

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
  SHA1:
3
- metadata.gz: 89ff81f4dcf4a3acf71de89c3b29b78ad8f8f951
4
- data.tar.gz: d60f8e91e6258573ca128f379066e3c3b1d1a7e2
3
+ metadata.gz: 2ceeba4b727703fa63816c1eaca4086bf12d13d1
4
+ data.tar.gz: ac55b32dc671343685c744c21e53c93e469b654a
5
5
  SHA512:
6
- metadata.gz: c6f45a8c5f6bef95f20eaf2206c8fa027ae4b98adfdd5319f48df7110b0d2636024a035c5cbf04011cd63a040d16a6b78fd8622a83bb66901c14c6dd7539ef68
7
- data.tar.gz: c6766efc1b478646c32195031a177ed6f64e20fcbeb1268230b1efe321298bffdaf18a13c17728745070f76c14050cdd9c2dd9bfdf343556eebbbd1ef2f832fd
6
+ metadata.gz: 9d8b4cb85592bda9a1b792b537c2f605d32445b48c347adb47b24812e28f1c2f943c5633e8a4231b14861f38428f2c723ab57c9a876812467772c0487fc1b7b2
7
+ data.tar.gz: 6dd209bad668377119aaaed147b17bf7eba9bf1140d1ed577bf2b48532ee0507f16e48a2ea5de0299f775bef2045449630cd2a9d7de3c3e49cba0e80c2193f6e
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "fluent-plugin-sentry-rubrik"
7
- spec.version = "0.0.9"
7
+ spec.version = "0.0.10"
8
8
  spec.authors = ["Kentaro Yoshida", "François-Xavier Bourlet"]
9
9
  spec.email = ["y.ken.studio@gmail.com", "fx.bourlet@rubrik.com"]
10
10
  spec.summary = %q{Fluentd output plugin that sends aggregated errors/exception events to Sentry. Sentry is a event logging and aggregation platform.}
@@ -81,6 +81,8 @@ module Fluent
81
81
  return
82
82
  end
83
83
 
84
+ record["fluentd_tag"] = tag
85
+
84
86
  event = Raven::Event.new(
85
87
  :configuration => @configuration,
86
88
  :context => @context,
@@ -90,7 +92,6 @@ module Fluent
90
92
  :message => record['message'] || record['msg'] || "",
91
93
  )
92
94
  event.tags = event.tags
93
- .merge({ :fluentd_tag => tag })
94
95
  .merge(extract_tags(record))
95
96
  event.extra = record.reject{ |key| EVENT_KEYS.include?(key) }
96
97
  @client.send_event(event)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-sentry-rubrik
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kentaro Yoshida