Krawi
February 8, 2021, 2:09pm
348
Had the same issue with this python error on my Raspberry.
Found this with Google:
https://github.com/linuxserver/docker-papermerge/issues/4
You need a updated version of libseccomp2, 2.4.3-1 or higher. It is currently not available for Raspberry PI OS, but it is for Ubuntu. You can look into downloading the Deb from Ubuntus repository.
&
Thanks! As the docs states, downloading and installing a newer libseccomp2.deb
works for RPi4.
wget http://ftp.us.debian.org/debian/pool/main/libs/libseccomp/libseccomp2_2.5.0-3_armhf.deb
sudo dpkg -i libseccomp2_2.5.0-3_armhf.deb
This version 2.5.0-3 no longer exists, but i found the current version 2.5.1-1 here:
https://packages.debian.org/search?keywords=libseccomp2
Now it works with docker!
Hope this mixing breaks nothing somewhere else on my Pi.
4 Likes
Thanks for the investigation.
I facing with the same issue. Will give it a try during the day.
Confirmed
I deployed the package from https://packages.debian.org/sid/armhf/libseccomp2/download , and all works now.
Hey kind of weird question, but will vetting come back to the exporter after v 1.22.2 stopped working
Thanks.
greener
February 16, 2021, 1:16pm
352
It was removed from storjnode api and if/when it comes back then exporter will support it.
3 Likes
In the mean time the earnings calculator will pull this info right from the db’s, so that still works.
1 Like
yes it does but I loved the visual on centralized display
1 Like
I know, but it’s just temporary. It’ll be back in the API soon I hope.
2 Likes
kevink
February 17, 2021, 11:15am
356
I released an update of my combined dashboard for the exporter and log-exporter:
I updated the dashboard, it is now also published on grafana directly (but you can also still find it in my github repository): Storj-Exporter-Boom-Table-combined dashboard for Grafana | Grafana Labs
Changes include:
Changed metrics for OnlineScore,SuspensionScore and Audits have all been updated.
Node details now show the Space Used per satellite! This is a new metric added in the storj-exporter with the last update!
[grafik]
Node details StorageIO now also shows the StorageSum so you can …
1 Like
Just for info. I’m currently moving to an IntelNUC and with version 1.4 of the Boom Table Plugin for Grafana, some lines in the node summary table are broken. Unfortunately I forgot to make a screen. With version 1.3 it works as usual.
kevink
February 19, 2021, 8:38am
358
Yes that is a known issue, that’s why all our tutorials/how-to include the version 1.3 of the boom table plugin
waistcoat:
My storj-exporters seem to have blown up this morning:
File "/home/smg/git/Storj-Exporter/storj-exporter.py", line 109, in add_payout_metrics data = self.node_data.get('payout', {}).get('currentMonth', None)
Just pushed v1.0.13 with this fix in. latest
images updated for all platforms.
4 Likes
Redz0r
April 9, 2021, 6:45pm
360
Hi,
I followed the Quick start guide for the dashboard. (Storj-Exporter-dashboard/quick_start at master · anclrii/Storj-Exporter-dashboard · GitHub )
But There isn’t getting any data in the dashboard.
If i try with curl ( curl -s 172.16.100.250:9651/metrics
) , i’m seeing the stats, so the api is available.
Does anyone know what’s going wrong?
Best regards,
Ronnie
Redz0r
April 9, 2021, 7:13pm
361
I just made some progress, i can add an external node without problems.
But i can’t get the node running on the same host as the exporter get to work.
Any idea’s?
yes when you are in the config .yml create another target with 127.0.0.1:port
It works for me, though make sure you have net lopback enabled
Redz0r
April 9, 2021, 8:19pm
363
I already tried that.
It looks like my prometheus docker container can’t connect to that port.
I tried localhost, i tried the internal ip, and i tried the docker ip.
On the host itself al the options are working, but in the prometheus container i get a connection refused.
yo sorry I’m experienced with Windows so This is the most advice I can help sorry
this is the guide I followed, although I’m sure a lot of the same information was put onto @greener ’s github page.
1. Setting up prometheus
For storing all statistics of the nodes, we use prometheus. So choose one PC/Server where you want to run prometheus. It doesn’t need to be a powerful PC and it doesn’t need much space, you can decide how much space prometheus is allowed to use or how long you want to store your statistics. However, make sure you choose a PC (or a directory) that doesn’t write to an SD card as that would shorten its lifespan significantly.
On that chosen PC we first create a prometheus…
How do you run your exporter and how do you run your node? I you used docker run command for each of them they each run in their own separate networks unless they run in host mode.
You can create a network with both containers in it such that they can talk to each other.
docker network create [choose name i.e. storj-exporter]
docker network connect [network name you chose] [storj container name or ID]
docker network connect [network name you chose] [exporter container name or ID]
Redz0r
April 10, 2021, 10:41am
367
Thank you very much.
That did the trick
Finaly a way to monitor all my node’s in one dashboard
2 Likes
Hey guys, I’m wondering if there is a way, to create a delta change in storage over period of 24hours and one month. so it takes into account ingress and deletion
Any sudgestions?