GStreamer with raspberry pi WEBRTC tee

Greetings.
I want to use tee to fork a single WebRTC stream with one encoding to multiple users.

This is my pipeline
"libcamerasrc ! "
"video/x-raw,width=1280,height=720,framerate=60/1,format=NV12 ! "
"queue max-size-buffers=2 leaky=downstream ! "
"v4l2convert ! "
"v4l2h264enc extra-controls="controls,repeat_sequence_header=1,video_bitrate=2000000,h264_i_frame_period=30" ! "
"video/x-h264,profile=high,level=(string)4.1 ! "
"h264parse ! "
“tee name=t allow-not-linked=true”

I know that gstreamer has a tee.
I have a question.
Am I using tee correctly to send the stream to all users?

My most important task is to ensure that the raspberry pi has minimal latency between clients.

Help, I just understand gstreamer.

Your tee has to be linked to something. In your case, it would be a webrtcbin.