mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-22 14:31:12 -05:00
Monitor rate limits progress
Implement monitor-rate-limits edge function to compare metrics against alert configurations, trigger notifications, and record alerts; update config and groundwork for admin UI integration.
This commit is contained in:
@@ -3,13 +3,18 @@ import { useNavigate } from 'react-router-dom';
|
||||
import { useAuth } from '@/hooks/useAuth';
|
||||
import { useUserRole } from '@/hooks/useUserRole';
|
||||
import { useRateLimitStats, useRecentMetrics } from '@/hooks/useRateLimitMetrics';
|
||||
import { useAlertConfigs, useAlertHistory, useUnresolvedAlerts, useUpdateAlertConfig, useResolveAlert } from '@/hooks/useRateLimitAlerts';
|
||||
import { useDocumentTitle } from '@/hooks/useDocumentTitle';
|
||||
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card';
|
||||
import { Tabs, TabsContent, TabsList, TabsTrigger } from '@/components/ui/tabs';
|
||||
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select';
|
||||
import { Badge } from '@/components/ui/badge';
|
||||
import { Button } from '@/components/ui/button';
|
||||
import { Switch } from '@/components/ui/switch';
|
||||
import { Input } from '@/components/ui/input';
|
||||
import { Label } from '@/components/ui/label';
|
||||
import { BarChart, Bar, XAxis, YAxis, CartesianGrid, Tooltip, ResponsiveContainer, PieChart, Pie, Cell, LineChart, Line, Legend } from 'recharts';
|
||||
import { Activity, Shield, TrendingUp, Users, Clock, AlertTriangle } from 'lucide-react';
|
||||
import { Activity, Shield, TrendingUp, Users, Clock, AlertTriangle, Bell, BellOff, CheckCircle } from 'lucide-react';
|
||||
import { Skeleton } from '@/components/ui/skeleton';
|
||||
import { Alert, AlertDescription } from '@/components/ui/alert';
|
||||
import { format } from 'date-fns';
|
||||
@@ -25,6 +30,12 @@ export default function RateLimitMetrics() {
|
||||
|
||||
const { data: stats, isLoading: statsLoading, error: statsError } = useRateLimitStats(timeWindow);
|
||||
const { data: recentData, isLoading: recentLoading } = useRecentMetrics(50);
|
||||
const { data: alertConfigs, isLoading: alertConfigsLoading } = useAlertConfigs();
|
||||
const { data: alertHistory, isLoading: alertHistoryLoading } = useAlertHistory(50);
|
||||
const { data: unresolvedAlerts } = useUnresolvedAlerts();
|
||||
|
||||
const updateConfig = useUpdateAlertConfig();
|
||||
const resolveAlert = useResolveAlert();
|
||||
|
||||
// Redirect if not authorized
|
||||
if (!rolesLoading && !isModerator()) {
|
||||
@@ -157,6 +168,13 @@ export default function RateLimitMetrics() {
|
||||
<TabsTrigger value="overview">Overview</TabsTrigger>
|
||||
<TabsTrigger value="blocked">Blocked Requests</TabsTrigger>
|
||||
<TabsTrigger value="recent">Recent Activity</TabsTrigger>
|
||||
<TabsTrigger value="alerts">
|
||||
Alerts
|
||||
{unresolvedAlerts && unresolvedAlerts.length > 0 && (
|
||||
<Badge variant="destructive" className="ml-2">{unresolvedAlerts.length}</Badge>
|
||||
)}
|
||||
</TabsTrigger>
|
||||
<TabsTrigger value="config">Configuration</TabsTrigger>
|
||||
</TabsList>
|
||||
|
||||
<TabsContent value="overview" className="space-y-6">
|
||||
@@ -331,6 +349,170 @@ export default function RateLimitMetrics() {
|
||||
</CardContent>
|
||||
</Card>
|
||||
</TabsContent>
|
||||
|
||||
<TabsContent value="alerts" className="space-y-6">
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>Alert History</CardTitle>
|
||||
<CardDescription>Recent rate limit threshold violations</CardDescription>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
{alertHistoryLoading ? (
|
||||
<div className="space-y-2">
|
||||
{[1, 2, 3].map((i) => (
|
||||
<Skeleton key={i} className="h-20" />
|
||||
))}
|
||||
</div>
|
||||
) : alertHistory && alertHistory.length > 0 ? (
|
||||
<div className="space-y-2 max-h-[600px] overflow-y-auto">
|
||||
{alertHistory.map((alert) => (
|
||||
<div
|
||||
key={alert.id}
|
||||
className={`flex items-start justify-between p-4 border rounded ${
|
||||
alert.resolved_at ? 'border-border bg-muted/30' : 'border-destructive/50 bg-destructive/5'
|
||||
}`}
|
||||
>
|
||||
<div className="flex-1">
|
||||
<div className="flex items-center gap-2 mb-2">
|
||||
{alert.resolved_at ? (
|
||||
<CheckCircle className="h-4 w-4 text-muted-foreground" />
|
||||
) : (
|
||||
<AlertTriangle className="h-4 w-4 text-destructive" />
|
||||
)}
|
||||
<Badge variant={alert.resolved_at ? 'secondary' : 'destructive'}>
|
||||
{alert.metric_type}
|
||||
</Badge>
|
||||
<span className="text-xs text-muted-foreground">
|
||||
{format(new Date(alert.created_at), 'PPp')}
|
||||
</span>
|
||||
</div>
|
||||
<p className="text-sm mb-2">{alert.alert_message}</p>
|
||||
<div className="flex gap-4 text-xs text-muted-foreground">
|
||||
<span>Value: {alert.metric_value.toFixed(2)}</span>
|
||||
<span>Threshold: {alert.threshold_value.toFixed(2)}</span>
|
||||
<span>Window: {alert.time_window_ms / 1000}s</span>
|
||||
</div>
|
||||
{alert.resolved_at && (
|
||||
<p className="text-xs text-muted-foreground mt-1">
|
||||
Resolved: {format(new Date(alert.resolved_at), 'PPp')}
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
{!alert.resolved_at && (
|
||||
<Button
|
||||
size="sm"
|
||||
variant="outline"
|
||||
onClick={() => resolveAlert.mutate(alert.id)}
|
||||
>
|
||||
Resolve
|
||||
</Button>
|
||||
)}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
) : (
|
||||
<div className="flex h-[300px] items-center justify-center text-muted-foreground">
|
||||
No alerts triggered yet
|
||||
</div>
|
||||
)}
|
||||
</CardContent>
|
||||
</Card>
|
||||
</TabsContent>
|
||||
|
||||
<TabsContent value="config" className="space-y-6">
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>Alert Configuration</CardTitle>
|
||||
<CardDescription>Configure thresholds for automated alerts</CardDescription>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
{alertConfigsLoading ? (
|
||||
<div className="space-y-4">
|
||||
{[1, 2, 3].map((i) => (
|
||||
<Skeleton key={i} className="h-24" />
|
||||
))}
|
||||
</div>
|
||||
) : alertConfigs && alertConfigs.length > 0 ? (
|
||||
<div className="space-y-4">
|
||||
{alertConfigs.map((config) => (
|
||||
<div key={config.id} className="p-4 border rounded space-y-3">
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-center gap-3">
|
||||
<Badge variant="outline">{config.metric_type}</Badge>
|
||||
<Switch
|
||||
checked={config.enabled}
|
||||
onCheckedChange={(enabled) =>
|
||||
updateConfig.mutate({ id: config.id, updates: { enabled } })
|
||||
}
|
||||
/>
|
||||
{config.enabled ? (
|
||||
<span className="text-sm text-muted-foreground flex items-center gap-1">
|
||||
<Bell className="h-3 w-3" /> Enabled
|
||||
</span>
|
||||
) : (
|
||||
<span className="text-sm text-muted-foreground flex items-center gap-1">
|
||||
<BellOff className="h-3 w-3" /> Disabled
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
<div className="grid grid-cols-2 gap-4">
|
||||
<div>
|
||||
<Label className="text-xs">Threshold Value</Label>
|
||||
<Input
|
||||
type="number"
|
||||
step="0.01"
|
||||
value={config.threshold_value}
|
||||
onChange={(e) => {
|
||||
const value = parseFloat(e.target.value);
|
||||
if (!isNaN(value)) {
|
||||
updateConfig.mutate({
|
||||
id: config.id,
|
||||
updates: { threshold_value: value }
|
||||
});
|
||||
}
|
||||
}}
|
||||
className="mt-1"
|
||||
/>
|
||||
<p className="text-xs text-muted-foreground mt-1">
|
||||
{config.metric_type === 'block_rate' && 'Value between 0 and 1 (e.g., 0.5 = 50%)'}
|
||||
{config.metric_type === 'total_requests' && 'Number of requests'}
|
||||
{config.metric_type === 'unique_ips' && 'Number of unique IPs'}
|
||||
</p>
|
||||
</div>
|
||||
<div>
|
||||
<Label className="text-xs">Time Window (ms)</Label>
|
||||
<Input
|
||||
type="number"
|
||||
step="1000"
|
||||
value={config.time_window_ms}
|
||||
onChange={(e) => {
|
||||
const value = parseInt(e.target.value);
|
||||
if (!isNaN(value)) {
|
||||
updateConfig.mutate({
|
||||
id: config.id,
|
||||
updates: { time_window_ms: value }
|
||||
});
|
||||
}
|
||||
}}
|
||||
className="mt-1"
|
||||
/>
|
||||
<p className="text-xs text-muted-foreground mt-1">
|
||||
Currently: {config.time_window_ms / 1000}s
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
) : (
|
||||
<div className="flex h-[200px] items-center justify-center text-muted-foreground">
|
||||
No alert configurations found
|
||||
</div>
|
||||
)}
|
||||
</CardContent>
|
||||
</Card>
|
||||
</TabsContent>
|
||||
</Tabs>
|
||||
</div>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user