Using the instructions for Cedar on: 
http://devcenter.heroku.com/articles/newrelic

Created config/newrelic.yml and copied it from the above page.

# newrelic.yml
---
<%= ENV["RAILS_ENV"] %>:
  error_collector:
    capture_source: true
    enabled: true
    ignore_errors: ActionController::RoutingError
  apdex_t: 0.5
  ssl: false
  monitor_mode: true
  license_key: <%= ENV["NEW_RELIC_LICENSE_KEY"] %>
  developer_mode: false
  app_name: <%= ENV["NEW_RELIC_APPNAME"] %>
  transaction_tracer:
    record_sql: obfuscated
    enabled: true
    stack_trace_threshold: 0.5
    transaction_threshold: apdex_f
  capture_params: false
  log_level: info


But it results in an error on my development machine:
$ rails c
syntax error on line 0, col 1: `:'
<snip...>

Do I need to copy in the keys manually? or is it that I'm not
specifying the ENV["RAILS_ENV"] from the command line?

Or, do I just forget creating the newrelic.yml and Cedar will use a
default?

-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.

Reply via email to