-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated packages, config reading and adding command execution on failure
- Loading branch information
1 parent
16c3c90
commit c1923e1
Showing
8 changed files
with
1,249 additions
and
57 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"extends": "strongloop", | ||
"rules": { | ||
"max-len": [2, 120, 8] | ||
}, | ||
"env": { | ||
"node": true, | ||
"es6": true | ||
}, | ||
"parserOptions": { | ||
"ecmaVersion": 2018 | ||
} | ||
} |
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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
* | ||
!.gitignore | ||
!default.json |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"notify_interval": 900, | ||
"monitor_interval": 60, | ||
"connection_timeout": 30, | ||
"services": {}, | ||
"discord_webhooks": [], | ||
"notify_emails": [], | ||
"smtp_transport": {}, | ||
"message_strings": { | ||
"failure": "**${name}** service with host **${host}** and port **${port}** has gone down!", | ||
"failure_with_command": "**${name}** service with host **${host}** and port **${port}** has gone down. **${command}** was executed!" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.