Skip to content

Instantly share code, notes, and snippets.

@tal-moshayov
Created March 16, 2015 12:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tal-moshayov/589803f80d2f1b6c765e to your computer and use it in GitHub Desktop.
Save tal-moshayov/589803f80d2f1b6c765e to your computer and use it in GitHub Desktop.
newrelic configuration file
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