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