-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix storing script logs on disk for QSEoW and Cloud
- Loading branch information
Göran Sander
committed
Oct 14, 2024
1 parent
206a713
commit 30e6a37
Showing
8 changed files
with
484 additions
and
622 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -156,12 +156,13 @@ Butler: | |
enable: false | ||
logDirectory: /path/to/scriptlogs/qscloud | ||
|
||
# Qlik Sense related links used in notification messages | ||
# Qlik Sense (client-managed) related links used in notification messages | ||
qlikSenseUrls: | ||
qmc: <URL to Qlik Sense QMC> | ||
hub: <URL to Qlik Sense Hub> | ||
appBaseUrl: <URL to Qlik Sense hub>/<virtual proxy, if any>/sense/app # Base URL for Qlik Sense apps, for example http://sense.mycompany.net/sense/app. App ID will be appended to this URL. | ||
|
||
# Links available as template variables in notification messages | ||
genericUrls: | ||
- id: ptarmiganlabs_com | ||
linkText: Ptarmigan Labs home page | ||
|
@@ -370,7 +371,7 @@ Butler: | |
# These alerts will be sent irrespective of the alertEnableByCustomProperty.enable setting. | ||
alertEnabledByEmailAddress: | ||
customPropertyName: 'Butler_SuccessAlertSendToEmail' | ||
rateLimit: 60 # Min seconds between emails for a given taskID. Defaults to 5 minutes. | ||
rateLimit: 60 # Min seconds between emails for a given taskID/recipient combo. Defaults to 5 minutes. | ||
headScriptLogLines: 15 | ||
tailScriptLogLines: 25 | ||
priority: high # high/normal/low | ||
|
@@ -1003,10 +1004,9 @@ Butler: | |
tag: Butler - Send Teams alert if app reload fails | ||
basicContentOnly: false | ||
webhookURL: <URL to MS Teams webhook> | ||
|
||
messageType: formatted # formatted / basic | ||
basicMsgTemplate: 'Qlik Sense Cloud app reload failed: "{{appName}}"' # Only needed if message type = basic | ||
rateLimit: 15 # Min seconds between emails for a given taskID. Defaults to 5 minutes. | ||
rateLimit: 15 # Min seconds between emails for a given appId. Defaults to 5 minutes. | ||
headScriptLogLines: 15 | ||
tailScriptLogLines: 15 | ||
templateFile: /path/to/teams_templates/failed-reload-qscloud-workflow.handlebars | ||
|
@@ -1023,7 +1023,7 @@ Butler: | |
channel: sense-task-failure # Slack channel to which task failure notifications are sent | ||
messageType: formatted # formatted / basic. Formatted means that template file below will be used to create the message. | ||
basicMsgTemplate: 'Qlik Sense Cloud app reload failed: "{{appName}}"' # Only needed if message type = basic | ||
rateLimit: 60 # Min seconds between emails for a given taskID. Defaults to 5 minutes. | ||
rateLimit: 60 # Min seconds between emails for a given appId. Defaults to 5 minutes. | ||
headScriptLogLines: 10 | ||
tailScriptLogLines: 20 | ||
templateFile: /path/to/slack_templates/failed-reload-qscloud.handlebars | ||
|
@@ -1049,7 +1049,7 @@ Butler: | |
excludeOwner: | ||
user: | ||
# - email: [email protected] | ||
rateLimit: 60 # Min seconds between emails for a given taskID. Defaults to 5 minutes. | ||
rateLimit: 60 # Min seconds between emails for a given appId/recipient combo. Defaults to 5 minutes. | ||
headScriptLogLines: 15 | ||
tailScriptLogLines: 25 | ||
priority: high # high/normal/low | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.