File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -668,20 +668,26 @@ enum Commands {
668
668
modified : Option < String > ,
669
669
} ,
670
670
671
- /// Registers a collector in the database
671
+ /// Registers a new collector in the database.
672
+ /// Use `--is_active` to immediately mark the collector as active.
672
673
AddCollector {
673
674
#[ command( flatten) ]
674
675
db : DbOption ,
675
676
677
+ /// Name of the collector.
676
678
#[ arg( long) ]
677
679
collector_name : String ,
678
680
681
+ /// Target tuple which will the collector be benchmarking.
679
682
#[ arg( long) ]
680
683
target : String ,
681
684
685
+ /// Should the collector be marked as active immediately?
686
+ /// Only active collectors will receive jobs.
682
687
#[ arg( long) ]
683
688
is_active : bool ,
684
689
690
+ /// The benchmark set index that the collector will be benchmarking.
685
691
#[ arg( long) ]
686
692
benchmark_set : u32 ,
687
693
} ,
You can’t perform that action at this time.
0 commit comments