forked from elastic/elastic-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
46 lines (39 loc) · 1 KB
/
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
39
40
41
42
43
44
45
46
// 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/elastic-agent/internal/pkg/agent/cmd"
"github.com/elastic/elastic-agent/pkg/core/process"
)
// Setups and Runs agent.
func main() {
var err error
defer func() {
if err != nil {
os.Exit(1) // defer os exit and allow other goroutines to cleanup
}
}()
err = cmd.CheckNativePlatformCompat()
if err != nil {
fmt.Fprintf(os.Stderr, "Failed to initialize: %v\n", err)
return
}
pj, err := process.CreateJobObject()
if err != nil {
fmt.Fprintf(os.Stderr, "Failed to initialize process job object: %v\n", err)
return
}
defer pj.Close()
rand.Seed(time.Now().UnixNano())
command := cmd.NewCommand()
err = command.Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "%v\n", err)
return
}
}