github.com/netdata/go.d.plugin@v0.58.1/config/go.d/web_log.conf (about)

     1  ## All available configuration options, their descriptions and default values:
     2  ## https://github.com/netdata/go.d.plugin/tree/master/modules/web_log
     3  
     4  #update_every: 1
     5  #autodetection_retry: 0
     6  #priority: 70000
     7  
     8  jobs:
     9    # NGINX
    10    # debian, arch
    11    - name: nginx
    12      path: /var/log/nginx/access.log
    13  
    14    # gentoo
    15    - name: nginx
    16      path: /var/log/nginx/localhost.access_log
    17  
    18    # APACHE
    19    # debian
    20    - name: apache
    21      path: /var/log/apache2/access.log
    22  
    23    # gentoo
    24    - name: apache
    25      path: /var/log/apache2/access_log
    26  
    27    # arch
    28    - name: apache
    29      path: /var/log/httpd/access_log
    30  
    31    # debian
    32    - name: apache_vhosts
    33      path: /var/log/apache2/other_vhosts_access.log
    34  
    35    # GUNICORN
    36    - name: gunicorn
    37      path: /var/log/gunicorn/access.log
    38  
    39    - name: gunicorn
    40      path: /var/log/gunicorn/gunicorn-access.log
    41  
    42    # IIS
    43    # This configuration assumes you are running netdata on WSL
    44    - name: iis
    45      path: /mnt/c/inetpub/logs/LogFiles/W3SVC1/u_ex*.log
    46      log_type: csv
    47      csv_config:
    48        format: '- - $host $request_method $request_uri - $server_port - $remote_addr - - $status - - $request_time'