Class: Aws::KinesisAnalyticsV2::Types::MonitoringConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::MonitoringConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesisanalyticsv2/types.rb
Overview
When making an API call, you may pass MonitoringConfiguration data as a hash:
{
configuration_type: "DEFAULT", # required, accepts DEFAULT, CUSTOM
metrics_level: "APPLICATION", # accepts APPLICATION, TASK, OPERATOR, PARALLELISM
log_level: "INFO", # accepts INFO, WARN, ERROR, DEBUG
}
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.
4779 4780 4781 4782 4783 4784 4785 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 4779 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.
4779 4780 4781 4782 4783 4784 4785 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 4779 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.
4779 4780 4781 4782 4783 4784 4785 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 4779 class MonitoringConfiguration < Struct.new( :configuration_type, :metrics_level, :log_level) SENSITIVE = [] include Aws::Structure end |