-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhealth.js
More file actions
54 lines (45 loc) · 1.3 KB
/
Copy pathhealth.js
File metadata and controls
54 lines (45 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// ==========================================
// Health Check & Monitoring — HTTP endpoint for status
// ==========================================
// Exposes /health on a configurable port so load balancers,
// Docker, and monitoring tools can check if the agent is alive.
import express from 'express';
import config from './config.js';
const startTime = Date.now();
const stats = {
messagesReceived: 0,
messagesSent: 0,
errors: 0,
lastMessageAt: null,
};
export function recordIncoming() {
stats.messagesReceived++;
stats.lastMessageAt = new Date().toISOString();
}
export function recordOutgoing() {
stats.messagesSent++;
}
export function recordError() {
stats.errors++;
}
export function startHealthServer(port) {
const app = express();
app.get('/health', (_req, res) => {
res.json({
status: 'ok',
agent: config.agent.name,
agentId: config.agent.id,
provider: config.aiProvider,
platform: config.platform,
uptime: Math.round((Date.now() - startTime) / 1000),
stats,
});
});
app.get('/ready', (_req, res) => {
// Readiness check — can be extended to check provider connectivity
res.json({ ready: true });
});
app.listen(port, () => {
console.log(`[Health] Monitoring endpoint at http://localhost:${port}/health`);
});
}