Calculate the number of online WWW users

Source: Internet
Author: User

【Abstract】 the two methods for calculating the number of online WWW users are compared.
Calculate the number of online WWW users

Method 1:

'Netstat-A | grep HTTP | awk' {print $5} '| cut-d ": "-F1 | sort | uniq | WC-L | awk '{print $1-1 }'

This is my method from the Internet. And more popular.

Method 2:

The method we use.

'Netstat-an | grep ": 80" | grep-I established | awk' {print $5} '| cut-d ": "-F1 | sort | uniq | WC-L | awk '{print $1-1 }'

Method 2 does not require reverse resolution, so the speed is faster than the method. But you need to get the established link, so you need grep-I established. Assume that the WWW port is 80.

The above two methods passed the test in RedHat Linux as3. method 2 is better than method 1.

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.