1
0
mirror of https://github.com/coreos/prometheus-operator.git synced 2026-02-05 06:45:27 +01:00

feat: add timeout to alertmanager pagerduty config

Signed-off-by: Hélia Barroso <helia_barroso@hotmail.com>
This commit is contained in:
Hélia Barroso
2025-12-10 23:00:05 +00:00
parent 6cafee80ce
commit e724e9d353
19 changed files with 172 additions and 1 deletions

View File

@@ -4173,6 +4173,11 @@
"description": "source defines the unique location of the affected system.",
"type": "string"
},
"timeout": {
"description": "Timeout is the maximum time allowed to invoke the pagerduty\nIt requires Alertmanager >= v0.30.0.",
"pattern": "^(0|(([0-9]+)y)?(([0-9]+)w)?(([0-9]+)d)?(([0-9]+)h)?(([0-9]+)m)?(([0-9]+)s)?(([0-9]+)ms)?)$",
"type": "string"
},
"url": {
"description": "url defines the URL to send requests to.",
"type": "string"

View File

@@ -4011,6 +4011,11 @@
description: 'source defines the unique location of the affected system.',
type: 'string',
},
timeout: {
description: 'Timeout is the maximum time allowed to invoke the pagerduty\nIt requires Alertmanager >= v0.30.0.',
pattern: '^(0|(([0-9]+)y)?(([0-9]+)w)?(([0-9]+)d)?(([0-9]+)h)?(([0-9]+)m)?(([0-9]+)s)?(([0-9]+)ms)?)$',
type: 'string',
},
url: {
description: 'url defines the URL to send requests to.',
type: 'string',