Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1.22 KB

File metadata and controls

30 lines (24 loc) · 1.22 KB

Freeclimb::LogResult

Properties

Name Type Description Notes
timestamp Integer Time that the log was generated. The time is represented as microseconds since the Unix Epoch. [optional]
level LogLevel [optional]
request_id String ID of the request associated with the log. The requestId is propagated across all logs generated by FreeClimb when processing a request. [optional]
account_id String ID of the account that this log was generated under. [optional]
call_id String ID of the Call associated with the log. Can be set to null if the log was generated without regard to a specific Call. [optional]
message String A simple string describing the event being logged. [optional]
metadata Object JSON document containing metadata about the event. Some log messages may include request and response header content in this field. [optional]

Example

require 'freeclimb'

instance = Freeclimb::LogResult.new(
  timestamp: null,
  level: null,
  request_id: null,
  account_id: null,
  call_id: null,
  message: null,
  metadata: null
)