1 Star 0 Fork 0

zhangjungang/beats

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
opts.go 1.16 KB
一键复制 编辑 原始数据 按行查看 历史
Steffen Siering 提交于 2017-02-01 13:27 . Monitoring enhancements: (#3478)
package monitoring
// Option type for passing additional options to NewRegistry.
type Option func(options) options
type options struct {
publishExpvar bool
mode Mode
}
var defaultOptions = options{
publishExpvar: false,
mode: Full,
}
// PublishExpvar enables publishing all registered variables via expvar interface.
// Note: expvar does not allow removal of any stats.
func PublishExpvar(o options) options {
o.publishExpvar = true
return o
}
// IgnorePublishExpvar disables publishing expvar variables in a sub-registry.
func IgnorePublishExpvar(o options) options {
o.publishExpvar = false
return o
}
func Report(o options) options {
o.mode = Reported
return o
}
func varOpts(regOpts *options, opts []Option) options {
O := defaultOptions
if regOpts != nil {
O = *regOpts
}
for _, opt := range opts {
O = opt(O)
}
return O
}
func applyOpts(in *options, opts []Option) *options {
if len(opts) == 0 {
return ensureOptions(in)
}
tmp := *ensureOptions(in)
for _, opt := range opts {
tmp = opt(tmp)
}
return &tmp
}
func ensureOptions(in *options) *options {
if in != nil {
return in
}
tmp := defaultOptions
return &tmp
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhangjungang/beats.git
git@gitee.com:zhangjungang/beats.git
zhangjungang
beats
beats
v5.6.10

搜索帮助

344bd9b3 5694891 D2dac590 5694891