t_wの輪郭

Feedlyでフォローするボタン

nginx-prometheus-exporterを導入したところ、GoAccessで表示されるアクセス数が爆増した。わあい。
そこで、nginx-prometheus-exporterによるアクセスをnginxのログから除去することによって解決した。

nginxの設定

geo $logging_addr {
    127.0.0.1 0;

    default 1;
}
access_log /path/to/access.log combined if=$logging_addr;

参考