scout_apm 2.5.0 → 2.5.1

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
  SHA1:
3
- metadata.gz: 2003c0ac2f53ba79444a99beff51200791cadd27
4
- data.tar.gz: aaa6bac945f0c541a39e6326f79a1bbd4959a663
3
+ metadata.gz: 89a778c6a185b81e358249aef0f9420bec2d9cbc
4
+ data.tar.gz: d4f063fd0c52537c5780fab065052e3b1c989848
5
5
  SHA512:
6
- metadata.gz: 516804f4427ca84b89ae752964d6e38653c29698c1f833b4facec0ed784dde8e5212c11fdca62fc6f837a94a5cebabcd68130331f89816374881901d5382f750
7
- data.tar.gz: 07f51e83d3aa6b79d883113b430fd20a0814dcae613285be6f3547a588407f7aa5eb02d9b5972bf01b4c4ca8aaf3a9f2191ce0025afa016780d7a05caf65310c
6
+ metadata.gz: 2d46fa2cb57eb83c07c6a4b0552f9565834423b3af09402753524af2af81ff963d60a6b2fee6b19b8c786976baa61d67efc448477421f04f4fa0a84c5d97b3f2
7
+ data.tar.gz: 6db9909c632798dd5be1976577d74fc099a7587359a4af2736ae0c020240b4640cf8c6bbf2a165c299b7fe22c41d3fc5d2b73866d8c30a71809ced3a33019b78
@@ -1,3 +1,7 @@
1
+ # 2.5.1
2
+
3
+ * Decrease timeline trace span limit to 1,500 as an attempted workaround for [this bug](https://github.com/scoutapp/scout_apm_ruby/issues/267).
4
+
1
5
  # 2.5.0
2
6
 
3
7
  * Added timeline traces and an associated `timeline_traces: true` config option.
@@ -154,8 +154,9 @@ module ScoutApm
154
154
 
155
155
  # To prevent huge traces from being generated, we should stop collecting
156
156
  # spans as we go beyond some reasonably large count.
157
-
158
- MAX_SPANS = 2500
157
+ # Until the root cause of https://github.com/scoutapp/scout_apm_ruby/issues/267 is addressed,
158
+ # keep `MAX_SPANS` less than `DEFAULT_UNIQUE_CUTOFF`.
159
+ MAX_SPANS = 1500
159
160
 
160
161
  def over_span_limit?(spans)
161
162
  if spans.size > MAX_SPANS
@@ -1,3 +1,3 @@
1
1
  module ScoutApm
2
- VERSION = "2.5.0"
2
+ VERSION = "2.5.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scout_apm
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.0
4
+ version: 2.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Derek Haynes
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-06-21 00:00:00.000000000 Z
12
+ date: 2019-06-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: minitest