Fetch the repository succeeded.
/*
Package winlogbeat contains the entrypoint to Winlogbeat which is a lightweight
data shipper for Windows event logs. It ships events directly to Elasticsearch
or Logstash. The data can then be visualized in Kibana.
Downloads: https://www.elastic.co/downloads/beats/winlogbeat
*/
package main
import (
"os"
"github.com/elastic/beats/libbeat/beat"
"github.com/elastic/beats/winlogbeat/beater"
)
// Name of this beat.
var Name = "winlogbeat"
func main() {
if err := beat.Run(Name, "", beater.New); err != nil {
os.Exit(1)
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。