Match TPS stats to Grafana dashboard (#6506)
* Match TPS stats to Grafana dashboard * Add label names
This commit is contained in:
parent
0b2d4f32fa
commit
7d650eff8d
|
@ -119,17 +119,23 @@ launchTestnet() {
|
||||||
|
|
||||||
echo --- collect statistics about run
|
echo --- collect statistics about run
|
||||||
declare q_mean_tps='
|
declare q_mean_tps='
|
||||||
SELECT round(mean("sum_count")) AS "mean_tps" FROM (
|
SELECT ROUND(MEAN("median_sum")) as "mean_tps" FROM (
|
||||||
SELECT sum("count") AS "sum_count"
|
SELECT MEDIAN(sum_count) AS "median_sum" FROM (
|
||||||
FROM "'$TESTNET_TAG'"."autogen"."banking_stage-record_transactions"
|
SELECT SUM("count") AS "sum_count"
|
||||||
WHERE time > now() - '"$TEST_DURATION_SECONDS"'s GROUP BY time(1s)
|
FROM "'$TESTNET_TAG'"."autogen"."bank-process_transactions"
|
||||||
|
WHERE time > now() - '"$TEST_DURATION_SECONDS"'s AND count > 0
|
||||||
|
GROUP BY time(1s), host_id)
|
||||||
|
GROUP BY time(1s)
|
||||||
)'
|
)'
|
||||||
|
|
||||||
declare q_max_tps='
|
declare q_max_tps='
|
||||||
SELECT round(max("sum_count")) AS "max_tps" FROM (
|
SELECT MAX("median_sum") as "max_tps" FROM (
|
||||||
SELECT sum("count") AS "sum_count"
|
SELECT MEDIAN(sum_count) AS "median_sum" FROM (
|
||||||
FROM "'$TESTNET_TAG'"."autogen"."banking_stage-record_transactions"
|
SELECT SUM("count") AS "sum_count"
|
||||||
WHERE time > now() - '"$TEST_DURATION_SECONDS"'s GROUP BY time(1s)
|
FROM "'$TESTNET_TAG'"."autogen"."bank-process_transactions"
|
||||||
|
WHERE time > now() - '"$TEST_DURATION_SECONDS"'s AND count > 0
|
||||||
|
GROUP BY time(1s), host_id)
|
||||||
|
GROUP BY time(1s)
|
||||||
)'
|
)'
|
||||||
|
|
||||||
declare q_mean_confirmation='
|
declare q_mean_confirmation='
|
||||||
|
|
Loading…
Reference in New Issue