mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-06 18:28:00 -05:00
29 lines
927 B
Protocol Buffer
29 lines
927 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package v2ray.core.app.observatory.burst;
|
||
|
option csharp_namespace = "V2Ray.Core.App.Observatory.Burst";
|
||
|
option go_package = "github.com/v2fly/v2ray-core/v4/app/observatory/burst";
|
||
|
option java_package = "com.v2ray.core.app.observatory.burst";
|
||
|
option java_multiple_files = true;
|
||
|
|
||
|
message Config {
|
||
|
/* @Document The selectors for outbound under observation
|
||
|
*/
|
||
|
repeated string subject_selector = 2;
|
||
|
|
||
|
HealthPingConfig ping_config = 3;
|
||
|
}
|
||
|
|
||
|
message HealthPingConfig {
|
||
|
// destination url, need 204 for success return
|
||
|
// default http://www.google.com/gen_204
|
||
|
string destination = 1;
|
||
|
// connectivity check url
|
||
|
string connectivity = 2;
|
||
|
// health check interval, int64 values of time.Duration
|
||
|
int64 interval = 3;
|
||
|
// sampling count is the amount of recent ping results which are kept for calculation
|
||
|
int32 samplingCount = 4;
|
||
|
// ping timeout, int64 values of time.Duration
|
||
|
int64 timeout = 5;
|
||
|
}
|