analyze_costs
Analyze Vultr subaccount costs and usage patterns to identify spending trends, generate projections, and provide optimization recommendations for cloud infrastructure management.
Instructions
Analyze costs and usage patterns for a subaccount.
Args: subaccount_id: The subaccount ID, name, email, or UUID analysis_days: Number of days to analyze (default: 30)
Returns: Detailed cost analysis including projections and recommendations
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| analysis_days | No | ||
| subaccount_id | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "analysis_days": {
      "default": 30,
      "title": "Analysis Days",
      "type": "integer"
    },
    "subaccount_id": {
      "title": "Subaccount Id",
      "type": "string"
    }
  },
  "required": [
    "subaccount_id"
  ],
  "type": "object"
}