Skip to content

Commit

Permalink
Removing hdd storage repoting from stats
Browse files Browse the repository at this point in the history
  • Loading branch information
maayarosama committed Dec 5, 2024
1 parent c4b57da commit 1c2760c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion packages/playground/src/views/stats.vue
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,6 @@ const fetchData = async () => {
{ data: stats!.countries, title: "Countries", icon: "mdi-earth" },
{ data: stats!.totalCru, title: "CPUs", icon: "mdi-cpu-64-bit" },
{ data: formatResourceSize(stats!.totalSru), title: "SSD Storage", icon: "mdi-nas" },
{ data: formatResourceSize(stats!.totalHru), title: "HDD Storage", icon: "mdi-harddisk" },
{ data: formatResourceSize(stats!.totalMru), title: "RAM", icon: "mdi-memory" },
{ data: stats!.gpus, title: "GPUs", icon: "mdi-memory" },
{ data: stats!.accessNodes, title: "Access Nodes", icon: "mdi-gate" },
Expand Down
5 changes: 0 additions & 5 deletions packages/stats/src/components/stats_table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,6 @@ const Istats = computed((): IStatistics[] => {
{ data: formattedStats.value.totalCru, title: "CPUs", icon: "mdi-cpu-64-bit" },
{ data: formattedStats.value.gpus, title: "GPUs", icon: "mdi-memory" },
{ data: toTeraOrGigaOrPeta(formattedStats.value.totalSru.toString()), title: "SSD Storage", icon: "mdi-nas" },
{
data: toTeraOrGigaOrPeta(formattedStats.value.totalHru.toString()),
title: "HDD Storage",
icon: "mdi-harddisk",
},
{ data: toTeraOrGigaOrPeta(formattedStats.value.totalMru.toString()), title: "RAM", icon: "mdi-memory" },
{ data: formattedStats.value.accessNodes, title: "Access Nodes", icon: "mdi-gate" },
{ data: formattedStats.value.gateways, title: "Gateways", icon: "mdi-boom-gate-outline" },
Expand Down

0 comments on commit 1c2760c

Please sign in to comment.