Reviewer load knobs and presets
Choose a capacity preset or adjust the reviewer knobs. Concurrency and run count are live in this UI: the page dispatches browser samples of packaged AQVM runtime requests in parallel and measures the full request path. Backend load-runner imports show AQVM capacity evidence separately.
Advanced operator controls
Package reviewers can run ./osi-runtime-gossip-test --test full-suite --export-json ./evidence/osi-runtime-gossip-evidence.json --export-prometheus ./evidence/osi-runtime-gossip.prom from the extracted super-node-package, then import the JSON here. For backend AQVM capacity, import ./evidence/aqvm-load.json or ./evidence/aqvm-ramp.json from ./osi-runtime-aqvm-load. For distributed quorum evidence, import ./evidence/osi-gossip-cluster-ramp.json from ./osi-runtime-gossip-cluster.
Third-party cluster smoke ramp, add-node helper, and topology JSON
Run this from the extracted super-node-package after each topology node is serving ./run-command-center.sh. To test more super-nodes without hand-editing JSON, use ./cluster/add_osi_gossip_node.mjs; the manual cluster/osi-gossip-topology.json edit remains available for reviewers who want to inspect or patch the topology directly.
./cluster/add_osi_gossip_node.mjs \ --name reviewer-node-1 \ --base-url http://<reviewer-node-host>:8080 \ --ssh root@<reviewer-node-host> \ --package-path /root/super-node-package \ --quorum 2
mkdir -p ./evidence ./osi-runtime-gossip-cluster \ --topology ./cluster/osi-gossip-topology.json \ --test full-suite \ --ramp 1,2,4 \ --runs-per-level 12 \ --payload-bytes 4096 \ --quorum 2 \ --timeout-ms 120000 \ --connect-timeout-ms 5000 \ --fanout-timeout-ms 10000 \ --evasion strict \ --export-json ./evidence/osi-gossip-cluster-smoke-ramp.json \ --export-prometheus ./evidence/osi-gossip-cluster-smoke-ramp.prom
Manual JSON alternative: append an object with a unique name, reachable base_url, and optional aqvm_runner SSH package path.
{
"role": "super-node",
"name": "supernode-c",
"base_url": "http://<super-node-host>:8080",
"aqvm_runner": "ssh://root@<super-node-host>/root/super-node-package"
}