container_stats
Monitor container resource usage statistics including CPU, memory, and network metrics to track performance and identify resource bottlenecks in Podman containers.
Instructions
Get resource usage statistics for containers.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| container | No | Container name or ID (all containers if not specified) | |
| no_stream | No | Disable streaming stats and only pull the first result |
Input Schema (JSON Schema)
{
"properties": {
"container": {
"default": null,
"description": "Container name or ID (all containers if not specified)",
"title": "Container",
"type": "string"
},
"no_stream": {
"default": true,
"description": "Disable streaming stats and only pull the first result",
"title": "No Stream",
"type": "boolean"
}
},
"type": "object"
}