Class: Google::Apis::CloudtraceV1::Trace
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::CloudtraceV1::Trace
 
- 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
- 
  
    
      #project_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Project ID of the Cloud project where the trace data is stored. 
- 
  
    
      #spans  ⇒ Array<Google::Apis::CloudtraceV1::TraceSpan> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Collection of spans in the trace. 
- 
  
    
      #trace_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Globally unique identifier for the trace. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Trace 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Trace. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ Trace
Returns a new instance of Trace
| 93 94 95 | # File 'generated/google/apis/cloudtrace_v1/classes.rb', line 93 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#project_id ⇒ String
Project ID of the Cloud project where the trace data is stored.
Corresponds to the JSON property projectId
| 80 81 82 | # File 'generated/google/apis/cloudtrace_v1/classes.rb', line 80 def project_id @project_id end | 
#spans ⇒ Array<Google::Apis::CloudtraceV1::TraceSpan>
Collection of spans in the trace.
Corresponds to the JSON property spans
| 85 86 87 | # File 'generated/google/apis/cloudtrace_v1/classes.rb', line 85 def spans @spans end | 
#trace_id ⇒ String
Globally unique identifier for the trace. This identifier is a 128-bit
numeric value formatted as a 32-byte hex string.
Corresponds to the JSON property traceId
| 91 92 93 | # File 'generated/google/apis/cloudtrace_v1/classes.rb', line 91 def trace_id @trace_id end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 98 99 100 101 102 | # File 'generated/google/apis/cloudtrace_v1/classes.rb', line 98 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 |