Skip to content

iamcal/logSmush

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

logSmush

Aggregate logs over HTTP, using node.

Configuration

Install node.

On the machine(s) producing logs, run:

node smush.js config.client.example.js

And on the machine aggregating logs, run:

node smush.js config.server.example.js

Modify the configs for your unique setup.

How it works

The client tails multiple logs and performs HTTP POSTs to the server. Each post uses the log group name (e.g. messages in the example config) as the URL (e.g. http://localhost:8765/messages) and includes the latest block of log data as the POST body. The server then appends this to a local file.

Notes

  • If the client can't reach the server, it will show an error message and carry on churning. It should instead buffer log content and try and re-send it.
  • If the client is producing logs quickly, it may send them out of order to the server. It needs to use a single sender for each log group.
  • Message group names may only contain alphanumerics, dots, dashses and underscores. This is by design.

About

Aggregate logs from multiple servers in real time

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published