-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #106 from MITLibraries/tco-87-scout
ScoutAPM
- Loading branch information
Showing
4 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# This configuration file is used for Scout APM. | ||
# Environment variables can also be used to configure Scout. See our help docs at https://scoutapm.com/docs/ruby/configuration#environment-variables for more information. | ||
common: &defaults | ||
|
||
# key: Your Organization key for Scout APM. Found on the settings screen. | ||
# - Default: none | ||
# key: We set this ENV `SCOUT_KEY` | ||
|
||
# log_level: Verboseness of logs. | ||
# - Default: 'info' | ||
# - Valid Options: debug, info, warn, error | ||
# log_level: debug | ||
# TIP: this can be set via ENV `SCOUT_LOG_LEVEL` to change without redeploy | ||
|
||
# use_prepend: Use the newer `prepend` instrumentation method. In some cases, gems | ||
# that use `alias_method` can conflict with gems that use `prepend`. | ||
# To avoid the conflict, change this setting to match the method | ||
# that the other gems use. | ||
# If you have another APM gem installed, such as DataDog or NewRelic, | ||
# you will likely want to set `use_prepend` to true. | ||
# | ||
# See https://scoutapm.com/docs/ruby/configuration#library-instrumentation-method | ||
# for more information. | ||
# - Default: false | ||
# - Valid Options: true, false | ||
# use_prepend: true | ||
|
||
# name: Application name in APM Web UI | ||
# - Default: the application names comes from the Rails or Sinatra class name | ||
# name: | ||
|
||
# monitor: Enable Scout APM or not | ||
# - Default: none | ||
# - Valid Options: true, false | ||
monitor: true | ||
|
||
production: | ||
<<: *defaults | ||
|
||
development: | ||
<<: *defaults | ||
monitor: false | ||
|
||
test: | ||
<<: *defaults | ||
monitor: false | ||
|
||
staging: | ||
<<: *defaults |