fluent-plugin-logzio 0.2.1 → 0.2.2

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: 1f0dd01a3030ad599d784e84b7e1032c37cd540f7b642ba39aecf87bfa90df9f
4
- data.tar.gz: '08e24b873ce51e284fad88609fa4ef81889f2bfb07b45d553b0a1a827d39a401'
3
+ metadata.gz: e0da0bf55c5bfb9fa2be53ab463cf574dc7f4d4a9ed7ce27673792fd77d28e4c
4
+ data.tar.gz: 5719288832c46368d224cc81dbf3466d1d57dd8fefcf1c5e045c5c3d3bea5f50
5
5
  SHA512:
6
- metadata.gz: 2529a44b97de6d8fd2cebee1664b8617531970596237bb4235148beccc1aee8ceebd22cde6cd220846c2289032dc58976777f7bd7e1598732c57b6d0167ccbae
7
- data.tar.gz: 8710e58b271bf793d5122df4290a9f15e02219ae45e2321f212956b7632e682a5f03ab0f0c3cdb494156109af3b2e1c2392fbac21623017a70a6597207f8fffc
6
+ metadata.gz: cff8e847bd1f7a38930c2b6849ff7b20007e7c421ebddce3932d640985b80c76394163c4a3af6d781b8a8feb1db5af6e9431057ab721ccca2578534cb8162900
7
+ data.tar.gz: 5b9876c7367cd3b6eb7b83a4a33c79bc66bbb05190f36536ccd26122fd99c8855d81aa39767577f37c4ba2a112663088f7c94b76d36a39b59937af990916490a
data/README.md CHANGED
@@ -82,16 +82,19 @@ This is an **example** only. Your needs in production may vary!
82
82
 
83
83
 
84
84
  ## Release Notes
85
+ - **0.2.2**:
86
+ - Bug fix - add require for prometheus client.
85
87
  - **0.2.1**:
86
88
  - Do not retry on 400 and 401. For 400 - try to fix log and resend.
87
89
  - Generate a metric (`logzio_status_codes`) for response codes from Logz.io.
88
- - **0.2.0**: N/A - version was yanked. Please refer to **0.2.1**.
89
- - **0.1.0**:
90
- - Use fluentd's retry instead of retry in code (raise exception on non-2xx response).
90
+
91
91
 
92
92
  <details>
93
93
  <summary markdown="span"> Expand to check old versions </summary>
94
94
 
95
+ - **0.2.0**: N/A - version was yanked. Please refer to **0.2.1**.
96
+ - **0.1.0**:
97
+ - Use fluentd's retry instead of retry in code (raise exception on non-2xx response).
95
98
  - 0.0.22: Update gem `net-http-persistent` to 4.x.
96
99
  - 0.0.21: Update gem `net-http-persistent` to 3.x.
97
100
  - 0.0.20: Support gzip compression
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = 'fluent-plugin-logzio'
7
- s.version = '0.2.1'
7
+ s.version = '0.2.2'
8
8
  s.authors = ['Yury Kotov', 'Roi Rav-Hon', 'Arcadiy Ivanov', 'Miri Bar']
9
9
  s.email = ['bairkan@gmail.com', 'roi@logz.io', 'arcadiy@ivanov.biz', 'miri.ignatiev@logz.io']
10
10
  s.homepage = 'https://github.com/logzio/fluent-plugin-logzio'
@@ -2,6 +2,7 @@ require 'time'
2
2
  require 'fluent/plugin/output'
3
3
  require 'zlib'
4
4
  require 'stringio'
5
+ require 'prometheus/client'
5
6
 
6
7
  module Fluent::Plugin
7
8
  class LogzioOutputBuffered < Output
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-logzio
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yury Kotov
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2023-07-13 00:00:00.000000000 Z
14
+ date: 2023-07-23 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: net-http-persistent