analyze_cdn_performance
Analyze CDN zone performance metrics including cache hit ratio and bandwidth usage over a specified period to identify optimization opportunities.
Instructions
Analyze CDN zone performance over the specified period. Smart identifier resolution: use origin domain, CDN domain, or UUID.
Args: zone_identifier: The CDN zone origin domain, CDN domain, or ID days: Number of days to analyze (default: 7)
Returns: Performance analysis including cache hit ratio, bandwidth usage, and recommendations
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| days | No | ||
| zone_identifier | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "days": {
      "default": 7,
      "title": "Days",
      "type": "integer"
    },
    "zone_identifier": {
      "title": "Zone Identifier",
      "type": "string"
    }
  },
  "required": [
    "zone_identifier"
  ],
  "type": "object"
}