diff --git a/server/notification-providers/google-chat.js b/server/notification-providers/google-chat.js index 2557a142c..b9614d4a9 100644 --- a/server/notification-providers/google-chat.js +++ b/server/notification-providers/google-chat.js @@ -80,6 +80,16 @@ class GoogleChat extends NotificationProvider { }); } + // add monitor address if available + const address = this.extractAddress(monitorJSON); + if (address) { + sectionWidgets.push({ + textParagraph: { + text: `Address:\n${address}`, + }, + }); + } + // add button for monitor link if available const baseURL = await setting("primaryBaseURL"); if (baseURL) {