proxy_get_traffic_log
Retrieve and filter captured HTTP/HTTPS traffic logs based on domain, method, timestamp, or limit, enabling precise monitoring and analysis of web proxy activity.
Instructions
Get captured traffic log with filtering options
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain | No | Filter by specific domain | |
limit | No | Maximum number of entries to return | |
method | No | Filter by HTTP method (GET, POST, etc.) | |
since | No | ISO timestamp to get entries since |
Input Schema (JSON Schema)
{
"properties": {
"domain": {
"description": "Filter by specific domain",
"type": "string"
},
"limit": {
"default": 50,
"description": "Maximum number of entries to return",
"type": "number"
},
"method": {
"description": "Filter by HTTP method (GET, POST, etc.)",
"type": "string"
},
"since": {
"description": "ISO timestamp to get entries since",
"type": "string"
}
},
"type": "object"
}