https://github.com/lujeni/logme
Real-time log monitoring in your browser
https://github.com/lujeni/logme
Last synced: 19 days ago
JSON representation
Real-time log monitoring in your browser
- Host: GitHub
- URL: https://github.com/lujeni/logme
- Owner: Lujeni
- Created: 2012-09-05T18:00:20.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2012-09-08T21:33:07.000Z (almost 14 years ago)
- Last Synced: 2025-01-17T00:16:02.721Z (over 1 year ago)
- Language: JavaScript
- Homepage: blog.thebault.co
- Size: 427 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## LogMe:
Very simply app for real-time log monitoring in your browser.
LogMe watch log files (reader.py) for changes, send new log messages to the server (logme.py), which broadcasts to web clients.
## Powered:
`gevent`
`socket.IO`
`zeromq`
`bootstrap`
## Quick install:
### Step 1: Install library require.
```
pip install -r requirements.txt
```
### Step 2: Launch the broker / App front.
```
python logme.py
```
### Step 3: Launch the reader(s).
```
python reader.py -f /var/log/emerge.log -h localhost -p 6666
python reader.py -f /var/log/http/error.log -h localhost -p 6666
```