supervision - discussion about system services, daemon supervision, init, runlevel management, and tools such as s6 and runit
 help / color / mirror / Atom feed
From: "Csillag Tamás" <cstamas@digitus.itk.ppke.hu>
Subject: syslog from perl but no date (svlogd)
Date: Fri, 16 Jul 2004 00:21:09 +0200	[thread overview]
Message-ID: <20040715222109.GE7203@digitus> (raw)

Hi,

I am replacing syslogd with socklog on my server, I like it because it is
very clean and very simple.

The only problem I came across, is a date logging issue.
Let me explain: (I use socklog configuration created by socklog-conf)
If I run
# echo test | logger
The following line appears in the logs
user.notice: Jul 15 23:52:52 logger: test

But if I run the following perl script:

#!/usr/bin/perl

use Sys::Syslog qw(:DEFAULT setlogsock);

$syslog_socktype = 'unix'; # inet, unix, stream, console
$syslog_facility="mail";
$syslog_options="pid";
$syslog_priority="info";

setlogsock $syslog_socktype;
openlog $0, $syslog_options, $syslog_facility;
syslog $syslog_priority, "test";

The line is the following:
mail.info: example.pl[3449]: test

The problem is that the latter lack's the time/date information.
Most program works as expected but the perl based not.

I know that I can add a -t (or -tt) option to svlogd but it will add
time information to *all* lines AFAIK.

I do not know if this is a perl bug and syslogd works around the
problem, but it works right with it.

is something missing here?

Thanks in advance.

-- 
cstamas


             reply	other threads:[~2004-07-15 22:21 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-07-15 22:21 Csillag Tamás [this message]
2004-07-15 23:06 ` Charlie Brady
2004-07-16 22:43   ` Csillag Tamás
2004-07-17 10:27     ` Csillag Tamás
2004-07-17 10:59       ` Clemens Fischer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20040715222109.GE7203@digitus \
    --to=cstamas@digitus.itk.ppke.hu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).