Created
March 16, 2015 12:12
-
-
Save tal-moshayov/589803f80d2f1b6c765e to your computer and use it in GitHub Desktop.
newrelic configuration file
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
common: &default_settings | |
license_key: <%= ENV['NEW_RELIC_LICENSE_KEY'] %> | |
app_name: Silo | |
monitor_mode: true | |
developer_mode: false | |
log_level: info | |
browser_monitoring: | |
auto_instrument: true | |
audit_log: | |
enabled: false | |
capture_params: true | |
sidekiq.capture_params: true | |
transaction_tracer: | |
enabled: true | |
transaction_threshold: apdex_f | |
record_sql: obfuscated | |
stack_trace_threshold: 0.500 | |
capture_attributes: true | |
error_collector: | |
enabled: true | |
capture_source: true | |
ignore_errors: "ActionController::RoutingError,Sinatra::NotFound" | |
development: | |
<<: *default_settings | |
monitor_mode: false | |
developer_mode: true | |
app_name: Pot (Development) | |
test: | |
<<: *default_settings | |
monitor_mode: false | |
production: | |
<<: *default_settings | |
monitor_mode: true | |
app_name: Pot (Production) | |
staging: | |
<<: *default_settings | |
monitor_mode: true | |
app_name: Pot (Staging) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment