HessishKPI - ovr 2
    Updated 8 days ago
    with trace as
    (select
    block_timestamp::date as timestamp ,
    Trace_id,
    count(TX_HASH) as txs
    from
    ton.core.fact_transactions
    where
    block_timestamp::date >= current_date - {{Last_N_days}}
    and TX_SUCCEEDED = 'TRUE'
    group by all)

    select date_trunc('{{Timeframe}}',timestamp) as time,
    max(txs) as "Max tx_hash on a Trace",
    round(avg(txs)) as "Avg tx_hash count per Trace",
    round(median(txs)) as "median tx_hash count per Trace"
    from trace
    group by all




    Last run: 8 days ago
    TIME
    Max tx_hash on a Trace
    Avg tx_hash count per Trace
    median tx_hash count per Trace
    1
    2025-04-21 00:00:00.00034032
    2
    2025-05-13 00:00:00.00072432
    3
    2025-05-07 00:00:00.00075132
    4
    2025-05-08 00:00:00.00071242
    5
    2025-04-07 00:00:00.00072742
    6
    2025-04-22 00:00:00.00076932
    7
    2025-05-26 00:00:00.00075132
    8
    2025-03-28 00:00:00.000121332
    9
    2025-06-09 00:00:00.00060232
    10
    2025-05-16 00:00:00.00069432
    11
    2025-05-21 00:00:00.00031332
    12
    2025-04-06 00:00:00.00026542
    13
    2025-05-02 00:00:00.00075132
    14
    2025-03-16 00:00:00.00076632
    15
    2025-03-15 00:00:00.00072932
    16
    2025-03-14 00:00:00.000123032
    17
    2025-04-18 00:00:00.00075132
    18
    2025-04-03 00:00:00.00075142
    19
    2025-05-19 00:00:00.00060232
    20
    2025-04-29 00:00:00.00038532
    90
    3KB
    26s