2021-03-06 08:33:20 -05:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package v2ray.core.app.observatory;
|
|
|
|
option csharp_namespace = "V2Ray.Core.App.Observatory";
|
2022-01-02 10:16:23 -05:00
|
|
|
option go_package = "github.com/v2fly/v2ray-core/v5/app/observatory";
|
2021-03-06 08:33:20 -05:00
|
|
|
option java_package = "com.v2ray.core.app.observatory";
|
|
|
|
option java_multiple_files = true;
|
|
|
|
|
2021-09-07 08:19:31 -04:00
|
|
|
import "common/protoext/extensions.proto";
|
|
|
|
|
|
|
|
|
2021-03-06 08:33:20 -05:00
|
|
|
message ObservationResult {
|
2021-06-18 12:39:13 -04:00
|
|
|
repeated OutboundStatus status = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message HealthPingMeasurementResult {
|
|
|
|
int64 all = 1;
|
|
|
|
int64 fail = 2;
|
|
|
|
int64 deviation = 3;
|
|
|
|
int64 average = 4;
|
|
|
|
int64 max = 5;
|
|
|
|
int64 min = 6;
|
2021-03-06 08:33:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
message OutboundStatus{
|
|
|
|
/* @Document Whether this outbound is usable
|
|
|
|
@Restriction ReadOnlyForUser
|
|
|
|
*/
|
|
|
|
bool alive = 1;
|
|
|
|
/* @Document The time for probe request to finish.
|
|
|
|
@Type time.ms
|
|
|
|
@Restriction ReadOnlyForUser
|
|
|
|
*/
|
2021-03-06 11:26:15 -05:00
|
|
|
int64 delay = 2;
|
2021-03-06 08:33:20 -05:00
|
|
|
/* @Document The last error caused this outbound failed to relay probe request
|
|
|
|
@Restriction NotMachineReadable
|
|
|
|
*/
|
|
|
|
string last_error_reason = 3;
|
|
|
|
/* @Document The outbound tag for this Server
|
|
|
|
@Type id.outboundTag
|
|
|
|
*/
|
|
|
|
string outbound_tag = 4;
|
|
|
|
/* @Document The time this outbound is known to be alive
|
|
|
|
@Type id.outboundTag
|
|
|
|
*/
|
|
|
|
int64 last_seen_time = 5;
|
|
|
|
/* @Document The time this outbound is tried
|
|
|
|
@Type id.outboundTag
|
|
|
|
*/
|
|
|
|
int64 last_try_time = 6;
|
2021-06-18 12:39:13 -04:00
|
|
|
|
|
|
|
HealthPingMeasurementResult health_ping = 7;
|
2021-03-06 08:33:20 -05:00
|
|
|
}
|
|
|
|
|
2021-03-06 11:26:15 -05:00
|
|
|
message ProbeResult{
|
|
|
|
/* @Document Whether this outbound is usable
|
|
|
|
@Restriction ReadOnlyForUser
|
|
|
|
*/
|
|
|
|
bool alive = 1;
|
|
|
|
/* @Document The time for probe request to finish.
|
|
|
|
@Type time.ms
|
|
|
|
@Restriction ReadOnlyForUser
|
|
|
|
*/
|
|
|
|
int64 delay = 2;
|
|
|
|
/* @Document The error caused this outbound failed to relay probe request
|
|
|
|
@Restriction NotMachineReadable
|
|
|
|
*/
|
|
|
|
string last_error_reason = 3;
|
|
|
|
}
|
|
|
|
|
2021-03-06 08:33:20 -05:00
|
|
|
message Intensity{
|
|
|
|
/* @Document The time interval for a probe request in ms.
|
|
|
|
@Type time.ms
|
|
|
|
*/
|
|
|
|
uint32 probe_interval = 1;
|
|
|
|
}
|
|
|
|
message Config {
|
2021-09-07 08:19:31 -04:00
|
|
|
option (v2ray.core.common.protoext.message_opt).type = "service";
|
|
|
|
option (v2ray.core.common.protoext.message_opt).short_name = "backgroundObservatory";
|
2021-03-06 08:33:20 -05:00
|
|
|
/* @Document The selectors for outbound under observation
|
|
|
|
*/
|
|
|
|
repeated string subject_selector = 2;
|
2021-06-30 12:47:29 -04:00
|
|
|
|
|
|
|
string probe_url = 3;
|
2021-06-30 14:33:37 -04:00
|
|
|
|
|
|
|
int64 probe_interval = 4;
|
2021-03-06 08:33:20 -05:00
|
|
|
}
|