The kernel model provided by the server.

Notes

See the Jupyter Server API.

interface IModel {
    connections?: number;
    execution_state?: string;
    id: string;
    last_activity?: string;
    name: string;
    reason?: string;
    traceback?: string;
}

Properties

connections?: number

The number of active connections to the kernel.

execution_state?: string

The kernel execution state.

id: string

Unique identifier of the kernel on the server.

last_activity?: string

The timestamp of the last activity on the kernel.

name: string

The name of the kernel.

reason?: string

The reason the kernel died, if applicable.

traceback?: string

The traceback for a dead kernel, if applicable.