Skip to content

Commit 91df615

Browse files
committed
Initial release
1 parent e4e3d07 commit 91df615

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ GOTEST=$(GOCMD) test
44
GOVET=$(GOCMD) vet
55
BINARY_NAME=pure-fa-om-exporter
66
MODULE_NAME=go mod init purestorage/fa-openmetrics-exporter
7-
VERSION?=0.2.0
7+
VERSION?=1.0.0
88
SERVICE_PORT?=9490
99
DOCKER_REGISTRY?= quay.io/purestorage/
1010
EXPORT_RESULT?=false # for CI please set EXPORT_RESULT to true

cmd/fa-om-exporter/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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"
1818
var debug bool = false
1919

2020
func 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) {

0 commit comments

Comments
 (0)