File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,14 +37,14 @@ select 'Uptime', (now() - pg_postmaster_start_time())::interval(0)::text
3737union all
3838select repeat(' -' , 33 ), repeat(' -' , 88 )
3939union all
40- select ' Stats Since' , stats_reset::timestamptz (0 )::text from data
41- union all
42- select ' Stats Age' , (now() - stats_reset)::interval (0 )::text from data
43- union all
4440select ' Database Name' as metric, datname as value from data
4541union all
4642select ' Database Size' , pg_catalog .pg_size_pretty (pg_catalog .pg_database_size (current_database()))
4743union all
44+ select ' Stats Since' , stats_reset::timestamptz (0 )::text from data
45+ union all
46+ select ' Stats Age' , (now() - stats_reset)::interval (0 )::text from data
47+ union all
4848select ' Installed Extensions' , (
4949 with exts as (
5050 select extname || ' ' || extversion e, (- 1 + row_number() over (order by extname)) / 5 i from pg_extension
You can’t perform that action at this time.
0 commit comments