github.com/TykTechnologies/newrelic-go-agent@v0.0.0-20230823062834-3c80ff5627f6/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 }