1
0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-02-24 17:50:43 +00:00

20 lines
307 B
Go
Raw Normal View History

2022-03-25 11:24:23 +08:00
package conf
import (
"github.com/xtls/xray-core/app/metrics"
)
type MetricsConfig struct {
Tag string `json:"tag"`
}
func (c *MetricsConfig) Build() (*metrics.Config, error) {
if c.Tag == "" {
return nil, newError("metrics tag can't be empty.")
}
return &metrics.Config{
Tag: c.Tag,
}, nil
}