scout_apm 1.3.2 → 1.3.3

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: b6e9820a7bcdbc4c94bbedae2d7e19831ef56aa0
4
- data.tar.gz: b7361a9247242c4ed54cabdcc9b85229cb59c249
3
+ metadata.gz: ab8171fe01697f83d482fe4de6f9adf5362bd7e0
4
+ data.tar.gz: 1769b4fb75335f58c6c23e72b53f34b1748c584e
5
5
  SHA512:
6
- metadata.gz: 268606af08b85bae2b736ab2d8165b4b6ee6ca262a4bd1bcc0493e1ef0543cd2e357b67ccac3bb0e9924dc33afd6ed2a650134b88f9f66253a2cf0a3c656b954
7
- data.tar.gz: b6ff74684d48ead62b66f653737d024659d63e20aca1d8d36d9367b347d895c9af64022197e1839a2f9056c7bd4ae08082542ebdc606f67e1f13aebf99e7a81d
6
+ metadata.gz: 874b8ecc93712deb4067b4c1b3c14c2a5449d9f2374dc18b881ca8e278681803c88d7f96eabb95b04a670ab57c036459044487058974eaddd66897ea83e0dd16
7
+ data.tar.gz: 5fb6e5098f9db249fb57b549525d4e25b8d590837f052eb4dc43ebdb6b9205d142806be17204fa325ffe78affdcc6e1829913d049ab3b82245e1af171897ddd7
data/CHANGELOG.markdown CHANGED
@@ -1,8 +1,4 @@
1
- # 1.3.2
2
-
3
- * Switch reporting payload version over to JSON
4
-
5
- # 1.3.1
1
+ # 1.3.3
6
2
 
7
3
  * Handling nil scope in LayerSlowTransactionConverter
8
4
 
@@ -14,7 +14,7 @@ require 'scout_apm/environment'
14
14
  # monitor - true or false. False prevents any instrumentation from starting
15
15
  # name - override the name reported to APM. This is the name that shows in the Web UI
16
16
  # uri_reporting - 'path' or 'full_path' default is 'full_path', which reports URL params as well as the path.
17
- # report_format - 'json' or 'marshal'. Marshal was default pre 1.3.2, Json is default 1.3.2 and onward.
17
+ # report_format - 'json' or 'marshal'. Marshal is currently the default; json processing is in beta
18
18
  #
19
19
  # Any of these config settings can be set with an environment variable prefixed
20
20
  # by SCOUT_ and uppercasing the key: SCOUT_LOG_LEVEL for instance.
@@ -25,8 +25,8 @@ module ScoutApm
25
25
  'host' => 'https://checkin.scoutapp.com',
26
26
  'log_level' => 'info',
27
27
  'stackprof_interval' => 20000, # microseconds, 1000 = 1 millisecond, so 20k == 20 milliseconds
28
- 'uri_reporting' => 'full_path',
29
- 'report_format' => 'json'
28
+ 'uri_reporting' => 'full_path'
29
+ # 'report_format' => 'json' # coming soon!
30
30
  }.freeze
31
31
 
32
32
  def initialize(config_path = nil)
@@ -1,4 +1,4 @@
1
1
  module ScoutApm
2
- VERSION = "1.3.2"
2
+ VERSION = "1.3.3"
3
3
  end
4
4
 
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: 1.3.2
4
+ version: 1.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Derek Haynes