fluent-plugin-sentry-rubrik 0.0.7 → 0.0.8

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: d71074f8836535ee9be119601be0287aac092270
4
- data.tar.gz: 7b339e7edbe8fffc89ed2ca736a29abb11a06d52
3
+ metadata.gz: e0aa42fe29d4832c73a3e63e53c786b4f534236e
4
+ data.tar.gz: 0dcb9b95cb48eb12342521ed9b42433f4940f009
5
5
  SHA512:
6
- metadata.gz: e90ef1d2a7b4ee5f9acb8066917cc3ff2d70a9f89128c1a660f74839e4cdf4c639e0684ea26e035eb74a9a03bde9150ca47a3f20d67d5145e631c811a1953442
7
- data.tar.gz: e184daa57b9f6d560d06e320bdbbb1864c5aa273e6463b92c437ae48f3ee0128d5b7e814a90e3948f2095f74fa12e1c7758ed769bf9729247a0258c80cdc88b4
6
+ metadata.gz: cf104e493d3ccf8ec1aa71fbf303f4b5b65d3397ce7a0d4d1fbe81c1c65fb2d6e67c49e5cdbbae4a0cb8b66d7bdfa9324f643392a202772bfa2c3cfd10495a62
7
+ data.tar.gz: 61188e0fdb977d9a3b182b0ef47511920132a3430f8c598eb585476db417e51fef6c79265ce80b9685fcb638cd03297dcf6503124af71867eb97bcc066c25b8d
@@ -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.7"
7
+ spec.version = "0.0.8"
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.}
@@ -9,13 +9,13 @@ module Fluent
9
9
 
10
10
  include Fluent::HandleTagNameMixin
11
11
 
12
- LOG_LEVEL = %w(fatal error warning info debug).to_set()
12
+ LOG_LEVEL = %w(fatal error warn warning info debug).to_set()
13
13
  EVENT_KEYS = %w(message msg timestamp level logger).to_set()
14
14
  DEFAULT_HOSTNAME_COMMAND = 'hostname'
15
15
 
16
16
  config_param :default_level, :string, :default => 'info'
17
17
  config_param :default_logger, :string, :default => 'fluentd'
18
- config_param :report_levels, :array, value_type: :string, :default => %w(fatal error warning)
18
+ config_param :report_levels, :array, value_type: :string, :default => %w(fatal error warn warning)
19
19
  config_param :tags_key, :array, value_type: :string, :default => %w()
20
20
  config_param :endpoint_url, :string
21
21
  config_param :flush_interval, :time, :default => 0
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.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kentaro Yoshida