Possbility to map pid's inside the container with host pid

I am running an application inside an unprivilaged container.
I can see that because of pid namespace, pid of the same process is different on teh host and different inside the container.

Is there any way that i can map pid of a process inside the container to the host pid?

/proc/PID/status on the host has the PID in the different namespaces listed

Understood. thank you…
So from inside the container , full view of host’s /proc is not possible?

Correct, that’d be quite the information leakage if it was.

correct …
thank you…