New server in Round Robin getting in requests but no connections out

I have a new server that I put into Round Robin for http media requests for Wowza servers. My setup for the haproxy.conf file is listed below. Is it possible that no new requests would have been requested but sent to other machines due to the stick.

How can I check that the new added server is getting the requests and sending output correctly.

global
log /dev/log local0
log /dev/log local1 notice
chroot /var/lib/haproxy
stats socket /run/haproxy/admin.sock mode 660 level admin
stats timeout 30s
user haproxy
group haproxy
daemon

    # Default SSL material locations
    ca-base /etc/ssl/certs
    crt-base /etc/ssl/private

    # Default ciphers to use on SSL-enabled listening sockets.
    # For more information, see ciphers(1SSL). This list is from:
    #  https://hynek.me/articles/hardening-your-web-servers-ssl-ciphers/
    ssl-default-bind-ciphers ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!aNULL:!MD5:!DSS
    ssl-default-bind-options no-sslv3

defaults
log global
mode http
option httplog
option tcplog
option dontlognull
retries 6
timeout http-request 10s
timeout queue 1m
timeout connect 5000
timeout client 50000
timeout server 50000
timeout http-keep-alive 10s
timeout check 10s
errorfile 400 /etc/haproxy/errors/400.http
errorfile 403 /etc/haproxy/errors/403.http
errorfile 408 /etc/haproxy/errors/408.http
errorfile 500 /etc/haproxy/errors/500.http
errorfile 502 /etc/haproxy/errors/502.http
errorfile 503 /etc/haproxy/errors/503.http
errorfile 504 /etc/haproxy/errors/504.http

frontend http-554
bind 129.186.162.43:554
mode tcp
maxconn 600
default_backend over-http

frontend http-80
bind 129.186.162.43:80
mode tcp
maxconn 600
default_backend over-http

frontend rtmp-1935
bind 129.186.162.43:1935
mode tcp
maxconn 600
default_backend over-http

backend over-http
mode tcp
balance roundrobin
stick store-request src
stick-table type ip size 200k expire 20m
stick on src
server mediaHTTP4 129.186.142.172:80 weight 10
server mediaHTTP5 129.186.162.194:80 weight 10
server mediaHTTP7 129.186.168.5:80 weight 10

backend over-rtmp
mode tcp
balance roundrobin
stick store-request src
stick-table type ip size 200k expire 20m
stick on src
server mediaRTMP4 129.186.142.172:1935 weight 10
server mediaRTMP5 129.186.162.194:1935 weight 10
server mediaRTMP7 129.186.168.5:1935 weight 10

backend over-rtsp
mode tcp
balance roundrobin
stick store-request src
stick-table type ip size 200k expire 20m
stick on src
server mediaRTSP4 129.186.142.172:554 weight 10
server mediaRTSP5 129.186.162.194:554 weight 10
server mediaRTSP7 129.186.168.5:554 weight 10