Advertisement
saasbook

newrelic.yml

Apr 2nd, 2012
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. ---
  2. production:
  3. error_collector:
  4. capture_source: true
  5. enabled: true
  6. ignore_errors: ActionController::RoutingError
  7. apdex_t: 0.5
  8. ssl: false
  9. license_key: <%= ENV["NEW_RELIC_LICENSE_KEY"] %>
  10. monitor_mode: true
  11. developer_mode: false
  12. app_name: <%= ENV["NEW_RELIC_APP_NAME"] %>
  13. transaction_tracer:
  14. record_sql: obfuscated
  15. enabled: true
  16. stack_trace_threshold: 0.5
  17. transaction_threshold: apdex_f
  18. capture_params: false
  19. log_level: info
  20.  
  21. development:
  22. error_collector:
  23. capture_source: true
  24. enabled: true
  25. ignore_errors: ActionController::RoutingError
  26. apdex_t: 0.5
  27. ssl: false
  28. monitor_mode: false
  29. developer_mode: true
  30. transaction_tracer:
  31. record_sql: obfuscated
  32. enabled: true
  33. stack_trace_threshold: 0.5
  34. transaction_threshold: apdex_f
  35. capture_params: false
  36. log_level: info
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement