Applied withLogging() wrapper to all 24 API routes for consistent logging: Process Control Routes: - Start/stop/restart individual processes - Start-all/stop-all/restart-all batch operations Signal Routes: - Signal individual processes - Signal all processes - Signal process groups Group Management Routes: - Start/stop/restart process groups - Signal operations for groups Configuration Routes: - Get all configs (GET) - Reload configuration (POST) - Add/remove process groups (POST/DELETE) Log Routes: - Read main supervisord log - Read process stdout/stderr logs - Clear process logs (individual and all) System Routes: - Get system info - Get all processes info - Get individual process info - Send stdin to process All routes now include: - Request/response logging with timing - Automatic error handling and correlation IDs - X-Request-ID header propagation - Consistent metadata in responses Also fixed Next.js 16 deprecation: - Moved experimental.serverComponentsExternalPackages to serverExternalPackages 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
24 lines
900 B
TypeScript
24 lines
900 B
TypeScript
import { NextRequest, NextResponse } from 'next/server';
|
|
import { createSupervisorClient } from '@/lib/supervisor/client';
|
|
import { withLogging } from '@/lib/utils/api-logger';
|
|
|
|
export const dynamic = 'force-dynamic';
|
|
|
|
export const GET = withLogging(async (request: NextRequest) => {
|
|
const searchParams = request.nextUrl.searchParams;
|
|
const offset = parseInt(searchParams.get('offset') || '-4096', 10);
|
|
const length = parseInt(searchParams.get('length') || '4096', 10);
|
|
|
|
const client = createSupervisorClient();
|
|
const logs = await client.readLog(offset, length);
|
|
|
|
return NextResponse.json({ logs, offset, length });
|
|
}, 'readMainLog');
|
|
|
|
export const DELETE = withLogging(async (request: NextRequest) => {
|
|
const client = createSupervisorClient();
|
|
const result = await client.clearLog();
|
|
|
|
return NextResponse.json({ success: result, message: 'Main log cleared' });
|
|
}, 'clearMainLog');
|