34ca7667d3
* WIP * Handle tasks that have failed but are being auto yielded * Limit trace view to 25k event records, add a download run logs button Also added two new indexes to TaskEvent: ``` /// Used on eventRepository.getTraceSummary() @@index([traceId, startTime]) // Used for getting all logs for a run @@index([runId]) ``` * perf improvements on eventRepository.getSpan() * v2: Add a 5 minute timeout for run execution requests in dev * v3: Include presigned urls for downloading large payloads and outputs when using runs.retrieve * v3: better handle large task payloads and outputs * Change to 512KB * v2: paginate trigger schedules endpoint * v3: add 3MB limit on batch and single payloads * Update task payload and output limits
30 lines
815 B
TypeScript
30 lines
815 B
TypeScript
import { Attributes } from "@opentelemetry/api";
|
|
import { startActiveSpan } from "~/v3/tracer.server";
|
|
|
|
export async function parseRequestJsonAsync(
|
|
request: Request,
|
|
attributes?: Attributes
|
|
): Promise<unknown> {
|
|
return await startActiveSpan(
|
|
"parseRequestJsonAsync()",
|
|
async (span) => {
|
|
span.setAttribute("content-length", parseInt(request.headers.get("content-length") ?? "0"));
|
|
span.setAttribute("content-type", request.headers.get("content-type") ?? "application/json");
|
|
span.setAttribute("experiment.async", false);
|
|
|
|
const rawText = await startActiveSpan("request.text()", async () => {
|
|
return await request.text();
|
|
});
|
|
|
|
if (rawText.length === 0) {
|
|
return;
|
|
}
|
|
|
|
return JSON.parse(rawText);
|
|
},
|
|
{
|
|
attributes,
|
|
}
|
|
);
|
|
}
|