添加仿真服务管理proto文件

This commit is contained in:
soul-walker 2024-11-19 19:14:59 +08:00
parent a30bf52339
commit 20f9997a84
1 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,27 @@
syntax = "proto3";
package simulation_manage;
// 仿
message SimulationServerInfo {
// id
string serviceId = 1;
// cpu使用率
float cpuUsage = 2;
//
uint64 totalMemory = 3;
// 使
uint64 usedMemory = 4;
}
// 仿
message StartSimulationRequest {
// id
string functionId = 1;
}
// 仿
message StartSimulationResponse {
// 仿id
string simulationId = 1;
}