interface OpenMonitoringProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnClusterPropsMixin.OpenMonitoringProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnClusterPropsMixin_OpenMonitoringProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnClusterPropsMixin.OpenMonitoringProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnClusterPropsMixin.OpenMonitoringProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnClusterPropsMixin » OpenMonitoringProperty |
JMX and Node monitoring for the MSK cluster.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_msk as msk } from '@aws-cdk/cfn-property-mixins';
const openMonitoringProperty: msk.CfnClusterPropsMixin.OpenMonitoringProperty = {
prometheus: {
jmxExporter: {
enabledInBroker: false,
},
nodeExporter: {
enabledInBroker: false,
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| prometheus? | IResolvable | Prometheus | Prometheus exporter settings. |
prometheus?
Type:
IResolvable | Prometheus
(optional)
Prometheus exporter settings.

.NET
Go
Java
Python
TypeScript