Class: DatadogAPIClient::V2::ObservabilityPipelineThrottleProcessor
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::ObservabilityPipelineThrottleProcessor
- 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
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#group_by ⇒ Object
Optional list of fields used to group events before the threshold has been reached.
-
#id ⇒ Object
readonly
The unique identifier for this processor.
-
#include ⇒ Object
readonly
A Datadog search query used to determine which logs this processor targets.
-
#inputs ⇒ Object
readonly
A list of component IDs whose output is used as the input for this processor.
-
#threshold ⇒ Object
readonly
the number of events allowed in a given time window.
-
#type ⇒ Object
readonly
The processor type.
-
#window ⇒ Object
readonly
The time window in seconds over which the threshold applies.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
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_by ⇒ Object
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 |
#id ⇒ Object
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 |
#include ⇒ Object
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 |
#inputs ⇒ Object
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 |
#threshold ⇒ Object
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 |
#type ⇒ Object
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 |
#window ⇒ Object
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 |