fuzzytail-0.2.0 is not a library.
FuzzyTail (ft)
A modern, fast replacement for tail with split-pane log monitoring, syntax highlighting, and powerful filtering. Built in Rust.
Features
- Split-pane monitoring - Tail multiple files simultaneously in a multitail-style split-screen layout with per-file status bars
- Auto-follow - Multiple files automatically enter follow mode with split panes
- 6 themes - Tokyo Night, Catppuccin, Dracula, Rose Pine, Lackluster, Miasma
- Smart syntax highlighting - Timestamps, IPs, log levels, HTTP methods, services, and more are automatically colorized
- Filtering - Include/exclude patterns with regex, filter by log level
- Multiple output formats - Colorized text, JSON, CSV
- Drop-in
tailreplacement - All standard flags work:-f,-n,-c,-q,-v - Theme-controlled status bars - Each theme defines its own status bar colors via
statusbar_bgandstatusbar_fg
Quick Start
# Install
Usage
Single file
Multi-pane monitoring
# Split-pane view with status bars (auto-follows)
# Exclude noisy lines
# Filter by log level across multiple files
In multi-pane mode:
- Each file gets its own pane with a status bar showing the filename, line count, and timestamp
- Press
qorEscto quit - Press
hfor help - Press
1-9to view a single file full-screen
Filtering
Output formats
Pipe support
| |
Configuration
Config file: ~/.config/fuzzytail/config.toml
[]
= "tokyo-night"
= 8192
= 1000
[]
= "/etc/fuzzytail/themes"
= "~/.config/fuzzytail/themes"
Available themes
| Theme | Style |
|---|---|
tokyo-night |
Modern dark with blue-purple accents |
catppuccin |
Warm pastels on dark background |
dracula |
Classic dark with vibrant highlights |
rose-pine |
Subtle, elegant muted tones |
lackluster |
Minimalist monochrome |
miasma |
Earthy, warm browns and greens |
Theme format
Themes are plain text files in /etc/fuzzytail/themes/. Format:
# Base text color (xterm-256)
base:147
# Status bar colors (xterm-256)
statusbar_bg:103
statusbar_fg:255
# Line highlight: entire line colored if pattern matches
line:ALERT=210
# Word highlight: matching text colored
word:ERROR=210
word:(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s+\d+\s+\d+:\d+:\d+=137
# Colors are xterm-256 numbers (0-255)
Create custom themes by copying an existing one:
Command reference
ft [OPTIONS] [FILES...]
Options:
-n, --lines <N> Number of lines to show (default: 10)
-c, --bytes <N> Show last N bytes instead of lines
-f, --follow Follow file changes
--no-follow Disable auto-follow for multiple files
-q, --quiet Never show file headers
-v, --verbose Always show file headers
--include <REGEX> Show only lines matching pattern
--exclude <REGEX> Hide lines matching pattern
--level <LEVEL> Filter by log level (ERROR, WARN, INFO, DEBUG)
--format <FMT> Output format: text, json, csv
--no-color Disable colors
--buffer-size <N> Buffer size in bytes (default: 65536)
--config <PATH> Config file path
-h, --help Show help
Building
# Requires Rust toolchain
# Run tests
License
MIT