atatus 2.0.0 → 2.0.2

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
  SHA256:
3
- metadata.gz: 454ba0ab877ac91b387bb0d4b3355494c2707a56634cd97774b0bcdb3e2194a6
4
- data.tar.gz: dc8b8beca08a3a6ecc278c999d48ea7c316ac1fe8f5a221cd32df8a0bcd37262
3
+ metadata.gz: 7538f79c9ef6dcd54bdb9261016cc2f15e8e7a1593d35b5741245df2f64163a5
4
+ data.tar.gz: 50d08cb8e1d49319b1d8ab86046356c06d5805f42848e3ab1b2fd1aff5f6f6e6
5
5
  SHA512:
6
- metadata.gz: 8377d4e174399b782592ce39b48ca738a806a8b881fe045cb3586cdc232d1f9d29a3f99ec02ab27cddd8c84a3c250b9bf35ac1f1bbb5f82c94a4d7fb8f7db661
7
- data.tar.gz: 6bc01e9bec29bf52a0910abc465cbee55ca8c17dbd9bee531028d8ade630fa91517b06493c928aecfdd7cccee0bbc88cfeeff6ee143c758aec2e606d2f830367
6
+ metadata.gz: 8d93bf15d74fa86257e1ea0d6b7810b46694dec8a706b7c035b10a45e8653bee2f2259f644e60c9a11ab52bd854ecb313a646c518b86e33ed4dbdee9898b9b13
7
+ data.tar.gz: a6d4f440daa63e0f135b4d8dedf7321cf630696d5b0925d19555366e16d1a7d3807e30ac5a7f762a6a1a120f8e28aa40dc3a74914624a4ad3eeb6e91b76eda7b
data/CHANGELOG.md CHANGED
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## 2.0.2 (Mon, 27 May 2024)
8
+
9
+ - Fixed issue when trace sample fails in GCP Cloud
10
+
11
+
12
+ ## 2.0.1 (Mon, 12 Feb 2024)
13
+
14
+ - Fixed default logger to use Rails Logger instead of stdout
15
+
16
+
7
17
  ## 2.0.0 (Fri, 19 Jan 2024)
8
18
 
9
19
  - Change the instrumentation method to prepend mode.
data/lib/atatus/config.rb CHANGED
@@ -82,7 +82,7 @@ module Atatus
82
82
  option :instrumented_rake_tasks, type: :list, default: []
83
83
  option :log_ecs_reformatting, type: :string, default: 'off'
84
84
  option :log_level, type: :int, default: Logger::INFO, converter: LogLevelMap.new
85
- option :log_path, type: :string, default: '-'
85
+ option :log_path, type: :string
86
86
  option :metrics_interval, type: :int, default: '30s', converter: Duration.new
87
87
  option :pool_size, type: :int, default: 1
88
88
  option :proxy_address, type: :string
@@ -150,7 +150,7 @@ module Atatus
150
150
 
151
151
  transaction.done result
152
152
 
153
- if transaction.sampled? || @config.version < Config::ServerInfo::VERSION_8_0
153
+ if transaction.sampled?
154
154
  enqueue.call transaction
155
155
  end
156
156
 
@@ -19,5 +19,5 @@
19
19
 
20
20
  module Atatus
21
21
  AGENT_NAME = 'Ruby'
22
- VERSION = '2.0.0'
22
+ VERSION = '2.0.2'
23
23
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: atatus
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Atatus
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-19 00:00:00.000000000 Z
11
+ date: 2024-05-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby