mirror of
https://github.com/cirocosta/monero-exporter.git
synced 2024-10-01 08:25:41 -04: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>
3.2 KiB
3.2 KiB
Install
Using Go
If you already have Go installed, you can use to Go toolchain to build from
source and install it for you (under $GOPATH/bin
):
$ GO111MODULE=on go get github.com/cirocosta/monero-exporter/cmd/monero-exporter
go: downloading github.com/cirocosta/monero-exporter v0.0.3
$ monero-exporter --help
Prometheus exporter for monero metrics
Usage:
monero-exporter [flags]
...
Note that this will install the latest tagged release (not necessarily the latest code).
From releases
In the releases page you'll find the pre-compiled releases for each platform.
"yeah yeah, I trust the interwebs" mode
export VERSION=0.0.3
curl -SL -o- https://github.com/cirocosta/monero-exporter/releases/download/v$VERSION/monero-exporter_$VERSION_Linux_x86_64.tar.gz | \
tar xvzf monero
mv ./monero-exporter /usr/local/bin
"trust, but verify" mode
- fetch my public key and make sure it matches the expected fingerprint
$ curl -SOL https://utxo.com.br/pgp/public-key.txt
now, using gpg
, derive the fingerprint. it should match the one advertised by
me: 9CD1 1313 8578 59CC 0FAD E93B 6B93 177A 62D0 1DB8
(should be the same as
you can find under my personal account on Twitter: http://twitter.com/cirowrc).
$ gpg --keyid-format long --with-fingerprint ./public-key.txt
pub rsa3072/6B93177A62D01DB8 2021-07-19 [SC] [expires: 2023-07-19]
Key fingerprint = 9CD1 1313 8578 59CC 0FAD E93B 6B93 177A 62D0 1DB8
then, import into the key to the keyring so it can be used to validate that I indeed signed the content advertised.
$ gpg --import ./public-key.txt
gpg: key 6B93177A62D01DB8: public key "..." imported
gpg: Total number processed: 1
gpg: imported: 1
- download the archive for your platform as well as the checksums
$ curl -SOL https://github.com/cirocosta/monero-exporter/releases/download/v0.0.3/monero-exporter_0.0.3_Linux_x86_64.tar.gz
$ curl -SOL https://github.com/cirocosta/monero-exporter/releases/download/v0.0.3/checksums.txt.asc
- verify that you can trust the checksums (that it has been generated and not tampered with), and then verify that the assets you downloaded are what they supposed to be
$ gpg --verify ./checksums.txt.asc
gpg: Signature made Mon 19 Jul 2021 02:10:42 PM EDT
gpg: using RSA key 9CD11313857859CC0FADE93B6B93177A62D01DB8
gpg: Good signature from "Ciro ...
- verify that the tarball is what it should be
compute the digest of the tarball
$ sha256sum ./monero-exporter_0.0.3_Linux_x86_64.tar.gz
e2b2214c9371fe3c0333cca7feff3554c56d8d0f377180e39ff50d332639c22d ./monero-exporter_0.0.3_Linux_x86_64.tar.gz
see that it matches what you found in the signed checksums file
$ cat ./checksums.txt.asc | grep e2b2214c9371fe3c0333cca7feff3554c56d8d0f377180e39ff50d332639c22d
e2b2214c9371fe3c0333cca7feff3554c56d8d0f377180e39ff50d332639c22d monero-exporter_0.0.3_Linux_x86_64.tar.gz
- install
$ tar xvzf ./monero-exporter_0.0.3_Linux_x86_64.tar.gz monero
$ mv monero /usr/local/bin
$ monero-exporter version
0.0.3 ...