Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
8d1b6de5
Commit
8d1b6de5
authored
Feb 11, 2001
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add pg_logger to /contrib.
parent
e9371566
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
124 additions
and
0 deletions
+124
-0
contrib/README
contrib/README
+4
-0
contrib/pg_logger/Makefile
contrib/pg_logger/Makefile
+34
-0
contrib/pg_logger/README.pg_logger
contrib/pg_logger/README.pg_logger
+1
-0
contrib/pg_logger/pg_logger.c
contrib/pg_logger/pg_logger.c
+85
-0
No files found.
contrib/README
View file @
8d1b6de5
...
...
@@ -89,6 +89,10 @@ pg_dumplo -
Dump large objects
by Karel Zak <zakkr@zf.jcu.cz>
pg_logger -
Stdin-to-syslog gateway for PostgreSQL
by Nathan Myers <ncm@nospam.cantrip.org>
pgbench -
TPC-B like benchmarking tool
by Tatsuo Ishii <t-ishii@sra.co.jp>
...
...
contrib/pg_logger/Makefile
0 → 100644
View file @
8d1b6de5
#
# $Header: /cvsroot/pgsql/contrib/pg_logger/Attic/Makefile,v 1.1 2001/02/11 02:18:27 momjian Exp $
#
subdir
=
contrib/pg_logger
top_builddir
=
../..
include
$(top_builddir)/src/Makefile.global
OBJS
=
pg_logger.o
all
:
pg_logger
pg_logger
:
$(OBJS)
$(CC)
$(CFLAGS)
$(LDFLAGS)
$(OBJS)
$(LIBS)
-o
$@
install
:
all installdirs
$(INSTALL_PROGRAM)
pg_logger
$(X)
$(bindir)
$(INSTALL_DATA)
README.pg_logger
$(docdir)
/contrib
installdirs
:
$(mkinstalldirs)
$(bindir)
$(docdir)
/contrib
uninstall
:
rm
-f
$(bindir)
/pg_logger
$(X)
$(docdir)
/contrib/README.pg_logger
clean distclean maintainer-clean
:
rm
-f
pg_logger
$(X)
$(OBJS)
depend dep
:
$(CC)
-MM
-MG
$(CFLAGS)
*
.c
>
depend
ifeq
(depend,$(wildcard depend))
include
depend
endif
contrib/pg_logger/README.pg_logger
0 → 100644
View file @
8d1b6de5
Stdin-to-syslog gateway for PostgreSQL
contrib/pg_logger/pg_logger.c
0 → 100644
View file @
8d1b6de5
/* pg_logger: stdin-to-syslog gateway for postgresql.
*
* Copyright 2001 by Nathan Myers <ncm@nospam.cantrip.org>
* This software is distributed free of charge with no warranty of any kind.
* You have permission to make copies for any purpose, provided that (1)
* this copyright notice is retained unchanged, and (2) you agree to
* absolve the author of all responsibility for all consequences arising
* from any use.
*/
#include <stdio.h>
#include <stddef.h>
#include <syslog.h>
#include <string.h>
struct
{
const
char
*
tag
;
int
size
;
int
priority
;
}
tags
[]
=
{
{
""
,
0
,
LOG_NOTICE
},
{
"emerg:"
,
sizeof
(
"emerg"
),
LOG_EMERG
},
{
"alert:"
,
sizeof
(
"alert"
),
LOG_ALERT
},
{
"crit:"
,
sizeof
(
"crit"
),
LOG_CRIT
},
{
"err:"
,
sizeof
(
"err"
),
LOG_ERR
},
{
"error:"
,
sizeof
(
"error"
),
LOG_ERR
},
{
"warning:"
,
sizeof
(
"warning"
),
LOG_WARNING
},
{
"notice:"
,
sizeof
(
"notice"
),
LOG_NOTICE
},
{
"info:"
,
sizeof
(
"info"
),
LOG_INFO
},
{
"debug:"
,
sizeof
(
"debug"
),
LOG_DEBUG
}
};
int
main
()
{
char
buf
[
301
];
int
c
;
char
*
pos
=
buf
;
const
char
*
colon
=
0
;
#ifndef DEBUG
openlog
(
"postgresql"
,
LOG_CONS
,
LOG_LOCAL1
);
#endif
while
(
(
c
=
getchar
())
!=
EOF
)
{
if
(
c
==
'\r'
)
{
continue
;
}
if
(
c
==
'\n'
)
{
int
level
=
sizeof
(
tags
)
/
sizeof
(
*
tags
);
char
*
bol
;
if
(
colon
==
0
||
(
size_t
)(
colon
-
buf
)
>
sizeof
(
"warning"
))
{
level
=
1
;
}
*
pos
=
0
;
while
(
--
level
)
{
if
(
pos
-
buf
>=
tags
[
level
].
size
&&
strncmp
(
buf
,
tags
[
level
].
tag
,
tags
[
level
].
size
)
==
0
)
{
break
;
}
}
bol
=
buf
+
tags
[
level
].
size
;
if
(
bol
>
buf
&&
*
bol
==
' '
)
{
++
bol
;
}
if
(
pos
-
bol
>
0
)
{
#ifndef DEBUG
syslog
(
tags
[
level
].
priority
,
"%s"
,
bol
);
#else
printf
(
"%d/%s
\n
"
,
tags
[
level
].
priority
,
bol
);
#endif
}
pos
=
buf
;
colon
=
(
char
const
*
)
0
;
continue
;
}
if
(
c
==
':'
&&
!
colon
)
{
colon
=
pos
;
}
if
((
size_t
)(
pos
-
buf
)
<
sizeof
(
buf
)
-
1
)
{
*
pos
++
=
c
;
}
}
return
0
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment