Gurus, I've strange issue with tcpListenDrop counter. it's keep getting increased even after increasing tcp_conn_req_max_q size from 1k to 16k. is there anyway i can find out port nubmber and proc is which is incrementing this counter. I found another thread and got the below script but that shows me the pid which is not at all running. is it possible to get Port number also along with PID ?
#!/usr/sbin/dtrace -s #pragma D option quiet fbt:ip:tcp_conn_request:entry { self->connp = (conn_t *)arg0; self->tcp = (tcp_t *)self->connp->conn_sqp; @backlog[self->tcp->tcp_cpid,self->tcp->tcp_conn_req_cnt_q,self->tcp->tcp_conn_req_max]=count(); printa("PID:%d \ttcp_conn_req_cnt_q/tcp_conn_req_max: %d/%d Number of times:%...@d\n",@backlog); } Thanks for any help on this. -Gopi -- This message posted from opensolaris.org _______________________________________________ dtrace-discuss mailing list dtrace-discuss@opensolaris.org