File size: 1,093 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
import retry from 'next/dist/compiled/async-retry'
interface Payload {
meta: { [key: string]: unknown }
context: {
anonymousId: string
projectId: string
sessionId: string
}
events: Array<{
eventName: string
fields: object
}>
}
export function postNextTelemetryPayload(payload: Payload, signal?: any) {
if (!signal && 'timeout' in AbortSignal) {
signal = AbortSignal.timeout(5000)
}
return (
retry(
() =>
fetch('https://telemetry.nextjs.org/api/v1/record', {
method: 'POST',
body: JSON.stringify(payload),
headers: { 'content-type': 'application/json' },
signal,
}).then((res) => {
if (!res.ok) {
const err = new Error(res.statusText)
;(err as any).response = res
throw err
}
}),
{ minTimeout: 500, retries: 1, factor: 1 }
)
.catch(() => {
// We swallow errors when telemetry cannot be sent
})
// Ensure promise is voided
.then(
() => {},
() => {}
)
)
}
|