Computing www Online number _ Internet surfing

Source: Internet
Author: User
"Summary" Two methods of computing the number of WWW online, and made a comparison.
Calculate the number of WWW online

  

Method One:

' Netstat-a | grep Http|awk ' {print $} ' |cut–d ': '-f1|sort| Uniq |wc-l | awk ' {print $1-1} '

This is the way I look at the Internet. and more popular.

  

Method Two:

The method we use.

' Netstat-an | grep ": 80" | Grep-i established | awk ' {print $} ' |cut–d ': '-f1|sort| Uniq |wc-l | awk ' {print $1-1} '

  

Method Two does not need a reverse parsing, so the speed will be faster than the method. But need to get the link already established, so want to grep–i established. This is assumed that the WWW port is 80.

  

The above two methods pass the test under Redhat Linux AS3, method Two is better than method one.
  
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.