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 +4 -4
- data/CHANGELOG.markdown +1 -5
- data/lib/scout_apm/config.rb +3 -3
- data/lib/scout_apm/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ab8171fe01697f83d482fe4de6f9adf5362bd7e0
|
|
4
|
+
data.tar.gz: 1769b4fb75335f58c6c23e72b53f34b1748c584e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 874b8ecc93712deb4067b4c1b3c14c2a5449d9f2374dc18b881ca8e278681803c88d7f96eabb95b04a670ab57c036459044487058974eaddd66897ea83e0dd16
|
|
7
|
+
data.tar.gz: 5fb6e5098f9db249fb57b549525d4e25b8d590837f052eb4dc43ebdb6b9205d142806be17204fa325ffe78affdcc6e1829913d049ab3b82245e1af171897ddd7
|
data/CHANGELOG.markdown
CHANGED
data/lib/scout_apm/config.rb
CHANGED
|
@@ -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
|
|
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)
|
data/lib/scout_apm/version.rb
CHANGED