Table: digitalocean_bill - Query DigitalOcean Billing Information using SQL
DigitalOcean Billing is a feature within DigitalOcean that enables users to track and manage their resource consumption and associated costs. It provides a detailed breakdown of the usage and costs for various DigitalOcean resources, including droplets, volumes, and more. Through DigitalOcean Billing, users can gain insights into their spending patterns and optimize their resource usage accordingly.
Table Usage Guide
The digitalocean_bill
table provides insights into the billing information within DigitalOcean. As a DevOps engineer or a finance manager, you can explore detailed billing information through this table, including the cost, usage, and other related details of different resources. Utilize it to uncover information about your spending patterns, identify high-cost resources, and optimize your resource usage to reduce costs.
Examples
List all bills
Explore your billing history on DigitalOcean to better understand your usage patterns and costs. This can help in budget management and predicting future expenses.
select *from digitalocean_bill;
select *from digitalocean_bill;
Amounts by year
Explore which years had the highest total payments in your DigitalOcean account. This can be useful for financial planning and budgeting purposes.
select extract( year from date ) as year, sum(- to_number(amount, 'L9G999g999.99')) as paymentfrom digitalocean_billwhere type = 'Payment'group by year;
select strftime('%Y', date) as year, sum(- cast(amount as decimal)) as paymentfrom digitalocean_billwhere type = 'Payment'group by year;
Schema for digitalocean_bill
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
amount | text | Amount of the billing history entry. | |
date | timestamp with time zone | Time the billing history entry occured. | |
description | text | Description of the billing history entry. | |
invoice_id | text | ID of the invoice associated with the billing history entry, if applicable. | |
invoice_uuid | text | UUID of the invoice associated with the billing history entry, if applicable. | |
type | text | Type of billing history entry. |