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搭建的开发基础平台(支持TS,JS混用),集成jwt鉴权,权限管理,动态路由,显隐可控组件,分页封装,多点登录拦截,资源权限,上传下载,代码生成器,表单生成器,chatGPT自动查表等开发必备功能。 -
excelize
Go language library for reading and writing Microsoft Excel™ (XLAM / XLSM / XLSX / XLTM / XLTX) spreadsheets -
xlsx
(No longer maintained!) Go (golang) library for reading and writing XLSX files. -
godotenv
A Go port of Ruby's dotenv library (Loads environment variables from .env files) -
hystrix-go
Netflix's Hystrix latency and fault tolerance library, for Go -
go-funk
A modern Go utility library which provides helpers (map, find, contains, filter, ...) -
gorequest
GoRequest -- Simplified HTTP client ( inspired by nodejs SuperAgent ) -
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. -
goreporter
A Golang tool that does static analysis, unit testing, code review and generate code quality report. -
gojson
Automatically generate Go (golang) struct definitions from example JSON -
lancet
A comprehensive, efficient, and reusable util function library of go. -
create-go-app
✨ Create a new production-ready project with backend, frontend and deploy automation by running one CLI command! -
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 -
EaseProbe
A simple, standalone, and lightweight tool that can do health/status checking, written in Go. -
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 -
beaver
💨 A real time messaging system to build a scalable in-app notifications, multiplayer games, chat apps in web and mobile apps. -
mimetype
A fast Golang library for media type and file extension detection, based on magic numbers -
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
ONLYOFFICE Docs — document collaboration in your environment
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.