Back to Supabase

Manage Realtime Messages usage

apps/docs/content/guides/platform/manage-your-usage/realtime-messages.mdx

1.26.043.8 KB
Original Source

What you are charged for

You are charged for the number of messages going through Supabase Realtime throughout the billing cycle. Includes database changes, Broadcast and Presence.

Database changes Each database change counts as one message per client that listens to the event. For example, if a database change occurs and 5 clients listen to that database event, it counts as 5 messages.

Broadcast Each broadcast message counts as one message sent plus one message per subscribed client that receives it. For example, if you broadcast a message and 4 clients listen to it, it counts as 5 messages—1 sent and 4 received.

How charges are calculated

Realtime Messages are billed using Package pricing, with each package representing 1 million messages. If your usage falls between two packages, you are billed for the next whole package.

Example

For simplicity, let's assume a package size of 1,000,000 and a charge of <Price price="2.50" /> per package without quota.

MessagesPackages BilledCosts
999,9991<Price price="2.50" />
1,000,0001<Price price="2.50" />
1,000,0012<Price price="5.00" />
1,500,0002<Price price="5.00" />

Usage on your invoice

Usage is shown as "Realtime Messages" on your invoice.

Pricing

<$Partial path="billing/pricing/pricing_realtime_messages.mdx" />

Billing examples

Within quota

The organization's Realtime messages are within the quota, so no charges apply.

Line ItemUnitsCosts
Pro Plan1<Price price="25" />
Compute Hours Micro744 hours<Price price="10" />
Realtime Messages1.8 million messages<Price price="0" />
Subtotal<Price price="35" />
Compute Credits-<Price price="10" />
Total<Price price="25" />

Exceeding quota

The organization's Realtime messages exceed the quota by 3.5 million, incurring charges for this additional usage.

Line ItemUnitsCosts
Pro Plan1<Price price="25" />
Compute Hours Micro744 hours<Price price="10" />
Realtime Messages8.5 million messages<Price price="10" />
Subtotal<Price price="45" />
Compute Credits-<Price price="10" />
Total<Price price="35" />

View usage

You can view Realtime Messages usage on the organization's usage page. The page shows the usage of all projects by default. To view the usage for a specific project, select it from the dropdown. You can also select a different time period.

<Image alt="Usage page navigation bar" src={{ light: '/docs/img/guides/platform/usage-navbar--light.png', dark: '/docs/img/guides/platform/usage-navbar--dark.png', }}

width={1546} height={208} />

In the Realtime Messages section, you can see the usage for the selected time period.

<Image alt="Usage page Realtime Messages section" src={{ light: '/docs/img/guides/platform/usage-realtime-messages--light.png', dark: '/docs/img/guides/platform/usage-realtime-messages--dark.png', }}

width={2036} height={760} />

Exceeding Quotas

<$Partial path="billing/exceeding_usage_quotas.mdx" />