Python statistics Apache, nginx access log IP access number and sort (show Top 20)

Source: Internet
Author: User

Preface: Python statistics Apache, nginx access log IP access number and sort (show Top 20). In fact, with Awk+sort and other commands can be implemented, with the awk array can also be implemented, here is just a python try.


Apache Script:

IPS = {}with open ("/root/mail_access_log-20180629") as Fh:for line in Fh:ip = Line.split ("") [0] If 6 & Lt Len (IP) <=15:ips[ip] = ips.get (IP, 0) + 1ip_num = []for ipaddr,num in Ips.items (): Ip_num.append ((IPADDR, num)) Ip_num.sort (Key=lambda x:x[1], reverse=true) for Ipaddr,num in ip_num[:20]: print (' IP address = {}, number of accesses {} '. Format (ipadd R,num))



Nginx Script:

IPS = {}with open ("/root/access.log-20180629") as Fh:for line in Fh:ip = Line.split ("") [0] if 6 < l En (IP) <=15:ips[ip] = ips.get (IP, 0) + 1ip_num = []for ipaddr,num in Ips.items (): Ip_num.append ((ipaddr,n UM)) Ip_num.sort (Key=lambda x:x[1], reverse=true) for Ipaddr,num in ip_num[:20]: print (' IP address {}, number of accesses {} '. Format (ipaddr , num))


Python statistics Apache, nginx access log IP access number and sort (show Top 20)

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.