get_flow_insights
Analyze network traffic by content categories to identify top bandwidth consumers, blocked traffic, and usage trends for sites like social media or adult content. Provides actionable insights for period-specific monitoring.
Instructions
Get category-based flow analysis including top content categories, bandwidth consumers, and blocked traffic. Ideal for answering questions like "what porn sites were accessed" or "what social media was used". Replaces time-based trends with actionable insights.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
categories | No | Filter to specific content categories (optional) | |
include_blocked | No | Include blocked traffic analysis (default: false) | |
period | No | Time period for analysis (default: 24h) | 24h |
Input Schema (JSON Schema)
{
"properties": {
"categories": {
"description": "Filter to specific content categories (optional)",
"items": {
"enum": [
"ad",
"edu",
"games",
"gamble",
"intel",
"p2p",
"porn",
"private",
"social",
"shopping",
"video",
"vpn"
],
"type": "string"
},
"type": "array"
},
"include_blocked": {
"default": false,
"description": "Include blocked traffic analysis (default: false)",
"type": "boolean"
},
"period": {
"default": "24h",
"description": "Time period for analysis (default: 24h)",
"enum": [
"1h",
"24h",
"7d",
"30d"
],
"type": "string"
}
},
"required": [],
"type": "object"
}