mirror of
https://github.com/remnawave/frontend.git
synced 2026-05-13 12:16:40 +00:00
fix: update PM2 metrics display to show only memory usage
This commit is contained in:
parent
c0607f9b7b
commit
a3a7434730
1 changed files with 1 additions and 1 deletions
|
|
@ -86,7 +86,7 @@ export const getPm2ProcessMetrics = (
|
|||
return pm2Stats.map((process) => {
|
||||
const cpuUsage = parseFloat(process.cpu)
|
||||
return {
|
||||
value: `${process.memory} (${process.cpu}%)`,
|
||||
value: `${process.memory}`,
|
||||
IconComponent: getProcessIcon(process.name),
|
||||
title: process.name,
|
||||
iconVariant: getIconVariant(cpuUsage)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue