Coolify was the only service reporting the generic detail field (project name chips); drop it end to end - collector, type, and the widget's chip row - rather than leave the plumbing for zero producers. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01WpxhtQY3CExQdMs4j7MmJe
13 lines
251 B
TypeScript
13 lines
251 B
TypeScript
import type { DockerContainerResult } from "./widget-result";
|
|
|
|
export interface ServiceStat {
|
|
label: string;
|
|
value: string;
|
|
}
|
|
|
|
export interface ServiceWidgetResult {
|
|
docker: DockerContainerResult;
|
|
stats: ServiceStat[];
|
|
statError?: string;
|
|
}
|