bump max runs
This commit is contained in:
@@ -369,7 +369,7 @@ export const dashboard = new Elysia()
|
||||
|
||||
const pings = await sql`
|
||||
SELECT * FROM pings WHERE monitor_id = ${params.id}
|
||||
ORDER BY checked_at DESC LIMIT 100
|
||||
ORDER BY checked_at DESC LIMIT 200
|
||||
`;
|
||||
|
||||
return html("detail", { nav: "monitors", monitor, pings, plan: resolved?.plan || "free" });
|
||||
@@ -389,7 +389,7 @@ export const dashboard = new Elysia()
|
||||
|
||||
const pings = await sql`
|
||||
SELECT * FROM pings WHERE monitor_id = ${params.id}
|
||||
ORDER BY checked_at DESC LIMIT 100
|
||||
ORDER BY checked_at DESC LIMIT 200
|
||||
`;
|
||||
const chartPings = pings.slice().reverse();
|
||||
return new Response(latencyChartSSR(chartPings), {
|
||||
|
||||
Reference in New Issue
Block a user