Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AlexeyALeonov/success_rate
Success rate for storagenode (Storj V3)
https://github.com/AlexeyALeonov/success_rate
Last synced: 8 days ago
JSON representation
Success rate for storagenode (Storj V3)
- Host: GitHub
- URL: https://github.com/AlexeyALeonov/success_rate
- Owner: AlexeyALeonov
- Created: 2019-07-28T10:54:08.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-06-23T02:39:09.000Z (over 1 year ago)
- Last Synced: 2024-08-02T02:11:34.729Z (3 months ago)
- Language: PowerShell
- Homepage:
- Size: 14.6 KB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-storj - Success Rate Tool - Similar script for Windows Power Shell (Clients with Storj support and integrations)
README
# success_rate
1. Download the script and save it in to the convenient place
2. Run it
```
.\successrate.ps1
```To specify path to the log file, you can use an optional parameter `-Path`:
```
.\successrate.ps1 -Path x:\storagenode\node.log
```The default path for the Windows GUI storagenode's log is `"C:\Program Files\Storj\Storage Node\storagenode.log"`, so the command will looks like:
```
.\successrate.ps1 -Path "C:\Program Files\Storj\Storage Node\storagenode.log"
```## You may need to enable the execution policy
Execute in the elevated Powershell
```
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned
```