forked from DataDog/datadog-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hostname.go
37 lines (30 loc) · 889 Bytes
/
hostname.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
// 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 2018 Datadog, Inc.
package app
import (
"fmt"
"github.com/DataDog/datadog-agent/pkg/config"
"github.com/DataDog/datadog-agent/pkg/util"
"github.com/spf13/cobra"
)
func init() {
AgentCmd.AddCommand(getHostnameCommand)
}
var getHostnameCommand = &cobra.Command{
Use: "hostname",
Short: "Print the hostname used by the Agent",
Long: ``,
RunE: doGetHostname,
}
// query for the version
func doGetHostname(cmd *cobra.Command, args []string) error {
config.SetupLogger("off", "", "", false, false, "", true)
hname, err := util.GetHostname()
if err != nil {
return fmt.Errorf("Error getting the hostname: %v", err)
}
fmt.Println(hname)
return nil
}