Class: Aws::Kafka::Types::OpenMonitoringInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::OpenMonitoringInfo
- Defined in:
- gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb
Overview
Note:
When making an API call, you may pass OpenMonitoringInfo data as a hash:
{
prometheus: { # required
jmx_exporter: {
enabled_in_broker: false, # required
},
node_exporter: {
enabled_in_broker: false, # required
},
},
}
JMX and Node monitoring for the MSK cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#prometheus ⇒ Types::PrometheusInfo
Prometheus settings.
Instance Attribute Details
#prometheus ⇒ Types::PrometheusInfo
Prometheus settings.
2784 2785 2786 2787 2788 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 2784 class OpenMonitoringInfo < Struct.new( :prometheus) SENSITIVE = [] include Aws::Structure end |