Files
supabase/apps/studio/components/interfaces/Organization/Usage/OrgLogUsage.tsx
Kevin Grüneberg 4b948672a3 feat: support platform plan usage insights (#41185)
- Adds missing log and active compute hour insights in both usage summary and daily stats (only Platform Plan)
- Adds database size usage insights for platform orgs
- Hide the circular progress bar if the usage item has no included usage (otherwise always 100% filled with any usage)
- Hide percentage if usage item has no included usage
- Adjust upcoming invoice breakdown to properly handle compute and active compute hours
- Hide subscription change button for platform/enterprise orgs (we already have a callout saying they gotta reach out to us)
- Adjusted database size insights for platform to no longer display 0.5 GB per project being included
2025-12-15 16:14:46 +08:00

65 lines
1.8 KiB
TypeScript

import { DataPoint } from 'data/analytics/constants'
import { PricingMetric, type OrgDailyUsageResponse } from 'data/analytics/org-daily-stats-query'
import type { OrgSubscription } from 'data/subscriptions/types'
import UsageSection from './UsageSection/UsageSection'
import { dailyUsageToDataPoints } from './Usage.utils'
export interface OrgLogUsageProps {
orgSlug: string
projectRef?: string | null
startDate: string | undefined
endDate: string | undefined
subscription: OrgSubscription | undefined
currentBillingCycleSelected: boolean
orgDailyStats: OrgDailyUsageResponse | undefined
isLoadingOrgDailyStats: boolean
}
const OrgLogUsage = ({
orgSlug,
projectRef,
subscription,
currentBillingCycleSelected,
orgDailyStats,
isLoadingOrgDailyStats,
}: OrgLogUsageProps) => {
const chartMeta: {
[key: string]: { data: DataPoint[]; margin: number; isLoading: boolean }
} = {
[PricingMetric.LOG_INGESTION]: {
data: dailyUsageToDataPoints(
orgDailyStats,
(metric) => metric === PricingMetric.LOG_INGESTION
),
margin: 18,
isLoading: isLoadingOrgDailyStats,
},
[PricingMetric.LOG_QUERYING]: {
data: dailyUsageToDataPoints(
orgDailyStats,
(metric) => metric === PricingMetric.LOG_QUERYING
),
margin: 20,
isLoading: isLoadingOrgDailyStats,
},
[PricingMetric.LOG_STORAGE]: {
data: dailyUsageToDataPoints(orgDailyStats, (metric) => metric === PricingMetric.LOG_STORAGE),
margin: 0,
isLoading: isLoadingOrgDailyStats,
},
}
return (
<UsageSection
orgSlug={orgSlug}
projectRef={projectRef}
categoryKey="logs"
chartMeta={chartMeta}
subscription={subscription}
currentBillingCycleSelected={currentBillingCycleSelected}
/>
)
}
export default OrgLogUsage