2021-04-08 17:20:30 -04:00
|
|
|
package conf
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/golang/protobuf/proto"
|
2021-07-01 14:02:27 -04:00
|
|
|
|
2021-04-08 17:20:30 -04:00
|
|
|
"github.com/v2fly/v2ray-core/v4/app/observatory"
|
2021-08-09 23:08:45 -04:00
|
|
|
"github.com/v2fly/v2ray-core/v4/infra/conf/cfgcommon/duration"
|
2021-04-08 17:20:30 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type ObservatoryConfig struct {
|
2021-06-30 14:33:37 -04:00
|
|
|
SubjectSelector []string `json:"subjectSelector"`
|
|
|
|
ProbeURL string `json:"probeURL"`
|
2021-08-19 01:40:47 -04:00
|
|
|
ProbeInterval duration.Duration `json:"probeInterval"`
|
2021-04-08 17:20:30 -04:00
|
|
|
}
|
|
|
|
|
2021-05-01 10:28:23 -04:00
|
|
|
func (o *ObservatoryConfig) Build() (proto.Message, error) {
|
2021-06-30 14:33:37 -04:00
|
|
|
return &observatory.Config{SubjectSelector: o.SubjectSelector, ProbeUrl: o.ProbeURL, ProbeInterval: int64(o.ProbeInterval)}, nil
|
2021-04-08 17:20:30 -04:00
|
|
|
}
|