Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ptmcg/logmerger
TUI utility to view multiple log files with merged timeline
https://github.com/ptmcg/logmerger
Last synced: 9 days ago
JSON representation
TUI utility to view multiple log files with merged timeline
- Host: GitHub
- URL: https://github.com/ptmcg/logmerger
- Owner: ptmcg
- License: mit
- Created: 2023-05-09T13:25:45.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-23T04:00:06.000Z (6 months ago)
- Last Synced: 2024-05-23T04:50:27.874Z (6 months ago)
- Language: Python
- Size: 2.04 MB
- Stars: 127
- Watchers: 2
- Forks: 3
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-textualize-projects - Logmerger - TUI utility to view multiple log files with merged timeline. (Community / Third Party Applications)
README
# logmerger
`logmerger` is a TUI for viewing a merged display of multiple log files, merged by timestamp.
Given these two log files:
```
# log1.txt
2023-07-14 08:00:01 WARN Connection lost due to timeout
2023-07-14 08:00:04 ERROR Request processed unsuccessfully
Something went wrong
Traceback (last line is latest):
sample.py: line 32
divide(100, 0)
sample.py: line 8
return a / b
ZeroDivisionError: division by zero
2023-07-14 08:00:06 INFO User authentication failed
2023-07-14 08:00:08 DEBUG Starting data synchronization
2023-07-14 08:00:11 INFO Processing incoming request
``````
# log2.txt
2023-07-14 08:00:01 INFO Request processed successfully
2023-07-14 08:00:03 INFO User authentication succeeded
2023-07-14 08:00:06 DEBUG Starting data synchronization
2023-07-14 08:00:08 INFO Processing incoming request
2023-07-14 08:00:11 DEBUG Performing database backup
2023-07-14 08:00:14 WARN Invalid input received: missing required field
```
This commandlogmerger log1.txt log2.txt
Shows the following browsable merged display (enabled using the [textual](https://textual.textualize.io) Python library):
![Image](https://github.com/ptmcg/logmerger/blob/main/static/log1_log2_merged_tui_lr.jpg?raw=true)
Press 'h' to get help on all key commands in the interactive display.
Use `--output -` to send the merged logs to stdout:
```
Timestamp Files/Log1.Txt Files/Log2.Txt
────────────────────────────────────────────────────────────────────────────────────────────────────
2023-07-14 08:00:01.000 WARN Connection lost due to INFO Request processed
timeout successfully
2023-07-14 08:00:03.000 INFO User authentication
succeeded
2023-07-14 08:00:04.000 ERROR Request processed
unsuccessfully
Something went wrong
Traceback (last line is latest):
sample.py: line 32
divide(100, 0)
sample.py: line 8
return a / b
ZeroDivisionError: division by zero
2023-07-14 08:00:06.000 INFO User authentication DEBUG Starting data
failed synchronization
2023-07-14 08:00:08.000 DEBUG Starting data INFO Processing incoming request
synchronization
2023-07-14 08:00:11.000 INFO Processing incoming request DEBUG Performing database backup
INFO Processing incoming request
(a little more...)
2023-07-14 08:00:14.000 DEBUG Performing database backup WARN Invalid input received:
missing required field
```## Installation
Install `logmerger` from PyPI:
pip install logmerger
This will install `logmerger` as a shell/console command, so you can then run it directly without
invoking `python`.To add support for merging pcap files, install using:
pip install logmerger[pcap]
## Command line arguments
`logmerger -h` will show the following help:
```
usage: logmerger [-h] [--interactive] [--inline] [--output OUTPUT]
[--start START] [--end END] [--autoclip]
[--ignore_non_timestamped] [--width WIDTH]
[--line_numbers] [--show_clock]
[--csv CSV] [--encoding ENCODING]
[--timestamp_format [TIMESTAMP_FORMATS ...]]
[--demo]
[files ...]positional arguments:
files log files to be mergedoptions:
-h, --help show this help message and exit
--interactive, -i show merged output using interactive TUI browser (default)
--inline show merged log data as inline merge
--output OUTPUT, -o OUTPUT
save merged output to file ('-' for stdout; files ending in '.md' are saved
using Markdown)
--start START, -s START
start time to select time window for merging logs
--end END, -e END end time to select time window for merging logs
--autoclip, -ac clip merging to time range of logs in first log file
--ignore_non_timestamped
ignore log lines that do not have a timestamp
--width WIDTH, -w WIDTH
total screen width to use for interactive mode (defaults to current screen
width)
--line_numbers, -ln add line number column
--show_clock, -clock show running clock in header
--csv CSV, -csv CSV save merged logs to CSV file
--encoding ENCODING, -enc ENCODING
encoding to use when reading log files (defaults to the system default encoding)
--timestamp_format [TIMESTAMP_FORMATS ...]
custom timestamp format
--demo Run interactive demo
Start and end timestamps to clip the given files to a particular time window can be
given in `YYYY-MM-DD HH:MM:SS.SSS` format, with trailing milliseconds and seconds
optional, and "," permissible for the decimal point. A "T" can be included between
the date and time to simplify entering the timestamp on a command line (otherwise
would require enclosing in quotes because of the intervening space). These command
line values do not need to match the timestamp formats in the log files.These values may also be given as relative times, such as "15m" for "15 minutes ago".
Valid units are "s", "m", "h", and "d".
```## Supported file types
Log data is usually extracted from text log files, but can also be extracted
from other log related files.| type | |
|------------------------------------------------------------------------------------|----------------------------|
| text log files | any file name ending |
| text log files that have been gzip compressed (such as those created by logrotate) | filename ending in `.gz` |
| CSV files (timestamp is read from first data column) | filename ending in `.csv` |
| packet capture files (experimental) | filename ending in `.pcap` |## Merging
Log files get merged by interleaving log lines from each based on timestamps in each log line. `logmerger` tries to
use different timestamp formats until it finds a matching format for each input file. The supported formats are:| format | description |
|-----------------------------------|-------------------------------------------------------------------------------------------------------|
| `YYYY-MM-DD HH:MM:SS,SSS` | date+time to milliseconds, with ',' decimal (default for Python's `asctime` log marker) |
| `YYYY-MM-DD HH:MM:SS.SSS` | date+time to milliseconds, with '.' decimal |
| `YYYY-MM-DD HH:MM:SS` | date+time to seconds |
| `YYYY-MM-DDTHH:MM:SS,SSS` | date+T+time to milliseconds, with ',' decimal |
| `YYYY-MM-DDTHH:MM:SS.SSS` | date+T+time to milliseconds, with '.' decimal |
| `YYYY-MM-DDTHH:MM:SS` | date+T+time to seconds |
| `Jan DD HH:MM:SS` | month/day + time (timestamp in syslog files); year is inferred from the create date of the log file |
| `DD/Jan/YYYY HH:MM:SS` | day/month/year + time |
| `DD/Jan/YYYY:HH:MM:SS ±ZZZZ` | day/month/year + time + timezone offset (converts timestamps to local time) |
| `HH:MM:SS.SSSSSS` | hour/minute/second (timestamp in strace files); date is inferred from the create date of the log file |
| `strace` | uses HH:MM:SS.SSSSSS format with leading process id integer |
| `[Mon Jan DD HH:MM:SS.SSSS YYYY]` | Apache log format |Untimestamped log lines that contain multiple lines (such as a traceback) get combined with the previous timestamped
line (see in the example above).## Security contact information
To report a security vulnerability, please use the
[Tidelift security contact](https://tidelift.com/security).
Tidelift will coordinate the fix and disclosure.