1 Star 0 Fork 0

zhangjungang/beats

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
metrics.go 504 Bytes
一键复制 编辑 原始数据 按行查看 历史
urso 提交于 2017-07-18 02:23 . Move winlogbeat to new publisher pipeline
package beater
import "expvar"
// Metrics that can retrieved through the expvar web interface. Metrics must be
// enable through configuration in order for the web service to be started.
var (
publishedEvents = expvar.NewMap("published_events")
)
func initMetrics(namespace string) {
// Initialize metrics.
publishedEvents.Add(namespace, 0)
}
func addPublished(namespace string, n int) {
numEvents := int64(n)
publishedEvents.Add("total", numEvents)
publishedEvents.Add(namespace, numEvents)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhangjungang/beats.git
git@gitee.com:zhangjungang/beats.git
zhangjungang
beats
beats
v6.0.0-rc1

搜索帮助

0d507c66 1850385 C8b1a773 1850385