+
+ ObjectRefs in scope:{" "}
+ {coreWorkerStats[0]?.numObjectRefsInScope}
+
+
+ Objects in local memory store:{" "}
+ {coreWorkerStats[0]?.numLocalObjects}
+
+
+ Objects in plasma store: {coreWorkerStats[0]?.numInPlasma}
+
+
+ Object store Memory used (MiB):{" "}
+ {coreWorkerStats[0]?.usedObjectStoreMemory}
+
+
),
)}
diff --git a/dashboard/client/src/type/worker.d.ts b/dashboard/client/src/type/worker.d.ts
index 990c16df2..147f8f3e7 100644
--- a/dashboard/client/src/type/worker.d.ts
+++ b/dashboard/client/src/type/worker.d.ts
@@ -4,9 +4,14 @@ export type CoreWorkerStats = {
actorId: string;
usedResources: { [key: string]: number };
numExecutedTasks: number;
+ numPendingTasks: number;
workerId: string;
actorTitle: string;
jobId: string;
+ numObjectRefsInScope: number;
+ numInPlasma: number;
+ numLocalObjects: number;
+ usedObjectStoreMemory: string;
};
export type Worker = {