@@ -82,27 +82,6 @@ Columns:
8282* ** id** (` integer ` ): Unique identifier
8383* ** perf_commit** (` text ` ): Commit sha / tag
8484
85- ### collector_progress
86-
87- Keeps track of the collector's start and finish time as well as which step it's currently on.
88-
89- Columns:
90-
91- * ** aid** (` integer ` ): Artifact id, references the id in the artifact table
92- * ** step** (` text ` ): The step the collector is currently benchmarking
93- * ** start** (` timestamptz ` ): When the collector started
94- * ** end** (` timestamptz ` ): When the collector finished
95-
96- ### artifact_collection_duration
97-
98- Records how long benchmarking takes in seconds.
99-
100- Columns:
101-
102- * ** aid** (` integer ` ): Artifact id, references the id in the artifact table
103- * ** date_recorded** (` timestamptz ` ): When this was recorded
104- * ** duration** (` integer ` ): How long the benchmarking took in seconds
105-
10685### benchmark
10786
10887The different types of compile-time benchmarks that are run.
@@ -202,24 +181,6 @@ Columns:
202181* ** profile** (` text ` ): What type of compilation is happening - check build, optimized build (a.k.a. release build), debug build, or doc build.
203182* ** cache** (` text ` ): The incremental scenario used for the benchmark
204183
205- ### pull_request_build
206-
207- Records a pull request commit that is waiting in a queue to be benchmarked.
208-
209- First a merge commit is queued, then its artifacts are built by bors, and once the commit
210- is attached to the entry in this table, it can be benchmarked.
211-
212- * ** bors_sha** (` text ` ): SHA of the commit that should be benchmarked
213- * ** pr** (` integer ` ): number of the PR
214- * ** parent_sha** (` text ` ): SHA of the parent commit, to which will the PR be compared
215- * ** complete** (` boolean ` ): Specifies whether this commit has been already benchmarked or not
216- * ** requested** (` timestamptz ` ): When was the commit queued
217- * ** include** (` text ` ): Which benchmarks should be included (corresponds to the ` --include ` benchmark parameter), comma separated strings
218- * ** exclude** (` text ` ): Which benchmarks should be excluded (corresponds to the ` --exclude ` benchmark parameter), comma separated strings
219- * ** runs** (` integer ` ): How many iterations should be used by default for the benchmark run
220- * ** commit_date** (` timestamptz ` ): When was the commit created
221- * ** backends** (` text ` ): The codegen backends to use for the benchmarks (corresponds to the ` --backends ` benchmark parameter)
222-
223184### error
224185
225186Records an error within the application namely a;
0 commit comments