Simple alert system; FD limit alerts
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
package modules
|
||||
|
||||
import (
|
||||
"github.com/filecoin-project/lotus/journal/alerting"
|
||||
"github.com/filecoin-project/lotus/lib/ulimit"
|
||||
)
|
||||
|
||||
func CheckFdLimit(min uint64) func(al *alerting.Alerting) {
|
||||
return func(al *alerting.Alerting) {
|
||||
if ulimit.GetLimit == nil {
|
||||
return
|
||||
}
|
||||
|
||||
alert := al.AddAlertType("process", "fd-limit")
|
||||
|
||||
soft, _, err := ulimit.GetLimit()
|
||||
if err != nil {
|
||||
al.Raise(alert, map[string]string{
|
||||
"message": "failed to get FD limit",
|
||||
"error": err.Error(),
|
||||
})
|
||||
}
|
||||
|
||||
if soft < min {
|
||||
al.Raise(alert, map[string]interface{}{
|
||||
"message": "soft FD limit is low",
|
||||
"soft_limit": soft,
|
||||
"recommended_min": min,
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// TODO: More things:
|
||||
// * Space in repo dirs (taking into account mounts)
|
||||
// * Miner
|
||||
// * Faulted partitions
|
||||
// * Low balances
|
||||
// * Market provider
|
||||
// * Reachability
|
||||
// * on-chain config
|
||||
// * Low memory (maybe)
|
||||
// * Network / sync issues
|
||||
Reference in New Issue
Block a user