|
|
package heartbeatmanager |
|
|
|
|
|
import ( |
|
|
"context" |
|
|
"database/sql" |
|
|
|
|
|
"github.com/target/goalert/alert" |
|
|
"github.com/target/goalert/engine/processinglock" |
|
|
"github.com/target/goalert/util" |
|
|
) |
|
|
|
|
|
|
|
|
type DB struct { |
|
|
lock *processinglock.Lock |
|
|
|
|
|
alertStore *alert.Store |
|
|
|
|
|
fetchFailed *sql.Stmt |
|
|
fetchHealthy *sql.Stmt |
|
|
} |
|
|
|
|
|
|
|
|
func (db *DB) Name() string { return "Engine.HeartbeatManager" } |
|
|
|
|
|
|
|
|
func NewDB(ctx context.Context, db *sql.DB, a *alert.Store) (*DB, error) { |
|
|
lock, err := processinglock.NewLock(ctx, db, processinglock.Config{ |
|
|
Type: processinglock.TypeHeartbeat, |
|
|
Version: 2, |
|
|
}) |
|
|
if err != nil { |
|
|
return nil, err |
|
|
} |
|
|
|
|
|
p := &util.Prepare{Ctx: ctx, DB: db} |
|
|
|
|
|
return &DB{ |
|
|
lock: lock, |
|
|
alertStore: a, |
|
|
|
|
|
|
|
|
fetchFailed: p.P(` |
|
|
with rows as ( |
|
|
select id |
|
|
from heartbeat_monitors |
|
|
where |
|
|
last_state != 'unhealthy' and |
|
|
now() - last_heartbeat >= heartbeat_interval |
|
|
limit 250 |
|
|
for update skip locked |
|
|
) |
|
|
update heartbeat_monitors mon |
|
|
set last_state = 'unhealthy' |
|
|
from rows |
|
|
where mon.id = rows.id |
|
|
returning mon.id, name, service_id, last_heartbeat, coalesce(additional_details, ''), coalesce(muted, '') |
|
|
`), |
|
|
fetchHealthy: p.P(` |
|
|
with rows as ( |
|
|
select id |
|
|
from heartbeat_monitors |
|
|
where |
|
|
last_state != 'healthy' and |
|
|
now() - last_heartbeat < heartbeat_interval |
|
|
limit 250 |
|
|
for update skip locked |
|
|
) |
|
|
update heartbeat_monitors mon |
|
|
set last_state = 'healthy' |
|
|
from rows |
|
|
where mon.id = rows.id |
|
|
returning mon.id, service_id |
|
|
`), |
|
|
}, p.Err |
|
|
} |
|
|
|