proxy_export_har
Export HTTP/HTTPS traffic logs in HAR format using a domain filter, timestamp, and custom filename for detailed monitoring and analysis.
Instructions
Export traffic log as HAR (HTTP Archive) format
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain | No | Filter by specific domain | |
filename | No | Output filename (without .har extension) | |
since | No | ISO timestamp to export entries since |
Input Schema (JSON Schema)
{
"properties": {
"domain": {
"description": "Filter by specific domain",
"type": "string"
},
"filename": {
"description": "Output filename (without .har extension)",
"type": "string"
},
"since": {
"description": "ISO timestamp to export entries since",
"type": "string"
}
},
"type": "object"
}