Skip to content
/ llg Public

Login/Logoff Graph - Session tracking tool

License

Notifications You must be signed in to change notification settings

czQery/llg

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Logo
report build release

Linux:

curl -L https://github.com/czQery/llg/releases/latest/download/llg_linux_amd64.tar.gz | tar -xz
cd llg_linux_amd64
./llg

Windows:

curl.exe -L https://github.com/czQery/llg/releases/latest/download/llg_windows_amd64.zip
tar -xf .\llg_windows_amd64.zip
cd llg_windows_amd64
./llg.exe

Docker Compose:

version: '3'
services:
  app:
    image: 'ghcr.io/czqery/llg:latest'
    container_name: llg
    restart: always
    volumes:
      - ./data/:/data/data/
    # - ./users/:/data/data/users/
    # - ./devices/:/data/data/devices/
    ports:
      - '8893:8893'
    tty: true
  • user1.log
login;user1;PC (0.0.0.0);01.01.1970;00:00
logoff;user1;PC (0.0.0.0);01.01.1970;00:01
  • user2.log
login;user2;PC (0.0.0.0);01.01.1970;00:00
logoff;user2;PC (0.0.0.0);01.01.1970;00:01
  • pc1.log
login;PC (0.0.0.0);user1;01.01.1970;00:00
logoff;PC (0.0.0.0);user1;01.01.1970;00:01
login;PC (0.0.0.0);user2;02.01.1970;00:00
logoff;PC (0.0.0.0);user2;02.01.1970;00:01