forked from DataDog/datadog-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_check.go
44 lines (36 loc) · 1.09 KB
/
config_check.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
// Unless explicitly stated otherwise all files in this repository are licensed
// under the Apache License Version 2.0.
// This product includes software developed at Datadog (https://www.datadoghq.com/).
// Copyright 2016-2019 Datadog, Inc.
package app
import (
"fmt"
"github.com/ninnemana/datadog-agent/cmd/agent/common"
"github.com/ninnemana/datadog-agent/pkg/flare"
"github.com/fatih/color"
"github.com/spf13/cobra"
)
var withDebug bool
func init() {
AgentCmd.AddCommand(configCheckCommand)
configCheckCommand.Flags().BoolVarP(&withDebug, "verbose", "v", false, "print additional debug info")
}
var configCheckCommand = &cobra.Command{
Use: "configcheck",
Short: "Print all configurations loaded & resolved of a running agent",
Long: ``,
RunE: func(cmd *cobra.Command, args []string) error {
err := common.SetupConfig(confFilePath)
if err != nil {
return fmt.Errorf("unable to set up global agent configuration: %v", err)
}
if flagNoColor {
color.NoColor = true
}
err = flare.GetConfigCheck(color.Output, withDebug)
if err != nil {
return err
}
return nil
},
}