mirror of
https://github.com/cirocosta/monero-exporter.git
synced 2024-12-21 22:05:02 -05:00
debdce3fb2
this is a big refactor, essentially rewriting the custom collector from scratch, and as such, creating a new dashboard based on the new metrics. Signed-off-by: Ciro S. Costa <utxobr@protonmail.com>
20 lines
343 B
Makefile
20 lines
343 B
Makefile
install:
|
|
go install -v ./cmd/monero-exporter
|
|
|
|
run:
|
|
monero-exporter \
|
|
--monero-addr=http://localhost:18081 \
|
|
--bind-addr=:9000 \
|
|
--geoip-filepath=./hack/geoip.mmdb
|
|
|
|
test:
|
|
go test ./...
|
|
|
|
lint:
|
|
go run github.com/golangci/golangci-lint/cmd/golangci-lint run \
|
|
--config=.golangci.yaml
|
|
|
|
|
|
table-of-contents:
|
|
doctoc --notitle ./README.md
|