system_health 0.0.9 → 0.0.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +7 -0
- data/lib/system_health/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e0fb16300c48af63cc36431c61c64dbd391a7a25
|
4
|
+
data.tar.gz: 8ce70e85558a0f4cc4c0a0ac97c928cc06388c13
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8dc3a687098fc146263eb676ebf72ac33986b496676f4726185cc66ec9c1e2a9c6b59464b14ba21ee88bc9e7d9e5b178a95b4590acf8d927153877ae46768d6e
|
7
|
+
data.tar.gz: 0bae4245fefa30f76cd690d314421e59d247170c535dd9c5d619b82b83e471b44c3ad6906a7c910e734914dded010431a967d60934266d0e79ba9573c461bdc2
|
data/README.md
CHANGED
@@ -117,6 +117,13 @@ mon.error_messages
|
|
117
117
|
mon.error_count
|
118
118
|
```
|
119
119
|
|
120
|
+
## Notifying
|
121
|
+
|
122
|
+
You are free to do as you wish with the results from `error_messages`
|
123
|
+
and `error_count`. A common approach might be to create a simple
|
124
|
+
controller that responds with any errors. Or, you could create rake
|
125
|
+
task that sends an email to some list when errors are discovered.
|
126
|
+
|
120
127
|
## To do?
|
121
128
|
|
122
129
|
1. Add concept of notifiers to make it more seamless to email or report
|