interface PrometheusProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MSK.Mixins.CfnClusterPropsMixin.PrometheusProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmsk/mixins#CfnClusterPropsMixin_PrometheusProperty |
Java | software.amazon.awscdk.mixins.preview.services.msk.mixins.CfnClusterPropsMixin.PrometheusProperty |
Python | aws_cdk.mixins_preview.aws_msk.mixins.CfnClusterPropsMixin.PrometheusProperty |
TypeScript | @aws-cdk/mixins-preview » aws_msk » mixins » CfnClusterPropsMixin » 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 { mixins as msk_mixins } from '@aws-cdk/mixins-preview/aws-msk';
const prometheusProperty: msk_mixins.CfnClusterPropsMixin.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.

.NET
Go
Java
Python
TypeScript