1 Star 0 Fork 0

sqos/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)
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sqos/beats.git
git@gitee.com:sqos/beats.git
sqos
beats
beats
v5.6.8

Search