15 lines
247 B
C++
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
|