Skip to content

Commit

Permalink
feat: add a memory only plot
Browse files Browse the repository at this point in the history
  • Loading branch information
oneirocosm committed Oct 17, 2024
1 parent 8af3bdb commit da04305
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions frontend/app/view/sysinfo/sysinfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ const PlotTypes: Object = {
CPU: function (dataItem: DataItem): Array<string> {
return ["cpu"];
},
Mem: function (dataItem: DataItem): Array<string> {
return ["mem:used"];
},
"CPU + Mem": function (dataItem: DataItem): Array<string> {
return ["cpu", "mem:used"];
},
Expand Down

0 comments on commit da04305

Please sign in to comment.