1
vote
2answers
148 views
Apache Log rotation Script
I have the following script running to backup my apache logs
#!/bin/sh
dt=`date +%m%d%Y`
cp /var/log/httpd/domainname/www/error_log /var/log/httpd/domainname/www/oldlogs/error_log …
0
votes
5answers
70 views
How shall I format my logs?
I'm writing a piece of honeypot software that will have extensive logging of interactions with it, I plan to log in plaintext .log files.
I have two questions, from someone who is …
0
votes
2answers
36 views
Getting a log of the SQL SubSonic is using
Linq2SQL has the great Log property to see what the actual SQL statements that it is generating. Does SubSonic 2.2 have something similar to this?
0
votes
2answers
67 views
How can I display rsync progress from a log file without the carriage returns?
I have a log file from rsync command with progress on. When running this progress updates the display information on the same line. When I capture the output from this command I …
0
votes
4answers
32 views
parse log file - using java and plot graph
I am writing a log analyzer program which is supposed to plot a graph on search string against time after parsing log file(s). I am currently clueless about how would I parse and s …
0
votes
3answers
76 views
Add lines at the end of file
Hi,
I would like to add logs at the end of a file for each event, and create a new one when its size up to 255 Mo.
For example, the current file could be /var/log/foo.2:
/var/lo …
0
votes
2answers
22 views
How does one configure PHPUnit to log to the test database?
Hi All
I am trying to work out how to configure PHPUnit to use the "test database" that is described on this wiki page: http://www.phpunit.de/wiki/TestDatabase However I can't fin …
0
votes
1answer
6 views
mysql binary log only log deletes
Hi,
Is there any way in MySQL to only log deletes? I tried using the mysql binary log option but unfortunately, there are too many inserts to my database and the file swells ins …
3
votes
3answers
52 views
How do I find the revision that changed a line in my code using TortoiseSvn?
I have one line of code which seems commented. Basically the thing I want to find is the revision that changed this line in the code.
So, is it possible to see changes in code re …
0
votes
1answer
75 views
ActiveMQ C# + network of brokers
Hello,
I'm setting up a notification service using ActiveMQ, in C#.
My ActiveMQ topology is a network of brokers: I've a pool of brokers and my clients use the failover uri to ran …
4
votes
2answers
643 views
What is the point of clog?
I've been wondering, what is the point of clog? As near as I can tell, clog is the same as cerr but with buffering so it is more efficient. Usually stderr is the same as stdout, so …
0
votes
1answer
60 views
free apache log analyzer with report of downloads of authenticated users
Hello. I'm looking a for free apache log analyzer tool which can be used to create a report like the one you can see by going here and navigating to Visitors -> Requests of Users. …
1
vote
4answers
428 views
How can I limit git log (or svn log) to revisions that regard one particular file?
I'd like to see a series of diffs for a file. I'd settle for simply the log listing restricted to only those entries that modified the file.
0
votes
1answer
33 views
LogParser failing in WebApp
Hello,
I've developed a WinForms app that I've that shows the bandwidth a single IIS site using LogParser. This worked quite well.
I've now written the exact same thing in ASP.ne …
10
votes
4answers
1k views
How can I make the Python logging output to be colored?
Some time ago I saw a Mono application with colored output, probably because of it's log system, because all the messages were standardized.
Now, Python has the logging module, and …
