gcp-billing-detect-anomalies
Identify unexpected spending patterns in Google Cloud billing data by analyzing cost anomalies within a specified timeframe and threshold for enhanced cost management.
Instructions
Detect unusual cost patterns and spending anomalies in Google Cloud billing data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
billingAccountName | Yes | Billing account name (e.g., 'billingAccounts/123456-789ABC-DEF012') | |
lookbackDays | No | Number of days to look back for comparison (7-90) | |
projectId | No | Optional project ID to filter anomalies | |
thresholdPercentage | No | Percentage threshold for anomaly detection (10-500%) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"billingAccountName": {
"description": "Billing account name (e.g., 'billingAccounts/123456-789ABC-DEF012')",
"type": "string"
},
"lookbackDays": {
"default": 30,
"description": "Number of days to look back for comparison (7-90)",
"maximum": 90,
"minimum": 7,
"type": "number"
},
"projectId": {
"description": "Optional project ID to filter anomalies",
"type": "string"
},
"thresholdPercentage": {
"default": 50,
"description": "Percentage threshold for anomaly detection (10-500%)",
"maximum": 500,
"minimum": 10,
"type": "number"
}
},
"required": [
"billingAccountName"
],
"type": "object"
}