Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
syslogintr/realtime.lua
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
71 lines (66 sloc)
2.28 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- *************************************************************** | |
| -- | |
| -- Copyright 2010 by Sean Conner. All Rights Reserved. | |
| -- | |
| -- This program is free software: you can redistribute it and/or modify | |
| -- it under the terms of the GNU General Public License as published by | |
| -- the Free Software Foundation, either version 3 of the License, or | |
| -- (at your option) any later version. | |
| -- | |
| -- This program is distributed in the hope that it will be useful, | |
| -- but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| -- GNU General Public License for more details. | |
| -- | |
| -- You should have received a copy of the GNU General Public License | |
| -- along with this program. If not, see <http://www.gnu.org/licenses/>. | |
| -- | |
| -- Comments, questions and criticisms can be sent to: sean@conman.org | |
| -- | |
| -- ******************************************************************** | |
| -- | |
| -- This program is meant to be run in real time to view logs as they come | |
| -- in. The primary syslogintr on the network relays the logs to a multicast | |
| -- address, so any client on the segment can get the logs. This script can | |
| -- then be used to listen on that multicast address and print the logs as | |
| -- they are received. | |
| -- | |
| -- One syslogintr on the network does a relay(239.255.0.1,msg) | |
| -- I run another syslogintr on the network: | |
| -- | |
| -- syslogintr --ipaddr 239.255.0.1 --foreground realtime.lua | |
| -- | |
| -- Makes for a pretty display. | |
| -- | |
| -- ********************************************************************* | |
| -- luacheck: ignore 611 | |
| -- luacheck: globals log | |
| local colortty = require "colortty" | |
| local colors = | |
| { | |
| emerg = "\27[1;31m", | |
| alert = "\27[0;31m", | |
| crit = "\27[0;31m", | |
| err = "\27[0;31m", | |
| warn = "\27[1;33m", | |
| notice = "\27[1;32m", | |
| info = "\27[0;32m", | |
| debug = "\27[1;34m" | |
| } | |
| function log(msg) | |
| local bar = string.format("\27[1;39m\27(0x\27(B%s",colors[msg.level]) | |
| if msg.host == '192.168.1.100' then | |
| msg.program = msg.program:match('^saltmine%-2%s*(.*)') | |
| end | |
| io.stdout:write(colortty(string.format( | |
| "%s%15.15s %-15.15s %-6s %6s %s %s\n", | |
| colors[msg.level], | |
| msg.host, | |
| msg.program, | |
| msg.facility, | |
| msg.level, | |
| bar, -- os.date("%b %d %H:%M:%S",msg.timestamp), | |
| msg.msg | |
| ))) | |
| io.stdout:flush() | |
| end |