mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-05 06:10:25 +08:00
18 lines
285 B
Protocol Buffer
18 lines
285 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
option go_package = "./pb";
|
||
|
|
|
||
|
|
package pb;
|
||
|
|
|
||
|
|
import "models/model_api_node.proto";
|
||
|
|
|
||
|
|
message APIMethodStat {
|
||
|
|
int64 id = 1;
|
||
|
|
int64 apiNodeId = 2;
|
||
|
|
string method = 3;
|
||
|
|
string tag = 4;
|
||
|
|
float costMs = 5;
|
||
|
|
float peekMs = 6;
|
||
|
|
int64 countCalls = 7;
|
||
|
|
|
||
|
|
APINode apiNode = 30;
|
||
|
|
}
|