You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What version of Node.js are you using? Not applicable if you use the standalone version of Butler.
No response
What command did you use to start Butler?
.\butler.exe -c .\config\production.yaml
What operating system are you using?
Windows Server 2019
What CPU architecture are you using?
Intel(R) Xeon(R) Gold 6248 CPU @ 2.50GHz
What Qlik Sense versions are you using?
Feb 2023 Patch 3
Describe the Bug
Service monitor notifications are unable to send via teams despite being enabled. It looks like the wrong config value is read when checking if the teams notification is enabled for the service monitor.
Line 212 in src/lib/msteams_notification.js references the configuration value for Slack rather than MS Teams.
if (!globals.config.get('Butler.serviceMonitor.alertDestination.slack.enable')) {
should be
if (!globals.config.get('Butler.serviceMonitor.alertDestination.teams.enable')) {
Expected Behavior
Teams notifications sent when service monitor event detected.
To Reproduce
Start or Stop a monitored Service while Teams notifications are enabled, but Slack notifications are disabled.
The text was updated successfully, but these errors were encountered:
What version of Butler are you using?
9.1.1
What version of Node.js are you using? Not applicable if you use the standalone version of Butler.
No response
What command did you use to start Butler?
.\butler.exe -c .\config\production.yaml
What operating system are you using?
Windows Server 2019
What CPU architecture are you using?
Intel(R) Xeon(R) Gold 6248 CPU @ 2.50GHz
What Qlik Sense versions are you using?
Feb 2023 Patch 3
Describe the Bug
Service monitor notifications are unable to send via teams despite being enabled. It looks like the wrong config value is read when checking if the teams notification is enabled for the service monitor.
Line 212 in src/lib/msteams_notification.js references the configuration value for Slack rather than MS Teams.
if (!globals.config.get('Butler.serviceMonitor.alertDestination.slack.enable')) {
should be
if (!globals.config.get('Butler.serviceMonitor.alertDestination.teams.enable')) {
Expected Behavior
Teams notifications sent when service monitor event detected.
To Reproduce
Start or Stop a monitored Service while Teams notifications are enabled, but Slack notifications are disabled.
The text was updated successfully, but these errors were encountered: