Awesome
Logria Python Proof of Concept
A powerful CLI tool that puts log analytics at your fingertips. This is the Python Proof of Concept repository; the main version is written in Rust.
tl;dr
- Live filtering of data from other processes, replacing
grep
- Use shell commands or files as input, save sessions and come back later
- Replace regex/filter without killing the process or losing the stream's history
- Parse logs using user-defined rules, apply analytics methods on top
- Pure Python, fully type hinted, zero dependencies
Installation
There are several options to install this app.
Normal Usage
pip install logria
Development
Usage
There are a few main ways to invoke Logria:
- Directly:
logria
- Opens to the setup screen
- With args:
logria -e 'tail -f log.txt'
- Opens a pipe to
tail -f log.txt
and skips setup logria -h
will show the help page with all possible options
For more details, see Sample Usage Session.
Key Commands
Key | Command |
---|---|
: | command mode |
/ | regex search |
h | if regex active, toggle highlighting of matches |
i | toggle insert mode (default off) |
s | swap reading stdin and stdout |
p | activate parser |
a | toggle analytics mode when parser is active |
z | deactivate parser |
↑ | scroll buffer up one line |
↓ | scroll buffer down one line |
→ | skip and stick to end of buffer |
← | skip and stick to beginning of buffer |
Features
Here are some of the ways you can leverage Logria:
Live stream of log data
Interactive, live, editable grep
Live log message parsing
Live analytics/statistics tracking
User-defined saved sessions
See session docs.
User-defined saved log parsing methods
See patterns docs.