github.com/v2fly/v2ray-core/v5@v5.16.2-0.20240507031116-8191faa6e095/app/observatory/command/command.proto (about)

     1  syntax = "proto3";
     2  
     3  package v2ray.core.app.observatory.command;
     4  option csharp_namespace = "V2Ray.Core.App.Observatory.Command";
     5  option go_package = "github.com/v2fly/v2ray-core/v5/app/observatory/command";
     6  option java_package = "com.v2ray.core.app.observatory.command";
     7  option java_multiple_files = true;
     8  
     9  import "common/protoext/extensions.proto";
    10  import "app/observatory/config.proto";
    11  
    12  message GetOutboundStatusRequest {
    13    string Tag = 1;
    14  }
    15  
    16  message GetOutboundStatusResponse {
    17    v2ray.core.app.observatory.ObservationResult status = 1;
    18  }
    19  
    20  service ObservatoryService {
    21    rpc GetOutboundStatus(GetOutboundStatusRequest)
    22        returns (GetOutboundStatusResponse) {}
    23  }
    24  
    25  
    26  message Config {
    27    option (v2ray.core.common.protoext.message_opt).type = "grpcservice";
    28    option (v2ray.core.common.protoext.message_opt).short_name = "observatory";
    29  }