class Google::Cloud::Trace::AsyncReporterError
Used to indicate a problem preventing traces from being buffered asynchronously. This can occur when there are not enough resources allocated for the amount of usage.
Attributes
traces[R]
@!attribute [r] count
@return [Array<Google::Cloud::Trace::TraceRecord>] traces The trace objects that were not written to the API due to the error.
Public Class Methods
new(message, traces = nil)
click to toggle source
Calls superclass method
# File lib/google/cloud/trace/errors.rb, line 34 def initialize message, traces = nil super message @traces = traces if traces end