-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: detect new pod crashes (#3)
* feature: detect new pod crashes * fix: update config.yaml
- Loading branch information
Showing
10 changed files
with
150 additions
and
81 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,23 @@ | ||
## Contributing to kwatch | ||
|
||
:tada: Anyone can contribute to kwatch. Newcomers are always welcome to contribute to kwatch, and we are happy to offer help to newcomers. | ||
Before making changes, please first discuss the change you want to make through [Discord](https://discord.gg/kzJszdKmJ7) | ||
|
||
|
||
### There are many ways to contribute: | ||
|
||
+ [Suggest new features to be implemented](https://github.com/abahmed/kwatch/issues) | ||
+ [Report issues](https://github.com/abahmed/kwatch/issues) | ||
+ [Improve Documentation](https://github.com/abahmed/kwatch) | ||
+ [Fix issues](https://github.com/abahmed/kwatch/issues) | ||
|
||
|
||
### Code Contribution | ||
|
||
If you wish to work on an issue, please comment on the issue that you want to work on it. This is to prevent duplicated efforts on the same issue. | ||
|
||
|
||
Contributions to kwatch should be made in the form of pull requests to the **main** branch. Each pull request will be reviewed by someone with permission to land patches. After reviewing the patch, it could be landed in the master branch or given feedback for changes. | ||
|
||
### Code of Conduct | ||
We expect everyone to follow the [Code Of Conduct](./CODE_OF_CONDUCT.md) |
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
maxRecentLogLines: 0 | ||
providers: | ||
slack: | ||
webhook: "" |
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
package constant | ||
|
||
// WelcomeMsg | ||
// WelcomeMsg is used to be sent to all providers when kwatch starts | ||
const WelcomeMsg = ":tada: kwatch just started!" | ||
|
||
// NumRequeues | ||
// NumRequeues indicates number of retries when worker fails to handle item | ||
const NumRequeues = 5 | ||
|
||
// NumWorkers | ||
// NumWorkers is the number concurrent workers that consume items for the queue | ||
const NumWorkers = 4 |
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
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.