mirror of
https://github.com/Icinga/icingabeat.git
synced 2025-08-16 07:18:08 +02:00
21 lines
456 B
Go
21 lines
456 B
Go
/*
|
|
Package metricbeat contains the entrypoint to Metricbeat which is a lightweight
|
|
data shipper for operating system and service metrics. It ships events directly
|
|
to Elasticsearch or Logstash. The data can then be visualized in Kibana.
|
|
|
|
Downloads: https://www.elastic.co/downloads/beats/metricbeat
|
|
*/
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/elastic/beats/metricbeat/cmd"
|
|
)
|
|
|
|
func main() {
|
|
if err := cmd.RootCmd.Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|