Improve health checks for instances

This commit is contained in:
2025-10-26 19:05:03 +01:00
parent f94d05dad2
commit 2a1bebeb24
5 changed files with 324 additions and 80 deletions

View File

@@ -2,7 +2,7 @@
import React from "react";
import { Badge } from "@/components/ui/badge";
import type { HealthStatus } from "@/types/instance";
import { CheckCircle, Loader2, XCircle } from "lucide-react";
import { CheckCircle, Loader2, XCircle, Clock, AlertCircle } from "lucide-react";
interface HealthBadgeProps {
health?: HealthStatus;
@@ -10,53 +10,61 @@ interface HealthBadgeProps {
const HealthBadge: React.FC<HealthBadgeProps> = ({ health }) => {
if (!health) {
health = {
status: "unknown", // Default to unknown if not provided
lastChecked: new Date(), // Default to current date
message: undefined, // No message by default
};
return null;
}
const getIcon = () => {
switch (health.status) {
case "ok":
switch (health.state) {
case "ready":
return <CheckCircle className="h-3 w-3" />;
case "loading":
return <Loader2 className="h-3 w-3 animate-spin" />;
case "error":
return <XCircle className="h-3 w-3" />;
case "unknown":
case "starting":
return <Loader2 className="h-3 w-3 animate-spin" />;
case "restarting":
return <Loader2 className="h-3 w-3 animate-spin" />;
case "stopped":
return <Clock className="h-3 w-3" />;
case "error":
return <AlertCircle className="h-3 w-3" />;
case "failed":
return <XCircle className="h-3 w-3" />;
}
};
const getVariant = () => {
switch (health.status) {
case "ok":
switch (health.state) {
case "ready":
return "default";
case "loading":
return "outline";
case "starting":
return "outline";
case "restarting":
return "outline";
case "stopped":
return "secondary";
case "error":
return "destructive";
case "unknown":
return "secondary";
case "failed":
return "destructive";
}
};
const getText = () => {
switch (health.status) {
case "ok":
switch (health.state) {
case "ready":
return "Ready";
case "loading":
return "Loading";
case "starting":
return "Starting";
case "restarting":
return "Restarting";
case "stopped":
return "Stopped";
case "error":
return "Error";
case "unknown":
return "Unknown";
case "failed":
return "Failed";
}
@@ -66,10 +74,11 @@ const HealthBadge: React.FC<HealthBadgeProps> = ({ health }) => {
<Badge
variant={getVariant()}
className={`flex items-center gap-1.5 ${
health.status === "ok"
health.state === "ready"
? "bg-green-100 text-green-800 border-green-200 dark:bg-green-900 dark:text-green-200 dark:border-green-800"
: ""
}`}
title={health.error || `Source: ${health.source}`}
>
{getIcon()}
<span className="text-xs">{getText()}</span>