Loading...
Loading...
Agent Health
Continuous health monitoring with composite scoring, memory tracking, latency measurement, and automated degradation alerts.
Capabilities
Composite 0-100 health score combining memory, latency, entity count, and stale data metrics into a single actionable number.
Monitor memory consumption in real time. Detect memory leaks and resource exhaustion before they cause failures.
Track response latency trends. Get alerted when agents slow down beyond configured thresholds.
Identify stale or outdated data entries that could affect agent decision quality and accuracy.
Automatic alerts when health scores drop below thresholds. Multi-channel notifications for immediate response.
Set check intervals, score thresholds, and alert preferences per agent. Full control over monitoring behavior.
Getting Started
Set check intervals, score thresholds, and alert preferences for each agent in your fleet.
DRD runs health checks on schedule, capturing metrics and calculating composite health scores.
Get alerted on degradation. View detailed health data, diagnose issues, and take corrective action.
Developer Integration
import { DRD } from '@drd/sdk';
const drd = new DRD({ token: 'drd_live_sk_...' });
// Configure health monitoring
await drd.agentHealth.createConfig({
agentId: 'agent_abc123',
checkIntervalMinutes: 5,
scoreThreshold: 70,
alertOnDegradation: true,
});
// Get latest health status
const health = await drd.agentHealth.getLatest({
agentId: 'agent_abc123',
});
console.log('Score:', health.healthScore);
console.log('Status:', health.status);
console.log('Memory:', health.memoryUsageMb, 'MB');Continuous health monitoring with automated alerts. Detect issues before they impact production.