UIPackage
Menu

Framework

Change language

Boilerplate repo

Usage Metering Dashboard

blockfinance

Real-time consumption metering and overage monitoring dashboard: billing cycle tracking with days remaining, 4 key resource meter cards (API requests, compute hours, vector storage, bandwidth) with color-shifting threshold progress bars and projected month-end usage, projected invoice cost summary with overage breakdown, auto-scale overage protection toggle, email alert threshold selector, and recent usage events audit log.

Also available for Vue ->

Installation

$npx shadcn@latest add https://uipkge.dev/r/react/usage-metering-dashboard.json
Named registry:npx shadcn@latest add @uipkge-react/usage-metering-dashboardInstalls to:components/blocks/

Variants

Loading interactive previews…

Schema

Type aliases exported from this item's source. Use these to shape the data you pass in.

UsageEvent
interface UsageEvent {
  id: string
  timestamp: string
  service: string
  description: string
  volume: string
  status: 'warning' | 'normal'
  statusLabel: string
}

Files installed (1)

  • components/blocks/UsageMeteringDashboard.tsx20.7 kB
    'use client'
    
    import * as React from 'react'
    import { Activity, ArrowDownUp, ArrowUpRight, Cpu, Database, TriangleAlert, Zap } from 'lucide-react'
    import { cn } from '@/lib/utils'
    import { Badge } from '@/components/ui/badge'
    import { Button } from '@/components/ui/button'
    import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'
    import { Progress } from '@/components/ui/progress'
    import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select'
    import { Separator } from '@/components/ui/separator'
    import { Switch } from '@/components/ui/switch'
    import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '@/components/ui/table'
    
    interface UsageEvent {
      id: string
      timestamp: string
      service: string
      description: string
      volume: string
      status: 'warning' | 'normal'
      statusLabel: string
    }
    
    const events: UsageEvent[] = [
      {
        id: 'evt-1',
        timestamp: 'Aug 18, 2026 14:22',
        service: 'API Gateway',
        description: 'Spike: Batch sync job',
        volume: '+240,000 reqs',
        status: 'warning',
        statusLabel: 'High Spike',
      },
      {
        id: 'evt-2',
        timestamp: 'Aug 17, 2026 09:15',
        service: 'Vector Storage',
        description: 'Index re-indexing & optimization',
        volume: '+12.4 GB',
        status: 'normal',
        statusLabel: 'Normal',
      },
      {
        id: 'evt-3',
        timestamp: 'Aug 16, 2026 22:40',
        service: 'Compute Cluster',
        description: 'Model inference burst job',
        volume: '+85.0 hrs',
        status: 'normal',
        statusLabel: 'Normal',
      },
      {
        id: 'evt-4',
        timestamp: 'Aug 15, 2026 11:05',
        service: 'CDN Edge',
        description: 'Media cache invalidation & egress',
        volume: '+64.2 GB',
        status: 'normal',
        statusLabel: 'Normal',
      },
      {
        id: 'evt-5',
        timestamp: 'Aug 14, 2026 18:30',
        service: 'API Gateway',
        description: 'Webhook delivery retry storm',
        volume: '+180,000 reqs',
        status: 'warning',
        statusLabel: 'High Spike',
      },
    ]
    
    export function UsageMeteringDashboard({ className }: { className?: string }) {
      const [autoScaleProtection, setAutoScaleProtection] = React.useState(true)
      const [alertThreshold, setAlertThreshold] = React.useState('90')
    
      return (
        <div data-slot="usage-metering-dashboard" className={cn('mx-auto w-full max-w-6xl space-y-6', className)}>
          <div className="flex flex-col gap-4 md:flex-row md:items-center md:justify-between">
            <div className="space-y-1">
              <h1 className="text-foreground text-2xl font-bold tracking-tight sm:text-3xl">Usage & Metering</h1>
              <p className="text-muted-foreground text-sm">
                Monitor your organization's resource consumption and billing cycle limits.
              </p>
            </div>
            <div className="flex items-center gap-2">
              <Button variant="outline" size="sm" className="shrink-0 gap-1.5">
                <Zap className="fill-warning text-warning size-4" />
                <span>Change Plan</span>
                <ArrowUpRight className="text-muted-foreground size-3.5" />
              </Button>
            </div>
          </div>
    
          <Card className="bg-muted/30 p-4">
            <div className="flex flex-col gap-4 sm:flex-row sm:items-center sm:justify-between">
              <div className="space-y-1">
                <div className="flex items-center gap-2">
                  <span className="text-foreground text-sm font-semibold">Current Billing Period</span>
                  <Badge wrap variant="outline" className="text-xs font-normal">
                    Scale Plan — $199/mo
                  </Badge>
                </div>
                <p className="text-muted-foreground text-xs tabular-nums">
                  Day 18 of 30 · Current period ends Sep 1, 2026 (12 days remaining)
                </p>
              </div>
              <div className="w-full space-y-1.5 sm:w-72">
                <div className="flex items-center justify-between gap-x-2 text-xs">
                  <span className="text-muted-foreground">Cycle Progress</span>
                  <span className="text-foreground font-medium tabular-nums">60%</span>
                </div>
                <Progress value={60} className="h-1.5" />
              </div>
            </div>
          </Card>
    
          <div className="grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-4">
            <Card className="flex flex-col justify-between">
              <CardHeader className="pb-3">
                <div className="flex items-center justify-between gap-2">
                  <div className="flex min-w-0 items-center gap-2.5">
                    <div
                      aria-hidden="true"
                      className="bg-muted text-muted-foreground border-border flex size-8 shrink-0 items-center justify-center rounded-lg border shadow-xs"
                    >
                      <Activity className="size-4" />
                    </div>
                    <CardTitle className="truncate text-sm font-medium">API Requests</CardTitle>
                  </div>
                  <Badge wrap variant="warning" className="shrink-0 gap-1 text-xs">
                    <TriangleAlert className="size-3" />
                    <span>Approaching Limit</span>
                  </Badge>
                </div>
              </CardHeader>
              <CardContent className="space-y-3">
                <div>
                  <div className="mb-1 flex flex-wrap items-baseline justify-between gap-x-2 gap-y-0.5 text-xs">
                    <span className="text-foreground text-2xl font-bold tracking-tight tabular-nums">1.84M</span>
                    <span className="text-muted-foreground tabular-nums">/ 2.0M limit</span>
                  </div>
                  <Progress value={92} className="[&_[data-slot=progress-indicator]]:bg-warning h-2" />
                  <div className="mt-1.5 flex items-center justify-between gap-x-2 text-xs">
                    <span className="text-muted-foreground tabular-nums">92% utilized</span>
                    <span className="text-warning font-medium tabular-nums">160K remaining</span>
                  </div>
                </div>
                <div className="border-border/60 border-t pt-2.5 text-xs">
                  <div className="flex items-center justify-between gap-x-2">
                    <span className="text-muted-foreground">Projected at month-end:</span>
                    <span className="text-foreground font-medium tabular-nums">2.15M</span>
                  </div>
                  <p className="text-warning mt-0.5 text-xs font-medium tabular-nums">+150K overage (~$15.00)</p>
                </div>
              </CardContent>
            </Card>
    
            <Card className="flex flex-col justify-between">
              <CardHeader className="pb-3">
                <div className="flex items-center justify-between gap-2">
                  <div className="flex min-w-0 items-center gap-2.5">
                    <div
                      aria-hidden="true"
                      className="bg-muted text-muted-foreground border-border flex size-8 shrink-0 items-center justify-center rounded-lg border shadow-xs"
                    >
                      <Cpu className="size-4" />
                    </div>
                    <CardTitle className="truncate text-sm font-medium">Compute Hours</CardTitle>
                  </div>
                  <Badge wrap variant="success" className="shrink-0 text-xs">
                    Healthy
                  </Badge>
                </div>
              </CardHeader>
              <CardContent className="space-y-3">
                <div>
                  <div className="mb-1 flex flex-wrap items-baseline justify-between gap-x-2 gap-y-0.5 text-xs">
                    <span className="text-foreground text-2xl font-bold tracking-tight tabular-nums">420</span>
                    <span className="text-muted-foreground tabular-nums">/ 1,000 hrs limit</span>
                  </div>
                  <Progress value={42} className="[&_[data-slot=progress-indicator]]:bg-success h-2" />
                  <div className="mt-1.5 flex items-center justify-between gap-x-2 text-xs">
                    <span className="text-muted-foreground tabular-nums">42% utilized</span>
                    <span className="text-muted-foreground tabular-nums">580 hrs remaining</span>
                  </div>
                </div>
                <div className="border-border/60 border-t pt-2.5 text-xs">
                  <div className="flex items-center justify-between gap-x-2">
                    <span className="text-muted-foreground">Projected at month-end:</span>
                    <span className="text-foreground font-medium tabular-nums">700 hrs</span>
                  </div>
                  <p className="text-muted-foreground mt-0.5 text-xs">Within allowance (300 hrs headroom)</p>
                </div>
              </CardContent>
            </Card>
    
            <Card className="flex flex-col justify-between">
              <CardHeader className="pb-3">
                <div className="flex items-center justify-between gap-2">
                  <div className="flex min-w-0 items-center gap-2.5">
                    <div
                      aria-hidden="true"
                      className="bg-muted text-muted-foreground border-border flex size-8 shrink-0 items-center justify-center rounded-lg border shadow-xs"
                    >
                      <Database className="size-4" />
                    </div>
                    <CardTitle className="truncate text-sm font-medium">Vector Storage</CardTitle>
                  </div>
                  <Badge wrap variant="success" className="shrink-0 text-xs">
                    Healthy
                  </Badge>
                </div>
              </CardHeader>
              <CardContent className="space-y-3">
                <div>
                  <div className="mb-1 flex flex-wrap items-baseline justify-between gap-x-2 gap-y-0.5 text-xs">
                    <span className="text-foreground text-2xl font-bold tracking-tight tabular-nums">78 GB</span>
                    <span className="text-muted-foreground tabular-nums">/ 100 GB limit</span>
                  </div>
                  <Progress value={78} className="h-2" />
                  <div className="mt-1.5 flex items-center justify-between gap-x-2 text-xs">
                    <span className="text-muted-foreground tabular-nums">78% utilized</span>
                    <span className="text-muted-foreground tabular-nums">22 GB remaining</span>
                  </div>
                </div>
                <div className="border-border/60 border-t pt-2.5 text-xs">
                  <div className="flex items-center justify-between gap-x-2">
                    <span className="text-muted-foreground">Projected at month-end:</span>
                    <span className="text-foreground font-medium tabular-nums">84 GB</span>
                  </div>
                  <p className="text-muted-foreground mt-0.5 text-xs">Within allowance (16 GB headroom)</p>
                </div>
              </CardContent>
            </Card>
    
            <Card className="flex flex-col justify-between">
              <CardHeader className="pb-3">
                <div className="flex items-center justify-between gap-2">
                  <div className="flex min-w-0 items-center gap-2.5">
                    <div
                      aria-hidden="true"
                      className="bg-muted text-muted-foreground border-border flex size-8 shrink-0 items-center justify-center rounded-lg border shadow-xs"
                    >
                      <ArrowDownUp className="size-4" />
                    </div>
                    <CardTitle className="truncate text-sm font-medium">Bandwidth / Egress</CardTitle>
                  </div>
                  <Badge wrap variant="success" className="shrink-0 text-xs">
                    Healthy
                  </Badge>
                </div>
              </CardHeader>
              <CardContent className="space-y-3">
                <div>
                  <div className="mb-1 flex flex-wrap items-baseline justify-between gap-x-2 gap-y-0.5 text-xs">
                    <span className="text-foreground text-2xl font-bold tracking-tight tabular-nums">412 GB</span>
                    <span className="text-muted-foreground tabular-nums">/ 500 GB limit</span>
                  </div>
                  <Progress value={82.4} className="h-2" />
                  <div className="mt-1.5 flex items-center justify-between gap-x-2 text-xs">
                    <span className="text-muted-foreground tabular-nums">82.4% utilized</span>
                    <span className="text-muted-foreground tabular-nums">88 GB remaining</span>
                  </div>
                </div>
                <div className="border-border/60 border-t pt-2.5 text-xs">
                  <div className="flex items-center justify-between gap-x-2">
                    <span className="text-muted-foreground">Projected at month-end:</span>
                    <span className="text-foreground font-medium tabular-nums">485 GB</span>
                  </div>
                  <p className="text-muted-foreground mt-0.5 text-xs">Within allowance (15 GB headroom)</p>
                </div>
              </CardContent>
            </Card>
          </div>
    
          <div className="grid grid-cols-1 gap-6 lg:grid-cols-2">
            <Card>
              <CardHeader>
                <div className="flex items-center justify-between gap-x-2">
                  <CardTitle>Projected Month-End Cost</CardTitle>
                  <Badge wrap variant="warning" className="gap-1 text-xs">
                    <TriangleAlert className="size-3" />
                    <span>Overage Projected</span>
                  </Badge>
                </div>
                <CardDescription>
                  Estimated cycle total factoring base tier and current consumption trajectory.
                </CardDescription>
              </CardHeader>
              <CardContent className="space-y-4">
                <div className="border-border bg-muted/40 flex flex-wrap items-baseline justify-between gap-x-2 gap-y-0.5 rounded-lg border p-4">
                  <div>
                    <p className="text-muted-foreground text-xs font-medium tracking-wider uppercase">Projected Invoice</p>
                    <p className="text-foreground text-3xl font-bold tracking-tight tabular-nums">$214.00</p>
                  </div>
                  <div className="text-right">
                    <span className="text-muted-foreground text-xs">
                      Base Plan: <strong className="text-foreground font-semibold tabular-nums">$199.00</strong>
                    </span>
                    <p className="text-warning text-xs font-semibold tabular-nums">+$15.00 overage</p>
                  </div>
                </div>
    
                <div className="space-y-2.5 text-sm">
                  <div className="flex items-center justify-between gap-x-2">
                    <span className="text-foreground">Scale Plan Base Subscription</span>
                    <span className="text-foreground font-medium tabular-nums">$199.00</span>
                  </div>
                  <div className="flex items-center justify-between gap-x-2">
                    <div className="flex items-center gap-1.5">
                      <span className="text-foreground">API Requests Overage</span>
                      <Badge wrap variant="outline" className="text-xs font-normal">
                        150K @ $0.10 / 1K
                      </Badge>
                    </div>
                    <span className="text-warning font-medium tabular-nums">+$15.00</span>
                  </div>
                  <div className="flex items-center justify-between gap-x-2">
                    <span className="text-muted-foreground">Compute Hours (1,000 hrs allowance)</span>
                    <span className="text-muted-foreground tabular-nums">$0.00</span>
                  </div>
                  <div className="flex items-center justify-between gap-x-2">
                    <span className="text-muted-foreground">Storage & Egress Bandwidth</span>
                    <span className="text-muted-foreground tabular-nums">$0.00</span>
                  </div>
                </div>
    
                <Separator />
    
                <div className="text-muted-foreground flex items-center justify-between gap-x-2 text-xs">
                  <span>Next scheduled invoice date</span>
                  <span className="text-foreground font-medium tabular-nums">September 1, 2026</span>
                </div>
              </CardContent>
            </Card>
    
            <Card>
              <CardHeader>
                <CardTitle>Overage Protection & Alerts</CardTitle>
                <CardDescription>
                  Configure notifications and automated guardrails before limits are breached.
                </CardDescription>
              </CardHeader>
              <CardContent className="space-y-4">
                <div className="flex items-start justify-between gap-4">
                  <div className="space-y-1">
                    <label className="text-foreground text-sm leading-none font-medium">
                      Auto-scale Overage Protection
                    </label>
                    <p className="text-muted-foreground text-xs leading-relaxed">
                      Automatically throttle or scale resources to prevent unexpected billing spikes beyond set allowances.
                    </p>
                  </div>
                  <Switch
                    checked={autoScaleProtection}
                    onCheckedChange={setAutoScaleProtection}
                    aria-label="Toggle auto-scale overage protection"
                  />
                </div>
    
                <Separator />
    
                <div className="flex flex-col gap-2 sm:flex-row sm:items-center sm:justify-between">
                  <div className="space-y-1">
                    <label className="text-foreground text-sm leading-none font-medium">Email Alert Threshold</label>
                    <p className="text-muted-foreground text-xs">
                      Notify workspace admins when any metric crosses this percentage.
                    </p>
                  </div>
                  <Select value={alertThreshold} onValueChange={setAlertThreshold}>
                    <SelectTrigger className="w-full text-xs sm:w-44" aria-label="Email alert threshold">
                      <SelectValue placeholder="Select threshold" />
                    </SelectTrigger>
                    <SelectContent>
                      <SelectItem value="80">80% of limit</SelectItem>
                      <SelectItem value="90">90% of limit</SelectItem>
                      <SelectItem value="100">100% of limit</SelectItem>
                    </SelectContent>
                  </Select>
                </div>
    
                <Separator />
    
                <div className="bg-muted/40 border-border space-y-1.5 rounded-lg border p-3">
                  <div className="flex items-center justify-between gap-x-2 text-xs">
                    <span className="text-muted-foreground">Hard Spending Cap</span>
                    <span className="text-foreground font-semibold tabular-nums">$300.00 / mo</span>
                  </div>
                  <div className="flex items-center justify-between gap-x-2 text-xs">
                    <span className="text-muted-foreground">Recipients</span>
                    <span className="text-muted-foreground truncate">[email protected]</span>
                  </div>
                </div>
              </CardContent>
            </Card>
          </div>
    
          <Card>
            <CardHeader>
              <div className="flex flex-col gap-1 sm:flex-row sm:items-center sm:justify-between">
                <div>
                  <CardTitle>Recent Usage Events</CardTitle>
                  <CardDescription>
                    High-volume consumption spikes and automated resource scaling events this cycle.
                  </CardDescription>
                </div>
                <Badge wrap variant="outline" className="w-fit text-xs font-normal tabular-nums">
                  5 events logged
                </Badge>
              </div>
            </CardHeader>
            <CardContent className="p-0 sm:p-6 sm:pt-0">
              <div className="overflow-x-auto">
                <Table>
                  <TableHeader>
                    <TableRow>
                      <TableHead>Timestamp</TableHead>
                      <TableHead>Service</TableHead>
                      <TableHead>Event Description</TableHead>
                      <TableHead className="text-right">Volume</TableHead>
                      <TableHead className="text-right">Status</TableHead>
                    </TableRow>
                  </TableHeader>
                  <TableBody>
                    {events.map((event) => (
                      <TableRow key={event.id}>
                        <TableCell className="text-muted-foreground text-xs whitespace-nowrap tabular-nums">
                          {event.timestamp}
                        </TableCell>
                        <TableCell className="text-foreground text-xs font-medium whitespace-nowrap">
                          {event.service}
                        </TableCell>
                        <TableCell className="text-muted-foreground text-xs">{event.description}</TableCell>
                        <TableCell className="text-foreground text-right text-xs font-medium whitespace-nowrap tabular-nums">
                          {event.volume}
                        </TableCell>
                        <TableCell className="text-right">
                          <Badge wrap variant={event.status === 'warning' ? 'warning' : 'success'} className="text-xs">
                            {event.statusLabel}
                          </Badge>
                        </TableCell>
                      </TableRow>
                    ))}
                  </TableBody>
                </Table>
              </div>
            </CardContent>
          </Card>
        </div>
      )
    }
    

Raw manifest:https://uipkge.dev/r/react/usage-metering-dashboard.json