Tagged Questions
Syslog is a standard for logging program messages.
16
votes
3answers
6k views
How do you read a segfault kernel log message
This can be a very simple question, I'm am attempting to debug an application which generates the following segfault error in the kern.log
kernel: myapp[15514]: segfault at 794ef0 ip 080513b sp ...
10
votes
3answers
3k views
Redirect C++ std::clog to syslog on Unix
I work on Unix on a C++ program that send messages to syslog.
The current code uses the syslog system call that works like printf.
Now I would prefer to use a stream for that purpose instead, ...
8
votes
2answers
2k views
How to configure logging to syslog in python?
I can't get my head around Python's logging module. My needs are very simple: I just want to log everything to syslog. After reading documentation I came up with this simple test script:
import ...
8
votes
6answers
1k views
Centralized Logging for many Java Apps: Syslog vs JMS vs Http vs Local file
I what all my applications logs to be centralized (ideally in near real-time). We will use a Log4 Appender. Which one should I use:
Send log event in a JMS Queue
Syslog / syslog-ng
Write to a ...
6
votes
2answers
18k views
Open Source Syslog Daemon for Windows [closed]
Can anyone recommend an open source Syslog Daemon for Windows (specifically Windows 2008 64bit).
Thanks
5
votes
1answer
301 views
PHP's error_log() vs syslog()
I'm trying to decide what functionality to use for logging to a custom file.
Background
We have several PHP processes, both running as Apaches (mod_php) and as Deamons (CLI, forked). I would like to ...
5
votes
5answers
2k views
Centralized network logging - syslog and alternatives?
At work, we're building a distributed application (possibly across several machines on a LAN, possibly later across several continents on a WAN+VPN). We don't want log files local to each machine ...
5
votes
5answers
3k views
Redirecting standard output to syslog
I'm planning to package OpenTibia Server for Debian. One of the things I want to do is add startup via /etc/init.d and daemonization of the otserv process.
Thing is, we should probably redirect ...
4
votes
1answer
260 views
What is the most modern way to log to syslog using a java.util.logging handler?
I am specifically looking for the most up to date, modern SysLogHandler for java.util.logging.
I have found a few that date back to 2001 - 2003, mostly un-supported now.
I know that syslog is a ...
4
votes
2answers
1k views
How to configure Tomcat to log everything via syslog?
I'm trying to configure Tomcat and a webapp (Atlassian JIRA) to log everything over syslog.
Here is what I added to the webapp log4j.properties (atlassian-jira/WEB-INF/classes/log4j.properties) :
...
4
votes
2answers
1k views
Find syslog max message length
Most Unix programmers would be used to the interface defined by syslog.h, and many implementations (such as glibc) have no real limit on the size of the syslog message being sent to it, but there is ...
4
votes
5answers
3k views
Reading syslog output on a mac
I have a program that was written for linux and I am trying to build and run it on my MacOS 10.5 machine. The program builds and runs without problem, however it makes many calls to syslog. I know ...
3
votes
2answers
48 views
Disk failure detection perl script
I need to write a script to check the disk every minute and report if it is failing by any reason. The error could be the absolute disk failure and a bad sector and so on .
First, I wonder if there ...
3
votes
2answers
148 views
What are the advantages of using syslog over other logging facilites?
We are using a basic python log server based on BaseHTTPServer to aggregate our python logs on an ubunutu server. This solution has fulfilled our needs... until now. The number of programs dumping ...
3
votes
3answers
168 views
how to get php errors to show on syslog
I have a script which is scheduled to run on crontab. I noticed that I could not see php errors anywhere. I wanted to be able to see php errors logged on /var/log/syslog or some place else. I have ...
3
votes
1answer
319 views
How to get perl stderr to httpd log file when using syslog
This question is about HTTPD (Apache) 2.? on centOS and modperl 1.7+
When I use the apache directive ErrorLog logs/error_log, my perl warnings show up in the error_log file. When I change this to ...
3
votes
1answer
1k views
Getting a UDP socket program in Python to accept messages from a Syslog client?
I'm trying to write a Syslog listener and so far so good on getting it to accept incoming messages through TCP but I also want UDP to function.
This is the UDP server code I'm using, which works ...
3
votes
1answer
982 views
Is there a robust java.util.logging handler implementation of syslog?
I'm looking into hooking up a 3rd party Java application to our log aggregation/analysis solution (probably Splunk, we haven't finalized our selection yet though). It seems to be easiest to hook the ...
3
votes
5answers
537 views
How do you know if syslog-ng stops your listening daemon?
I wrote a PHP program that hooks into syslog-ng (via syslog-ng.conf) and it's basically this:
while (!feof(STDIN)) {
$input = fgets(STDIN);
process($input);
}
cleanup();
where process() and ...
3
votes
1answer
1k views
Using syslog in rails application
I am thinking of using syslog in my rails applications. I am going to follow instructions mentioned here
In production box I have 4 rails applications running using passenger. If I switch to use ...
3
votes
2answers
2k views
Tomcat6 webapp using log4j for logging, unable to log to syslog
I am trying to log my webapp logs into syslog at local4 level. Environment: Tomcat6, OpenSolaris, Struts2, log4j. Content of my log4j.properties is as follows-
log4j.rootLogger=INFO, SYSLOG
...
3
votes
1answer
1k views
syslog_r for Linux?
Folks, I can't find the re-entrant version of syslog() for Linux...is there one? And if no, what do you? The obvious answer is to move logging facility into separate thread and serialise access to ...
3
votes
7answers
3k views
Can syslog Performance Be Improved?
We have an application on Linux that used the syslog mechanism. After a week spent trying to figure out why this application was running slower than expected, we discovered that if we eliminated ...
2
votes
0answers
29 views
Mule Syslog Inbound-Endpoint
I am attempting to create an inbound Mule endpoint that will receive Syslog messages from a remote server. The messages are recieved on port 514 using UDP packets.
As I've seen no built-in Mule ...
2
votes
1answer
119 views
Printing Function Output to Syslog?
I want to make it so that the "stdout" and "stderr" output from "check_call()" is sent to Syslog. Is this possible?
Code:
def command(cmd, err=None, ifexit=False):
try:
...
2
votes
1answer
161 views
how to parse syslog timestamp
http://www.syslog.cc/ietf/drafts/draft-ietf-syslog-protocol-23.txt
6.2.3.1. Examples in the above link provides examples of different timestamp formates.
How can I parse these timestamps in C?
...
2
votes
2answers
299 views
Making a Perl daemon that runs 24/7 and reads from named pipes
I'm trying to make a log analyser using perl. The analyser would run 24/7 in the background on an AIX server and read from pipes that syslog directs logs to (from the entire network). Basically:
logs ...
2
votes
1answer
111 views
Output of syslog, sent to stdout, grepped, is getting truncated mid-line
So I'm logging some debug information, sending it to stdout whereupon I grep it for a string. At a certain point, logging is done and the application is waiting for stuff, but grep's output is ...
2
votes
1answer
293 views
How do I set the ident string when using logging.SysLogHandler in Python 2.6?
I have logging configured using logging.fileConfig(). I have a the root logger going to a handler that uses SysLogHandler('/dev/log', handlers.SysLogHandler.LOG_USER)
This all works perfectly well, ...
2
votes
1answer
472 views
Can someone recommend a good unix syslog *client* library for java?
java.util.logging.Logger seems to implement "syslog-like" logging, where I want the logs to actually use the local syslog logging fascilities (so life is easier for admins; they don't have to do extra ...
2
votes
3answers
3k views
how to stop syslog messages to write console on solaris
how to stop syslog messages to write console on solaris ?
2
votes
3answers
1k views
Does Syslog really have a 1KB message limit?
I read some disturbing news, it seems Syslog has a 1KB message limit. Is this hardcoded into the Syslog protocol, or is this a parameter that can be set for each server.
I am hoping the article I ...
2
votes
3answers
2k views
Log4net: SysLog Appender Example
I am looking for example configuration on how to get Log4net logging to a Syslog server. Any help would be welcome.
Thanks in advance.
2
votes
2answers
1k views
How to enable syslogd to receive UDP logs from routers in OSX
Occasionally a router goes bad and I would like to get the router logs.
While some routers have built-in log viewers, some do not. Most routers seem to have a facility to send logs to another host ...
2
votes
4answers
518 views
Who use syslog for logging his web application
I was wondering if somebody use syslog to log his web application errors/warning/info ? It could be quite useful in a deployment environment with a lot of servers.
If yes, what kind of client ...
2
votes
2answers
571 views
Using Stomp and Apache ActiveMQ as reliable syslog
One of my programs requires a reliable way to log across unreliable network (ie internet). The sender or receiver may go offline any time and can come back later. But any message sent by client should ...
2
votes
1answer
175 views
Can Linux syslogd log non-English messages?
I am setting up a logging infrastructure using syslog daemon on my Linux server. I have few clients both Windows and non-Windows that I am planning on configuring to forward logs as syslogs to my ...
1
vote
1answer
44 views
Why time.sleep() breaks syslog-ng in Python
I have been trying to log a script output with syslog-ng, however, if I use any time.sleep() function in my code, it breaks syslog-ng and stops logging the output of the script.
Here are the ...
1
vote
1answer
35 views
Python App ouput to syslog server
I'm trying to do some searching on google (looped for every 5 min or so).
When it gets a hit I want it to push the results to a syslog server. I'm very new to python so please forgive the ignorance, I ...
1
vote
1answer
32 views
Is syslog a logging standard, or a protocol standard?
Syslog is a network protocol as described in RFC 5424 and RFC 3164 before that.
-AND-
Syslog is a standard in the *nix world. It's how you do logging. Even on just the local machine, UDP packets are ...
1
vote
1answer
27 views
Disabling/Enabling logging when using syslog
I intend to use syslog for logging in an application. I need to be able to disable logging, at compile time, perhaps using a macro. Is this possible to do with the syslog facilities, or do I need to ...
1
vote
1answer
40 views
syslog and LOCAL0..7
We have about 10 different daemons for which we would like to use syslog logging. It looks like that for custom applications you're supposed to use LOCAL0..LOCAL7 facilities. Well, how can one then ...
1
vote
4answers
111 views
Logging Errors in C
I am working on a project in C under a Linux environment and I'm looking for an efficient way to add errors to a log file.
I tried to use Syslog with the following initialization:
...
1
vote
0answers
59 views
How to log to syslog from clustered Java application server
My Java EE application, which currently runs on Glassfish 3, is currently using java.util.logging to send logmessages. This is intercepted by Glassfish and written to files.
I'd like to switch to a ...
1
vote
1answer
115 views
Linux - Syslog client
In order to develop a cross-plateform syslog client, I am trying to do it without using the syslog syscall. I am developping this client in C++ and for now testing in Linux. The old syslog client that ...
1
vote
2answers
120 views
How can I change localhost.localdomain in the messages written by Log4j to the Linux syslog
I'm writing messages to the Linux syslog using Log4j and its SyslogAppender. The outputted messages look like this:
Oct 12 09:06:03 localhost.localdomain 3364 [Thread-5] INFO TEST MESSAGE ...
1
vote
0answers
126 views
Need suggestion for SysLog with Node.js
I have just npm install node-syslog but it doesn't work.
I have a syslog server (IP address , and local0).
And I'm looking for a syslog module to help me post the message to syslog. But I don't ...
1
vote
2answers
161 views
Howto: Using syslog for user created shell script
Information abound about syslog, but I can't find anything very concise for my interest.
I have a user-created bash script that should log various debug, info, and error messages. I'd like to use ...
1
vote
3answers
421 views
How to setup SysLogHandler with Django 1.3 logging dictionary configuration
I'm having no luck finding any information on setting up syslog logging with Django 1.3 dictionary configuration. The Django documents don't cover syslog and the python documentation is less than ...
1
vote
1answer
580 views
Multiline log records in syslog
So I've configured my Python application to log to syslog with Python's SysLogHandler, and everything works fine. Except for multi-line handling. Not that I need to emit multiline log records so badly ...