Class: Raven::Instance
- Inherits:
-
Object
- Object
- Raven::Instance
- Defined in:
- lib/raven/instance.rb
Overview
A copy of Raven’s base module class methods, minus some of the integration and global hooks since it’s meant to be used explicitly. Useful for sending errors to multiple sentry projects in a large application.
Instance Attribute Summary collapse
-
#client ⇒ Object
The client object is responsible for delivering formatted data to the Sentry server.
-
#configuration ⇒ Object
The configuration object.
Instance Method Summary collapse
-
#annotate_exception(exc, options = {}) ⇒ Object
Provides extra context to the exception prior to it being handled by Raven.
- #breadcrumbs ⇒ Object
-
#capture(options = {}) ⇒ Object
Capture and process any exceptions from the given block.
- #capture_type(obj, options = {}) ⇒ Object
-
#configure {|configuration| ... } ⇒ Object
Call this method to modify defaults in your initializers.
- #context ⇒ Object
-
#extra_context(options = nil) ⇒ Object
Bind extra context.
-
#initialize(context = nil) ⇒ Instance
constructor
A new instance of Instance.
- #last_event_id ⇒ Object
- #logger ⇒ Object
- #rack_context(env) ⇒ Object
-
#report_status ⇒ Object
Tell the log that the client is good to go.
-
#send_event(event) ⇒ Object
Send an event to the configured Sentry server.
-
#tags_context(options = nil) ⇒ Object
Bind tags context.
-
#user_context(options = nil) ⇒ Object
Bind user context.
Constructor Details
#initialize(context = nil) ⇒ Instance
Returns a new instance of Instance.
33 34 35 |
# File 'lib/raven/instance.rb', line 33 def initialize(context = nil) @context = @explicit_context = context end |
Instance Attribute Details
#client ⇒ Object
The client object is responsible for delivering formatted data to the Sentry server.
57 58 59 |
# File 'lib/raven/instance.rb', line 57 def client @client ||= Client.new(configuration) end |
#configuration ⇒ Object
The configuration object.
51 52 53 |
# File 'lib/raven/instance.rb', line 51 def configuration @configuration ||= Configuration.new end |
Instance Method Details
#annotate_exception(exc, options = {}) ⇒ Object
Provides extra context to the exception prior to it being handled by Raven. An exception can have multiple annotations, which are merged together.
The options (annotation) is treated the same as the “options“ parameter to “capture_exception“ or “Event.from_exception“, and can contain the same “:user“, “:tags“, etc. options as these methods.
These will be merged with the “options“ parameter to “Event.from_exception“ at the top of execution.
157 158 159 160 161 162 |
# File 'lib/raven/instance.rb', line 157 def annotate_exception(exc, = {}) notes = (exc.instance_variable_defined?(:@__raven_context) && exc.instance_variable_get(:@__raven_context)) || {} notes.merge!() exc.instance_variable_set(:@__raven_context, notes) exc end |
#breadcrumbs ⇒ Object
203 204 205 |
# File 'lib/raven/instance.rb', line 203 def BreadcrumbBuffer.current end |
#capture(options = {}) ⇒ Object
Capture and process any exceptions from the given block.
100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
# File 'lib/raven/instance.rb', line 100 def capture( = {}) if block_given? begin yield rescue Error raise # Don't capture Raven errors rescue Exception => e capture_type(e, ) raise end else install_at_exit_hook() end end |
#capture_type(obj, options = {}) ⇒ Object
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
# File 'lib/raven/instance.rb', line 115 def capture_type(obj, = {}) unless configuration.capture_allowed?(obj) Raven.logger.debug("#{obj} excluded from capture due to environment or should_capture callback") return false end = obj.is_a?(String) ? "message" : "exception" if (evt = Event.send("from_" + , obj, )) yield evt if block_given? if configuration.async? configuration.async.call(evt) else send_event(evt) end Thread.current["sentry_#{object_id}_last_event_id".to_sym] = evt.id evt end end |
#configure {|configuration| ... } ⇒ Object
Call this method to modify defaults in your initializers.
77 78 79 80 81 82 83 |
# File 'lib/raven/instance.rb', line 77 def configure yield(configuration) if block_given? self.client = Client.new(configuration) report_status client end |
#context ⇒ Object
37 38 39 40 41 42 43 |
# File 'lib/raven/instance.rb', line 37 def context if @explicit_context @context ||= Context.new else Context.current end end |
#extra_context(options = nil) ⇒ Object
Bind extra context. Merges with existing context (if any).
Extra context shows up as Additional Data within Sentry, and is completely arbitrary.
193 194 195 |
# File 'lib/raven/instance.rb', line 193 def extra_context( = nil) context.extra.merge!( || {}) end |
#last_event_id ⇒ Object
134 135 136 |
# File 'lib/raven/instance.rb', line 134 def last_event_id Thread.current["sentry_#{object_id}_last_event_id".to_sym] end |
#logger ⇒ Object
45 46 47 |
# File 'lib/raven/instance.rb', line 45 def logger @logger ||= Logger.new end |
#rack_context(env) ⇒ Object
197 198 199 200 201 |
# File 'lib/raven/instance.rb', line 197 def rack_context(env) env = nil if env.empty? context.rack_env = env end |
#report_status ⇒ Object
Tell the log that the client is good to go
62 63 64 65 66 67 68 69 |
# File 'lib/raven/instance.rb', line 62 def report_status return if configuration.silence_ready if configuration.capture_in_current_environment? logger.info "Raven #{VERSION} ready to catch errors" else logger.info "Raven #{VERSION} configured not to capture errors." end end |
#send_event(event) ⇒ Object
Send an event to the configured Sentry server
90 91 92 |
# File 'lib/raven/instance.rb', line 90 def send_event(event) client.send_event(event) end |
#tags_context(options = nil) ⇒ Object
Bind tags context. Merges with existing context (if any).
Tags are key / value pairs which generally represent things like application version, environment, role, and server names.
182 183 184 |
# File 'lib/raven/instance.rb', line 182 def ( = nil) context..merge!( || {}) end |
#user_context(options = nil) ⇒ Object
Bind user context. Merges with existing context (if any).
It is recommending that you send at least the “id“ and “email“ values. All other values are arbitrary.
171 172 173 |
# File 'lib/raven/instance.rb', line 171 def user_context( = nil) context.user = || {} end |