| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- import { useParams } from 'common'
- import dayjs from 'dayjs'
- import { Auth, Database, Realtime, Storage } from 'icons'
- import sumBy from 'lodash/sumBy'
- import Link from 'next/link'
- import { useRouter } from 'next/router'
- import { useEffect, useState } from 'react'
- import { Loading } from 'ui'
- import BarChart from '@/components/ui/Charts/BarChart'
- import { ChartIntervalDropdown } from '@/components/ui/Logs/ChartIntervalDropdown'
- import { CHART_INTERVALS } from '@/components/ui/Logs/logs.utils'
- import Panel from '@/components/ui/Panel'
- import {
- ProjectLogStatsVariables,
- UsageApiCounts,
- useProjectLogStatsQuery,
- } from '@/data/analytics/project-log-stats-query'
- import { useFillTimeseriesSorted } from '@/hooks/analytics/useFillTimeseriesSorted'
- import { useCheckEntitlements } from '@/hooks/misc/useCheckEntitlements'
- import { useIsFeatureEnabled } from '@/hooks/misc/useIsFeatureEnabled'
- import { useSelectedOrganizationQuery } from '@/hooks/misc/useSelectedOrganization'
- type ChartIntervalKey = ProjectLogStatsVariables['interval']
- const ProjectUsage = () => {
- const router = useRouter()
- const { ref: projectRef } = useParams()
- const { data: organization } = useSelectedOrganizationQuery()
- const { projectAuthAll: authEnabled, projectStorageAll: storageEnabled } = useIsFeatureEnabled([
- 'project_auth:all',
- 'project_storage:all',
- ])
- const { getEntitlementMax } = useCheckEntitlements('log.retention_days')
- const retentionDays = getEntitlementMax()
- const DEFAULT_INTERVAL: ChartIntervalKey =
- retentionDays !== undefined && retentionDays < 7 ? '1hr' : '1day'
- const [interval, setInterval] = useState<ChartIntervalKey>(DEFAULT_INTERVAL)
- useEffect(() => {
- setInterval(retentionDays !== undefined && retentionDays < 7 ? '1hr' : '1day')
- }, [retentionDays])
- const { data, isPending: isLoading } = useProjectLogStatsQuery({ projectRef, interval })
- const selectedInterval = CHART_INTERVALS.find((i) => i.key === interval) || CHART_INTERVALS[1]
- const startDateLocal = dayjs().subtract(
- selectedInterval.startValue,
- selectedInterval.startUnit as dayjs.ManipulateType
- )
- const endDateLocal = dayjs()
- const { data: charts } = useFillTimeseriesSorted({
- data: data?.result ?? [],
- timestampKey: 'timestamp',
- valueKey: [
- 'total_auth_requests',
- 'total_rest_requests',
- 'total_storage_requests',
- 'total_realtime_requests',
- ],
- defaultValue: 0,
- startDate: startDateLocal.toISOString(),
- endDate: endDateLocal.toISOString(),
- minPointsToFill: 5,
- })
- const datetimeFormat = selectedInterval.format || 'MMM D, ha'
- const handleBarClick = (
- value: UsageApiCounts,
- _type: 'rest' | 'realtime' | 'storage' | 'auth'
- ) => {
- const unit = selectedInterval.startUnit
- const selectedStart = dayjs(value?.timestamp)
- const selectedEnd = selectedStart.add(1, unit)
- if (_type === 'rest') {
- router.push(
- `/project/${projectRef}/logs/edge-logs?its=${selectedStart.toISOString()}&ite=${selectedEnd.toISOString()}`
- )
- return
- }
- router.push(
- `/project/${projectRef}/logs/edge-logs?its=${selectedStart.toISOString()}&ite=${selectedEnd.toISOString()}&f=${JSON.stringify(
- {
- product: {
- [_type]: true,
- },
- }
- )}`
- )
- }
- return (
- <div className="space-y-6">
- <div className="flex flex-row items-center gap-x-2">
- <ChartIntervalDropdown
- value={interval || '1day'}
- onChange={(interval) => setInterval(interval as ProjectLogStatsVariables['interval'])}
- organizationSlug={organization?.slug}
- dropdownAlign="start"
- tooltipSide="right"
- />
- <span className="text-xs text-foreground-light">
- Statistics for {selectedInterval.label.toLowerCase()}
- </span>
- </div>
- <div className="grid grid-cols-1 @md:grid-cols-2 gap-4 @2xl:grid-cols-4">
- <Panel className="mb-0">
- <Panel.Content className="space-y-4">
- <PanelHeader
- icon={
- <div className="rounded-sm bg-surface-300 p-1.5 text-foreground-light shadow-xs">
- <Database strokeWidth={1.5} size={16} />
- </div>
- }
- title="Database"
- href={`/project/${projectRef}/editor`}
- />
- <Loading active={isLoading}>
- <BarChart
- title="REST Requests"
- data={charts}
- xAxisKey="timestamp"
- yAxisKey="total_rest_requests"
- onBarClick={(v: unknown) => handleBarClick(v as UsageApiCounts, 'rest')}
- customDateFormat={datetimeFormat}
- highlightedValue={sumBy(charts, 'total_rest_requests')}
- />
- </Loading>
- </Panel.Content>
- </Panel>
- {authEnabled && (
- <Panel className="mb-0 md:mb-0">
- <Panel.Content className="space-y-4">
- <PanelHeader
- icon={
- <div className="rounded-sm bg-surface-300 p-1.5 text-foreground-light shadow-xs">
- <Auth strokeWidth={1.5} size={16} />
- </div>
- }
- title="Auth"
- href={`/project/${projectRef}/auth/users`}
- />
- <Loading active={isLoading}>
- <BarChart
- title="Auth Requests"
- data={charts}
- xAxisKey="timestamp"
- yAxisKey="total_auth_requests"
- onBarClick={(v: unknown) => handleBarClick(v as UsageApiCounts, 'auth')}
- customDateFormat={datetimeFormat}
- highlightedValue={sumBy(charts || [], 'total_auth_requests')}
- />
- </Loading>
- </Panel.Content>
- </Panel>
- )}
- {storageEnabled && (
- <Panel className="mb-0 md:mb-0">
- <Panel.Content className="space-y-4">
- <PanelHeader
- icon={
- <div className="rounded-sm bg-surface-300 p-1.5 text-foreground-light shadow-xs">
- <Storage strokeWidth={1.5} size={16} />
- </div>
- }
- title="Storage"
- href={`/project/${projectRef}/storage/buckets`}
- />
- <Loading active={isLoading}>
- <BarChart
- title="Storage Requests"
- data={charts}
- xAxisKey="timestamp"
- yAxisKey="total_storage_requests"
- onBarClick={(v: unknown) => handleBarClick(v as UsageApiCounts, 'storage')}
- customDateFormat={datetimeFormat}
- highlightedValue={sumBy(charts, 'total_storage_requests')}
- />
- </Loading>
- </Panel.Content>
- </Panel>
- )}
- <Panel className="mb-0 md:mb-0">
- <Panel.Content className="space-y-4">
- <PanelHeader
- icon={
- <div className="rounded-sm bg-surface-300 p-1.5 text-foreground-light shadow-xs">
- <Realtime strokeWidth={1.5} size={16} />
- </div>
- }
- title="Realtime"
- />
- <Loading active={isLoading}>
- <BarChart
- title="Realtime Requests"
- data={charts}
- xAxisKey="timestamp"
- yAxisKey="total_realtime_requests"
- onBarClick={(v: unknown) => handleBarClick(v as UsageApiCounts, 'realtime')}
- customDateFormat={datetimeFormat}
- highlightedValue={sumBy(charts, 'total_realtime_requests')}
- />
- </Loading>
- </Panel.Content>
- </Panel>
- </div>
- </div>
- )
- }
- export default ProjectUsage
- const PanelHeader = (props: any) => {
- const Tag = props?.href ? Link : 'div'
- return (
- <Tag href={props.href}>
- <div
- className={
- 'flex items-center space-x-3 opacity-80 transition ' +
- (props.href ? 'cursor-pointer hover:text-gray-1200 hover:opacity-100' : '')
- }
- >
- <div>{props.icon}</div>
- <span className="flex items-center space-x-1">
- <h4 className="mb-0 text-lg">{props.title}</h4>
- </span>
- </div>
- </Tag>
- )
- }
|