From b1422bbec2d62aaa9293cd81ad2b493bc8453c02 Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Fri, 15 Nov 2019 17:36:10 -0800 Subject: [PATCH] Add split out metrics to a new make target In case trying to run without having an available port to serve http on --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 7a0d4da..8bcd4b1 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,10 @@ minitor-go: .PHONY: run run: minitor-go build + ./minitor-go -debug + +.PHONY: run-metrics +run-metrics: minitor-go build ./minitor-go -debug -metrics .PHONY: test