Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jnahmias/parse-syslog
Perl Parse::Syslog module
https://github.com/jnahmias/parse-syslog
parser perl5 perl5-module syslog
Last synced: about 1 month ago
JSON representation
Perl Parse::Syslog module
- Host: GitHub
- URL: https://github.com/jnahmias/parse-syslog
- Owner: jnahmias
- License: other
- Created: 2024-06-04T03:03:19.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-19T00:05:50.000Z (3 months ago)
- Last Synced: 2024-10-12T11:23:55.932Z (about 1 month ago)
- Topics: parser, perl5, perl5-module, syslog
- Language: Perl
- Homepage: https://metacpan.org/dist/Parse-Syslog
- Size: 50.8 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: Changes
- License: License
Awesome Lists containing this project
README
Parse/Syslog
============DESCRIPTION
Unix syslogs are convenient to read for humans but because
of small differences between operating systems and things
like 'last message repeated xx times' not very easy to parse
by a script.Parse::Syslog presents a simple interface to parse syslog
files: you create a parser on a file (with new) and call
next to get one line at a time with Unix-timestamp, host,
program, pid and text returned in a hash-reference.INSTALLATION
To install this module type the following:
perl Makefile.PL
make
make test
make installDOCUMENTATION
The documentation is embedded in the module itself. Type
'perldoc lib/Parse/Syslog.pm' (or 'man Parse::Syslog' if the
man-page was installed) to see it.COPYRIGHT AND LICENCE
Copyright (c) 2001, Swiss Federal Institute of Technology, Zurich.
All Rights Reserved.This module is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.