interface PrometheusProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.MSK.CfnCluster.PrometheusProperty | 
|  Java | software.amazon.awscdk.services.msk.CfnCluster.PrometheusProperty | 
|  Python | aws_cdk.aws_msk.CfnCluster.PrometheusProperty | 
|  TypeScript | @aws-cdk/aws-msk»CfnCluster»PrometheusProperty | 
Prometheus settings for open monitoring.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as msk from '@aws-cdk/aws-msk';
const prometheusProperty: msk.CfnCluster.PrometheusProperty = {
  jmxExporter: {
    enabledInBroker: false,
  },
  nodeExporter: {
    enabledInBroker: false,
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| jmx | IResolvable | Jmx | Indicates whether you want to enable or disable the JMX Exporter. | 
| node | IResolvable | Node | Indicates whether you want to enable or disable the Node Exporter. | 
jmxExporter?
Type:
IResolvable | Jmx
(optional)
Indicates whether you want to enable or disable the JMX Exporter.
nodeExporter?
Type:
IResolvable | Node
(optional)
Indicates whether you want to enable or disable the Node Exporter.
