get_containers_process_trees
Retrieve process trees for specified containers to analyze runtime behavior and identify potential security risks in Kubernetes and cloud environments.
Instructions
Get process trees for multiple containers
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| container_ids | Yes | List of container IDs to get process trees for | |
| processes_limit | No | Limit the number of processes to get |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"container_ids": {
"description": "List of container IDs to get process trees for",
"items": {
"type": "string"
},
"type": "array"
},
"processes_limit": {
"default": 1000,
"description": "Limit the number of processes to get",
"type": "number"
}
},
"required": [
"container_ids"
],
"type": "object"
}