Class: DatadogAPIClient::V2::PrunedTraceAttributes
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::PrunedTraceAttributes
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/pruned_trace_attributes.rb
Overview
The attributes of a pruned trace returned by the Get pruned trace by ID endpoint.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#is_truncated ⇒ Object
readonly
Indicates whether the underlying trace was truncated because its size exceeded the maximum that can be retrieved from storage.
-
#size_bytes ⇒ Object
readonly
The size, in bytes, of the original (non-pruned) trace before summarization.
-
#summarized_trace ⇒ Object
readonly
A summarized, hierarchical view of a trace.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
34 35 36 |
# File 'lib/datadog_api_client/v2/models/pruned_trace_attributes.rb', line 34 def additional_properties @additional_properties end |
#is_truncated ⇒ Object
Indicates whether the underlying trace was truncated because its size exceeded the maximum that can be retrieved from storage.
26 27 28 |
# File 'lib/datadog_api_client/v2/models/pruned_trace_attributes.rb', line 26 def is_truncated @is_truncated end |
#size_bytes ⇒ Object
The size, in bytes, of the original (non-pruned) trace before summarization.
29 30 31 |
# File 'lib/datadog_api_client/v2/models/pruned_trace_attributes.rb', line 29 def size_bytes @size_bytes end |
#summarized_trace ⇒ Object
A summarized, hierarchical view of a trace.
32 33 34 |
# File 'lib/datadog_api_client/v2/models/pruned_trace_attributes.rb', line 32 def summarized_trace @summarized_trace end |