Class: Raven::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/raven/configuration.rb

Constant Summary collapse

IGNORE_DEFAULT =
['ActiveRecord::RecordNotFound',
'ActionController::RoutingError',
'ActionController::InvalidAuthenticityToken',
'CGI::Session::CookieStore::TamperedWithCookie',
'ActionController::UnknownAction',
'AbstractController::ActionNotFound',
'Mongoid::Errors::DocumentNotFound']

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



73
74
75
76
77
78
79
80
81
82
83
84
# File 'lib/raven/configuration.rb', line 73

def initialize
  self.server = ENV['SENTRY_DSN'] if ENV['SENTRY_DSN']
  @context_lines = 3
  self.current_environment = ENV['RAILS_ENV'] || ENV['RACK_ENV'] || 'default'
  self.send_modules = true
  self.excluded_exceptions = IGNORE_DEFAULT
  self.processors = [Raven::Processor::SanitizeData]
  self.ssl_verification = false
  self.encoding = 'json'
  self.timeout = 1
  self.open_timeout = 1
end

Instance Attribute Details

#context_linesObject

Number of lines of code context to capture, or nil for none



32
33
34
# File 'lib/raven/configuration.rb', line 32

def context_lines
  @context_lines
end

#current_environmentObject

Returns the value of attribute current_environment.



58
59
60
# File 'lib/raven/configuration.rb', line 58

def current_environment
  @current_environment
end

#encodingObject

Encoding type for event bodies



26
27
28
# File 'lib/raven/configuration.rb', line 26

def encoding
  @encoding
end

#environmentsObject

Whitelist of environments that will send notifications to Sentry



35
36
37
# File 'lib/raven/configuration.rb', line 35

def environments
  @environments
end

#excluded_exceptionsObject

Which exceptions should never be sent



41
42
43
# File 'lib/raven/configuration.rb', line 41

def excluded_exceptions
  @excluded_exceptions
end

#hostObject

Returns the value of attribute host.



15
16
17
# File 'lib/raven/configuration.rb', line 15

def host
  @host
end

#http_adapterObject

The Faraday adapter to be used. Will default to Net::HTTP when not set.



61
62
63
# File 'lib/raven/configuration.rb', line 61

def http_adapter
  @http_adapter
end

#loggerObject

Logger to use internally



29
30
31
# File 'lib/raven/configuration.rb', line 29

def logger
  @logger
end

#open_timeoutObject

Timeout waiting for the connection to open in seconds



50
51
52
# File 'lib/raven/configuration.rb', line 50

def open_timeout
  @open_timeout
end

#pathObject

Returns the value of attribute path.



17
18
19
# File 'lib/raven/configuration.rb', line 17

def path
  @path
end

#portObject

Returns the value of attribute port.



16
17
18
# File 'lib/raven/configuration.rb', line 16

def port
  @port
end

#processorsObject

Processors to run on data before sending upstream



44
45
46
# File 'lib/raven/configuration.rb', line 44

def processors
  @processors
end

#project_idObject

Project ID number to send to the Sentry server



20
21
22
# File 'lib/raven/configuration.rb', line 20

def project_id
  @project_id
end

#project_rootObject

Project directory root



23
24
25
# File 'lib/raven/configuration.rb', line 23

def project_root
  @project_root
end

#public_keyObject

Public key for authentication with the Sentry server



8
9
10
# File 'lib/raven/configuration.rb', line 8

def public_key
  @public_key
end

#schemeObject

Accessors for the component parts of the DSN



14
15
16
# File 'lib/raven/configuration.rb', line 14

def scheme
  @scheme
end

#secret_keyObject

Secret key for authentication with the Sentry server



11
12
13
# File 'lib/raven/configuration.rb', line 11

def secret_key
  @secret_key
end

#send_modulesObject

Include module versions in reports?



38
39
40
# File 'lib/raven/configuration.rb', line 38

def send_modules
  @send_modules
end

#serverObject

Simple server string (setter provided below)



5
6
7
# File 'lib/raven/configuration.rb', line 5

def server
  @server
end

#server_nameObject

Returns the value of attribute server_name.



63
64
65
# File 'lib/raven/configuration.rb', line 63

def server_name
  @server_name
end

#sslObject

Ssl settings passed direactly to faraday’s ssl option



56
57
58
# File 'lib/raven/configuration.rb', line 56

def ssl
  @ssl
end

#ssl_verificationObject

Should the SSL certificate of the server be verified?



53
54
55
# File 'lib/raven/configuration.rb', line 53

def ssl_verification
  @ssl_verification
end

#timeoutObject

Timeout when waiting for the server to return data in seconds



47
48
49
# File 'lib/raven/configuration.rb', line 47

def timeout
  @timeout
end

Instance Method Details

#[](option) ⇒ Object

Allows config options to be read like a hash

Parameters:

  • option (Symbol)

    Key for a given attribute



118
119
120
# File 'lib/raven/configuration.rb', line 118

def [](option)
  send(option)
end

#send_in_current_environment?Boolean

Returns:

  • (Boolean)


126
127
128
129
130
131
132
# File 'lib/raven/configuration.rb', line 126

def send_in_current_environment?
  if environments
    environments.include?(current_environment)
  else
    !%w[test cucumber development].include?(current_environment)
  end
end