get_cpu_info_tool
Retrieve CPU usage and core-specific details for system diagnostics and performance monitoring. Specify measurement intervals and enable per-CPU breakdowns as needed.
Instructions
Retrieve CPU usage and information.
Args: interval: Measurement interval in seconds (default: 1.0) per_cpu: Include per-CPU core breakdown (default: false)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
interval | No | ||
per_cpu | No |
Input Schema (JSON Schema)
{
"properties": {
"interval": {
"default": 1,
"title": "Interval",
"type": "number"
},
"per_cpu": {
"default": false,
"title": "Per Cpu",
"type": "boolean"
}
},
"title": "get_cpu_info_toolArguments",
"type": "object"
}