class Google::Apis::LoggingV2::LogEntry

An individual entry in a log.

Attributes

http_request[RW]

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` @return [Google::Apis::LoggingV2::HttpRequest]

insert_id[RW]

Optional. A unique identifier for the log entry. If you provide a value, then Logging considers other log entries in the same project, with the same timestamp, and with the same insert_id to be duplicates which are removed in a single query result. However, there are no guarantees of de-duplication in the export of logs.If the insert_id is omitted when writing a log entry, the Logging API assigns its own unique identifier in this field.In queries, the insert_id is also used to order log entries that have the same log_name and timestamp values. Corresponds to the JSON property `insertId` @return [String]

json_payload[RW]

The log entry payload, represented as a structure that is expressed as a JSON object. Corresponds to the JSON property `jsonPayload` @return [Hash<String,Object>]

labels[RW]

Optional. A map of key, value pairs that provides additional information about the log entry. The labels can be user-defined or system-defined.User-defined labels are arbitrary key, value pairs that you can use to classify logs.System- defined labels are defined by GCP services for platform logs. They have two components - a service namespace component and the attribute name. For example: compute.googleapis.com/resource_name.Cloud Logging truncates label keys that exceed 512 B and label values that exceed 64 KB upon their associated log entry being written. The truncation is indicated by an ellipsis at the end of the character string. Corresponds to the JSON property `labels` @return [Hash<String,String>]

log_name[RW]

Required. The resource name of the log to which this log entry belongs: “ projects//logs/” “organizations//logs/[ LOG_ID]” “billingAccounts//logs/” “folders/[ FOLDER_ID]/logs/” A project number may be used in place of PROJECT_ID. The project number is translated to its corresponding PROJECT_ID internally and the log_name field will contain PROJECT_ID in queries and exports. must be URL-encoded within log_name. Example: “organizations/1234567890/logs/ cloudresourcemanager.googleapis.com%2Factivity”. 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` @return [String]

metadata[RW]

Auxiliary metadata for a MonitoredResource object. MonitoredResource objects contain the minimum set of information to uniquely identify a monitored resource instance. There is some other useful auxiliary metadata. Monitoring and Logging use an ingestion pipeline to extract metadata for cloud resources of all types, and store the metadata in this message. Corresponds to the JSON property `metadata` @return [Google::Apis::LoggingV2::MonitoredResourceMetadata]

operation[RW]

Additional information about a potentially long-running operation with which a log entry is associated. Corresponds to the JSON property `operation` @return [Google::Apis::LoggingV2::LogEntryOperation]

proto_payload[RW]

The log entry payload, represented as a protocol buffer. Some Google Cloud Platform services use this field for their log entry payloads.The following protocol buffer types are supported; user-defined types are not supported:“ type.googleapis.com/google.cloud.audit.AuditLog” “type.googleapis.com/google. appengine.logging.v1.RequestLog” Corresponds to the JSON property `protoPayload` @return [Hash<String,Object>]

receive_timestamp[RW]

Output only. The time the log entry was received by Logging. Corresponds to the JSON property `receiveTimestamp` @return [String]

resource[RW]

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` @return [Google::Apis::LoggingV2::MonitoredResource]

severity[RW]

Optional. The severity of the log entry. The default value is LogSeverity. DEFAULT. Corresponds to the JSON property `severity` @return [String]

source_location[RW]

Additional information about the source code location that produced the log entry. Corresponds to the JSON property `sourceLocation` @return [Google::Apis::LoggingV2::LogEntrySourceLocation]

span_id[RW]

Optional. The span ID within the trace associated with the log entry.For Trace spans, this is the same format that the Trace API v2 uses: a 16-character hexadecimal encoding of an 8-byte array, such as 000000000000004a. Corresponds to the JSON property `spanId` @return [String]

text_payload[RW]

The log entry payload, represented as a Unicode string (UTF-8). Corresponds to the JSON property `textPayload` @return [String]

timestamp[RW]

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 Logging assigns it the current time. Timestamps have nanosecond accuracy, but trailing zeros in the fractional seconds might be omitted when the timestamp is displayed.Incoming log entries must have timestamps that don't exceed the logs retention period ( cloud.google.com/logging/quotas#logs_retention_periods) in the past, and that don't exceed 24 hours in the future. Log entries outside those time boundaries aren't ingested by Logging. Corresponds to the JSON property `timestamp` @return [String]

trace[RW]

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` @return [String]

trace_sampled[RW]

Optional. The sampling decision of the trace associated with the log entry. True means that the trace resource name in the trace field was sampled for storage in a trace backend. False means that the trace was not sampled for storage when this log entry was written, or the sampling decision was unknown at the time. A non-sampled trace value is still useful as a request correlation identifier. The default is False. Corresponds to the JSON property `traceSampled` @return [Boolean]

trace_sampled?[RW]

Optional. The sampling decision of the trace associated with the log entry. True means that the trace resource name in the trace field was sampled for storage in a trace backend. False means that the trace was not sampled for storage when this log entry was written, or the sampling decision was unknown at the time. A non-sampled trace value is still useful as a request correlation identifier. The default is False. Corresponds to the JSON property `traceSampled` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/logging_v2/classes.rb, line 1192
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/logging_v2/classes.rb, line 1197
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)
  @metadata = args[:metadata] if args.key?(:metadata)
  @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)
  @span_id = args[:span_id] if args.key?(:span_id)
  @text_payload = args[:text_payload] if args.key?(:text_payload)
  @timestamp = args[:timestamp] if args.key?(:timestamp)
  @trace = args[:trace] if args.key?(:trace)
  @trace_sampled = args[:trace_sampled] if args.key?(:trace_sampled)
end