添加仿真服务管理proto文件
This commit is contained in:
parent
a30bf52339
commit
20f9997a84
|
@ -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;
|
||||||
|
}
|
Loading…
Reference in New Issue