File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ GOTEST=$(GOCMD) test
44GOVET =$(GOCMD ) vet
55BINARY_NAME =pure-fa-om-exporter
66MODULE_NAME =go mod init purestorage/fa-openmetrics-exporter
7- VERSION? =0.2 .0
7+ VERSION? =1.0 .0
88SERVICE_PORT? =9490
99DOCKER_REGISTRY? = quay.io/purestorage/
1010EXPORT_RESULT? =false # for CI please set EXPORT_RESULT to true
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import (
1414 "github.com/prometheus/client_golang/prometheus/promhttp"
1515)
1616
17- var version string = "0.2.1 "
17+ var version string = "1.0.0 "
1818var debug bool = false
1919
2020func main () {
@@ -25,7 +25,7 @@ func main() {
2525 flag .Parse ()
2626 addr := fmt .Sprintf ("%s:%d" , * host , * port )
2727 debug = * d
28- log .Printf ("Start exporter on %s" , addr )
28+ log .Printf ("Start Pure FlashArray exporter v%s on %s" , version , addr )
2929
3030 http .HandleFunc ("/" , index )
3131 http .HandleFunc ("/metrics/volumes" , func (w http.ResponseWriter , r * http.Request ) {
You can’t perform that action at this time.
0 commit comments