From 97691613146c0ed2332b61892d625e913c58fbaf Mon Sep 17 00:00:00 2001 From: Cameron Bates Date: Wed, 1 Oct 2025 14:30:01 -0400 Subject: [PATCH] RC: Cost report page --- content/embeds/rc-pro-billing-units.md | 2 - .../_index.md} | 2 + .../rc/billing-and-payments/cost-report.md | 77 +++++++++++++++++++ .../create-pro-database-existing.md | 2 + .../create-pro-database-new.md | 1 + .../operate/rc/logs-reports/usage-reports.md | 4 +- 6 files changed, 85 insertions(+), 3 deletions(-) rename content/operate/rc/{billing-and-payments.md => billing-and-payments/_index.md} (98%) create mode 100644 content/operate/rc/billing-and-payments/cost-report.md diff --git a/content/embeds/rc-pro-billing-units.md b/content/embeds/rc-pro-billing-units.md index 52b0b86d66..285ecfd253 100644 --- a/content/embeds/rc-pro-billing-units.md +++ b/content/embeds/rc-pro-billing-units.md @@ -1,5 +1,3 @@ -## Billing Unit types - The Redis Billing Unit types associated with your Pro subscription depend on your database memory size and throughput requirements. | Billing unit type | Capacity (Memory/Throughput) | diff --git a/content/operate/rc/billing-and-payments.md b/content/operate/rc/billing-and-payments/_index.md similarity index 98% rename from content/operate/rc/billing-and-payments.md rename to content/operate/rc/billing-and-payments/_index.md index da0a0ef90e..1c8d38dc7c 100644 --- a/content/operate/rc/billing-and-payments.md +++ b/content/operate/rc/billing-and-payments/_index.md @@ -118,6 +118,8 @@ For any special circumstances that may warrant a refund, please contact [Support {{< embed-md "rc-cost-report-csv.md" >}} +See [Cost report]({{< relref "/operate/rc/billing-and-payments/cost-report" >}}) for more information. + ## Troubleshoot See [Billing](https://support.redislabs.com/hc/en-us/categories/26174537325842-Billing) on the Redis knowledge base for help troubleshooting billing issues: diff --git a/content/operate/rc/billing-and-payments/cost-report.md b/content/operate/rc/billing-and-payments/cost-report.md new file mode 100644 index 0000000000..fbefa26b04 --- /dev/null +++ b/content/operate/rc/billing-and-payments/cost-report.md @@ -0,0 +1,77 @@ +--- +Title: Download and analyze cost report +alwaysopen: false +categories: +- docs +- operate +- rc +description: Describes how to download the cost report for your Redis Cloud account. +linkTitle: Cost report +weight: 39 +--- + +The Redis Cloud cost report provides a detailed breakdown of your Redis Cloud subscription usage and associated charges. It is designed to help you track, audit, and optimize your Redis Cloud spending across Essentials and Pro subscription plans. + +You can download the cost report from the [**Billing and Payments**]({{< relref "/operate/rc/billing-and-payments" >}}) and [**Usage Reports**]({{< relref "/operate/rc/logs-reports/usage-reports" >}}) pages. + +{{< embed-md "rc-cost-report-csv.md" >}} + +The cost report is especially useful for: +- Internal cost visibility +- Usage trend analysis +- Budget forecasting +- Troubleshooting unexpected charges + +{{< note >}} +Consider the following limitations when viewing the cost report: +- All pricing shown is based on list price. Account-specific discounts are not reflected in the cost report. +- Network costs for Pro subscriptions are not available in the cost report before July 2025. +- Monthly Network costs for Pro subscriptions take up to 72 hours to reflect in the cost report. +{{< /note >}} + +## Structure + +The Cost Report CSV file is separated into two sections, one for Redis Cloud Essentials subscriptions and one for Redis Cloud Pro subscriptions. + +### Essentials subscriptions + +In the Essentials subscription section, each row represents one month of usage for a subscription. + +| Column | Description | +|:-------|:------------| +| **Start date** | The start date of the usage period | +| **End date** | The end date of the usage period | +| **Subscription ID** | The subscription's unique ID | +| **Subscription name** | The subscription's name | +| **Plan size** | The size of the [subscription plan]({{< relref "/operate/rc/subscriptions/view-essentials-subscription/essentials-plan-details" >}}), in MB | +| **Plan cost** | The cost of the subscription plan for the usage period | + +### Pro subscriptions + +In the Pro subscription section, each subscription has multiple rows per month. +- Each row represents monthly usage of each database within the subscription. For Active-Active databases, there will be multiple rows for each region of the database. +- Another row shows the Monthly network costs for the subscription after July 2025. +- If the Pro subscription does not meet the minimum price threshold, the cost report shows the actual cost of the subscription and another row shows the difference from the minimum price. + +| Column | Description | +|:-------|:------------| +| **Start date** | The start date of the usage period | +| **End date** | The end date of the usage period | +| **Subscription ID** | The subscription's unique ID | +| **Subscription name** | The subscription's name | +| **Database ID** | The database's unique ID | +| **Database name** | The database's name | +| **Region** | The database's region. For Active-Active databases, the cost report shows a row for each region of the database. | +| **High availability** | Whether the subscription is [highly available]({{< relref "/operate/rc/databases/configuration/high-availability" >}}) | +| **Memory limit** | The database's memory limit, in MB | +| **Throughput** | The database's throughput, in ops/sec | +| **RBU type** | The [Redis Billing Unit (RBU)](#billing-unit-types) type of the database. This column shows "difference from min subscription price" for the row that shows the difference from the minimum subscription price, and "Network" for the row that shows the monthly network costs for the subscription. | +| **RBU Count** | The number of Redis Billing Units (RBUs) used by the database. | +| **RBU Price/hr** | The price per hour for the Redis Billing Unit (RBU) type of the database. | +| **Hours** | The number of hours the database was active during the usage period. | +| **Total cost** | The total cost of the database or network costs for the usage period | + +#### Billing unit types + +{{< embed-md "rc-pro-billing-units.md" >}} + diff --git a/content/operate/rc/databases/create-database/create-pro-database-existing.md b/content/operate/rc/databases/create-database/create-pro-database-existing.md index 1fda719161..d3c9aaf5d8 100644 --- a/content/operate/rc/databases/create-database/create-pro-database-existing.md +++ b/content/operate/rc/databases/create-database/create-pro-database-existing.md @@ -127,4 +127,6 @@ The **Alerts** section defines notification emails sent to your account and the The available alerts vary according to the plan type. See [Configure alerts]({{< relref "/operate/rc/databases/monitor-performance#configure-metric-alerts" >}}) for more information. +## Billing unit types + {{< embed-md "rc-pro-billing-units.md" >}} \ No newline at end of file diff --git a/content/operate/rc/databases/create-database/create-pro-database-new.md b/content/operate/rc/databases/create-database/create-pro-database-new.md index 6704397e3f..a512d9df73 100644 --- a/content/operate/rc/databases/create-database/create-pro-database-new.md +++ b/content/operate/rc/databases/create-database/create-pro-database-new.md @@ -212,6 +212,7 @@ Note that databases are created in the background. While they are provisioning, Use the **Database list** to check the status of your databases. +## Billing unit types {{< embed-md "rc-pro-billing-units.md" >}} diff --git a/content/operate/rc/logs-reports/usage-reports.md b/content/operate/rc/logs-reports/usage-reports.md index 9711817e97..fb1e71fce4 100644 --- a/content/operate/rc/logs-reports/usage-reports.md +++ b/content/operate/rc/logs-reports/usage-reports.md @@ -23,4 +23,6 @@ You can also hold the pointer over each bar in the graph to view the precise mem ## Download cost report -{{< embed-md "rc-cost-report-csv.md" >}} \ No newline at end of file +{{< embed-md "rc-cost-report-csv.md" >}} + +See [Cost report]({{< relref "/operate/rc/billing-and-payments/cost-report" >}}) for more information. \ No newline at end of file