Skip to content

Console Output

02:46:04 [2025-11-27T02:46:04.664Z] + export POSTGRES_DB=****
02:46:04 [2025-11-27T02:46:04.664Z] + export POSTGRES_USER=****
02:46:04 [2025-11-27T02:46:04.664Z] + export PGPASSWORD=****
02:46:04 [2025-11-27T02:46:04.664Z] + echo 📈 Running basic performance queries...
02:46:04 [2025-11-27T02:46:04.664Z] 📈 Running basic performance queries...
02:46:04 [2025-11-27T02:46:04.665Z] + docker exec -e PGPASSWORD=**** ****-**** psql -h localhost -U **** -d **** -c 
02:46:04 [2025-11-27T02:46:04.665Z]                                 -- Test basic query performance
02:46:04 [2025-11-27T02:46:04.665Z]                                 EXPLAIN ANALYZE SELECT 1 as test_query;
02:46:04 [2025-11-27T02:46:04.665Z] 
02:46:04 [2025-11-27T02:46:04.665Z]                                 -- Test system catalog performance
02:46:04 [2025-11-27T02:46:04.665Z]                                 EXPLAIN ANALYZE SELECT COUNT(*) FROM information_schema.tables;
02:46:04 [2025-11-27T02:46:04.665Z] 
02:46:04 [2025-11-27T02:46:04.665Z]                                 -- Test connection info
02:46:04 [2025-11-27T02:46:04.665Z]                                 SELECT database_name, process_count FROM (
02:46:04 [2025-11-27T02:46:04.666Z]                                     SELECT datname as database_name, COUNT(*) as process_count
02:46:04 [2025-11-27T02:46:04.666Z]                                     FROM pg_stat_activity
02:46:04 [2025-11-27T02:46:04.666Z]                                     GROUP BY datname
02:46:04 [2025-11-27T02:46:04.666Z]                                 ) as activity_stats;
02:46:04 [2025-11-27T02:46:04.666Z]                             
02:46:04 [2025-11-27T02:46:04.921Z]                                       QUERY PLAN                                       
02:46:04 [2025-11-27T02:46:04.921Z] ---------------------------------------------------------------------------------------
02:46:04 [2025-11-27T02:46:04.922Z]  Result  (cost=0.00..0.01 rows=1 width=4) (actual time=0.006..0.013 rows=1.00 loops=1)
02:46:04 [2025-11-27T02:46:04.922Z]  Planning:
02:46:04 [2025-11-27T02:46:04.922Z]    Buffers: shared hit=3
02:46:04 [2025-11-27T02:46:04.922Z]  Planning Time: 0.322 ms
02:46:04 [2025-11-27T02:46:04.922Z]  Execution Time: 0.188 ms
02:46:04 [2025-11-27T02:46:04.922Z] (5 rows)
02:46:04 [2025-11-27T02:46:04.922Z] 
02:46:04 [2025-11-27T02:46:04.922Z]                                                                                                                                             QUERY PLAN                                                                                                                                            
02:46:04 [2025-11-27T02:46:04.923Z] --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
02:46:04 [2025-11-27T02:46:04.923Z]  Aggregate  (cost=71.97..71.98 rows=1 width=8) (actual time=15.680..15.749 rows=1.00 loops=1)
02:46:04 [2025-11-27T02:46:04.923Z]    Buffers: shared hit=28 read=12
02:46:04 [2025-11-27T02:46:04.923Z]    ->  Hash Left Join  (cost=36.66..71.69 rows=112 width=0) (actual time=10.832..15.013 rows=215.00 loops=1)
02:46:04 [2025-11-27T02:46:04.923Z]          Hash Cond: (c.reloftype = t.oid)
02:46:04 [2025-11-27T02:46:04.923Z]          Buffers: shared hit=28 read=12
02:46:04 [2025-11-27T02:46:04.923Z]          ->  Hash Join  (cost=1.09..34.58 rows=112 width=4) (actual time=0.999..3.896 rows=215.00 loops=1)
02:46:04 [2025-11-27T02:46:04.923Z]                Hash Cond: (c.relnamespace = nc.oid)
02:46:04 [2025-11-27T02:46:04.924Z]                Buffers: shared hit=22 read=1
02:46:04 [2025-11-27T02:46:04.924Z]                ->  Seq Scan on pg_class c  (cost=0.00..32.67 rows=150 width=8) (actual time=0.156..1.650 rows=215.00 loops=1)
02:46:04 [2025-11-27T02:46:04.924Z]                      Filter: ((relkind = ANY ('{r,v,f,p}'::"char"[])) AND (pg_has_role(relowner, 'USAGE'::text) OR has_table_privilege(oid, 'SELECT, INSERT, UPDATE, DELETE, TRUNCATE, REFERENCES, TRIGGER'::text) OR has_any_column_privilege(oid, 'SELECT, INSERT, UPDATE, REFERENCES'::text)))
02:46:04 [2025-11-27T02:46:04.924Z]                      Rows Removed by Filter: 202
02:46:04 [2025-11-27T02:46:04.924Z]                      Buffers: shared hit=13 read=1
02:46:04 [2025-11-27T02:46:04.925Z]                ->  Hash  (cost=1.05..1.05 rows=3 width=4) (actual time=0.738..0.748 rows=4.00 loops=1)
02:46:04 [2025-11-27T02:46:04.925Z]                      Buckets: 1024  Batches: 1  Memory Usage: 9kB
02:46:04 [2025-11-27T02:46:04.925Z]                      Buffers: shared hit=9
02:46:04 [2025-11-27T02:46:04.925Z]                      ->  Seq Scan on pg_namespace nc  (cost=0.00..1.05 rows=3 width=4) (actual time=0.334..0.667 rows=4.00 loops=1)
02:46:04 [2025-11-27T02:46:04.925Z]                            Filter: (NOT pg_is_other_temp_schema(oid))
02:46:04 [2025-11-27T02:46:04.925Z]                            Buffers: shared hit=9
02:46:04 [2025-11-27T02:46:04.925Z]          ->  Hash  (cost=27.29..27.29 rows=662 width=4) (actual time=9.747..9.775 rows=639.00 loops=1)
02:46:04 [2025-11-27T02:46:04.925Z]                Buckets: 1024  Batches: 1  Memory Usage: 31kB
02:46:04 [2025-11-27T02:46:04.925Z]                Buffers: shared hit=6 read=11
02:46:04 [2025-11-27T02:46:04.926Z]                ->  Hash Join  (cost=1.09..27.29 rows=662 width=4) (actual time=0.413..7.206 rows=639.00 loops=1)
02:46:04 [2025-11-27T02:46:04.926Z]                      Hash Cond: (t.typnamespace = nt.oid)
02:46:04 [2025-11-27T02:46:04.926Z]                      Buffers: shared hit=6 read=11
02:46:04 [2025-11-27T02:46:04.926Z]                      ->  Seq Scan on pg_type t  (cost=0.00..22.62 rows=662 width=8) (actual time=0.091..2.587 rows=639.00 loops=1)
02:46:04 [2025-11-27T02:46:04.926Z]                            Buffers: shared hit=5 read=11
02:46:04 [2025-11-27T02:46:04.926Z]                      ->  Hash  (cost=1.04..1.04 rows=4 width=4) (actual time=0.249..0.259 rows=4.00 loops=1)
02:46:04 [2025-11-27T02:46:04.926Z]                            Buckets: 1024  Batches: 1  Memory Usage: 9kB
02:46:04 [2025-11-27T02:46:04.926Z]                            Buffers: shared hit=1
02:46:04 [2025-11-27T02:46:04.927Z]                            ->  Seq Scan on pg_namespace nt  (cost=0.00..1.04 rows=4 width=4) (actual time=0.172..0.191 rows=4.00 loops=1)
02:46:04 [2025-11-27T02:46:04.927Z]                                  Buffers: shared hit=1
02:46:04 [2025-11-27T02:46:04.927Z]  Planning:
02:46:04 [2025-11-27T02:46:04.927Z]    Buffers: shared hit=332 read=14
02:46:04 [2025-11-27T02:46:04.927Z]  Planning Time: 19.432 ms
02:46:04 [2025-11-27T02:46:04.927Z]  Execution Time: 17.848 ms
02:46:04 [2025-11-27T02:46:04.927Z] (35 rows)
02:46:04 [2025-11-27T02:46:04.927Z] 
02:46:04 [2025-11-27T02:46:04.927Z]  database_name | process_count 
02:46:04 [2025-11-27T02:46:04.927Z] ---------------+---------------
02:46:04 [2025-11-27T02:46:04.927Z]                |             8
02:46:04 [2025-11-27T02:46:04.927Z]  ****      |             1
02:46:04 [2025-11-27T02:46:04.927Z]  authentik     |             4
02:46:04 [2025-11-27T02:46:04.927Z] (3 rows)
02:46:04 [2025-11-27T02:46:04.927Z]