File tree 3 files changed +19
-1
lines changed
3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ ps: ## Plain-text list of profiles
68
68
# #
69
69
# # Profile-based cluster shells (autogenerated targets)
70
70
# #
71
- PROFILES_BASE := default plutus oldtracing
71
+ PROFILES_BASE := default plutus oldtracing idle tracer-only
72
72
PROFILES_STARTSTOP := startstop startstop-p2p startstop-plutus startstop-notracer startstop-oldtracing
73
73
PROFILES_CI_TEST := ci-test ci-test-p2p ci-test-plutus ci-test-notracer ci-test-dense10
74
74
PROFILES_CI_BENCH := ci-bench ci-bench-p2p ci-bench-plutus ci-bench-notracer
Original file line number Diff line number Diff line change @@ -290,6 +290,12 @@ def all_profile_variants:
290
290
($compressed_timescale * $current_tps_saturation_value *
291
291
{ scenario : "fixed-loaded"
292
292
}) as $scenario_fixed_loaded
293
+ |
294
+ ({ scenario : "idle"
295
+ }) as $scenario_idle
296
+ |
297
+ ({ scenario : "tracer-only"
298
+ }) as $scenario_tracer_only
293
299
|
294
300
##
295
301
### Definition vocabulary: base variant
@@ -369,6 +375,14 @@ def all_profile_variants:
369
375
{ name : "oldtracing"
370
376
, desc : "Default in legacy tracing mode"
371
377
}
378
+ , $scenario_idle *
379
+ { name : "idle"
380
+ , desc : "Idle scenario: start nodes & detach from tty; no cluster termination"
381
+ }
382
+ , $scenario_tracer_only *
383
+ { name : "tracer-only"
384
+ , desc : "Idle scenario: start only the tracer & detach from tty; no termination"
385
+ }
372
386
373
387
## Fastest -- start-stop
374
388
, $startstop_base *
Original file line number Diff line number Diff line change @@ -34,6 +34,10 @@ case "$op" in
34
34
backend start-nodes " $dir "
35
35
;;
36
36
37
+ tracer-only )
38
+ backend start " $dir "
39
+ ;;
40
+
37
41
fixed )
38
42
backend start " $dir "
39
43
You can’t perform that action at this time.
0 commit comments