Yes, some kind of. Seems I just do not understand your question. Almost all data can be represented as a json, so the meaning of comparison with tables eludes me.
The actual format for info --json is
Is there any future roadmap including the storing of the data in a local DB so it can avoid querying all the data live when you refresh? Or at least an in-memory cache or similar.
The roadmap is here: Storj Network Roadmap · GitHub
But I do not see something regarding multinode dashboard.
However, the Community contribution is welcome as well!
How your Online score is looks like for this node?
Also, if your multinode dashboard in the same network, this check requires that you router should have a hairpin NAT (be able to process requests to its external address from the local network).
The multinode and everything does work. What I am saying is that only the first attempt to add a node fails. On the retry, the node successfully gets added.
Adding nodes is failing with invalid JSON format. I just piped the storagenode info json into a file. The json in the file looks fine.
PS E:\Management\Storj> .\storagenode.exe info --json --config-dir "C:\Program Files\Storj\Storage Node" > node1.json
PS E:\Management\Storj> .\multinode.exe add .\node1.json
2022-06-28T15:18:10.978+0100 INFO Configuration loaded {"Location": "C:\\Users\\Administrator\\AppData\\Roaming\\Storj\\Multinode\\config.yaml"}
Error: invalid JSON format
PS E:\Management\Storj> .\storagenode.exe version
Release build
Version: v1.56.4
Build timestamp: 02 Jun 22 10:15 BST
Git commit: 81d116de12cdcb914612b196d80f4670a59842ff
PS E:\Management\Storj> .\multinode.exe version
2022-06-28T15:21:07.258+0100 INFO Configuration loaded {"Location": "C:\\Users\\Administrator\\AppData\\Roaming\\Storj\\Multinode\\config.yaml"}
Release build
Version: v1.57.2
Build timestamp: 17 Jun 22 07:57 BST
Git commit: 3ede8719cc2235774117db150e07f1f51620ee7f
edit, just tried with 1.57.2 storagenode as well and also doesn’t work.
edit2:
Seems to be happening on the webui as well, but only when the base64 contains some special characters, e.g. / or +
illegal base64 data at input byte 20
wqDWJY09Y8Hs1qiEvx9l/BH3pDeXgrX26DkTCH8QvfI=
I just ran storagenode info until I got an output that had no special characters and put it into the webui. Which was a bit tedious for 12 nodes, but did work.
I did a fresh install of Windows 11 and it came with Powershell 5.1. Powershell 5.1 or earlier defaults to UTF-16. You can output UTF-8 in two ways. Either set this default:
Or alternatively replace > with | out-file foo.txt -encoding utf8
But in that case you still get the byte order mark, which in that case is 0xEF 0xBB 0xBF (which is 0xFF 0xFE encoded in UTF-8). The command still fails. @clement made a change to remove this here https://review.dev.storj.io/c/storj/storj/+/8252
Powershell 7 can be installed manually and defaults to UTF-8 without BOM so there this is no longer necessary and it “just works”.
I am trying to add nodes to my MND, I have successfully added the windows nodes that I have.
I have other nodes on RPi’s using DOCKER. when I trying to run storagenode info --config dir /mnt/storj/storagenode I get bash: storagenode: command not found.
I don’t know where to run this command from with this setup, does anyone know?