get_cost_breakdown_by_service
Analyze cloud spending by service category over a specified period to identify cost drivers and optimize resource allocation.
Instructions
Get cost breakdown by service for the specified period.
Args: days: Number of days to analyze (default: 30)
Returns: Service-wise cost breakdown with percentages
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days | No |
Input Schema (JSON Schema)
{
"properties": {
"days": {
"default": 30,
"title": "Days",
"type": "integer"
}
},
"type": "object"
}