feat(cg1): implement real BigQuery billing queries in billing_agent.py

This commit is contained in:
Chris Christiansen 2026-05-27 16:56:20 +00:00
parent df6676e6cb
commit 93b29079a4

View File

@ -1,4 +1,6 @@
import os import os
import datetime
from google.cloud import bigquery
from google.cloud import billing from google.cloud import billing
class BillingAgent: class BillingAgent:
@ -6,41 +8,100 @@ class BillingAgent:
self.project_id = os.environ.get("GOOGLE_CLOUD_PROJECT") self.project_id = os.environ.get("GOOGLE_CLOUD_PROJECT")
if not self.project_id: if not self.project_id:
raise ValueError("GOOGLE_CLOUD_PROJECT environment variable not set.") raise ValueError("GOOGLE_CLOUD_PROJECT environment variable not set.")
self.billing_account_id = os.environ.get("BILLING_ACCOUNT_ID")
if not self.billing_account_id:
raise ValueError("BILLING_ACCOUNT_ID environment variable not set.")
self.bq_client = bigquery.Client(project=self.project_id)
self.billing_client = billing.CloudBillingClient() self.billing_client = billing.CloudBillingClient()
self.billing_table = f"{self.project_id}.billing_export.gcp_billing_export_v1_*"
def get_summary(self): def get_summary(self):
""" """
Retrieves the billing summary for the last 30 days. Retrieves the billing summary for the last 30 days.
""" """
# This is a simplified example. The Cloud Billing API does not have a direct query = f"""
# "summary" endpoint. You would typically query for cost data over a time range. SELECT
# This implementation will be a placeholder. service.description as service,
return { SUM(cost) as total_cost
"summary": "Billing summary data would be here.", FROM `{self.billing_table}`
"project_id": self.project_id WHERE _PARTITIONTIME >= TIMESTAMP_SUB(CURRENT_TIMESTAMP(), INTERVAL 30 DAY)
} GROUP BY 1
ORDER BY total_cost DESC
"""
query_job = self.bq_client.query(query)
results = query_job.result()
summary = []
for row in results:
summary.append({"service": row.service, "total_cost": row.total_cost})
return {"summary": summary}
def get_forecast(self): def get_forecast(self):
""" """
Retrieves a billing forecast based on the last 7 days. Retrieves a billing forecast based on the last 7 days.
""" """
# The Cloud Billing API does not provide a direct forecast API. # Get total cost for the last 7 days
# This would require custom logic to calculate. query_last_7_days = f"""
# This implementation will be a placeholder. SELECT SUM(cost) as total_cost
FROM `{self.billing_table}`
WHERE _PARTITIONTIME >= TIMESTAMP_SUB(CURRENT_TIMESTAMP(), INTERVAL 7 DAY)
"""
query_job = self.bq_client.query(query_last_7_days)
results = query_job.result()
total_cost_last_7_days = 0
for row in results:
total_cost_last_7_days = row.total_cost or 0
daily_average = total_cost_last_7_days / 7
# Calculate remaining days in the month
today = datetime.date.today()
last_day_of_month = datetime.date(today.year, today.month, 1) + datetime.timedelta(days=32)
last_day_of_month = last_day_of_month.replace(day=1) - datetime.timedelta(days=1)
remaining_days = (last_day_of_month - today).days
forecasted_cost = daily_average * remaining_days
# Get current month-to-date cost
query_mtd = f"""
SELECT SUM(cost) as total_cost
FROM `{self.billing_table}`
WHERE EXTRACT(MONTH FROM _PARTITIONTIME) = EXTRACT(MONTH FROM CURRENT_DATE())
AND EXTRACT(YEAR FROM _PARTITIONTIME) = EXTRACT(YEAR FROM CURRENT_DATE())
"""
query_job_mtd = self.bq_client.query(query_mtd)
results_mtd = query_job_mtd.result()
mtd_cost = 0
for row in results_mtd:
mtd_cost = row.total_cost or 0
total_forecast = mtd_cost + forecasted_cost
return { return {
"forecast": "Billing forecast data would be here.", "daily_average_last_7_days": daily_average,
"project_id": self.project_id "month_to_date_cost": mtd_cost,
"forecasted_remaining_cost": forecasted_cost,
"total_monthly_forecast": total_forecast,
} }
def get_credits(self): def get_credits(self):
""" """
Retrieves active billing credits. Retrieves active billing credits.
""" """
# This is a simplified example. You would need to query for billing account billing_account_name = f"billingAccounts/{self.billing_account_id}"
# information and then check for credits. billing_info = self.billing_client.get_billing_account(name=billing_account_name)
# This is a simplified representation. The actual credit information might
# be structured differently. This is a placeholder for the structure.
return { return {
"credits": "Billing credits information would be here.", "billing_account_name": billing_info.name,
"project_id": self.project_id "display_name": billing_info.display_name,
"open": billing_info.open,
"credits": "Detailed credit information would require further API calls and parsing."
} }
if __name__ == '__main__': if __name__ == '__main__':