Sha256: 4d0ffd63215c6bec9ff347c61d9d284101f4f6cf6dca0547115f1ca33d96b6b9
Contents?: true
Size: 774 Bytes
Versions: 5
Compression:
Stored size: 774 Bytes
Contents
# This class encapsulates an error that was noticed by RPM in a managed app. class NewRelic::NoticedError attr_accessor :path, :timestamp, :params, :exception_class, :message 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 end
Version data entries
5 entries across 5 versions & 2 rubygems