interface JMXPrometheusExporterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ApplicationInsights.Mixins.CfnApplicationPropsMixin.JMXPrometheusExporterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapplicationinsights/mixins#CfnApplicationPropsMixin_JMXPrometheusExporterProperty |
Java | software.amazon.awscdk.mixins.preview.services.applicationinsights.mixins.CfnApplicationPropsMixin.JMXPrometheusExporterProperty |
Python | aws_cdk.mixins_preview.aws_applicationinsights.mixins.CfnApplicationPropsMixin.JMXPrometheusExporterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_applicationinsights » mixins » CfnApplicationPropsMixin » JMXPrometheusExporterProperty |
The AWS::ApplicationInsights::Application JMXPrometheusExporter property type defines the JMXPrometheus Exporter configuration.
For more information, see the component configuration in the CloudWatch Application Insights documentation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as applicationinsights_mixins } from '@aws-cdk/mixins-preview/aws-applicationinsights';
const jMXPrometheusExporterProperty: applicationinsights_mixins.CfnApplicationPropsMixin.JMXPrometheusExporterProperty = {
hostPort: 'hostPort',
jmxurl: 'jmxurl',
prometheusPort: 'prometheusPort',
};
Properties
| Name | Type | Description |
|---|---|---|
| host | string | The host and port to connect to through remote JMX. |
| jmxurl? | string | The complete JMX URL to connect to. |
| prometheus | string | The target port to send Prometheus metrics to. |
hostPort?
Type:
string
(optional)
The host and port to connect to through remote JMX.
Only one of jmxURL and hostPort can be specified.
jmxurl?
Type:
string
(optional)
The complete JMX URL to connect to.
prometheusPort?
Type:
string
(optional)
The target port to send Prometheus metrics to.
If not specified, the default port 9404 is used.

.NET
Go
Java
Python
TypeScript