diff --git a/src/matterbridge.ts b/src/matterbridge.ts index 5ba0e870..b8302aed 100644 --- a/src/matterbridge.ts +++ b/src/matterbridge.ts @@ -72,8 +72,10 @@ export class Matterbridge extends EventEmitter { totalMemory: '', freeMemory: '', systemUptime: '', + cpuUsed: '', rss: '', - heap: '', + heapTotal: '', + heapUsed: '', }; public matterbridgeInformation: MatterbridgeInformation = { diff --git a/src/matterbridgeTypes.ts b/src/matterbridgeTypes.ts index 1ed7ba94..f39ffb5e 100644 --- a/src/matterbridgeTypes.ts +++ b/src/matterbridgeTypes.ts @@ -92,8 +92,10 @@ export interface SystemInformation { totalMemory: string; freeMemory: string; systemUptime: string; + cpuUsed: string; rss: string; - heap: string; + heapTotal: string; + heapUsed: string; } // Define an interface for storing the matterbridge information