Description
Lazylogger is a small app to watch logs from different hosts. Lazylogger will connect to hosts using ssh and it will follow the log files. You can view multiple log files in the same page by splitting horizontally and vertically the page.
LazyLogger alternatives and similar packages
Based on the "Utilities" category.
Alternatively, view LazyLogger alternatives based on common mentions on social networks and blogs.
-
项目文档
基于vite+vue3+gin搭建的开发基础平台(已完成setup语法糖版本),集成jwt鉴权,权限管理,动态路由,显隐可控组件,分页封装,多点登录拦截,资源权限,上传下载,代码生成器,表单生成器等开发必备功能,五分钟一套CURD前后端代码。 -
excelize
Go language library for reading and writing Microsoft Excel™ (XLAM / XLSM / XLSX / XLTM / XLTX) spreadsheets -
godotenv
A Go port of Ruby's dotenv library (Loads environment variables from `.env`.) -
hystrix-go
Netflix's Hystrix latency and fault tolerance library, for Go -
goreporter
A Golang tool that does static analysis, unit testing, code review and generate code quality report. -
go-funk
A modern Go utility library which provides helpers (map, find, contains, filter, ...) -
gorequest
GoRequest -- Simplified HTTP client ( inspired by nodejs SuperAgent ) -
mc
MinIO Client is a replacement for ls, cp, mkdir, diff and rsync commands for filesystems and object storage. -
gojson
Automatically generate Go (golang) struct definitions from example JSON -
Kopia
Cross-platform backup tool for Windows, macOS & Linux with fast, incremental backups, client-side end-to-end encryption, compression and data deduplication. CLI and GUI included. -
spinner
Go (golang) package with 90 configurable terminal spinner/progress indicators. -
filetype
Fast, dependency-free Go package to infer binary file types based on the magic numbers header signature -
mole
CLI application to create ssh tunnels focused on resiliency and user experience. -
boilr
:zap: boilerplate template manager that generates files or directories from template repositories -
create-go-app
✨ Create a new production-ready project with backend, frontend and deploy automation by running one CLI command! -
beaver
💨 A real time messaging system to build a scalable in-app notifications, multiplayer games, chat apps in web and mobile apps. -
go-underscore
Helpfully Functional Go - A useful collection of Go utilities. Designed for programmer happiness. -
JobRunner
Framework for performing work asynchronously, outside of the request flow -
git-time-metric
Simple, seamless, lightweight time tracking for Git -
mimetype
A fast Golang library for media type and file extension detection, based on magic numbers -
csvtk
A cross-platform, efficient and practical CSV/TSV toolkit in Golang
Deliver Cleaner and Safer Code - Right in Your IDE of Choice!
Do you think we are missing an alternative of LazyLogger or a related project?
Popular Comparisons
README
LazyLogger
Lazylogger is a small app to watch log files from different hosts in one place. Using the TUI, it is very easy to switch between log files. You can even split, horizontaly or verticaly, the current window and add more logs on the same page.
Configuration
The configuration is based on a YAML file with the following structure:
defaultChunkSize: 40096
services:
-
name: admin-local
host:
address: 192.168.1.1
username: foo
password: bar
file: /home/foo/file-to-watch.log
-
name: tomcat
jumpHost:
address: aws-jump-host-address
username: ec2-user
key: /home/foo/.aws/key.pem
host:
address: 172.1.1.1
username: ec2-user
key: /home/foo/.aws/key.pem
file: /home/ec2-user/apache-tomcat-9.0.30/logs/catalina.out
Each entry in services
represent a log service.
Credentials for ssh are set in host
node. You can use password or key to connect to ssh.
Lazylogger will connect to port 22 only.
For cases when a jump host is required (e.g. aws
), you can add a jumpHost
with the same structre as host
.
To use a configuration file, the following command must be executed:
lazylogger --config config.yml
Lazylogger will try to connect only when a new logger is created.