管理每月活跃用户使用情况
你被收费的项目 #
🌐 What you are charged for
你会根据在计费周期内登录或刷新令牌的不同用户数量收费(包括通过 Google、Facebook、GitHub 等社交登录)。每个独立用户在每个计费周期只会被计算一次,无论他们认证多少次。这些用户被称为“MAU”。
🌐 You are charged for the number of distinct users who log in or refresh their token during the billing cycle (including Social Login with e.g. Google, Facebook, GitHub). Each unique user is counted only once per billing cycle, regardless of how many times they authenticate. These users are referred to as "MAUs".
示例 #
🌐 Example
你的计费周期是从1月1日到1月31日。虽然用户1多次登录,但在本计费周期内他们只算作一个月活跃用户(MAU)。
🌐 Your billing cycle runs from January 1 to January 31. Although User-1 was signed in multiple times, they are counted as a single MAU for this billing cycle.
月活跃用户数从 0 增加到 1。
1const {data, error} = await supabase.auth.signInWithPassword({2email: 'user-1@email.com',3password: 'example-password-1',4})javascript const {error} = await supabase.auth.signOut()
The MAU count remains 1.
1const {data, error} = await supabase.auth.signInWithPassword({2email: 'user-1@email.com',3password: 'example-password-1',4})How charges are calculated#
You are charged by MAU.
Usage on your invoice#
Usage is shown as "Monthly Active Users" on your invoice.
Pricing#
$0.00325 每月活跃用户。你只需为超出订阅计划配额的使用量付费。
The count resets at the start of each billing cycle.
| Plan | Quota | Over-Usage |
|---|---|---|
| Free | 50,000 | - |
| Pro | 100,000 | $0.00325 per MAU |
| Team | 100,000 | $0.00325 per MAU |
| Enterprise | Custom | Custom |
Billing examples#
Within quota#
The organization's MAU usage for the billing cycle is within the quota, so no charges apply.
| Line Item | Units | Costs |
|---|---|---|
| Pro Plan | 1 | $25 |
| Compute Hours Small | 730 hours | $15 |
| Monthly Active Users | 23,000 MAU | $0 |
| Subtotal | $40 | |
| Compute Credits | -$10 | |
| Total | $30 |
Exceeding quota#
The organization's MAU usage for the billing cycle exceeds the quota by 60,000, incurring charges for this additional usage.
| Line Item | Units | Costs |
|---|---|---|
| Pro Plan | 1 | $25 |
| Compute Hours Small | 730 hours | $15 |
| Monthly Active Users | 160,000 MAU | $195 |
| Subtotal | $235 | |
| Compute Credits | -$10 | |
| Total | $225 |
View usage#
You can view Monthly Active Users 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.

In the Monthly Active Users section, you can see the usage for the selected time period.

Exceeding Quotas#
如果你使用的是付费计划并且已关闭花费上限,或者你的组织使用的是团队计划及以上,你将需要支付任何超出部分的费用。
🌐 If you are on a paid plan and have Spend Cap disabled or your organization is on Team Plan or above, you will pay for any overages.
当你在使用免费计划或启用了消费上限时超出配额,你会收到发送到账单邮箱的通知,并进入宽限期。更多细节请参阅我们的公平使用政策。
🌐 When you are exceeding your quotas while being on a Free Plan or having Spend Cap enabled, you will get a notification to your billing email address and put under a grace period. For more details, refer to our Fair Use Policy.