Class: Google::Apis::CloudtraceV1::Trace

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

Overview

A trace describes how long it takes for an application to perform an operation. It consists of a set of spans, each of which represent a single timed event within the operation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Trace

Returns a new instance of Trace.



92
93
94
# File 'generated/google/apis/cloudtrace_v1/classes.rb', line 92

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

Instance Attribute Details

#project_idString

Project ID of the Cloud project where the trace data is stored. Corresponds to the JSON property projectId

Returns:

  • (String)


78
79
80
# File 'generated/google/apis/cloudtrace_v1/classes.rb', line 78

def project_id
  @project_id
end

#spansArray<Google::Apis::CloudtraceV1::TraceSpan>

Collection of spans in the trace. Corresponds to the JSON property spans



83
84
85
# File 'generated/google/apis/cloudtrace_v1/classes.rb', line 83

def spans
  @spans
end

#trace_idString

Globally unique identifier for the trace. This identifier is a 128-bit numeric value formatted as a 32-byte hex string. For example, 382d4f4c6b7bb2f4a972559d9085001d. The numeric value should not be zero. Corresponds to the JSON property traceId

Returns:

  • (String)


90
91
92
# File 'generated/google/apis/cloudtrace_v1/classes.rb', line 90

def trace_id
  @trace_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



97
98
99
100
101
# File 'generated/google/apis/cloudtrace_v1/classes.rb', line 97

def update!(**args)
  @project_id = args[:project_id] if args.key?(:project_id)
  @spans = args[:spans] if args.key?(:spans)
  @trace_id = args[:trace_id] if args.key?(:trace_id)
end