In order to show more information on the live queries, edit postgresql.conf and modify below value to a higher value (8000+ something):
track_activity_query_size = 1024
After that run this command in psql console to view the live queries:
SELECT * FROM pg_stat_activity ORDER BY pid;