get_bandwidth_usage
Monitor and analyze top bandwidth-consuming devices on your network by specifying a time period and device limit. Supports filtering by Firewalla box for detailed insights.
Instructions
Get top bandwidth consuming devices (convenience wrapper around get_device_status)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
box | No | Filter devices under a specific Firewalla box | |
limit | No | Number of top devices to return | |
period | Yes | Time period for bandwidth calculation |
Input Schema (JSON Schema)
{
"properties": {
"box": {
"description": "Filter devices under a specific Firewalla box",
"type": "string"
},
"limit": {
"default": 10,
"description": "Number of top devices to return",
"maximum": 500,
"minimum": 1,
"type": "number"
},
"period": {
"description": "Time period for bandwidth calculation",
"enum": [
"1h",
"24h",
"7d",
"30d"
],
"type": "string"
}
},
"required": [
"period"
],
"type": "object"
}