mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-12-20 15:36:07 +01:00
dc4c58671d
* Update vendoring. Update vendoring to latest upstream. Signed-off-by: Ben Kochie <superq@gmail.com>
16 lines
277 B
Go
16 lines
277 B
Go
//+build windows
|
|
|
|
package dbus
|
|
|
|
import "os"
|
|
|
|
const defaultSystemBusAddress = "tcp:host=127.0.0.1,port=12434"
|
|
|
|
func getSystemBusPlatformAddress() string {
|
|
address := os.Getenv("DBUS_SYSTEM_BUS_ADDRESS")
|
|
if address != "" {
|
|
return address
|
|
}
|
|
return defaultSystemBusAddress
|
|
}
|