mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 03:12:15 +00:00
feat(core): Add Job Summary to Worker response (#7360)
This commit is contained in:
committed by
GitHub
parent
c8c14ca0af
commit
b8608cee6d
@@ -1,3 +1,5 @@
|
||||
import type { WorkerJobStatusSummary } from '../orchestration/worker/types';
|
||||
|
||||
export type RedisServiceCommand =
|
||||
| 'getStatus'
|
||||
| 'getId'
|
||||
@@ -29,11 +31,12 @@ export type RedisServiceWorkerResponseObject = {
|
||||
payload: {
|
||||
workerId: string;
|
||||
runningJobs: string[];
|
||||
runningJobsSummary: WorkerJobStatusSummary[];
|
||||
freeMem: number;
|
||||
totalMem: number;
|
||||
uptime: number;
|
||||
loadAvg: number[];
|
||||
cpus: string[];
|
||||
cpus: string;
|
||||
arch: string;
|
||||
platform: NodeJS.Platform;
|
||||
hostname: string;
|
||||
|
||||
Reference in New Issue
Block a user