Reference documentation and code samples for the google-logging-utils class Google::Logging::Message.
A log message that can be formatted either as a normal text log entry or as a structured log entry suitable for Google Cloud Logging.
A log message has a "body" which consists of either a string message, a JSON object (i.e. a Hash whose values are typically strings or numbers but could be nested arrays and hashes), or both. It also includes several additional optional fields used by the Google Cloud Logging backend.
Most log formatters will render the message body as a string and ignore the other attributes. The StructuredFormatter, however, will format the full message data in the JSON format understood by the Google logging agent.
Inherits
- Object
Methods
.from
def self.from(input) -> Message
Create a log message from an input object, which can be any of:
- An existing Message object.
- A Hash. Symbol keys are used as keyword arguments to the #initialize constructor. String keys are treated as fields in the JSON payload.
- Any other object is converted to a string with
to_s
and used as a simple text payload.
- input (Object) — A log message input object.
- (Message)
#fields
def fields() -> Hash{String=>Object}, nil
- (Hash{String=>Object}, nil) — The log message as a set of key-value pairs, or nil if not present.
#full_message
def full_message() -> String
- (String) — A full string representation of the message and fields as rendered in the standard logger formatter.
#initialize
def initialize(message: nil, fields: nil, timestamp: nil, source_location: nil, insert_id: nil, trace: nil, span_id: nil, trace_sampled: nil, labels: nil) -> Message
Low-level constructor for a logging message.
All arguments are optional, with the exception that at least one of
:message
and :fields
must be provided.
- message (String) (defaults to: nil) — The main log message as a string.
- fields (Hash{String=>Object}) (defaults to: nil) — The log message as a set of key-value pairs representing a JSON object.
-
timestamp (Time, Numeric, :now) (defaults to: nil) — The timestamp for the log entry.
Can be provided as a Time object, a Numeric indicating the seconds
since epoch, or
:now
to use the current time. Optional. -
source_location (SourceLocation, Hash, :caller, nil) (defaults to: nil) — The source
location for the log entry. Can be provided as a SourceLocation
object, a Hash containing exactly the keys
:file
,:line
, and:function
, or:caller
to use the location of the caller. Optional. - insert_id (String) (defaults to: nil) — A unique ID for this log entry that could be used on the backend to dedup messages. Optional.
- trace (String) (defaults to: nil) — A Google Cloud Trace resource name. Optional.
- span_id (String) (defaults to: nil) — The trace span containing this entry. Optional.
- trace_sampled (boolean) (defaults to: nil) — Whether this trace is sampled. Optional.
- labels (Hash{String=>String}) (defaults to: nil) — Optional metadata.
- (Message) — a new instance of Message
#insert_id
def insert_id() -> String, nil
- (String, nil) — The unique ID for this log entry that could be used on the backend to dedup messages, or nil if not present.
#inspect
def inspect() -> String
- (String) — A full string representation of the message and fields as rendered in the standard logger formatter.
#labels
def labels() -> Hash{String=>String}, nil
- (Hash{String=>String}, nil) — Metadata, or nil if not present.
#message
def message() -> String
- (String) — The message as a string. This is always present as a nonempty string, and can be reliably used as the "display" of this log entry in a list of entries.
#source_location
def source_location() -> SourceLocation, nil
- (SourceLocation, nil) — The source location for the log entry, or nil if not present.
#span_id
def span_id() -> String, nil
- (String, nil) — The trace span containing this entry, or nil if not present.
#timestamp
def timestamp() -> Time, nil
- (Time, nil) — The timestamp for the log entry, or nil if not present.
#to_h
def to_h() -> Hash
- (Hash) — A hash of kwargs that can be passed to the constructor to clone this message.
#to_s
def to_s() -> String
- (String) — The message as a string. This is always present as a nonempty string, and can be reliably used as the "display" of this log entry in a list of entries.
#trace
def trace() -> String, nil
- (String, nil) — The Google Cloud Trace resource name, or nil if not present.
#trace_sampled
def trace_sampled() -> true, false, nil
- (true, false, nil) — Whether this trace is sampled, or nil if not present or known.
#trace_sampled?
def trace_sampled?() -> true, false, nil
- (true, false, nil) — Whether this trace is sampled, or nil if not present or known.