mirror of
https://github.com/fosrl/pangolin.git
synced 2026-07-22 21:44:15 +02:00
Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b1558b09b1 | |||
| a33de8268b | |||
| 9867d3c876 | |||
| 70bddba55b | |||
| 23181f4019 | |||
| 9cc3190e3a | |||
| 4c873e7c48 | |||
| 1580b7abff |
+140
-5
@@ -1,6 +1,6 @@
|
|||||||
import { z } from "zod";
|
import { z } from "zod";
|
||||||
import { db, logsDb, statusHistory } from "@server/db";
|
import { db, logsDb, statusHistory } from "@server/db";
|
||||||
import { and, eq, gte, lt, asc, desc } from "drizzle-orm";
|
import { and, eq, gte, lt, asc, desc, inArray, max, sql } from "drizzle-orm";
|
||||||
import { regionalCache as cache } from "#dynamic/lib/cache";
|
import { regionalCache as cache } from "#dynamic/lib/cache";
|
||||||
|
|
||||||
const STATUS_HISTORY_CACHE_TTL = 60; // seconds
|
const STATUS_HISTORY_CACHE_TTL = 60; // seconds
|
||||||
@@ -41,6 +41,7 @@ export async function getCachedStatusHistory(
|
|||||||
return cached;
|
return cached;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
console.time(`[getCachedStatusHistory/${entityType}=${entityId}]`);
|
||||||
// Anchor to local midnight (UTC when tzOffsetMinutes is 0) so the query
|
// Anchor to local midnight (UTC when tzOffsetMinutes is 0) so the query
|
||||||
// window aligns with stable calendar days for the requesting client
|
// window aligns with stable calendar days for the requesting client
|
||||||
const todayMidnightSec = localMidnightSec(tzOffsetMinutes);
|
const todayMidnightSec = localMidnightSec(tzOffsetMinutes);
|
||||||
@@ -76,12 +77,14 @@ export async function getCachedStatusHistory(
|
|||||||
|
|
||||||
const priorStatus = lastKnownEvent?.status ?? null;
|
const priorStatus = lastKnownEvent?.status ?? null;
|
||||||
|
|
||||||
|
console.time(`[computeBuckets/${entityType}=${entityId}]`);
|
||||||
const { buckets, totalDowntime } = computeBuckets(
|
const { buckets, totalDowntime } = computeBuckets(
|
||||||
events,
|
events,
|
||||||
days,
|
days,
|
||||||
priorStatus,
|
priorStatus,
|
||||||
tzOffsetMinutes
|
tzOffsetMinutes
|
||||||
);
|
);
|
||||||
|
console.timeEnd(`[computeBuckets/${entityType}=${entityId}]`);
|
||||||
const totalWindow = days * 86400;
|
const totalWindow = days * 86400;
|
||||||
const overallUptime =
|
const overallUptime =
|
||||||
totalWindow > 0
|
totalWindow > 0
|
||||||
@@ -96,6 +99,7 @@ export async function getCachedStatusHistory(
|
|||||||
totalDowntimeSeconds: totalDowntime
|
totalDowntimeSeconds: totalDowntime
|
||||||
};
|
};
|
||||||
|
|
||||||
|
console.timeEnd(`[getCachedStatusHistory/${entityType}=${entityId}]`);
|
||||||
await cache.set(cacheKey, result, STATUS_HISTORY_CACHE_TTL);
|
await cache.set(cacheKey, result, STATUS_HISTORY_CACHE_TTL);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@@ -264,9 +268,7 @@ export function computeBuckets(
|
|||||||
|
|
||||||
// Shift by the client's offset before formatting so the label reflects
|
// Shift by the client's offset before formatting so the label reflects
|
||||||
// their local calendar date rather than the UTC date of dayStartSec
|
// their local calendar date rather than the UTC date of dayStartSec
|
||||||
const dateStr = new Date(
|
const dateStr = new Date((dayStartSec + tzOffsetMinutes * 60) * 1000)
|
||||||
(dayStartSec + tzOffsetMinutes * 60) * 1000
|
|
||||||
)
|
|
||||||
.toISOString()
|
.toISOString()
|
||||||
.slice(0, 10);
|
.slice(0, 10);
|
||||||
|
|
||||||
@@ -301,6 +303,139 @@ export function computeBuckets(
|
|||||||
status
|
status
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
return { buckets, totalDowntime };
|
return { buckets, totalDowntime };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type BatchedStatusHistoryResponse = Record<
|
||||||
|
string,
|
||||||
|
StatusHistoryResponse
|
||||||
|
>;
|
||||||
|
|
||||||
|
export async function getBatchedStatusHistory(
|
||||||
|
entityType: string,
|
||||||
|
entityIds: number[],
|
||||||
|
days: number,
|
||||||
|
tzOffsetMinutes: number = 0
|
||||||
|
): Promise<BatchedStatusHistoryResponse> {
|
||||||
|
// const cacheKey = statusHistoryCacheKey(entityType, entityId, days);
|
||||||
|
// const cached = await cache.get<StatusHistoryResponse>(cacheKey);
|
||||||
|
// if (cached !== undefined) {
|
||||||
|
// return cached;
|
||||||
|
// }
|
||||||
|
|
||||||
|
console.time(
|
||||||
|
`[getBatchedStatusHistory/${entityType}=(${entityIds.join(" ,")})]`
|
||||||
|
);
|
||||||
|
|
||||||
|
// Anchor to local midnight (UTC when tzOffsetMinutes is 0) so the query
|
||||||
|
// window aligns with stable calendar days for the requesting client
|
||||||
|
const todayMidnightSec = localMidnightSec(tzOffsetMinutes);
|
||||||
|
const startSec = todayMidnightSec - days * 86400;
|
||||||
|
|
||||||
|
const events = await logsDb
|
||||||
|
.select()
|
||||||
|
.from(statusHistory)
|
||||||
|
.where(
|
||||||
|
and(
|
||||||
|
eq(statusHistory.entityType, entityType),
|
||||||
|
inArray(statusHistory.entityId, entityIds),
|
||||||
|
gte(statusHistory.timestamp, startSec)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
.orderBy(asc(statusHistory.timestamp));
|
||||||
|
|
||||||
|
// Fetch the last known state before the window so that entities that
|
||||||
|
// haven't changed status recently still show the correct status rather
|
||||||
|
// than appearing as "no_data".
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If we used only postgres, we would have used `SELECT DISTINCT ON` to get the
|
||||||
|
* latest event for each `entityId`,
|
||||||
|
* but it doesn't work on SQLite, so instead we use a subquery,
|
||||||
|
* the `ROW_NUMBER() OVER PARTITION` allows to assign a number
|
||||||
|
* to each row ordered by the timestamp, the number 1 is the first one appearing in
|
||||||
|
* the specified order, then the next and more, we only want the highest timestamp,
|
||||||
|
* so we get for `row_number=1`
|
||||||
|
*/
|
||||||
|
const lastKnowEventsSub = logsDb
|
||||||
|
.select({
|
||||||
|
entityId: statusHistory.entityId,
|
||||||
|
status: statusHistory.status,
|
||||||
|
timestamp: statusHistory.timestamp,
|
||||||
|
row_number:
|
||||||
|
sql<number>`ROW_NUMBER() OVER (PARTITION BY ${statusHistory.entityId} ORDER BY ${statusHistory.timestamp} DESC)`.as(
|
||||||
|
"row_number"
|
||||||
|
)
|
||||||
|
})
|
||||||
|
.from(statusHistory)
|
||||||
|
.where(
|
||||||
|
and(
|
||||||
|
eq(statusHistory.entityType, entityType),
|
||||||
|
inArray(statusHistory.entityId, entityIds),
|
||||||
|
lt(statusHistory.timestamp, startSec)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
.as("sub");
|
||||||
|
|
||||||
|
const lastKnownEvents = await logsDb
|
||||||
|
.select({
|
||||||
|
entityId: lastKnowEventsSub.entityId,
|
||||||
|
status: lastKnowEventsSub.status,
|
||||||
|
timestamp: lastKnowEventsSub.timestamp
|
||||||
|
})
|
||||||
|
.from(lastKnowEventsSub)
|
||||||
|
.where(eq(lastKnowEventsSub.row_number, 1));
|
||||||
|
|
||||||
|
const eventStatusMap: Record<
|
||||||
|
number,
|
||||||
|
{
|
||||||
|
events: typeof events;
|
||||||
|
lastKnownEvent: (typeof lastKnownEvents)[number] | null;
|
||||||
|
}
|
||||||
|
> = {};
|
||||||
|
|
||||||
|
for (const entityId of entityIds) {
|
||||||
|
eventStatusMap[entityId] = {
|
||||||
|
events: events.filter((ev) => ev.entityId === entityId),
|
||||||
|
lastKnownEvent:
|
||||||
|
lastKnownEvents.find((ev) => ev.entityId === entityId) ?? null
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const result: BatchedStatusHistoryResponse = {};
|
||||||
|
|
||||||
|
console.time(`[computeBuckets/${entityType}=(${entityIds.join(" ,")})]`);
|
||||||
|
for (const entityId in eventStatusMap) {
|
||||||
|
const event = eventStatusMap[Number(entityId)];
|
||||||
|
const priorStatus = event.lastKnownEvent?.status ?? null;
|
||||||
|
|
||||||
|
const { buckets, totalDowntime } = computeBuckets(
|
||||||
|
event.events,
|
||||||
|
days,
|
||||||
|
priorStatus
|
||||||
|
);
|
||||||
|
const totalWindow = days * 86400;
|
||||||
|
const overallUptime =
|
||||||
|
totalWindow > 0
|
||||||
|
? Math.max(
|
||||||
|
0,
|
||||||
|
((totalWindow - totalDowntime) / totalWindow) * 100
|
||||||
|
)
|
||||||
|
: 100;
|
||||||
|
|
||||||
|
result[entityId] = {
|
||||||
|
entityType,
|
||||||
|
entityId: Number(entityId),
|
||||||
|
days: buckets,
|
||||||
|
overallUptimePercent: Math.round(overallUptime * 100) / 100,
|
||||||
|
totalDowntimeSeconds: totalDowntime
|
||||||
|
};
|
||||||
|
}
|
||||||
|
console.timeEnd(`[computeBuckets/${entityType}=(${entityIds.join(" ,")})]`);
|
||||||
|
|
||||||
|
console.timeEnd(
|
||||||
|
`[getBatchedStatusHistory/${entityType}=(${entityIds.join(" ,")})]`
|
||||||
|
);
|
||||||
|
// await cache.set(cacheKey, result, STATUS_HISTORY_CACHE_TTL);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|||||||
@@ -319,6 +319,13 @@ authenticated.get(
|
|||||||
site.getSiteStatusHistory
|
site.getSiteStatusHistory
|
||||||
);
|
);
|
||||||
|
|
||||||
|
authenticated.get(
|
||||||
|
"/org/:orgId/site-status-histories",
|
||||||
|
verifyOrgAccess,
|
||||||
|
verifyUserHasAction(ActionsEnum.listSites),
|
||||||
|
site.getBatchedSiteStatusHistory
|
||||||
|
);
|
||||||
|
|
||||||
// Site Resource endpoints
|
// Site Resource endpoints
|
||||||
authenticated.put(
|
authenticated.put(
|
||||||
"/org/:orgId/site-resource",
|
"/org/:orgId/site-resource",
|
||||||
|
|||||||
@@ -0,0 +1,83 @@
|
|||||||
|
import response from "@server/lib/response";
|
||||||
|
import {
|
||||||
|
getBatchedStatusHistory,
|
||||||
|
type BatchedStatusHistoryResponse
|
||||||
|
} from "@server/lib/statusHistory";
|
||||||
|
import logger from "@server/logger";
|
||||||
|
import HttpCode from "@server/types/HttpCode";
|
||||||
|
import { NextFunction, Request, Response } from "express";
|
||||||
|
import createHttpError from "http-errors";
|
||||||
|
import { z } from "zod";
|
||||||
|
import { fromError } from "zod-validation-error";
|
||||||
|
|
||||||
|
const siteIdParamsSchema = z.object({
|
||||||
|
days: z
|
||||||
|
.string()
|
||||||
|
.optional()
|
||||||
|
.transform((v) => (v ? parseInt(v, 10) : 90)),
|
||||||
|
// Minutes to add to UTC to get the requesting client's local time
|
||||||
|
// (e.g. Australia/Sydney standard time is 600). Optional and
|
||||||
|
// defaults to 0 (UTC) so older clients keep the prior behavior.
|
||||||
|
tzOffsetMinutes: z
|
||||||
|
.string()
|
||||||
|
.optional()
|
||||||
|
.transform((v) => (v ? parseInt(v, 10) : 0)),
|
||||||
|
siteIds: z
|
||||||
|
.preprocess((val) => {
|
||||||
|
if (val === undefined || val === null || val === "") {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
const raw = Array.isArray(val) ? val : [val];
|
||||||
|
const nums = raw
|
||||||
|
.map((v) =>
|
||||||
|
typeof v === "string" ? parseInt(v, 10) : Number(v)
|
||||||
|
)
|
||||||
|
.filter((n) => Number.isInteger(n) && n > 0);
|
||||||
|
const unique = [...new Set(nums)];
|
||||||
|
return unique.length ? unique : undefined;
|
||||||
|
}, z.array(z.number().int().positive()))
|
||||||
|
.openapi({
|
||||||
|
description: "Filter by siteIds (repeat query param)"
|
||||||
|
})
|
||||||
|
});
|
||||||
|
|
||||||
|
export async function getBatchedSiteStatusHistory(
|
||||||
|
req: Request,
|
||||||
|
res: Response,
|
||||||
|
next: NextFunction
|
||||||
|
): Promise<any> {
|
||||||
|
try {
|
||||||
|
const parsedQuery = siteIdParamsSchema.safeParse(req.query);
|
||||||
|
if (!parsedQuery.success) {
|
||||||
|
return next(
|
||||||
|
createHttpError(
|
||||||
|
HttpCode.BAD_REQUEST,
|
||||||
|
fromError(parsedQuery.error).toString()
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const entityType = "site";
|
||||||
|
const { days, siteIds, tzOffsetMinutes } = parsedQuery.data;
|
||||||
|
|
||||||
|
const data = await getBatchedStatusHistory(
|
||||||
|
entityType,
|
||||||
|
siteIds,
|
||||||
|
days,
|
||||||
|
tzOffsetMinutes
|
||||||
|
);
|
||||||
|
|
||||||
|
return response<BatchedStatusHistoryResponse>(res, {
|
||||||
|
data,
|
||||||
|
success: true,
|
||||||
|
error: false,
|
||||||
|
message: "Status history retrieved successfully",
|
||||||
|
status: HttpCode.OK
|
||||||
|
});
|
||||||
|
} catch (error) {
|
||||||
|
logger.error(error);
|
||||||
|
return next(
|
||||||
|
createHttpError(HttpCode.INTERNAL_SERVER_ERROR, "An error occurred")
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
export * from "./getSite";
|
export * from "./getSite";
|
||||||
export * from "./getStatusHistory";
|
export * from "./getStatusHistory";
|
||||||
|
export * from "./getBatchedStatusHistory";
|
||||||
export * from "./createSite";
|
export * from "./createSite";
|
||||||
export * from "./deleteSite";
|
export * from "./deleteSite";
|
||||||
export * from "./updateSite";
|
export * from "./updateSite";
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import ConfirmDeleteDialog from "@app/components/ConfirmDeleteDialog";
|
import ConfirmDeleteDialog from "@app/components/ConfirmDeleteDialog";
|
||||||
import UptimeMiniBar from "@app/components/UptimeMiniBar";
|
import { UptimeMiniBar } from "@app/components/UptimeMiniBar";
|
||||||
|
|
||||||
import {
|
import {
|
||||||
Credenza,
|
Credenza,
|
||||||
@@ -52,12 +52,12 @@ import {
|
|||||||
} from "./ui/controlled-data-table";
|
} from "./ui/controlled-data-table";
|
||||||
|
|
||||||
import { useOptimisticLabels } from "@app/hooks/useOptimisticLabels";
|
import { useOptimisticLabels } from "@app/hooks/useOptimisticLabels";
|
||||||
import { usePaidStatus } from "@app/hooks/usePaidStatus";
|
import { durationToMs } from "@app/lib/durationToMs";
|
||||||
|
import { orgQueries, productUpdatesQueries } from "@app/lib/queries";
|
||||||
|
import { useQuery } from "@tanstack/react-query";
|
||||||
|
import semver from "semver";
|
||||||
import { LabelColumnFilterButton } from "./LabelColumnFilterButton";
|
import { LabelColumnFilterButton } from "./LabelColumnFilterButton";
|
||||||
import { LabelsTableCell } from "./LabelsTableCell";
|
import { LabelsTableCell } from "./LabelsTableCell";
|
||||||
import { useQuery } from "@tanstack/react-query";
|
|
||||||
import { productUpdatesQueries } from "@app/lib/queries";
|
|
||||||
import semver from "semver";
|
|
||||||
|
|
||||||
export type SiteRow = {
|
export type SiteRow = {
|
||||||
id: number;
|
id: number;
|
||||||
@@ -89,6 +89,8 @@ type SitesTableProps = {
|
|||||||
rowCount: number;
|
rowCount: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const SITE_STATUS_HISTORY_DAYS = 30;
|
||||||
|
|
||||||
export default function SitesTable({
|
export default function SitesTable({
|
||||||
sites,
|
sites,
|
||||||
orgId,
|
orgId,
|
||||||
@@ -112,7 +114,14 @@ export default function SitesTable({
|
|||||||
const [isRefreshing, startTransition] = useTransition();
|
const [isRefreshing, startTransition] = useTransition();
|
||||||
const [isNavigatingToAddPage, startNavigation] = useTransition();
|
const [isNavigatingToAddPage, startNavigation] = useTransition();
|
||||||
|
|
||||||
const { isPaidUser } = usePaidStatus();
|
const statusHistoryQuery = useQuery({
|
||||||
|
...orgQueries.batchedSiteStatusHistory({
|
||||||
|
orgId,
|
||||||
|
siteIds: sites.map((s) => s.id),
|
||||||
|
days: SITE_STATUS_HISTORY_DAYS
|
||||||
|
}),
|
||||||
|
staleTime: durationToMs(5, "seconds")
|
||||||
|
});
|
||||||
|
|
||||||
const api = createApiClient(useEnvContext());
|
const api = createApiClient(useEnvContext());
|
||||||
const t = useTranslations();
|
const t = useTranslations();
|
||||||
@@ -296,7 +305,14 @@ export default function SitesTable({
|
|||||||
if (originalRow.type == "local") {
|
if (originalRow.type == "local") {
|
||||||
return <span>-</span>;
|
return <span>-</span>;
|
||||||
}
|
}
|
||||||
return <UptimeMiniBar siteId={originalRow.id} days={30} />;
|
const data = statusHistoryQuery.data?.[row.original.id];
|
||||||
|
return (
|
||||||
|
<UptimeMiniBar
|
||||||
|
isLoading={statusHistoryQuery.isLoading}
|
||||||
|
data={data}
|
||||||
|
days={SITE_STATUS_HISTORY_DAYS}
|
||||||
|
/>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -359,14 +375,11 @@ export default function SitesTable({
|
|||||||
cell: ({ row }) => {
|
cell: ({ row }) => {
|
||||||
const originalRow = row.original;
|
const originalRow = row.original;
|
||||||
|
|
||||||
let updateAvailable = Boolean(
|
const updateAvailable = Boolean(
|
||||||
latestNewtVersion &&
|
latestNewtVersion &&
|
||||||
originalRow.newtVersion &&
|
originalRow.newtVersion &&
|
||||||
semver.valid(originalRow.newtVersion) &&
|
semver.valid(originalRow.newtVersion) &&
|
||||||
semver.lt(
|
semver.lt(originalRow.newtVersion, latestNewtVersion)
|
||||||
originalRow.newtVersion,
|
|
||||||
latestNewtVersion
|
|
||||||
)
|
|
||||||
);
|
);
|
||||||
|
|
||||||
if (originalRow.type === "newt") {
|
if (originalRow.type === "newt") {
|
||||||
|
|||||||
@@ -1,15 +1,14 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { useQuery } from "@tanstack/react-query";
|
|
||||||
import { orgQueries } from "@app/lib/queries";
|
|
||||||
import {
|
import {
|
||||||
Tooltip,
|
Tooltip,
|
||||||
TooltipContent,
|
TooltipContent,
|
||||||
TooltipTrigger
|
TooltipTrigger
|
||||||
} from "@app/components/ui/tooltip";
|
} from "@app/components/ui/tooltip";
|
||||||
import { useEnvContext } from "@app/hooks/useEnvContext";
|
|
||||||
import { createApiClient } from "@app/lib/api";
|
|
||||||
import { cn } from "@app/lib/cn";
|
import { cn } from "@app/lib/cn";
|
||||||
|
import { orgQueries } from "@app/lib/queries";
|
||||||
|
import type { StatusHistoryResponse } from "@server/lib/statusHistory";
|
||||||
|
import { useQuery } from "@tanstack/react-query";
|
||||||
import { useTranslations } from "next-intl";
|
import { useTranslations } from "next-intl";
|
||||||
|
|
||||||
function formatDuration(seconds: number): string {
|
function formatDuration(seconds: number): string {
|
||||||
@@ -46,21 +45,16 @@ type UptimeMiniBarProps = {
|
|||||||
days?: number;
|
days?: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function UptimeMiniBar({
|
export default function UptimeMiniBarWrapper({
|
||||||
orgId,
|
orgId,
|
||||||
siteId,
|
siteId,
|
||||||
resourceId,
|
resourceId,
|
||||||
healthCheckId,
|
healthCheckId,
|
||||||
days = 30
|
days = 30
|
||||||
}: UptimeMiniBarProps) {
|
}: UptimeMiniBarProps) {
|
||||||
const t = useTranslations();
|
|
||||||
const api = createApiClient(useEnvContext());
|
|
||||||
|
|
||||||
const siteQuery = useQuery({
|
const siteQuery = useQuery({
|
||||||
...orgQueries.siteStatusHistory({ siteId: siteId ?? 0, days }),
|
...orgQueries.siteStatusHistory({ siteId: siteId ?? 0, days }),
|
||||||
enabled: siteId != null,
|
enabled: siteId != null
|
||||||
meta: { api },
|
|
||||||
staleTime: 5 * 60 * 1000
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const hcQuery = useQuery({
|
const hcQuery = useQuery({
|
||||||
@@ -69,16 +63,12 @@ export default function UptimeMiniBar({
|
|||||||
healthCheckId: healthCheckId ?? 0,
|
healthCheckId: healthCheckId ?? 0,
|
||||||
days
|
days
|
||||||
}),
|
}),
|
||||||
enabled: healthCheckId != null && siteId == null && resourceId == null,
|
enabled: healthCheckId != null && siteId == null && resourceId == null
|
||||||
meta: { api },
|
|
||||||
staleTime: 5 * 60 * 1000
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const resourceQuery = useQuery({
|
const resourceQuery = useQuery({
|
||||||
...orgQueries.resourceStatusHistory({ resourceId, days }),
|
...orgQueries.resourceStatusHistory({ resourceId, days }),
|
||||||
enabled: resourceId != null && siteId == null && healthCheckId == null,
|
enabled: resourceId != null && siteId == null && healthCheckId == null
|
||||||
meta: { api },
|
|
||||||
staleTime: 5 * 60 * 1000
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const { data, isLoading } =
|
const { data, isLoading } =
|
||||||
@@ -88,6 +78,22 @@ export default function UptimeMiniBar({
|
|||||||
? resourceQuery
|
? resourceQuery
|
||||||
: hcQuery;
|
: hcQuery;
|
||||||
|
|
||||||
|
return <UptimeMiniBar data={data} isLoading={isLoading} days={days} />;
|
||||||
|
}
|
||||||
|
|
||||||
|
type UptimeMiniBarUIProps = {
|
||||||
|
data?: StatusHistoryResponse;
|
||||||
|
isLoading?: boolean;
|
||||||
|
days?: number;
|
||||||
|
};
|
||||||
|
|
||||||
|
export function UptimeMiniBar({
|
||||||
|
data,
|
||||||
|
isLoading,
|
||||||
|
days = 30
|
||||||
|
}: UptimeMiniBarUIProps) {
|
||||||
|
const t = useTranslations();
|
||||||
|
|
||||||
if (isLoading) {
|
if (isLoading) {
|
||||||
return (
|
return (
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
@@ -138,7 +144,8 @@ export default function UptimeMiniBar({
|
|||||||
{formatDate(day.date)}
|
{formatDate(day.date)}
|
||||||
</div>
|
</div>
|
||||||
<div className="text-xs text-primary-foreground/80">
|
<div className="text-xs text-primary-foreground/80">
|
||||||
{day.status === "no_data" || day.status === "unknown"
|
{day.status === "no_data" ||
|
||||||
|
day.status === "unknown"
|
||||||
? t("uptimeNoData")
|
? t("uptimeNoData")
|
||||||
: `${day.uptimePercent.toFixed(1)}% ${t("uptimeSuffix")}`}
|
: `${day.uptimePercent.toFixed(1)}% ${t("uptimeSuffix")}`}
|
||||||
</div>
|
</div>
|
||||||
@@ -159,4 +166,4 @@ export default function UptimeMiniBar({
|
|||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
+38
-1
@@ -47,7 +47,10 @@ import { remote } from "./api";
|
|||||||
import { durationToMs } from "./durationToMs";
|
import { durationToMs } from "./durationToMs";
|
||||||
import type { ListOrgLabelsResponse } from "@server/routers/labels/types";
|
import type { ListOrgLabelsResponse } from "@server/routers/labels/types";
|
||||||
import { ListHealthChecksResponse } from "@server/routers/healthChecks/types";
|
import { ListHealthChecksResponse } from "@server/routers/healthChecks/types";
|
||||||
import { StatusHistoryResponse } from "@server/lib/statusHistory";
|
import {
|
||||||
|
StatusHistoryResponse,
|
||||||
|
type BatchedStatusHistoryResponse
|
||||||
|
} from "@server/lib/statusHistory";
|
||||||
import type { ListResourcePoliciesResponse } from "@server/routers/resource/types";
|
import type { ListResourcePoliciesResponse } from "@server/routers/resource/types";
|
||||||
import type { GetResourcePolicyResponse } from "@server/routers/policy";
|
import type { GetResourcePolicyResponse } from "@server/routers/policy";
|
||||||
import type {
|
import type {
|
||||||
@@ -640,6 +643,37 @@ export const orgQueries = {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
batchedSiteStatusHistory: ({
|
||||||
|
siteIds,
|
||||||
|
orgId,
|
||||||
|
days = 90
|
||||||
|
}: {
|
||||||
|
orgId: string;
|
||||||
|
siteIds: number[];
|
||||||
|
days?: number;
|
||||||
|
}) =>
|
||||||
|
queryOptions({
|
||||||
|
queryKey: [
|
||||||
|
"ORG",
|
||||||
|
orgId,
|
||||||
|
"BATCHED_SITE_STATUS_HISTORY",
|
||||||
|
siteIds,
|
||||||
|
days
|
||||||
|
] as const,
|
||||||
|
queryFn: async ({ signal, meta }) => {
|
||||||
|
const sp = new URLSearchParams([
|
||||||
|
["days", days.toString()],
|
||||||
|
...siteIds.map((id) => ["siteIds", id.toString()])
|
||||||
|
]);
|
||||||
|
|
||||||
|
const res = await meta!.api.get<
|
||||||
|
AxiosResponse<BatchedStatusHistoryResponse>
|
||||||
|
>(`/org/${orgId}/site-status-histories?${sp.toString()}`, {
|
||||||
|
signal
|
||||||
|
});
|
||||||
|
return res.data.data;
|
||||||
|
}
|
||||||
|
}),
|
||||||
siteStatusHistory: ({
|
siteStatusHistory: ({
|
||||||
siteId,
|
siteId,
|
||||||
days = 90
|
days = 90
|
||||||
@@ -649,6 +683,7 @@ export const orgQueries = {
|
|||||||
}) =>
|
}) =>
|
||||||
queryOptions({
|
queryOptions({
|
||||||
queryKey: ["SITE_STATUS_HISTORY", siteId, days] as const,
|
queryKey: ["SITE_STATUS_HISTORY", siteId, days] as const,
|
||||||
|
staleTime: durationToMs(5, "seconds"),
|
||||||
queryFn: async ({ signal, meta }) => {
|
queryFn: async ({ signal, meta }) => {
|
||||||
const tzOffsetMinutes = -new Date().getTimezoneOffset();
|
const tzOffsetMinutes = -new Date().getTimezoneOffset();
|
||||||
const res = await meta!.api.get<
|
const res = await meta!.api.get<
|
||||||
@@ -670,6 +705,7 @@ export const orgQueries = {
|
|||||||
}) =>
|
}) =>
|
||||||
queryOptions({
|
queryOptions({
|
||||||
queryKey: ["RESOURCE_STATUS_HISTORY", resourceId, days] as const,
|
queryKey: ["RESOURCE_STATUS_HISTORY", resourceId, days] as const,
|
||||||
|
staleTime: durationToMs(5, "seconds"),
|
||||||
queryFn: async ({ signal, meta }) => {
|
queryFn: async ({ signal, meta }) => {
|
||||||
const tzOffsetMinutes = -new Date().getTimezoneOffset();
|
const tzOffsetMinutes = -new Date().getTimezoneOffset();
|
||||||
const res = await meta!.api.get<
|
const res = await meta!.api.get<
|
||||||
@@ -692,6 +728,7 @@ export const orgQueries = {
|
|||||||
days?: number;
|
days?: number;
|
||||||
}) =>
|
}) =>
|
||||||
queryOptions({
|
queryOptions({
|
||||||
|
staleTime: durationToMs(5, "seconds"),
|
||||||
queryKey: [
|
queryKey: [
|
||||||
"HC_STATUS_HISTORY",
|
"HC_STATUS_HISTORY",
|
||||||
orgId,
|
orgId,
|
||||||
|
|||||||
Reference in New Issue
Block a user