Help

欢迎!

该社区面向专业人士和我们产品和服务的爱好者。
分享和讨论最好的内容和新的营销理念,建立您的专业形象,一起成为更好的营销人员。


0

Alternative: pg_activity is currently unavailable on Odoo.sh

Avatar
odoo
Avatar
Discard
1 Answer
0
Avatar
odoo
Best Answer

The version of pg_activity for Ubuntu 24.04 require access to tables that are restricted on the Odoo.sh platform.

Instead:

Query the pg_stat_activity table like this:

select * from pg_stat_activity;

You can then kill a query like this:

select pg_terminate_backend(PID);
Avatar
Discard