Show / Hide Table of Contents

Interface IMonitoringConfiguration

(experimental) Monitoring Configuration.

Namespace: Amazon.CDK.AWS.MSK
Assembly: Amazon.CDK.AWS.MSK.dll
Syntax (csharp)
public interface IMonitoringConfiguration
Syntax (vb)
Public Interface IMonitoringConfiguration
Remarks

Stability: Experimental

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.MSK;

var monitoringConfiguration = new MonitoringConfiguration {
    ClusterMonitoringLevel = ClusterMonitoringLevel.DEFAULT,
    EnablePrometheusJmxExporter = false,
    EnablePrometheusNodeExporter = false
};

Synopsis

Properties

ClusterMonitoringLevel

(experimental) Specifies the level of monitoring for the MSK cluster.

EnablePrometheusJmxExporter

(experimental) Indicates whether you want to enable or disable the JMX Exporter.

EnablePrometheusNodeExporter

(experimental) Indicates whether you want to enable or disable the Prometheus Node Exporter.

Properties

ClusterMonitoringLevel

(experimental) Specifies the level of monitoring for the MSK cluster.

virtual Nullable<ClusterMonitoringLevel> ClusterMonitoringLevel { get; }
Property Value

System.Nullable<ClusterMonitoringLevel>

Remarks

Default: DEFAULT

Stability: Experimental

EnablePrometheusJmxExporter

(experimental) Indicates whether you want to enable or disable the JMX Exporter.

virtual Nullable<bool> EnablePrometheusJmxExporter { get; }
Property Value

System.Nullable<System.Boolean>

Remarks

Default: false

Stability: Experimental

EnablePrometheusNodeExporter

(experimental) Indicates whether you want to enable or disable the Prometheus Node Exporter.

virtual Nullable<bool> EnablePrometheusNodeExporter { get; }
Property Value

System.Nullable<System.Boolean>

Remarks

You can use the Prometheus Node Exporter to get CPU and disk metrics for the broker nodes.

Default: false

Stability: Experimental

Back to top Generated by DocFX