interface SQLServerPrometheusExporterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ApplicationInsights.Mixins.CfnApplicationPropsMixin.SQLServerPrometheusExporterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapplicationinsights/mixins#CfnApplicationPropsMixin_SQLServerPrometheusExporterProperty |
Java | software.amazon.awscdk.mixins.preview.services.applicationinsights.mixins.CfnApplicationPropsMixin.SQLServerPrometheusExporterProperty |
Python | aws_cdk.mixins_preview.aws_applicationinsights.mixins.CfnApplicationPropsMixin.SQLServerPrometheusExporterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_applicationinsights » mixins » CfnApplicationPropsMixin » SQLServerPrometheusExporterProperty |
The SQL 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 sQLServerPrometheusExporterProperty: applicationinsights_mixins.CfnApplicationPropsMixin.SQLServerPrometheusExporterProperty = {
prometheusPort: 'prometheusPort',
sqlSecretName: 'sqlSecretName',
};
Properties
| Name | Type | Description |
|---|---|---|
| prometheus | string | Prometheus exporter port. |
| sql | string | Secret name which managers SQL exporter connection. |
prometheusPort?
Type:
string
(optional)
Prometheus exporter port.
sqlSecretName?
Type:
string
(optional)
Secret name which managers SQL exporter connection.
e.g. {"data_source_name": "sqlserver://<USERNAME>:<PASSWORD>@localhost:1433"}

.NET
Go
Java
Python
TypeScript