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