Skip to content

Commit fa352d3

Browse files
committed
early access
1 parent 58f53d5 commit fa352d3

File tree

1 file changed

+13
-1
lines changed
  • apps/dashboard/app/(main)/observability/database

1 file changed

+13
-1
lines changed

apps/dashboard/app/(main)/observability/database/page.tsx

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
'use client';
22

3-
import { DatabaseIcon, TrendDownIcon } from '@phosphor-icons/react';
3+
import { DatabaseIcon, InfoIcon, TrendDownIcon } from '@phosphor-icons/react';
44
import { Suspense, useCallback, useRef, useState } from 'react';
55
import { toast } from 'sonner';
6+
import { Alert, AlertDescription } from '@/components/ui/alert';
67
import { Card, CardContent } from '@/components/ui/card';
78
import { useOrganizations } from '@/hooks/use-organizations';
89
import { trpc } from '@/lib/trpc';
@@ -216,6 +217,17 @@ export default function DatabasePage() {
216217
title="Database Monitoring"
217218
/>
218219

220+
<Alert className="rounded border-amber-200 bg-amber-50 dark:border-amber-800 dark:bg-amber-950">
221+
<InfoIcon className="h-4 w-4 text-amber-600 dark:text-amber-400" />
222+
<AlertDescription className="text-amber-800 dark:text-amber-200">
223+
<strong>Alpha Release - Early Access</strong>
224+
<br />
225+
Database monitoring is currently in alpha and not intended for
226+
production use. This is an early access feature for testing and
227+
feedback purposes only.
228+
</AlertDescription>
229+
</Alert>
230+
219231
<Suspense fallback={<DatabaseConnectionsSkeleton />}>
220232
<ConnectionsList
221233
connections={connections}

0 commit comments

Comments
 (0)