Files
esDashboard/src/Metrics/Memory.h
T
2025-12-28 23:15:42 +00:00

15 lines
247 B
C++

#pragma once
namespace metrics
{
struct Memory
{
float mem_used;
float mem_available;
float mem_total;
float swap_used;
float swap_total;
float swap_available;
};
} // namespace metrics