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

Commit 6762e28

Browse files
authored
Merge pull request #35 from poblahblahblah/pob-listen-address-as-env-variable
allow setting listen address via environment variable
2 parents ec9333c + ad176f7 commit 6762e28

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)