|
package metricsmanager |
|
|
|
import ( |
|
"context" |
|
"database/sql" |
|
|
|
"github.com/target/goalert/engine/processinglock" |
|
"github.com/target/goalert/util" |
|
) |
|
|
|
const engineVersion = 3 |
|
|
|
|
|
type DB struct { |
|
db *sql.DB |
|
lock *processinglock.Lock |
|
|
|
boundNow *sql.Stmt |
|
|
|
scanLogs *sql.Stmt |
|
insertMetrics *sql.Stmt |
|
} |
|
|
|
|
|
func (db *DB) Name() string { return "Engine.MetricsManager" } |
|
|
|
|
|
func NewDB(ctx context.Context, db *sql.DB) (*DB, error) { |
|
lock, err := processinglock.NewLock(ctx, db, processinglock.Config{ |
|
Version: engineVersion, |
|
Type: processinglock.TypeMetrics, |
|
}) |
|
if err != nil { |
|
return nil, err |
|
} |
|
|
|
p := &util.Prepare{Ctx: ctx, DB: db} |
|
|
|
return &DB{ |
|
db: db, |
|
lock: lock, |
|
|
|
|
|
boundNow: p.P(`select now() - '2 minutes'::interval`), |
|
|
|
scanLogs: p.P(` |
|
select alert_id, timestamp, id |
|
from alert_logs |
|
where event='closed' and timestamp < $3 and (timestamp > $1 or (timestamp = $1 and id > $2)) |
|
order by timestamp, id |
|
limit 500`), |
|
|
|
insertMetrics: p.P(` |
|
insert into alert_metrics (alert_id, service_id, time_to_ack, time_to_close, escalated, closed_at) |
|
select |
|
a.id, |
|
a.service_id, |
|
(select timestamp - a.created_at from alert_logs where alert_id = a.id and event = 'acknowledged' order by timestamp limit 1), |
|
(select timestamp - a.created_at from alert_logs where alert_id = a.id and event = 'closed' order by timestamp limit 1), |
|
(select count(*) > 1 from alert_logs where alert_id = a.id and event = 'escalated'), |
|
(select timestamp from alert_logs where alert_id = a.id and event = 'closed' order by timestamp limit 1) |
|
from alerts a |
|
where a.id = any($1) and a.service_id is not null |
|
on conflict do nothing |
|
`), |
|
}, p.Err |
|
} |
|
|