Like Prometheus, but for logs.
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.
 
 
 
 
 
 
loki/pkg/compactor/client/grpc/grpc.proto

31 lines
657 B

syntax = "proto3";
package grpc;
service Compactor {
rpc GetDeleteRequests(GetDeleteRequestsRequest) returns (GetDeleteRequestsResponse);
rpc GetCacheGenNumbers(GetCacheGenNumbersRequest) returns (GetCacheGenNumbersResponse);
}
message GetDeleteRequestsRequest {
bool forQuerytimeFiltering = 1;
}
message GetDeleteRequestsResponse {
repeated DeleteRequest deleteRequests = 1;
}
message DeleteRequest {
string requestID = 1;
int64 startTime = 2;
int64 endTime = 3;
string query = 4;
string status = 5;
int64 createdAt = 6;
}
message GetCacheGenNumbersRequest {}
message GetCacheGenNumbersResponse {
string resultsCacheGen = 1;
}