monitor-network
Track and filter browser network requests by URL pattern and duration to analyze real-time activity and optimize performance in Vite-based development environments.
Instructions
Monitors network requests in the browser for a specified duration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
duration | No | Duration in milliseconds to monitor (default: 5000) | |
urlPattern | No | URL pattern to filter (regex string) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"duration": {
"description": "Duration in milliseconds to monitor (default: 5000)",
"type": "number"
},
"urlPattern": {
"description": "URL pattern to filter (regex string)",
"type": "string"
}
},
"type": "object"
}