-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement monitoring of the application using Prometheus, Grafana, Al…
…ertmanager, cAdvisor. Implement broadcasting of messages from Redis Pub/Sub
- Loading branch information
1 parent
de3f408
commit 45bd594
Showing
18 changed files
with
1,143 additions
and
218 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,12 @@ | ||
route: | ||
receiver: gmail | ||
|
||
receivers: | ||
- name: gmail | ||
email_configs: | ||
- to: [email protected] | ||
from: [email protected] | ||
smarthost: smtp.gmail.com:587 | ||
auth_username: [email protected] | ||
auth_identity: [email protected] | ||
auth_password: password |
11 changes: 11 additions & 0 deletions
11
mongodb-redis/monitoring/grafana/provisioning/dashboards/providers.yml
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,11 @@ | ||
apiVersion: 1 | ||
|
||
providers: | ||
- name: 'default' | ||
folder: 'default' | ||
type: file | ||
allowUiUpdates: true | ||
updateIntervalSeconds: 30 | ||
options: | ||
path: /etc/grafana/provisioning/dashboards | ||
foldersFromFilesStructure: true |
Oops, something went wrong.