Merge branch 'main' of gitea.bywaystudios.com:wuminzhe/docs

This commit is contained in:
zhang hongbo 2026-04-22 10:26:31 +08:00
commit 4e3235046f
5 changed files with 15 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -3250,8 +3250,23 @@ message ResUserDetailInfo {
repeated UserDetailOrderInfo Order = 23;
}
message ResServerInfo{
int32 PlayerNum = 1; //
uint64 FreeMem = 2; //
double CPU = 3; // Cpu使用率
int32 StartTime = 4; //
string TotalAlloc = 5; //
string Alloc = 6; //
uint64 Sys = 7; //
uint32 NumGC = 8; // GC次数
int32 NumGoroutine = 9; //
uint64 UsageMem = 10; // 使
string Version = 11; //
}
service Backend {
rpc ReloadActivity(ReqActivityCfgReload) returns (ResActivityCfgReload);
rpc OrderShipping(ReqOrderShipping) returns (ResOrderShipping);
rpc UserDetail(UserDetailParam) returns (ResUserDetail);
rpc ServerInfo(ReqServerInfo) returns (ResServerInfo);
}