soundcloud-api-ts-next
    Preparing search index...

    Interface SCRouteTelemetry

    Structured telemetry emitted after every Next.js API route is handled.

    interface SCRouteTelemetry {
        durationMs: number;
        error?: string;
        method: string;
        route: string;
        status: number;
    }
    Index

    Properties

    durationMs: number

    Total handler duration in milliseconds

    error?: string

    Error message if the route handler threw

    method: string

    HTTP method

    route: string

    The route path handled (e.g. "/tracks/123", "/search/tracks")

    status: number

    HTTP response status code