new graf, prom, dashboard, exporters! (#12)

* new graf, prom, dashboard, exporters!

* update readme and static images
This commit is contained in:
lalanza808
2022-09-22 12:11:56 -07:00
committed by GitHub
parent 038c40012c
commit 109f2cad80
16 changed files with 3302 additions and 713 deletions

View File

@@ -1,11 +1,9 @@
FROM node:8
FROM golang:bullseye
WORKDIR /opt/monerod_exporter
# Install exporter from Golang source
RUN go install github.com/cirocosta/monero-exporter/cmd/monero-exporter@master
RUN git clone https://github.com/lalanza808/monerod_exporter.git --branch=master --depth=1 .
# Install GeoLite database
RUN wget https://github.com/P3TERX/GeoLite.mmdb/raw/download/GeoLite2-City.mmdb -O /geoip.mmdb
RUN npm install
EXPOSE 8080
ENTRYPOINT ["node", "index.js"]
ENTRYPOINT [ "monero-exporter", "--geoip-filepath", "/geoip.mmdb" ]