proxy_analyze_traffic
Analyzes HTTP/HTTPS traffic patterns and statistics by domain, method, status, or hour, enabling detailed insights into web proxy activity for informed decision-making.
Instructions
Analyze captured traffic patterns and statistics
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| domain | No | Analyze specific domain only | |
| groupBy | No | Group analysis results by | domain |
| timeframe | No | Time frame for analysis | 24h |
Input Schema (JSON Schema)
{
"properties": {
"domain": {
"description": "Analyze specific domain only",
"type": "string"
},
"groupBy": {
"default": "domain",
"description": "Group analysis results by",
"enum": [
"domain",
"method",
"status",
"hour"
],
"type": "string"
},
"timeframe": {
"default": "24h",
"description": "Time frame for analysis",
"enum": [
"1h",
"24h",
"7d",
"30d",
"all"
],
"type": "string"
}
},
"type": "object"
}