/[sysplogd]/syslog.sql
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /syslog.sql

Parent Directory Parent Directory | Revision Log Revision Log


Revision 5 - (show annotations)
Sat Apr 11 08:30:33 2009 UTC (15 years ago) by dpavlin
File size: 244 byte(s)
better parsing of messages, save unparsed messages

1 -- PostgreSQL schema
2
3 drop table log;
4
5 CREATE TABLE log (
6 id serial,
7 timestamp timestamp default now(),
8 ip inet not null,
9 hostname text not null,
10 facility int,
11 priority int,
12 level int,
13 program text,
14 message text,
15 PRIMARY KEY (id)
16 );
17

  ViewVC Help
Powered by ViewVC 1.1.26