Skip to content
This repository was archived by the owner on Jan 10, 2023. It is now read-only.

Commit ad176f7

Browse files
allow setting listen address via environment variable
1 parent ec9333c commit ad176f7

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

main.go

+5
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,11 @@ func main() {
7575
*password = pass
7676
}
7777

78+
exporterAddr := os.Getenv("EXPORTER_ADDRESS")
79+
if exporterAddr != "" {
80+
*addr = exporterAddr
81+
}
82+
7883
if *showVersion {
7984
fmt.Printf("asprom %s\n", version)
8085
os.Exit(0)

0 commit comments

Comments
 (0)