forked from elastic/elastic-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
38 lines (32 loc) · 983 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
// or more contributor license agreements. Licensed under the Elastic License;
// you may not use this file except in compliance with the Elastic License.
package main
import (
"fmt"
"math/rand"
"os"
"time"
"github.com/elastic/beats/v7/libbeat/cmd/platformcheck"
"github.com/elastic/beats/v7/x-pack/libbeat/common/proc"
"github.com/elastic/elastic-agent/internal/pkg/agent/cmd"
)
// Setups and Runs agent.
func main() {
if err := platformcheck.CheckNativePlatformCompat(); err != nil {
fmt.Fprintf(os.Stderr, "Failed to initialize: %v\n", err)
os.Exit(1)
}
pj, err := proc.CreateJobObject()
if err != nil {
fmt.Fprintf(os.Stderr, "Failed to initialize process job object: %v\n", err)
os.Exit(1)
}
defer pj.Close()
rand.Seed(time.Now().UnixNano())
command := cmd.NewCommand()
if err := command.Execute(); err != nil {
fmt.Fprintf(os.Stderr, "%v\n", err)
os.Exit(1)
}
}