Prometheus
Prometheus configuration for monitoring and alerting
Type: prometheus
Properties
Name | Type | Description | Required |
---|---|---|---|
server (Server access) | object | Connection details required to access the Prometheus server | yes |
Additional Properties: not allowed
Example
{
"server": {
"url": "http://prometheus.example.com",
"password": "password",
"username": "admin"
}
}
server: Server access
Connection details required to access the Prometheus server
Properties
Name | Type | Description | Required |
---|---|---|---|
url | string | The base URL where the Prometheus server is hosted Minimal Length: 1 Format: "uri" | yes |
password | string | The password associated with the username for server authentication Minimal Length: 1 | no |
username | string | The username for authenticating with the Prometheus server, if required Minimal Length: 1 | no |
Additional Properties: not allowed
Example
{
"url": "http://prometheus.example.com",
"password": "password",
"username": "admin"
}