LiteLLM

Gateway health and connectivity status

up auth_required down
{#if requestError}

Failed to fetch LiteLLM health

{requestError}

{/if}
{#if loading && !health}
{#each Array(6) as _}
{/each}
{:else if health}

Health Status

{valueOrDash(health.status)}

OK

{String(Boolean(health.ok))}

Latency

{health.latency_ms === null || health.latency_ms === undefined ? "—" : `${health.latency_ms} ms`}

Endpoint

{valueOrDash(health.endpoint)}

HTTP Status

{valueOrDash(health.http_status)}

Error

{valueOrDash(health.error)}

{:else}

No health data available.

{/if}