Class: DatadogAPIClient::V2::ObservabilityPipelineThrottleProcessor

Inherits:
Object
  • Object
show all
Includes:
BaseGenericModel
Defined in:
lib/datadog_api_client/v2/models/observability_pipeline_throttle_processor.rb

Overview

The throttle processor limits the number of events that pass through over a given time window.

Instance Attribute Summary collapse

Method Summary

Methods included from BaseGenericModel

included

Instance Attribute Details

#additional_propertiesObject

Returns the value of attribute additional_properties.



45
46
47
# File 'lib/datadog_api_client/v2/models/observability_pipeline_throttle_processor.rb', line 45

def additional_properties
  @additional_properties
end

#group_byObject

Optional list of fields used to group events before the threshold has been reached.



25
26
27
# File 'lib/datadog_api_client/v2/models/observability_pipeline_throttle_processor.rb', line 25

def group_by
  @group_by
end

#idObject

The unique identifier for this processor.



28
29
30
# File 'lib/datadog_api_client/v2/models/observability_pipeline_throttle_processor.rb', line 28

def id
  @id
end

#includeObject

A Datadog search query used to determine which logs this processor targets.



31
32
33
# File 'lib/datadog_api_client/v2/models/observability_pipeline_throttle_processor.rb', line 31

def include
  @include
end

#inputsObject

A list of component IDs whose output is used as the input for this processor.



34
35
36
# File 'lib/datadog_api_client/v2/models/observability_pipeline_throttle_processor.rb', line 34

def inputs
  @inputs
end

#thresholdObject

the number of events allowed in a given time window. Events sent after the threshold has been reached, are dropped.



37
38
39
# File 'lib/datadog_api_client/v2/models/observability_pipeline_throttle_processor.rb', line 37

def threshold
  @threshold
end

#typeObject

The processor type. The value should always be throttle.



40
41
42
# File 'lib/datadog_api_client/v2/models/observability_pipeline_throttle_processor.rb', line 40

def type
  @type
end

#windowObject

The time window in seconds over which the threshold applies.



43
44
45
# File 'lib/datadog_api_client/v2/models/observability_pipeline_throttle_processor.rb', line 43

def window
  @window
end