Class: SemanticLogger::Log
- Inherits:
-
Object
- Object
- SemanticLogger::Log
- Defined in:
- lib/semantic_logger/log.rb
Overview
Log
Class to hold all log entry information
level
Log level of the supplied log call
:trace, :debug, :info, :warn, :error, :fatal
thread_name
Name of the thread in which the logging call was called
name
Class name supplied to the logging instance
message
Text to be logged
payload
Optional Hash or Ruby Exception object to be logged
time
The time at which the log entry was created
duration
The time taken to complete a measure call
tags
Any tags active on the thread when the log call was made
level_index
Internal index of the log level
exception
Ruby Exception object to log
metric [Object]
Object supplied when measure_x was called
backtrace [Array<String>]
The backtrace captured at source when the log level >= SemanticLogger.backtrace_level
metric_amount [Numeric]
Used for numeric or counter metrics.
For example, the number of inquiries or, the amount purchased etc.
context [Hash]
Named contexts that were captured when the log entry was created.
Constant Summary collapse
- NON_PAYLOAD_KEYS =
Keys passed in without a payload that will be extracted and the remainder passed into the payload.
%i[message exception backtrace exception duration min_duration log_exception on_exception_level metric metric_amount dimensions].freeze
- MAX_EXCEPTIONS_TO_UNWRAP =
5
- CALLER_REGEXP =
/^(.*):(\d+).*/.freeze
Instance Attribute Summary collapse
-
#backtrace ⇒ Object
Returns the value of attribute backtrace.
-
#context ⇒ Object
Returns the value of attribute context.
-
#dimensions ⇒ Object
Returns the value of attribute dimensions.
-
#duration ⇒ Object
Returns the value of attribute duration.
-
#exception ⇒ Object
Returns the value of attribute exception.
-
#level ⇒ Object
Returns the value of attribute level.
-
#level_index ⇒ Object
Returns the value of attribute level_index.
-
#message ⇒ Object
Returns the value of attribute message.
-
#metric ⇒ Object
Returns the value of attribute metric.
-
#metric_amount ⇒ Object
Returns the value of attribute metric_amount.
-
#name ⇒ Object
Returns the value of attribute name.
-
#named_tags ⇒ Object
Returns the value of attribute named_tags.
-
#payload ⇒ Object
Returns the value of attribute payload.
-
#tags ⇒ Object
Returns the value of attribute tags.
-
#thread_name ⇒ Object
Returns the value of attribute thread_name.
-
#time ⇒ Object
Returns the value of attribute time.
Instance Method Summary collapse
-
#assign(message: nil, payload: nil, min_duration: 0.0, exception: nil, metric: nil, metric_amount: nil, duration: nil, backtrace: nil, log_exception: :full, on_exception_level: nil, dimensions: nil) ⇒ Object
Assign named arguments to this log entry, supplying defaults where applicable.
-
#assign_hash(hash) ⇒ Object
Assign known keys to self, all other keys to the payload.
-
#backtrace_to_s ⇒ Object
Returns [String] the exception backtrace including all of the child / caused by exceptions.
-
#cleansed_message ⇒ Object
Strip the standard Rails colorizing from the logged message.
-
#duration_human ⇒ Object
Returns [String] the duration in human readable form.
- #duration_to_s ⇒ Object
-
#each_exception ⇒ Object
Call the block for exception and any nested exception.
-
#extract_arguments(payload, message = nil) ⇒ Object
Extract the arguments from a Hash Payload.
-
#extract_file_and_line(stack, short_name = false) ⇒ Object
Extract the filename and line number from the last entry in the supplied backtrace.
-
#file_name_and_line(short_name = false) ⇒ Object
Returns [String, String] the file_name and line_number from the backtrace supplied in either the backtrace or exception.
-
#initialize(name, level, index = nil) ⇒ Log
constructor
A new instance of Log.
-
#level_to_s ⇒ Object
Returns [String] single character upper case log level.
-
#metric_only? ⇒ Boolean
A metric only event has a metric but no message or exception.
-
#payload? ⇒ Boolean
Returns [true|false] whether the log entry has a payload.
-
#payload_to_s ⇒ Object
Return the payload in text form Returns nil if payload is missing or empty.
-
#process_info(thread_name_length = 30) ⇒ Object
DEPRECATED.
-
#set_context(key, value) ⇒ Object
Lazy initializes the context hash and assigns a key value pair.
- #to_h(host = SemanticLogger.host, application = SemanticLogger.application, environment = SemanticLogger.environment) ⇒ Object
Constructor Details
#initialize(name, level, index = nil) ⇒ Log
Returns a new instance of Log.
61 62 63 64 65 66 67 68 69 |
# File 'lib/semantic_logger/log.rb', line 61 def initialize(name, level, index = nil) @level = level @thread_name = Thread.current.name @name = name @time = Time.now @tags = SemanticLogger. @named_tags = SemanticLogger. @level_index = index.nil? ? Levels.index(level) : index end |
Instance Attribute Details
#backtrace ⇒ Object
Returns the value of attribute backtrace.
56 57 58 |
# File 'lib/semantic_logger/log.rb', line 56 def backtrace @backtrace end |
#context ⇒ Object
Returns the value of attribute context.
56 57 58 |
# File 'lib/semantic_logger/log.rb', line 56 def context @context end |
#dimensions ⇒ Object
Returns the value of attribute dimensions.
56 57 58 |
# File 'lib/semantic_logger/log.rb', line 56 def dimensions @dimensions end |
#duration ⇒ Object
Returns the value of attribute duration.
56 57 58 |
# File 'lib/semantic_logger/log.rb', line 56 def duration @duration end |
#exception ⇒ Object
Returns the value of attribute exception.
56 57 58 |
# File 'lib/semantic_logger/log.rb', line 56 def exception @exception end |
#level ⇒ Object
Returns the value of attribute level.
56 57 58 |
# File 'lib/semantic_logger/log.rb', line 56 def level @level end |
#level_index ⇒ Object
Returns the value of attribute level_index.
56 57 58 |
# File 'lib/semantic_logger/log.rb', line 56 def level_index @level_index end |
#message ⇒ Object
Returns the value of attribute message.
56 57 58 |
# File 'lib/semantic_logger/log.rb', line 56 def @message end |
#metric ⇒ Object
Returns the value of attribute metric.
56 57 58 |
# File 'lib/semantic_logger/log.rb', line 56 def metric @metric end |
#metric_amount ⇒ Object
Returns the value of attribute metric_amount.
56 57 58 |
# File 'lib/semantic_logger/log.rb', line 56 def metric_amount @metric_amount end |
#name ⇒ Object
Returns the value of attribute name.
56 57 58 |
# File 'lib/semantic_logger/log.rb', line 56 def name @name end |
#named_tags ⇒ Object
Returns the value of attribute named_tags.
56 57 58 |
# File 'lib/semantic_logger/log.rb', line 56 def @named_tags end |
#payload ⇒ Object
Returns the value of attribute payload.
56 57 58 |
# File 'lib/semantic_logger/log.rb', line 56 def payload @payload end |
#tags ⇒ Object
Returns the value of attribute tags.
56 57 58 |
# File 'lib/semantic_logger/log.rb', line 56 def @tags end |
#thread_name ⇒ Object
Returns the value of attribute thread_name.
56 57 58 |
# File 'lib/semantic_logger/log.rb', line 56 def thread_name @thread_name end |
#time ⇒ Object
Returns the value of attribute time.
56 57 58 |
# File 'lib/semantic_logger/log.rb', line 56 def time @time end |
Instance Method Details
#assign(message: nil, payload: nil, min_duration: 0.0, exception: nil, metric: nil, metric_amount: nil, duration: nil, backtrace: nil, log_exception: :full, on_exception_level: nil, dimensions: nil) ⇒ Object
Assign named arguments to this log entry, supplying defaults where applicable
Returns [true|false] whether this log entry should be logged
Example:
logger.info(name: 'value')
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 |
# File 'lib/semantic_logger/log.rb', line 77 def assign(message: nil, payload: nil, min_duration: 0.0, exception: nil, metric: nil, metric_amount: nil, duration: nil, backtrace: nil, log_exception: :full, on_exception_level: nil, dimensions: nil) self. = self.payload = payload self.duration = duration self.metric = metric self.metric_amount = metric_amount self.dimensions = dimensions if exception case log_exception when :full self.exception = exception when :partial self. = "#{} -- Exception: #{exception.class}: #{exception.}" when nil, :none # Log the message without the exception that was raised nil else raise(ArgumentError, "Invalid value:#{log_exception.inspect} for argument :log_exception") end # On exception change the log level if on_exception_level self.level = on_exception_level self.level_index = Levels.index(level) end end # Elastic logging: Log when :duration exceeds :min_duration # Except if there is an exception when it will always be logged return false if duration && ((duration < min_duration) && exception.nil?) if backtrace self.backtrace = Utils.extract_backtrace(backtrace) elsif level_index >= SemanticLogger.backtrace_level_index self.backtrace = Utils.extract_backtrace(caller) end true end |
#assign_hash(hash) ⇒ Object
Assign known keys to self, all other keys to the payload.
129 130 131 132 133 134 135 136 137 138 139 140 |
# File 'lib/semantic_logger/log.rb', line 129 def assign_hash(hash) self.payload ||= {} hash.each_pair do |key, value| if respond_to?("#{key}=".to_sym) public_send("#{key}=".to_sym, value) else payload[key] = value end end self.payload = nil if payload.empty? self end |
#backtrace_to_s ⇒ Object
Returns [String] the exception backtrace including all of the child / caused by exceptions
191 192 193 194 195 196 197 198 199 200 201 |
# File 'lib/semantic_logger/log.rb', line 191 def backtrace_to_s trace = "" each_exception do |exception, i| if i.zero? trace = (exception.backtrace || []).join("\n") else trace << "\nCause: #{exception.class.name}: #{exception.}\n#{(exception.backtrace || []).join("\n")}" end end trace end |
#cleansed_message ⇒ Object
Strip the standard Rails colorizing from the logged message
269 270 271 |
# File 'lib/semantic_logger/log.rb', line 269 def .to_s.gsub(/(\e(\[([\d;]*[mz]?))?)?/, "").strip end |
#duration_human ⇒ Object
Returns [String] the duration in human readable form
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 |
# File 'lib/semantic_logger/log.rb', line 219 def duration_human return nil unless duration seconds = duration / 1000 if seconds >= 86_400.0 # 1 day "#{(seconds / 86_400).to_i}d #{Time.at(seconds).utc.strftime('%-Hh %-Mm')}" elsif seconds >= 3600.0 # 1 hour Time.at(seconds).utc.strftime("%-Hh %-Mm") elsif seconds >= 60.0 # 1 minute Time.at(seconds).utc.strftime("%-Mm %-Ss") elsif seconds >= 1.0 # 1 second "#{format('%.3f', seconds)}s" else duration_to_s end end |
#duration_to_s ⇒ Object
207 208 209 |
# File 'lib/semantic_logger/log.rb', line 207 def duration_to_s "#{duration.to_i}ms" if duration end |
#each_exception ⇒ Object
Call the block for exception and any nested exception
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 |
# File 'lib/semantic_logger/log.rb', line 169 def each_exception # With thanks to https://github.com/bugsnag/bugsnag-ruby/blob/6348306e44323eee347896843d16c690cd7c4362/lib/bugsnag/notification.rb#L81 depth = 0 exceptions = [] ex = exception while !ex.nil? && !exceptions.include?(ex) && exceptions.length < MAX_EXCEPTIONS_TO_UNWRAP exceptions << ex yield(ex, depth) depth += 1 ex = if ex.respond_to?(:cause) && ex.cause ex.cause elsif ex.respond_to?(:continued_exception) && ex.continued_exception ex.continued_exception elsif ex.respond_to?(:original_exception) && ex.original_exception ex.original_exception end end end |
#extract_arguments(payload, message = nil) ⇒ Object
Extract the arguments from a Hash Payload
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 |
# File 'lib/semantic_logger/log.rb', line 143 def extract_arguments(payload, = nil) raise(ArgumentError, "payload must be a Hash") unless payload.is_a?(Hash) = nil if == "" if payload.key?(:payload) return ? payload.merge(message: ) : payload end new_payload = {} args = {} payload.each_pair do |key, value| # Supplied message takes precedence if (key == :message) && !.nil? new_payload[key] = value next end NON_PAYLOAD_KEYS.include?(key) ? args[key] = value : new_payload[key] = value end args[:payload] = new_payload unless new_payload.empty? args[:message] = if args end |
#extract_file_and_line(stack, short_name = false) ⇒ Object
Extract the filename and line number from the last entry in the supplied backtrace
252 253 254 255 256 257 258 259 |
# File 'lib/semantic_logger/log.rb', line 252 def extract_file_and_line(stack, short_name = false) return unless stack&.size&.positive? match = CALLER_REGEXP.match(stack.first) return unless match [short_name ? File.basename(match[1]) : match[1], match[2].to_i] end |
#file_name_and_line(short_name = false) ⇒ Object
Returns [String, String] the file_name and line_number from the backtrace supplied in either the backtrace or exception
263 264 265 266 |
# File 'lib/semantic_logger/log.rb', line 263 def file_name_and_line(short_name = false) stack = backtrace || exception&.backtrace extract_file_and_line(stack, short_name) end |
#level_to_s ⇒ Object
Returns [String] single character upper case log level
237 238 239 |
# File 'lib/semantic_logger/log.rb', line 237 def level_to_s level.to_s[0..0].upcase end |
#metric_only? ⇒ Boolean
A metric only event has a metric but no message or exception.
295 296 297 |
# File 'lib/semantic_logger/log.rb', line 295 def metric_only? metric && .nil? && exception.nil? end |
#payload? ⇒ Boolean
Returns [true|false] whether the log entry has a payload
280 281 282 |
# File 'lib/semantic_logger/log.rb', line 280 def payload? !(payload.nil? || (payload.respond_to?(:empty?) && payload.empty?)) end |
#payload_to_s ⇒ Object
Return the payload in text form Returns nil if payload is missing or empty
275 276 277 |
# File 'lib/semantic_logger/log.rb', line 275 def payload_to_s payload.inspect if payload? end |
#process_info(thread_name_length = 30) ⇒ Object
DEPRECATED
242 243 244 245 246 247 |
# File 'lib/semantic_logger/log.rb', line 242 def process_info(thread_name_length = 30) file, line = file_name_and_line(true) file_name = " #{file}:#{line}" if file "#{$$}:#{format("%.#{thread_name_length}s", thread_name)}#{file_name}" end |
#set_context(key, value) ⇒ Object
Lazy initializes the context hash and assigns a key value pair.
290 291 292 |
# File 'lib/semantic_logger/log.rb', line 290 def set_context(key, value) (self.context ||= {})[key] = value end |
#to_h(host = SemanticLogger.host, application = SemanticLogger.application, environment = SemanticLogger.environment) ⇒ Object
284 285 286 287 |
# File 'lib/semantic_logger/log.rb', line 284 def to_h(host = SemanticLogger.host, application = SemanticLogger.application, environment = SemanticLogger.environment) logger = Struct.new(:host, :application, :environment).new(host, application, environment) SemanticLogger::Formatters::Raw.new.call(self, logger) end |