/[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

Annotation of /syslog.sql

Parent Directory Parent Directory | Revision Log Revision Log


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

1 dpavlin 3 -- 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 dpavlin 5 facility int,
11     priority int,
12     level int,
13     program text,
14 dpavlin 3 message text,
15     PRIMARY KEY (id)
16     );
17    

  ViewVC Help
Powered by ViewVC 1.1.26