Revert "feat: add total_cpu_millicores/total_memory_bytes/`cpu_usage_mill…" (#286)

This reverts commit 9d93fc3363.

Co-authored-by: zyy17 <zyylsxm@gmail.com>
This commit is contained in:
discord9
2025-10-22 16:23:02 +08:00
committed by GitHub
parent d9541cd111
commit 72a0d22e0f
5 changed files with 303 additions and 984 deletions
+4 -12
View File
@@ -94,20 +94,12 @@ message NodeInfo {
string git_commit = 2;
// The node start timestamp
uint64 start_time_ms = 3;
// Deprecated: Use total_cpu_millicores instead. The CPU cores number of the node.
uint32 cpus = 4 [deprecated = true];
// Deprecated: Use total_memory_bytes instead. The memory bytes of the node.
uint64 memory_bytes = 5 [deprecated = true];
// The CPU cores number of the node.
uint32 cpus = 4;
// The memory bytes of the node.
uint64 memory_bytes = 5;
// The hostname of the node.
string hostname = 6;
// The total CPU millicores of the node.
int64 total_cpu_millicores = 7;
// The total memory bytes of the node.
int64 total_memory_bytes = 8;
// The CPU usage millicores of the node.
int64 cpu_usage_millicores = 9;
// The memory usage bytes of the node.
int64 memory_usage_bytes = 10;
}
message RegionStat {