mirror of
https://github.com/bytedance/g3.git
synced 2026-05-05 15:31:21 +00:00
12 lines
220 B
Cap'n Proto
12 lines
220 B
Cap'n Proto
@0xa627265c610f61d7;
|
|
|
|
struct ServerStats {
|
|
online @0 :Bool;
|
|
aliveTaskCount @1 :Int32;
|
|
totalConnCount @2 :UInt64;
|
|
totalTaskCount @3 :UInt64;
|
|
}
|
|
|
|
interface ServerControl {
|
|
status @0 () -> (status :ServerStats);
|
|
}
|