mirror of
https://github.com/kubernetes-sigs/prometheus-adapter.git
synced 2026-04-06 17:57:51 +00:00
Add vendor folder to git
This commit is contained in:
parent
66cf5eaafb
commit
183585f56f
6916 changed files with 2629581 additions and 1 deletions
28
vendor/github.com/grpc-ecosystem/go-grpc-prometheus/examples/testproto/test.proto
generated
vendored
Normal file
28
vendor/github.com/grpc-ecosystem/go-grpc-prometheus/examples/testproto/test.proto
generated
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
syntax = "proto3";
|
||||
|
||||
package mwitkow.testproto;
|
||||
|
||||
|
||||
message Empty {
|
||||
}
|
||||
|
||||
message PingRequest {
|
||||
string value = 1;
|
||||
int32 sleep_time_ms = 2;
|
||||
uint32 error_code_returned = 3;
|
||||
}
|
||||
|
||||
message PingResponse {
|
||||
string Value = 1;
|
||||
int32 counter = 2;
|
||||
}
|
||||
|
||||
service TestService {
|
||||
rpc PingEmpty(Empty) returns (PingResponse) {}
|
||||
|
||||
rpc Ping(PingRequest) returns (PingResponse) {}
|
||||
|
||||
rpc PingError(PingRequest) returns (Empty) {}
|
||||
|
||||
rpc PingList(PingRequest) returns (stream PingResponse) {}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue