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/vendor/github.com/grafana/dskit/server/fake_server.proto

17 lines
558 B

syntax = "proto3";
package server;
import "google/protobuf/empty.proto";
service FakeServer {
rpc Succeed(google.protobuf.Empty) returns (google.protobuf.Empty) {};
rpc FailWithError(google.protobuf.Empty) returns (google.protobuf.Empty) {};
rpc FailWithHTTPError(FailWithHTTPErrorRequest) returns (google.protobuf.Empty) {};
rpc Sleep(google.protobuf.Empty) returns (google.protobuf.Empty) {};
rpc StreamSleep(google.protobuf.Empty) returns (stream google.protobuf.Empty) {};
}
message FailWithHTTPErrorRequest {
int32 Code = 1;
}