fix(monitoring): hardcode chatid as string in Telegram contact point

Grafana env var substitution of a numeric TELEGRAM_CHAT_ID caused
json unmarshal error (number into string field). chatid is not sensitive
so hardcode it directly; only bottoken uses ${TELEGRAM_BOT_TOKEN}.
This commit is contained in:
chemavx
2026-04-26 15:40:21 +00:00
parent 94c059ccb9
commit bb64cc9e62
+1 -1
View File
@@ -14,7 +14,7 @@ data:
type: telegram
settings:
bottoken: "${TELEGRAM_BOT_TOKEN}"
chatid: "${TELEGRAM_CHAT_ID}"
chatid: "5138407666"
parseMode: HTML
disableResolveMessage: false