1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-12-12 08:23:58 +02:00
go-micro/debug/proto/debug.proto

52 lines
1.0 KiB
Protocol Buffer
Raw Normal View History

syntax = "proto3";
2019-08-06 18:53:14 +02:00
service Debug {
rpc Health(HealthRequest) returns (HealthResponse) {};
rpc Stats(StatsRequest) returns (StatsResponse) {};
rpc Logs(LogRequest) returns (stream Log) {};
2019-08-06 18:53:14 +02:00
}
message HealthRequest {}
message HealthResponse {
2016-05-28 23:30:47 +02:00
// default: ok
string status = 1;
}
2016-05-28 23:30:47 +02:00
message StatsRequest {}
2016-05-28 23:30:47 +02:00
message StatsResponse {
// unix timestamp
uint64 started = 1;
// in seconds
uint64 uptime = 2;
// in bytes
uint64 memory = 3;
// num threads
uint64 threads = 4;
// total gc in nanoseconds
uint64 gc = 5;
}
// LogRequest queries service for logs
message LogRequest {
// count is the count of events
uint64 count = 1;
// relative time in seconds
// before the current time
// from which to show logs
uint64 since = 2;
// stream logs continuously
bool stream = 3;
}
// Log is service log record
message Log {
// timestamp of log event
int64 timestamp = 1;
// log value
string value = 2;
// metadata
map<string,string> metadata = 3;
}