Detailed method of using goaccess to analyze nginx logs

Detailed method of using goaccess to analyze nginx logs

Recently I want to use goaccess to analyze nginx logs, but the configuration format of nginx logs is not in the normal format. It is completely written according to our own needs, so goaccess cannot analyze it and we need to redefine the format ourselves. Although there are many introductions to goaccess on the Internet, most of them focus on the important points and ignore the customization of the format, so I will talk about the customization.

GoAccess is an open source, real-time web log analysis tool that runs in a command line terminal. This tool provides fast and diverse HTTP status statistics, allowing administrators to stop worrying about counting various types of data and say goodbye to complicated commands and a lot of pipelines/regular expressions.

Analyze nginx logs

GoAccess's various display modes
Goaccess has multiple ways of data visualization, namely:

Output formatted data from the command line Use access.log to generate static visualization data Generate real-time visualization data Note that if you compile and install and select --enable-geoip=mmdb, you need to edit the configuration file and bring the parameter --config-file=/usr/local/etc/goaccess/goaccess.conf when using the command. This is not required if you install using a package manager

Command line output GoAccess
goaccess /var/log/nginx/access.log -c, it will first ask you the format of the data. I use the first format for the log here.

Parse accesslog to generate static html
GoAccess can also parse access.log to generate static HTML to display data in a more intuitive way.

goaccess /var/log/nginx/access.log -o report.html --log-format=COMBINED, then use the browser to access report.html to view the report, which contains all the data.

Real-time parsing of access logs
In addition to generating static HTML files, GoAccess can also generate real-time website access data!

goaccess /var/log/nginx/access.log -o /var/www/html/report.html --log-format=COMBINED --real-time-html --config-file=/usr/local/etc/goaccess/goaccess.conf

Add Chinese support
Goaccess 1.3 and later versions provide multi-language support. First, execute apt install language-pack-zh-hans in the command line to install the Chinese package, then use export LANG=zh_CN.UTF-8 to modify the environment variable, and then use goaccess /var/log/nginx/access.log -o /var/www/html/report.html --log-format=COMBINED --real-time-html --config-file=/usr/local/etc/goaccess/goaccess.conf to start GoAccess again, and you can find that the interface is already in Chinese.

For real-time mode, you can check the demo on the official website https://rt.goaccess.io/?20200209201008

Abnormal exit If the real-time mode is not exited normally, it may not be able to start normally again. GoAccess uses the 7890 websocket port by default, so use lsof -i:7890 to view the process number occupying the port and kill it.

SSL support If you need to output real-time data on an encrypted connection, you need to use --ssl-cert= and --ssl-key=. After setting it up, I visited report.html and found that the data was still static. Suddenly I remembered that I used cloudflare cdn, and port 7890 was not in cloudflare's supported port list, so I used the parameters --ws-url=wss://server domain name (our browser will try to connect to port 8443 of the domain name):8443 --port=8443 to change the port to 8443. What is unexpected is that at this time, report.html can be connected when using the proxy link, and real-time information can be viewed, but when connected directly, it is still static data, as shown by tcping.

Go to cloudflare's official website and you can find the following content

Only ports 80 and 443 are compatible with the following services:

For HTTP/HTTPS traffic from data centers in China with domain names enabled for China Network,
In other words, it is impossible to connect to non-80/443 ports through Cloudflare in China...

Reverse proxy But it's not that there is no way to connect. Finally, I thought of the reverse proxy solution.

Change the startup parameters to --ws-url=wss://yourdomain.com/goaccess --port=7890

Modify the nginx site configuration file /etc/nginx/site-available/default and add the following content

location /goaccess {
    proxy_redirect off;
    proxy_pass https://127.0.0.1:7890;
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";
    proxy_set_header Host $http_host;
}

Note that if URL rewriting is enabled in your site configuration file, in order to avoid /goaccess being affected, we need to exclude this path from being rewritten.

Put all rewrite rules in location /

location / { 
    if (-f $request_filename/index.html){
    rewrite (.*) $1/index.html break;
    }
    if (-f $request_filename/index.php){
    rewrite (.*) $1/index.php;
    }
    if (!-f $request_filename){
    rewrite (.*) /index.php;
    }
}

You don't need to do anything below

location /goaccess/ {
}

After that, restart nginx and access report.html again. You will find that the gear on the left finally shows connect.

If you are just watching it yourself or don't care about the IP being exposed, it would be less troublesome to connect directly using the IP instead of going through the CDN.

This is the end of this article about using goaccess to analyze nginx logs. For more related goaccess analysis of nginx log content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Artifact! Best Nginx Log Analysis Tool GoAccess
  • Solution to nginx-ingress-controller log persistence solution
  • Detailed explanation of the idea of ​​rolling nginx logs in docker

<<:  MySQL statement to get all dates or months in a specified time period (without setting stored procedures or adding tables)

>>:  Forty-nine JavaScript tips and tricks

Recommend

Docker primary network port mapping configuration

Port Mapping Before the Docker container is start...

Summary of the use of CSS scope (style splitting)

1. Use of CSS scope (style division) In Vue, make...

Detailed explanation of MySQL transactions and MySQL logs

Transactional Characteristics 1. Atomicity: After...

MySQL statement summary

Table of contents 1. Select database USE 2. Displ...

Install JDK1.8 in Linux environment

Table of contents 1. Installation Environment 2. ...

How to solve the mysql error 1033 Incorrect information in file: 'xxx.frm'

Problem Description 1. Database of the collection...

A brief discussion on React Component life cycle functions

What are the lifecycle functions of React compone...

In-depth explanation of MySQL stored procedures (in, out, inout)

1. Introduction It has been supported since versi...

Detailed explanation of Vue monitoring attribute graphic example

Table of contents What is the listener property? ...

What is Nginx load balancing and how to configure it

What is Load Balancing Load balancing is mainly a...

my.cnf parameter configuration to optimize InnoDB engine performance

I have read countless my.cnf configurations on th...

A brief analysis of Linux resolv.conf

1. Introduction resolv.conf is the configuration ...

Teach you how to implement a react from html

What is React React is a simple javascript UI lib...