Skip to content

StefjJHK/cs-logs-viewer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

logo CodeQL Docker Image

The Web application for viewing and searching by structure logs

CS Logs viewer is developed for viewing structured log files and filtering by logs in projects that do not use centralized logging. It's been developed as a web application to be available on both a PC and a server.

Documentation available here

Features

  • Viewing multiple files in Compact Log Event Format
  • Filtering logs
  • Launching in a Docker environment
  • Storing uploaded logs in browser storage
  • Supporting dark and light UI themes

When should I use CS Logs viewer?

In general : Use CS Logs viewer in projects that store structure logs in files

Possible situations for storing structure logs in files

  • The project architecture is monolith
  • The project is not a high-load system
  • The project is in its early stages

Application UI

Screen2

Usage

  1. Create docker-compose.yml
version: "3.8"
services:
  client:
    image: "migiki/cs-logs-viewer:latest"
    container_name: cs-logs-viewer
    ports:
      - "8080:80"
  1. Run docker compose up