mirror of https://github.com/linkerd/linkerd2.git
12 lines
304 B
Protocol Buffer
12 lines
304 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package conduit.controller.tap;
|
|
|
|
import "common/common.proto";
|
|
import "public/api.proto";
|
|
|
|
service Tap {
|
|
rpc Tap(public.TapRequest) returns (stream common.TapEvent) { option deprecated = true; }
|
|
rpc TapByResource(public.TapByResourceRequest) returns (stream common.TapEvent) {}
|
|
}
|