Submitting Reports

Consider registering first

You can submit a YABS report without registering an account, but registration is recommended. Registration is free - sign up here !

When you’re logged in, any report you submit is automatically listed on your "My YABS" page, where benchmarks are grouped by server name. Logged-in users can also bookmark reports from others for easier comparison and tracking.

If you submit a report without logging in, you'll receive a direct link to the report page upon submission. You can use this link to view or share the report, but it won't be associated with an account.

Paste report in a text box

The simplest way to submit a YABS report is by using the "Paste report in a text box" option. There's a large blue button on the main page that says exactly that. Clicking it opens a page with a text box where you can paste your report and click Submit.

You can paste either the plain text output from the yabs.sh script or the contents of a JSON file produced by the script. The system automatically detects the report format and processes it accordingly.

If you've saved the yabs.sh script to your disk, you can pass the -w option to generate a JSON report:

./yabs.sh -w myreport.json
cat myreport.json
Then copy the JSON output, paste it into the text box, and click "Submit" button.

Alternatively, if you prefer to download and run the script in one step, you can do it like this:

curl -sL https://yabs.sh | bash -s -- -w myreport.json
Then:

cat myreport.json

Copy the output and paste it into the text box.

Upload benchmark file

Another way to submit a YABS report is by using the "Upload benchmark file" option. There's a large blue button on the main page for this. When you click it, a file browser window opens where you can select a file containing the report to upload.

This method accepts both plain text and JSON reports. If you’re logged in, the uploaded report will appear on your "My YABS" page.

Post directly from the script

You can also submit a report directly from the yabs.sh script.

To do this in one step:

curl -sL https://yabs.sh | bash -s -- -s "https://yabs.cc/add"

If you already have the script saved locally:

./yabs.sh -s "https://yabs.cc/add"

At the moment, there's no way to include your user ID with this submission method. However, the report will appear in the "Recent Reports" widget on the main page, where you can open it and bookmark it.

Not Sure Which Option to Use?

If you're unsure which submission method to use, choose the first option: paste your report into the text box. This way, the report is posted to your account and you can review it before final submission.