Class: Aws::CloudWatch::Types::StartOTelEnrichmentInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatch::Types::StartOTelEnrichmentInput
- Defined in:
- gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#exclude_filters ⇒ Array<Types::OTelEnrichmentMetricSelector>
The metric namespaces, and the metric names, to leave unenriched.
-
#include_filters ⇒ Array<Types::OTelEnrichmentMetricSelector>
The metric namespaces, and the metric names, to enrich.
Instance Attribute Details
#exclude_filters ⇒ Array<Types::OTelEnrichmentMetricSelector>
The metric namespaces, and the metric names, to leave unenriched. If this parameter is omitted, nothing is excluded.
Amazon CloudWatch applies ExcludeFilters after IncludeFilters,
so a metric that both parameters match is not enriched.
A maximum of 100 filters is allowed across IncludeFilters and
ExcludeFilters combined.
6235 6236 6237 6238 6239 6240 |
# File 'gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/types.rb', line 6235 class StartOTelEnrichmentInput < Struct.new( :include_filters, :exclude_filters) SENSITIVE = [] include Aws::Structure end |
#include_filters ⇒ Array<Types::OTelEnrichmentMetricSelector>
The metric namespaces, and the metric names, to enrich. If this parameter is omitted, every namespace that Amazon CloudWatch supports for enrichment is in scope.
A maximum of 100 filters is allowed across IncludeFilters and
ExcludeFilters combined.
6235 6236 6237 6238 6239 6240 |
# File 'gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/types.rb', line 6235 class StartOTelEnrichmentInput < Struct.new( :include_filters, :exclude_filters) SENSITIVE = [] include Aws::Structure end |