github.com/newrelic/go-agent@v3.26.0+incompatible/internal/sysinfo/hostname_generic.go (about)

     1  // Copyright 2020 New Relic Corporation. All rights reserved.
     2  // SPDX-License-Identifier: Apache-2.0
     3  
     4  // +build !linux
     5  
     6  package sysinfo
     7  
     8  import "os"
     9  
    10  // Hostname returns the host name.
    11  func Hostname() (string, error) {
    12  	return os.Hostname()
    13  }