https://github.com/nerdbeere/live-logger
live-logger
https://github.com/nerdbeere/live-logger
Last synced: about 1 year ago
JSON representation
live-logger
- Host: GitHub
- URL: https://github.com/nerdbeere/live-logger
- Owner: nerdbeere
- Created: 2013-03-19T16:21:01.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2013-04-03T07:10:24.000Z (about 13 years ago)
- Last Synced: 2024-04-15T11:14:23.293Z (about 2 years ago)
- Language: JavaScript
- Size: 5.42 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
LiveLogger
===========
What is it?
-------------
Realtime logs from multiple resources aggregated in a single timeline.
Installation
-------------
Prerequesites: rabbitmq, nodejs
1. cd live-logger/server
2. npm install
3. create a config.js based on config.example.js
4. node app.js
visit localhost:3000 with your browser
Architecture
-------------

Message Layout
-------------
```Javascript
{
head: {
contentType: 'JSON' // 'JSON' or 'TEXT'
},
body: {
foo: true
}
}
{
head: {
contentType: 'TEXT' // 'JSON' or 'TEXT'
},
body: 'foobar'
}
```