eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
13 lines • 657 B
TypeScript
/**
* Identifier for the compute instance (microVM) this module was loaded into.
*
* Vercel exposes no native per-instance ID under Fluid compute (`AWS_LAMBDA_*`
* is blocked), so we synthesize one at module load: a prefixed ULID
* (`cinst_<ulid>`, per the `wrun_`/`step_` convention) whose timestamp is the
* instance's birth time. Stable for the instance's life and shared by every
* invocation it handles, including the concurrent ones Fluid packs onto it;
* cold starts mint fresh IDs. Emitted as the OpenTelemetry `faas.instance`
* attribute.
*/
export declare const COMPUTE_INSTANCE_ID: string;
//# sourceMappingURL=compute-instance.d.ts.map