Configure Auto-Scaling
Overview
Set up automatic scaling policies for your deployed agents.
SDK Example
// Auto-generated from SDK - Coming Soon
await workforce.configureAutoScaling({
agentId: 'my-agent',
minInstances: 1,
maxInstances: 10,
triggers: [
{ metric: 'cpu', threshold: 70, action: 'scale-up' },
{ metric: 'queue-depth', threshold: 100, action: 'scale-up' },
],
});
Use Cases
- Automatic scaling
- Cost efficiency
- Dynamic capacity
- Traffic management
See Also
- Scale Agent Instances
- Monitor Agent Health
- Distributed Workflow (HumanOS)