https://github.com/monacoremo/logmux
Logmux tails multiple log files, labels their lines and outputs everything in one stream
https://github.com/monacoremo/logmux
Last synced: over 1 year ago
JSON representation
Logmux tails multiple log files, labels their lines and outputs everything in one stream
- Host: GitHub
- URL: https://github.com/monacoremo/logmux
- Owner: monacoremo
- License: mit
- Created: 2020-03-02T21:28:04.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-06T09:13:16.000Z (about 6 years ago)
- Last Synced: 2025-02-26T22:48:41.489Z (over 1 year ago)
- Language: Python
- Homepage: https://pypi.org/project/logmux/
- Size: 17.6 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# logmux
Logmux tails multiple log files, labels their lines and outputs everything in
one stream - Much like docker-compose, but simply for local log files!
# Installation
```bash
pip install logmux
```
# Usage
```bash
logmux first.log second.log test/third.log
```
This will tail all three log files. New lines will be prefixed with the name of
the log file it came from, e.g. `first: ` for the first log file and `third: `
for the last one.
You can customize the labels by providing them as a query parameter for each
file:
```bash
logmux "first.log?label=custom" second.log test/third.log
```
This will prefix all lines from the first file with `custom: `. You'll need to
quote the argument like in this example to make sure that your shell is not
going to split it.
It's also possible to set the color of the label:
```bash
logmux "first.log?label=custom&color=blue" "second.log?color=red" test/third.log
```
# Similar solutions
In no particular order:
* [MultiTail](https://www.vanheusden.com/multitail/) uses ncurses to tail multiple
log files in one or more windows. Logmux takes a more simple approach by just
printing to stdout.