mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-14 17:44:06 -08:00
d867491364
* Add support for user-friendly durations Signed-off-by: Julien Pivotto <roidelapluie@inuits.eu>
14 lines
259 B
Go
14 lines
259 B
Go
// +build darwin dragonfly freebsd netbsd openbsd
|
|
// +build !js
|
|
|
|
package logrus
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
const ioctlReadTermios = unix.TIOCGETA
|
|
|
|
func isTerminal(fd int) bool {
|
|
_, err := unix.IoctlGetTermios(fd, ioctlReadTermios)
|
|
return err == nil
|
|
}
|