contrast / exceptional

This URL has Read+Write access

exceptional / exceptional.yml
100644 35 lines (30 sloc) 1.275 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# here are the settings that are common to all environments
common: &default_settings
  # You must specify your Exceptional API key here.
  api-key: PASTE_YOUR_API_KEY_HERE
  # Exceptional creates a separate log file from your application's logs
  # available levels are debug, info, warn, error, fatal
  log-level: info
  # The exceptional agent sends data via regular http by default
  # Setting this value to true will send data over SSL, increasing security
  # There will be an additional CPU overhead in encrypting the data, however
  # as long as your deployment environment is not Passenger (mod_rails), this
  # happens in the background so as not to incur a page wait for your users.
  ssl: false
  
development:
  <<: *default_settings
  # Normally no reason to collect exceptions in development
  # NOTE: for trial purposes you may want to enable exceptional in development
  enabled: false
  
test:
  <<: *default_settings
  # No reason to collect exceptions when running tests by default
  enabled: false
 
production:
  <<: *default_settings
  enabled: true
 
staging:
  # It's common development practice to have a staging environment that closely
  # mirrors production, by default catch errors in this environment too.
  <<: *default_settings
  enabled: true