permary Daily Transaction Volume & Activity
    Updated 5 days ago
    select
    date(closed_at) as date,
    count(*) as total_transactions,
    sum(case when successful then 1 else 0 end) as successful_transactions,
    sum(case when not successful then 1 else 0 end) as failed_transactions,
    sum(operation_count) as total_operations
    from stellar.core.fact_transactions
    where closed_at >= date_trunc('month', current_date) - interval '12 months'
    group by date
    order by date desc;




    Last run: 5 days ago
    DATE
    TOTAL_TRANSACTIONS
    SUCCESSFUL_TRANSACTIONS
    FAILED_TRANSACTIONS
    TOTAL_OPERATIONS
    1
    2025-03-13 00:00:00.00017839549752318087233281733
    2
    2025-03-12 00:00:00.0003980753206104619197077491939
    3
    2025-03-11 00:00:00.0004392909192759724653128158803
    4
    2025-03-10 00:00:00.00047415742091135265043910763204
    5
    2025-03-09 00:00:00.0004059170192175421374168643519
    6
    2025-03-08 00:00:00.0003309265189789614113698505020
    7
    2025-03-07 00:00:00.0004328858197671423521449223783
    8
    2025-03-06 00:00:00.0003832742189707819356648464821
    9
    2025-03-05 00:00:00.0003951103200985719412468651973
    10
    2025-03-04 00:00:00.0004147430197581721716138787492
    11
    2025-03-03 00:00:00.0004381576187840825031688282844
    12
    2025-03-02 00:00:00.00041822081754285242792310248251
    13
    2025-03-01 00:00:00.0003359465168173216777337793540
    14
    2025-02-28 00:00:00.0004169270182738023418907652935
    15
    2025-02-27 00:00:00.0003243674176082614828488128312
    16
    2025-02-26 00:00:00.0003775670185814819175227550494
    17
    2025-02-25 00:00:00.0004999926199188730080398419410
    18
    2025-02-24 00:00:00.0004146543181316223333817330626
    19
    2025-02-23 00:00:00.0003526945154884219781036211438
    20
    2025-02-22 00:00:00.0003552202158092919712736482831
    ...
    378
    22KB
    50s