Class: NewRelic::NoticedError

Inherits:
Object
  • Object
show all
Defined in:
lib/new_relic/noticed_error.rb

Overview

This class encapsulates an error that was noticed by RPM in a managed app.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path, data, exception, timestamp = Time.now) ⇒ NoticedError

Returns a new instance of NoticedError.



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/new_relic/noticed_error.rb', line 5

def initialize(path, data, exception, timestamp = Time.now)
  self.path = path
  self.params = data
  
  self.exception_class = exception ? exception.class.name : '<no exception>'
  
  if exception.respond_to?('original_exception')
    self.message = exception.original_exception.message.to_s
  else
    self.message = (exception || '<no message>').to_s
  end
  
  # clamp long messages to 4k so that we don't send a lot of
  # overhead across the wire
  self.message = self.message[0..4095] if self.message.length > 4096

  self.timestamp = timestamp
end

Instance Attribute Details

#exception_classObject

Returns the value of attribute exception_class.



3
4
5
# File 'lib/new_relic/noticed_error.rb', line 3

def exception_class
  @exception_class
end

#messageObject

Returns the value of attribute message.



3
4
5
# File 'lib/new_relic/noticed_error.rb', line 3

def message
  @message
end

#paramsObject

Returns the value of attribute params.



3
4
5
# File 'lib/new_relic/noticed_error.rb', line 3

def params
  @params
end

#pathObject

Returns the value of attribute path.



3
4
5
# File 'lib/new_relic/noticed_error.rb', line 3

def path
  @path
end

#timestampObject

Returns the value of attribute timestamp.



3
4
5
# File 'lib/new_relic/noticed_error.rb', line 3

def timestamp
  @timestamp
end