Traefik gets the same treatment as the other six services now instead of a bespoke widget type: docker health merged with a single "Routes" stat, via the same internal container-to-container API call (http://traefik:8080/api/http/routers) it already used. No auth needed, same as before. Deleted lib/collectors/traefik.ts, lib/types/traefik-result.ts, and components/widgets/traefik/ entirely - the generic service Widget.tsx and ServiceWidgetResult shape cover it with zero new component code.
16 lines
383 B
TypeScript
16 lines
383 B
TypeScript
import type { ServiceWidget } from "@/lib/config/schema";
|
|
|
|
const SERVICE_PORTS: Record<ServiceWidget["service"], number> = {
|
|
gitea: 3000,
|
|
coolify: 8080,
|
|
immich: 2283,
|
|
n8n: 5678,
|
|
umami: 3000,
|
|
headscale: 8080,
|
|
traefik: 8080,
|
|
};
|
|
|
|
export function serviceBaseUrl(widget: ServiceWidget): string {
|
|
return `http://${widget.containerName}:${SERVICE_PORTS[widget.service]}`;
|
|
}
|