Class: Google::Apis::LoggingV2::LogEntry
- Inherits:
-
Object
- Object
- Google::Apis::LoggingV2::LogEntry
- 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
An individual entry in a log.
Instance Attribute Summary collapse
-
#http_request ⇒ Google::Apis::LoggingV2::HttpRequest
A common proto for logging HTTP requests.
-
#insert_id ⇒ String
Optional.
-
#json_payload ⇒ Hash<String,Object>
The log entry payload, represented as a structure that is expressed as a JSON object.
-
#labels ⇒ Hash<String,String>
Optional.
-
#log_name ⇒ String
Required.
-
#operation ⇒ Google::Apis::LoggingV2::LogEntryOperation
Additional information about a potentially long-running operation with which a log entry is associated.
-
#proto_payload ⇒ Hash<String,Object>
The log entry payload, represented as a protocol buffer.
-
#receive_timestamp ⇒ String
Output only.
-
#resource ⇒ Google::Apis::LoggingV2::MonitoredResource
An object representing a resource that can be used for monitoring, logging, billing, or other purposes.
-
#severity ⇒ String
Optional.
-
#source_location ⇒ Google::Apis::LoggingV2::LogEntrySourceLocation
Additional information about the source code location that produced the log entry.
-
#text_payload ⇒ String
The log entry payload, represented as a Unicode string (UTF-8).
-
#timestamp ⇒ String
Optional.
-
#trace ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LogEntry
constructor
A new instance of LogEntry.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ LogEntry
Returns a new instance of LogEntry
709 710 711 |
# File 'generated/google/apis/logging_v2/classes.rb', line 709 def initialize(**args) update!(**args) end |
Instance Attribute Details
#http_request ⇒ Google::Apis::LoggingV2::HttpRequest
A common proto for logging HTTP requests. Only contains semantics defined by
the HTTP specification. Product-specific logging information MUST be defined
in a separate message.
Corresponds to the JSON property httpRequest
599 600 601 |
# File 'generated/google/apis/logging_v2/classes.rb', line 599 def http_request @http_request end |
#insert_id ⇒ String
Optional. A unique identifier for the log entry. If you provide a value, then
Stackdriver Logging considers other log entries in the same project, with the
same timestamp, and with the same insert_id to be duplicates which can be
removed. If omitted in new log entries, then Stackdriver Logging assigns its
own unique identifier. The insert_id is also used to order log entries that
have the same timestamp value.
Corresponds to the JSON property insertId
609 610 611 |
# File 'generated/google/apis/logging_v2/classes.rb', line 609 def insert_id @insert_id end |
#json_payload ⇒ Hash<String,Object>
The log entry payload, represented as a structure that is expressed as a JSON
object.
Corresponds to the JSON property jsonPayload
615 616 617 |
# File 'generated/google/apis/logging_v2/classes.rb', line 615 def json_payload @json_payload end |
#labels ⇒ Hash<String,String>
Optional. A set of user-defined (key, value) data that provides additional
information about the log entry.
Corresponds to the JSON property labels
621 622 623 |
# File 'generated/google/apis/logging_v2/classes.rb', line 621 def labels @labels end |
#log_name ⇒ String
Required. The resource name of the log to which this log entry belongs:
"projects/[PROJECT_ID]/logs/[LOG_ID]"
"organizations/[ORGANIZATION_ID]/logs/[LOG_ID]"
"billingAccounts/[BILLING_ACCOUNT_ID]/logs/[LOG_ID]"
"folders/[FOLDER_ID]/logs/[LOG_ID]"
[LOG_ID] must be URL-encoded within log_name. Example: "organizations/
1234567890/logs/cloudresourcemanager.googleapis.com%2Factivity". [LOG_ID] must
be less than 512 characters long and can only include the following characters:
upper and lower case alphanumeric characters, forward-slash, underscore,
hyphen, and period.For backward compatibility, if log_name begins with a
forward-slash, such as /projects/..., then the log entry is ingested as usual
but the forward-slash is removed. Listing the log entry will not show the
leading slash and filtering for a log name with a leading slash will never
return any results.
Corresponds to the JSON property logName
639 640 641 |
# File 'generated/google/apis/logging_v2/classes.rb', line 639 def log_name @log_name end |
#operation ⇒ Google::Apis::LoggingV2::LogEntryOperation
Additional information about a potentially long-running operation with which a
log entry is associated.
Corresponds to the JSON property operation
645 646 647 |
# File 'generated/google/apis/logging_v2/classes.rb', line 645 def operation @operation end |
#proto_payload ⇒ Hash<String,Object>
The log entry payload, represented as a protocol buffer. Some Google Cloud
Platform services use this field for their log entry payloads.
Corresponds to the JSON property protoPayload
651 652 653 |
# File 'generated/google/apis/logging_v2/classes.rb', line 651 def proto_payload @proto_payload end |
#receive_timestamp ⇒ String
Output only. The time the log entry was received by Stackdriver Logging.
Corresponds to the JSON property receiveTimestamp
656 657 658 |
# File 'generated/google/apis/logging_v2/classes.rb', line 656 def @receive_timestamp end |
#resource ⇒ Google::Apis::LoggingV2::MonitoredResource
An object representing a resource that can be used for monitoring, logging,
billing, or other purposes. Examples include virtual machine instances,
databases, and storage devices such as disks. The type field identifies a
MonitoredResourceDescriptor object that describes the resource's schema.
Information in the labels field identifies the actual resource and its
attributes according to the schema. For example, a particular Compute Engine
VM instance could be represented by the following object, because the
MonitoredResourceDescriptor for "gce_instance" has labels "instance_id" and "
zone":
"type": "gce_instance",
"labels":
"instance_id": "12345678901234",
"zone": "us-central1-a" `
Corresponds to the JSON property
resource`
672 673 674 |
# File 'generated/google/apis/logging_v2/classes.rb', line 672 def resource @resource end |
#severity ⇒ String
Optional. The severity of the log entry. The default value is LogSeverity.
DEFAULT.
Corresponds to the JSON property severity
678 679 680 |
# File 'generated/google/apis/logging_v2/classes.rb', line 678 def severity @severity end |
#source_location ⇒ Google::Apis::LoggingV2::LogEntrySourceLocation
Additional information about the source code location that produced the log
entry.
Corresponds to the JSON property sourceLocation
684 685 686 |
# File 'generated/google/apis/logging_v2/classes.rb', line 684 def source_location @source_location end |
#text_payload ⇒ String
The log entry payload, represented as a Unicode string (UTF-8).
Corresponds to the JSON property textPayload
689 690 691 |
# File 'generated/google/apis/logging_v2/classes.rb', line 689 def text_payload @text_payload end |
#timestamp ⇒ String
Optional. The time the event described by the log entry occurred. This time is
used to compute the log entry's age and to enforce the logs retention period.
If this field is omitted in a new log entry, then Stackdriver Logging assigns
it the current time.Incoming log entries should have timestamps that are no
more than the logs retention period in the past, and no more than 24 hours in
the future. See the entries.write API method for more information.
Corresponds to the JSON property timestamp
699 700 701 |
# File 'generated/google/apis/logging_v2/classes.rb', line 699 def @timestamp end |
#trace ⇒ String
Optional. Resource name of the trace associated with the log entry, if any. If
it contains a relative resource name, the name is assumed to be relative to //
tracing.googleapis.com. Example: projects/my-projectid/traces/
06796866738c859f2f19b7cfb3214824
Corresponds to the JSON property trace
707 708 709 |
# File 'generated/google/apis/logging_v2/classes.rb', line 707 def trace @trace end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 |
# File 'generated/google/apis/logging_v2/classes.rb', line 714 def update!(**args) @http_request = args[:http_request] if args.key?(:http_request) @insert_id = args[:insert_id] if args.key?(:insert_id) @json_payload = args[:json_payload] if args.key?(:json_payload) @labels = args[:labels] if args.key?(:labels) @log_name = args[:log_name] if args.key?(:log_name) @operation = args[:operation] if args.key?(:operation) @proto_payload = args[:proto_payload] if args.key?(:proto_payload) @receive_timestamp = args[:receive_timestamp] if args.key?(:receive_timestamp) @resource = args[:resource] if args.key?(:resource) @severity = args[:severity] if args.key?(:severity) @source_location = args[:source_location] if args.key?(:source_location) @text_payload = args[:text_payload] if args.key?(:text_payload) @timestamp = args[:timestamp] if args.key?(:timestamp) @trace = args[:trace] if args.key?(:trace) end |