@edgible-team/sdk
    Preparing search index...

    Interface BenchmarkFlavourResult

    Structured per-flavour outcome (the CLI's table row / JSON entry).

    interface BenchmarkFlavourResult {
        appId: string | null;
        createMs: number | null;
        deployMs: number | null;
        flavour: BenchmarkFlavour;
        healthy: boolean | null;
        issues: string[];
        label: string;
        reachableMs: number | null;
        url: string | null;
        workloadMs: number | null;
    }
    Index

    Properties

    appId: string | null
    createMs: number | null

    Duration of the create call.

    deployMs: number | null

    Cumulative ms (since create) when the record reached 'deployed'.

    healthy: boolean | null

    True/false once the reachability phase ran; null if a prior phase aborted.

    issues: string[]
    label: string
    reachableMs: number | null

    Cumulative ms (since create) when the public URL became reachable.

    url: string | null
    workloadMs: number | null

    Cumulative ms (since create) when a workload lifecycle event arrived.