Class: Aws::KinesisAnalyticsV2::Types::MonitoringConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::MonitoringConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesisanalyticsv2/types.rb
Overview
Describes configuration parameters for Amazon CloudWatch logging for an application. For more information about CloudWatch logging, see [Monitoring].
[1]: docs.aws.amazon.com/kinesisanalytics/latest/java/monitoring-overview.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#configuration_type ⇒ String
Describes whether to use the default CloudWatch logging configuration for an application.
-
#log_level ⇒ String
Describes the verbosity of the CloudWatch Logs for an application.
-
#metrics_level ⇒ String
Describes the granularity of the CloudWatch Logs for an application.
Instance Attribute Details
#configuration_type ⇒ String
Describes whether to use the default CloudWatch logging configuration for an application. You must set this property to ‘CUSTOM` in order to set the `LogLevel` or `MetricsLevel` parameters.
3654 3655 3656 3657 3658 3659 3660 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 3654 class MonitoringConfiguration < Struct.new( :configuration_type, :metrics_level, :log_level) SENSITIVE = [] include Aws::Structure end |
#log_level ⇒ String
Describes the verbosity of the CloudWatch Logs for an application.
3654 3655 3656 3657 3658 3659 3660 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 3654 class MonitoringConfiguration < Struct.new( :configuration_type, :metrics_level, :log_level) SENSITIVE = [] include Aws::Structure end |
#metrics_level ⇒ String
Describes the granularity of the CloudWatch Logs for an application. The ‘Parallelism` level is not recommended for applications with a Parallelism over 64 due to excessive costs.
3654 3655 3656 3657 3658 3659 3660 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 3654 class MonitoringConfiguration < Struct.new( :configuration_type, :metrics_level, :log_level) SENSITIVE = [] include Aws::Structure end |