没有合适的资源?快使用搜索试试~ 我知道了~
Postgresql数据常用监控命令.txt
需积分: 10 2 下载量 9 浏览量
2019-05-16
11:43:02
上传
评论
收藏 3KB TXT 举报
温馨提示
文档中记录了Postgresql数据库的一些常用的监控命令,例如阻塞锁、表占用空间的大小
资源推荐
资源详情
资源评论
查看主机ip:
SELECT inet_server_addr();
查询当前xlog:
select pg_current_xlog_location();
查询表大小:
select oid,relname,reltoastrelid from pg_class where relname = 'task_instance';
select pg_size_pretty(pg_relation_size(84309));
select pg_size_pretty(pg_total_relation_size('task_instance'));
select repeat(md5(random()::text), 10000)
流复制延时:
select now()- pg_last_xact_replay_timestamp();
select pg_last_xlog_receive_location() ,pg_last_xlog_replay_location();
select pg_xlog_location_diff(pg_current_xlog_insert_location(),sent_location) from pg_stat_replication;
SELECT CASE
WHEN pg_last_xlog_receive_location() =
pg_last_xlog_replay_location() THEN
0
ELSE
EXTRACT(EPOCH FROM now() - pg_last_xact_replay_timestamp())
END AS replication_lag;
top sql:
SELECT query,
calls,
total_time,
rows,
SELECT inet_server_addr();
查询当前xlog:
select pg_current_xlog_location();
查询表大小:
select oid,relname,reltoastrelid from pg_class where relname = 'task_instance';
select pg_size_pretty(pg_relation_size(84309));
select pg_size_pretty(pg_total_relation_size('task_instance'));
select repeat(md5(random()::text), 10000)
流复制延时:
select now()- pg_last_xact_replay_timestamp();
select pg_last_xlog_receive_location() ,pg_last_xlog_replay_location();
select pg_xlog_location_diff(pg_current_xlog_insert_location(),sent_location) from pg_stat_replication;
SELECT CASE
WHEN pg_last_xlog_receive_location() =
pg_last_xlog_replay_location() THEN
0
ELSE
EXTRACT(EPOCH FROM now() - pg_last_xact_replay_timestamp())
END AS replication_lag;
top sql:
SELECT query,
calls,
total_time,
rows,
资源评论
wucjiang_0516
- 粉丝: 0
- 资源: 1
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功