log

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. In essence, I need to see for each authenticated user the actual files he/she has been downloading over a period of time, not their number or their kB count or...

MSMQ : How to purge system queue journal programaticaly ?

Need to batch a weekly purge of the System queue journal. ...

Are there any log file about Windows Services Status?

I want to figure out when the services was start up and terminated. Are there any kind log file about it? ...

How do I log just the raw queries in MySQL?

I have my log file working, but I get extraneous info on each line like "29 Query", and I can't tell, but it looks like the queries logged are the interpretation of how MySQL treats each query internally. Is there a way to automatically log each query as they were executed by the application without any additional information added to th...

C++ WxWidgets: Single log window for messages from Multiple Threads

What's the best/proper method to collect log messages from multiple threads and have them all be displayed using a window? (while the threads are running). I am currently trying to redirect stdout (cout) in to a wxTextCtrl but failing miserably when attempting to do so over multiple threads. Any help would be appreciated. ...

Darwin Streaming Server Log Format?

Hi, I am writing a program that will parse and manipulate logs from Darwin Streaming Servers. Where can I get a definition of what the individual fields headers mean? Are there some kind of documentation in the DSS doc files? For example, I have this as the log output header: c-ip date time c-dns cs-uri-stem c-starttime x-duration...

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$dt cat /dev/null > /var/log/httpd/domainname/www/error_log cp /var/log/httpd/domainname/www/access_log /var/log/httpd/domainname/www/oldlogs/access_log$dt cat...

Linux languages/tools specific for log parsing

Is there such a thing? Maybe like Microsoft's LogParser? I know there's sed/awk, but I'm curious if there are any specific tools or even programming languages. PS: I'm not sure this belongs here or on SF. ...

How to have git log show filenames like svn log -v

SVN's log has a "-v" mode that outputs filenames of files changed in each commit, like so: jes5199$ svn log -v ------------------------------------------------------------------------ r1 | jes5199 | 2007-01-03 14:39:41 -0800 (Wed, 03 Jan 2007) | 1 line Changed paths: A /AUTHORS A /COPYING A /ChangeLog A /EVOLUTION A /IN...

MySQL indexes - how many are enough?

I'm trying to fine-tune my MySQL server so i check my settings, analyzing slow-query log, simplify my queries if possible. Sometimes enough if i indexing correctly sometimes not. I've read somewhere (pls correct me if this is stupidity) more indexes than i needed make the same effect like i haven't any of them. How many indexes are eno...

iPhone SDK log to base 10

Is there a method for determining the base 10 log of any number in the iPhone language? Any help with the math for this would be appreciated by a newbie budding iPhone developer. Thanks in advance. M ...

Logs Utility Applications..

Hi, I have complex log files, which are full of noise. Can someone recommand a simple utility program which I can use to define lines which I want to filter out, or highlight using wildcards or any other method? As well, a utility that can find logs which fulfill a certain condition (e.g., contains a line of a certain template) among ...

Log4j: Events appear in the wrong logfile

Hi there! To be able to log and trace some events I've added a LoggingHandler class to my java project. Inside this class I'm using two different log4j logger instances - one for logging an event and one for tracing an event into different files. The initialization block of the class looks like this: public void initialize() { System....

DataContext.Log equivalent in Entity Framerwork?

In Link-2-SQL, I can use the DataContext.Log property to see the exact queries that are getting thrown to SQL Server. Is there an equivalent to this in Entity Framework? Thanks Daniel ...

HTTP Request Log - unique visitors without ip

How can i log Requests to get unique visitors of my webpage but without saving his ip? Hashing? ...

WCF Operation Logging

Hi, I'd like to log the performance of our WCF operations, in particular if an operation takes longer to execute than a given threshold it creates a warning in a log. We have started by implementing IDispatchMessageInspector which allows us to time each operation and perform the logging. However, I'd like to be able to append the user...

log only user queries in Postgres

Hi, I've enabled logging in my Postgres database (running on Ubuntu 32 bits) and I'd like to log only queries that a re performed by user applications. I've configured postgres as follows: log_destination = 'syslog' syslog_facility = 'L*emphasized text*OCAL0' syslog_ident = 'postgres' log_min_messages = notice log_min_duration_statement...

The shortest possible output from git log containing author and date

How can I show a git log output with (at least) this information: * author * commit date * change I want it compressed to one line per log entry. What's the shortest possible format for that? (tried --format=oneline but that does not show the date) ...

Git how to save a preset git log --format

I really like the short git log format where I can see author, date and change description like this: git log --pretty=format:"%h%x09%an%x09%ad%x09%s" Which outputs: fbc3503 mads Thu Dec 4 07:43:27 2008 +0000 show mobile if phone is null... ec36490 jesper Wed Nov 26 05:41:37 2008 +0000 Cleanup after [942]: Using timezon...

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 randomly connect to any of them. My question is rather simple but I was not able to find the answer: I want to debug to which broker the messages are originally s...