mirror of
https://github.com/sussy-code/smov.git
synced 2025-01-01 16:37:39 +01:00
truncate stacktrace and remove hostname
This commit is contained in:
parent
bb192ee21f
commit
bd4378c056
1 changed files with 9 additions and 8 deletions
|
@ -17,17 +17,20 @@ export type ProviderMetric = {
|
|||
embedId?: string;
|
||||
errorMessage?: string;
|
||||
fullError?: string;
|
||||
hostname?: string;
|
||||
};
|
||||
|
||||
function getStackTrace(error: Error, lines: number) {
|
||||
const topMessage = error.toString();
|
||||
const stackTraceLines = (error.stack ?? "").split("\n", lines + 1);
|
||||
stackTraceLines.pop();
|
||||
return `${topMessage}\n\n${stackTraceLines.join("\n")}`;
|
||||
}
|
||||
|
||||
export async function reportProviders(items: ProviderMetric[]): Promise<void> {
|
||||
return ofetch(metricsEndpoint, {
|
||||
method: "POST",
|
||||
body: {
|
||||
items: items.map((v) => ({
|
||||
...v,
|
||||
hostname: window.location.hostname,
|
||||
})),
|
||||
items,
|
||||
},
|
||||
});
|
||||
}
|
||||
|
@ -69,9 +72,7 @@ export function scrapeSegmentToProviderMetric(
|
|||
episodeId,
|
||||
seasonId,
|
||||
errorMessage: segment.reason ?? error?.message,
|
||||
fullError: error
|
||||
? `${error.toString()}\n\n${error.stack ?? ""}`
|
||||
: undefined,
|
||||
fullError: error ? getStackTrace(error, 5) : undefined,
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue