You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: database/schema.md
+12-1Lines changed: 12 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -259,7 +259,6 @@ aid benchmark error
259
259
1 syn-1.0.89 Failed to compile...
260
260
```
261
261
262
-
263
262
## New benchmarking design
264
263
We are currently implementing a new design for dispatching benchmarks to collector(s) and storing
265
264
them in the database. It will support new use-cases, like backfilling of new benchmarks into a parent
@@ -296,3 +295,15 @@ Columns:
296
295
*`completed`: Completed request.
297
296
***backends** (`text NOT NULL`): Comma-separated list of codegen backends to benchmark. If empty, the default set of codegen backends will be benchmarked.
298
297
***profiles** (`text NOT NULL`): Comma-separated list of profiles to benchmark. If empty, the default set of profiles will be benchmarked.
298
+
299
+
### collector_config
300
+
301
+
Information about the collector; it's target architecture, when it was added, whether it is active and when it last had activity denoted by `last_heartbeat_at`.
302
+
303
+
```
304
+
sqlite> SELECT * FROM collector_config;
305
+
306
+
id target date_added last_heartbeat_at benchmark_set is_active
0 commit comments