add sql queries

This commit is contained in:
GroovieGermanikus 2024-03-27 19:05:47 +01:00
parent 1f502a3a57
commit 9f73f8e4a0
No known key found for this signature in database
GPG Key ID: 5B6EB831A5CD2015
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
### Inspect the BenchRunner executions
```postgresql
SELECT * FROM benchrunner.bench_runs
ORDER BY ts DESC
```
### Bench1 (old bench)
```postgresql
SELECT * FROM benchrunner.bench_metrics_bench1
ORDER BY ts DESC
```
### Bench Confirmation Rate
```postgresql
SELECT * FROM benchrunner.bench_metrics_confirmation_rate
ORDER BY ts DESC
```