chore: Add undici package and update health check service to utilize undici's Agent for improved HTTP probing
Build, Test, and Push CFDM Docker Image / test (push) Successful in 4m9s
Build, Test, and Push CFDM Docker Image / build-and-push (push) Successful in 2m58s
Build, Test, and Push CFDM Docker Image / update-wiki (push) Successful in 9s
Build, Test, and Push CFDM Docker Image / create-release (push) Has been skipped

This commit is contained in:
Denozordec
2026-06-26 00:15:22 +07:00
parent 43d473c520
commit a0380b3f66
3 changed files with 31 additions and 1 deletions
+21 -1
View File
@@ -1,4 +1,5 @@
import { connect } from "node:net";
import { Agent } from "undici";
import type { Db } from "@cfdm/db";
import { repos } from "@cfdm/db";
import type { HealthCheckTarget, IpHealthState } from "@cfdm/shared";
@@ -64,14 +65,33 @@ async function httpProbe(
): Promise<ProbeResult> {
const started = Date.now();
const path = target.path?.trim() || "/";
const url = `http://${ip}${path.startsWith("/") ? path : `/${path}`}`;
const pathWithSlash = path.startsWith("/") ? path : `/${path}`;
const port = target.port ?? 80;
const hostHeader = target.hostname || ip;
const useTls = port === 443;
// For HTTPS probing against a raw IP, set SNI/Host so TLS handshake and vhost routing work.
const authorityHost = target.hostname || ip;
const url = useTls
? `https://${authorityHost}${pathWithSlash}`
: `http://${ip}${pathWithSlash}`;
// Custom dispatcher for HTTPS-to-IP: connect to the literal IP, but present hostname via SNI.
const dispatcher =
useTls && target.hostname
? new Agent({
connect: {
servername: target.hostname,
rejectUnauthorized: false,
},
})
: undefined;
try {
const response = await fetch(url, {
method: "GET",
headers: { Host: hostHeader },
signal: AbortSignal.timeout(timeoutMs),
redirect: "manual",
// @ts-expect-error undici dispatcher option is not in fetch types
dispatcher,
});
const latency = Date.now() - started;
if (target.expected_status != null) {