Class: Google::Apis::LoggingV2::LogLine

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/logging_v2/classes.rb,
generated/google/apis/logging_v2/representations.rb,
generated/google/apis/logging_v2/representations.rb

Overview

Application log line emitted while processing a request.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ LogLine

Returns a new instance of LogLine



379
380
381
# File 'generated/google/apis/logging_v2/classes.rb', line 379

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#log_messageString

App-provided log message. Corresponds to the JSON property logMessage

Returns:

  • (String)


367
368
369
# File 'generated/google/apis/logging_v2/classes.rb', line 367

def log_message
  @log_message
end

#severityString

Severity of this log entry. Corresponds to the JSON property severity

Returns:

  • (String)


362
363
364
# File 'generated/google/apis/logging_v2/classes.rb', line 362

def severity
  @severity
end

#source_locationGoogle::Apis::LoggingV2::SourceLocation

Specifies a location in a source code file. Corresponds to the JSON property sourceLocation



372
373
374
# File 'generated/google/apis/logging_v2/classes.rb', line 372

def source_location
  @source_location
end

#timeString

Approximate time when this log entry was made. Corresponds to the JSON property time

Returns:

  • (String)


377
378
379
# File 'generated/google/apis/logging_v2/classes.rb', line 377

def time
  @time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



384
385
386
387
388
389
# File 'generated/google/apis/logging_v2/classes.rb', line 384

def update!(**args)
  @severity = args[:severity] if args.key?(:severity)
  @log_message = args[:log_message] if args.key?(:log_message)
  @source_location = args[:source_location] if args.key?(:source_location)
  @time = args[:time] if args.key?(:time)
end