get_network_capture_status
Check current network capture status to monitor progress, view statistics, and verify if capture is active before stopping a session.
Instructions
Get the current status of network capture for a session. Returns whether capture is active, duration, current statistics, and capture options. Useful for monitoring capture progress or checking if capture is running before stopping.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sessionId | Yes | Session ID obtained from initialize_session |
Input Schema (JSON Schema)
{
"properties": {
"sessionId": {
"description": "Session ID obtained from initialize_session",
"type": "string"
}
},
"required": [
"sessionId"
],
"type": "object"
}