mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.1 KiB
55 lines
1.1 KiB
syntax = "proto3"; |
|
|
|
package xray.app.stats.command; |
|
option csharp_namespace = "Xray.App.Stats.Command"; |
|
option go_package = "github.com/xtls/xray-core/app/stats/command"; |
|
option java_package = "com.xray.app.stats.command"; |
|
option java_multiple_files = true; |
|
|
|
message GetStatsRequest { |
|
// Name of the stat counter. |
|
string name = 1; |
|
// Whether or not to reset the counter to fetching its value. |
|
bool reset = 2; |
|
} |
|
|
|
message Stat { |
|
string name = 1; |
|
int64 value = 2; |
|
} |
|
|
|
message GetStatsResponse { |
|
Stat stat = 1; |
|
} |
|
|
|
message QueryStatsRequest { |
|
string pattern = 1; |
|
bool reset = 2; |
|
} |
|
|
|
message QueryStatsResponse { |
|
repeated Stat stat = 1; |
|
} |
|
|
|
message SysStatsRequest {} |
|
|
|
message SysStatsResponse { |
|
uint32 NumGoroutine = 1; |
|
uint32 NumGC = 2; |
|
uint64 Alloc = 3; |
|
uint64 TotalAlloc = 4; |
|
uint64 Sys = 5; |
|
uint64 Mallocs = 6; |
|
uint64 Frees = 7; |
|
uint64 LiveObjects = 8; |
|
uint64 PauseTotalNs = 9; |
|
uint32 Uptime = 10; |
|
} |
|
|
|
service StatsService { |
|
rpc GetStats(GetStatsRequest) returns (GetStatsResponse) {} |
|
rpc QueryStats(QueryStatsRequest) returns (QueryStatsResponse) {} |
|
rpc GetSysStats(SysStatsRequest) returns (SysStatsResponse) {} |
|
} |
|
|
|
message Config {}
|
|
|