|
A modern UI for viewing and analyzing access logs with powerful filtering and search capabilities. |
This is a fork of the amazing https://github.com/openstatusHQ/data-table-filters with support for reading an access log file (in JSON format for now).
You can configure this project using .env file
USE_MOCK_DATA=false
LOG_FILE_PATH=./logs/access.log
and to run the project in development mode:
yarn dev
Open http://localhost:3000 with your browser to see the result.
To use this project with Coolify, you have to follow these steps:
- Update your traefik proxy configuration to add access logs :
- '--accesslog.filepath=/traefik/logs/access.log'
- '--accesslog.format=json'
- '--accesslog.bufferingsize=100'
- '--accesslog.fields.headers.defaultmode=drop'
- '--accesslog.fields.headers.names.User-Agent=keep'
- Configure a volume storage to share the access log file with the container :
Source path : /data/coolify/proxy/logs
Destination path : /app/logs
- openstatusHQ for the amazing data table filters example