Compare commits

..

2 Commits

Author SHA1 Message Date
soul-walker 0683eba527 Merge branch 'main' of https://gitea.joylink.club/joylink/rtsa-proto-msg 2024-11-19 19:15:09 +08:00
soul-walker 20f9997a84 添加仿真服务管理proto文件 2024-11-19 19:14:59 +08:00
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;
}