Fix ops payment incident grouping

This commit is contained in:
2569718930@qq.com
2026-06-01 13:49:47 +08:00
parent 49cb0bb42d
commit 31fb1b3f28
8 changed files with 410 additions and 32 deletions
+8 -1
View File
@@ -85,11 +85,14 @@ export type SourceHealthPayload = {
};
export type PaymentRuntimePayload = {
rpc?: string;
rpc?: Record<string, unknown> | string;
chain_id?: number;
receiver_contract?: string;
last_scanned_block?: number;
audit_events_count?: number;
checkout?: Record<string, unknown>;
event_loop_state?: Record<string, unknown>;
recent_audit_events?: Array<Record<string, unknown>>;
recent_events?: Array<Record<string, unknown>>;
};
@@ -106,6 +109,10 @@ export type PaymentIncident = {
resolved?: boolean;
resolved_at?: string;
resolved_by?: string;
occurrence_count?: number;
event_ids?: number[];
first_seen_at?: string;
last_seen_at?: string;
};
export type IncidentsPayload = {