I would like to have some notification/handler whenever the grpc server opens/closes a new transport connection with some client.
I found this question which leads to this ServerTransportFilter solution. However, this option refers to the grpc-java implementation. I searched for it on the python grpc package and coud not find it.
The closest mechanism I found is the interceptor argument in the server constructor, but this happens every rpc and anyhow does not contain information regarding connection opening/closing.