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/weaveworks/common/server/fake_server.proto

17 lines
459 B

syntax = "proto3";
package server;
option go_package = "github.com/weaveworks/common/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) {};
}
message FailWithHTTPErrorRequest {
int32 Code = 1;
}