Some checks failed
CI Docker Mining Proof / Linux agent hashrate proof (push) Has been cancelled
Extract fleet caps (128 hosts, sem=16, 250ms coalesce, syscheck=20) into named constants with Go tests; wire ListStaleOnlineAgents for stale sweeps instead of full ListAgents scans.
11 lines
227 B
Go
11 lines
227 B
Go
package api
|
|
|
|
import "time"
|
|
|
|
// WebSocket fleet telemetry scale limits.
|
|
const (
|
|
StatsBatchCoalesceInterval = 250 * time.Millisecond
|
|
StaleAgentSweepInterval = 45 * time.Second
|
|
StaleAgentThreshold = 3 * time.Minute
|
|
)
|