interface NetWeaverPrometheusExporterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ApplicationInsights.Mixins.CfnApplicationPropsMixin.NetWeaverPrometheusExporterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapplicationinsights/mixins#CfnApplicationPropsMixin_NetWeaverPrometheusExporterProperty |
Java | software.amazon.awscdk.mixins.preview.services.applicationinsights.mixins.CfnApplicationPropsMixin.NetWeaverPrometheusExporterProperty |
Python | aws_cdk.mixins_preview.aws_applicationinsights.mixins.CfnApplicationPropsMixin.NetWeaverPrometheusExporterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_applicationinsights » mixins » CfnApplicationPropsMixin » NetWeaverPrometheusExporterProperty |
The NetWeaver Prometheus Exporter Settings.
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 netWeaverPrometheusExporterProperty: applicationinsights_mixins.CfnApplicationPropsMixin.NetWeaverPrometheusExporterProperty = {
instanceNumbers: ['instanceNumbers'],
prometheusPort: 'prometheusPort',
sapsid: 'sapsid',
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string[] | SAP instance numbers for ASCS, ERS, and App Servers. |
| prometheus | string | Prometheus exporter port. |
| sapsid? | string | SAP NetWeaver SID. |
instanceNumbers?
Type:
string[]
(optional)
SAP instance numbers for ASCS, ERS, and App Servers.
prometheusPort?
Type:
string
(optional)
Prometheus exporter port.
sapsid?
Type:
string
(optional)
SAP NetWeaver SID.

.NET
Go
Java
Python
TypeScript