1 Star 0 Fork 0

zhangjungang/beats

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
main.go 538 Bytes
Copy Edit Raw Blame History
/*
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)
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhangjungang/beats.git
git@gitee.com:zhangjungang/beats.git
zhangjungang
beats
beats
v5.3.0

Search

0d507c66 1850385 C8b1a773 1850385