Notifier can notify ops or sysadmins of potential problems. A Notifier should keep state to avoid sending repeated notices more often than the admin would like.
| 37 | // state to avoid sending repeated notices |
| 38 | // more often than the admin would like. |
| 39 | type Notifier interface { |
| 40 | Type() string |
| 41 | Notify([]types.Result) error |
| 42 | } |
| 43 | |
| 44 | // Provisioner is a type of storage mechanism that can |
| 45 | // provision itself for use with checkup. Provisioning |