I'm using the pg_lock gem to manage Postgres advisory locks for coordinating between processes to avoid race conditions. I have a lock that is failing with an error about Was unable to aquire a lock "my_lock_name" after N attempts, which tells me that something else is already holding onto the lock. How can I look up this lock in the underlying database to find out more information about what's holding it?