Class: Bugsnag::Middleware::SessionData
- Inherits:
-
Object
- Object
- Bugsnag::Middleware::SessionData
- Defined in:
- lib/bugsnag/middleware/session_data.rb
Overview
Attaches information about current session to an error report
Instance Method Summary collapse
- #call(report) ⇒ Object
-
#initialize(bugsnag) ⇒ SessionData
constructor
A new instance of SessionData.
Constructor Details
#initialize(bugsnag) ⇒ SessionData
Returns a new instance of SessionData.
5 6 7 |
# File 'lib/bugsnag/middleware/session_data.rb', line 5 def initialize(bugsnag) @bugsnag = bugsnag end |
Instance Method Details
#call(report) ⇒ Object
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/bugsnag/middleware/session_data.rb', line 9 def call(report) session = Bugsnag::SessionTracker.get_current_session if session && !session[:paused?] if report.unhandled session[:events][:unhandled] += 1 else session[:events][:handled] += 1 end report.session = session end @bugsnag.call(report) end |