Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

33
votes
12answers
14k views

Get last n lines of a file with Python, similar to tail

I'm writing a log file viewer for a web application and for that I want to paginate through the lines of the log file. The items in the file are line based with the newest item on the bottom. So I ...
7
votes
5answers
1k views

Storing millions of log files - Approx 25 TB a year

As part of my work we get approx 25TB worth log files annually, currently it been saved over an NFS based filesystem. Some are archived as in zipped/tar.gz while others reside in pure text format. I ...
6
votes
3answers
7k views

How do I use Nagios to monitor a log file

We are using Nagios to monitor our network with great success. However, we have a syslog for critical application errors and while I set up check_log, it doesn't seem to work as well as monitering a ...
6
votes
5answers
446 views

Are there any existing batch log file aggregation solutions?

I wish to export from multiple nodes log files (in my case apache access and error logs) and aggregate that data in batch, as a scheduled job. I have seen multiple solutions that work with streaming ...
5
votes
7answers
347 views

Optimize this python log-parsing code

The runtime of this code on my laptop for a 4.2 GB input file is 48 seconds. The input file is tab-delimited, with each value appearing in quotes. Each record ends with a newline, e.g. ...
5
votes
6answers
2k views

Pages loads twice on Firefox?

I thought I had answered this question before thanks to StackOverFlow, but I hastily took an answer and it turns out not to be the real cause to my problem. I have checked my Apache Access Log: This ...
3
votes
1answer
113 views

Partially re-create Risk-like game based on incomplete log files

I'm trying to re-create this conquerclub (Risk-like) game: http://conquerclub.barrycarter.info/ONEOFF/7460216.html In other words, I want to know who owned each territory at each point in time, ...
3
votes
3answers
2k views

log4j vs. System.out.println - logger advantages?

I'm newly using log4j in a project. A fellow programmer told me that using System.out.println is considered bas style and that log4j is something like standard for logging matters nowadays. We do ...
3
votes
3answers
1k views

How can I view log files in Linux and apply custom filers while viewing?

I need to read through some gigantic log files on a Linux system. There's a lot of clutter in the logs. At the moment I'm doing something like this: cat logfile.txt | grep -v ...
3
votes
3answers
4k views

Linux display average CPU load for last week

On a Linux box, I need to display the average CPU utilisation per hour for the last week. Is that information logged somewhere? Or do I need to write a script that wakes up every 15 minutes to copy ...
3
votes
7answers
677 views

Best approach to collecting log files from remote machines?

I have over 500 machines distributed across a WAN covering three continents. Periodically, I need to collect text files which are on the local hard disk on each blade. Each server is running Windows ...
3
votes
4answers
553 views

IIS Log Files showing Rewritten rather than Original Url

I've got a problem in that changing the way I'm doing Url Rewriting in an Asp.Net application has changed the IIS log files from looking like this: /page/ 80 etc.. /page/anotherpage/ 80 etc... to ...
2
votes
2answers
50 views

C: multi-processes stdio append mode

I wrote this code in C: #include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h> void random_seed(){ struct timeval tim; gettimeofday(&tim, ...
2
votes
1answer
86 views

Anomaly detection using mapreduce

I'm new to Apache Hadoop and i'm really looking forward to explore more features of it. After the basic wordcount example i wanted to up the ante a little bit. So i sat down with this problem ...
2
votes
2answers
98 views

Powershell: how to stream, paginate text from very large files?

I've got some huge log files that I need to view. I don't want to attempt to open them up in an editor, and I'd like to be able to scroll through them in a paginated manner. It seems as if there is an ...
2
votes
4answers
217 views

awk a huge logfile from behind until timestamp

i want to get the last part since a given timestamp "t0" from a possible huge logfile (>50..1000mb): __________________ |1 xxx xxx ... | |2 xxx ... | uninteresting part ...
2
votes
2answers
149 views

Highlighting log of threaded application

I have log file of multi threaded application. Each line has a well know format (e.g. 3rd field is thread id). while one of fields is thread id. I hope that I'm not trying to reinvent the wheel :) ...
2
votes
5answers
102 views

How to get the lastest file from a directory

This is specific to creating a logfiles. When I am connecting to a server using my application, it writes the details to a log file. When the log file reaches to specific size let's say 1MB then I ...
2
votes
1answer
756 views

shellscript to monitor a log file if keyword triggers then execute a command?

is there a cheap way to monitor a log file like tail -f log.txt, then if something like [error] appears, execute a command?
2
votes
2answers
280 views

Matching everything between two specific words using regular expressions

I'm attempting to parse an Oracle trace file using regular expressions. My language of choice is C#, but I chose to use Ruby for this exercise to get some familiarity with it. The log file is ...
2
votes
2answers
129 views

SQL Server 2005 Database Logfile is HUGE, full

Let me start by saying I am not an SQL or SQL Server expert by ANY means. I know how to create a database and develop a website that uses it. Beyond that, db administration is completely lost on me :( ...
2
votes
3answers
739 views

TempDB Log File Growth Using Global Temp Tables

This is really a two prong question. One, I'm experiencing a phenomenon where SQL server consumes a lot of tempDB log file space when using a global temp table while using a local temp table will ...
2
votes
5answers
6k views

How can I use bash (grep/sed/etc) to grab a section of a logfile between 2 timestamps?

I have a set of mail logs: mail.log mail.log.0 mail.log.1.gz mail.log.2.gz each of these files contain chronologically sorted lines that begin with timestamps like: May 3 13:21:12 ... How can I ...
2
votes
4answers
635 views

Why is Tomcat doubling my log lines in the catalina.out logfile?

Every time I look at Tomcat's catalina.out log file, I see double lines for every log entry. Why is this happening? Has this happen before to any Java (Tomcat) users?
2
votes
1answer
685 views

Setting innodb_log_file_size crashes MySQL

So, I'd like to be able to set the max log file size to 64M, but after doing so with innodb_log_file_size=64M MySQL starts OK, but nothing seems to work properly. EDIT: and by properly I mean not at ...
1
vote
0answers
26 views

How to manage SQL Server Log file? [migrated]

I have an application build on SharePoint 2007 platform, and currently I encounter a common issue where the Database Log file growth rapidly and fill up the hard disk space. In my situation, I wanted ...
1
vote
4answers
64 views

Conversion problems in C++ (string expected)

I have a function that I cannot touch, Is a "log maker", It puts something to print in a file an show it up when I run the file. The problem is that the function only gets const string so if I want to ...
1
vote
2answers
109 views

Python Client/Server to stream logfile updates in realtime?

We have applications on Solaris 10 servers that generate text logfiles. We need to stream these logfiles in realtime to a central server for monitoring of new events. Ideally we'd have a NFS-mount, ...
1
vote
1answer
110 views

Should application log files and user generated data files be stored in APPDATA or PROGRAMDATA

We are migrating our APP to Win7. The program generates log files to help us support and also saves a number of dictionary files and settings files that are useful for the user though the user will ...
1
vote
3answers
199 views

Need to filter log to search for the lines from the last 5 minutes

2011-04-13 00:09:07,731 INFO [STDOUT] 04/13 00:09:07 Information... Hi everyone. I would post some of my code, but I don't even think it's worthy of posting. What I'm trying to do is that I've got ...
1
vote
2answers
137 views

How large does a log file get after it updates every database table field?

My general question is, say you have a SQL Server 2005 database that's 20G in size and a log file that is empty. If you run a series of updates that touch each table and each row exactly once, will ...
1
vote
1answer
690 views

Does android mobile has any error log file to debug cause for auto switch off?

Sometimes we see the device restarts automatically, while few other times I had found it switching off after long time, even battery was not low. So if we want to trace back of what actually has ...
1
vote
2answers
515 views

How to delete the content of a log file using Java code

I need to clear the content of a certain log file in the server which is running Linux. I need to do it by calling a method from my program which is running in a different server. Please help me out. ...
1
vote
1answer
615 views

How to clear server.log in JBoss?

How to clear server.log in JBoss when JBoss is running? when I try to do echo 1>server.log I get error msg that file is being used by other app(JBoss). Is it possible using some command-line ...
1
vote
2answers
618 views

How to restore database with 2 mdf and 2 ldf files leaving only 1 mdf/ldf pair?

I've got a .bak file (SQL Server 2008) which contains 2 mdf and 2 ldf files. When I try to restore a database from it, it creates all 4 of those files. I've never seen this before, and was wondering ...
1
vote
3answers
348 views

How to purge the Database data and log files in MySQL?

I want to purge the ibdata1, ib_logfile0 and ib_logfile1 files in MySQL. Because these files are taking too much space of my C:\ disk. And I don't want to move these files anywhere else in the Hard ...
1
vote
2answers
101 views

python analyse 2 logfiles

I have 2 large logfiles. I want to see if a device is in a but not b and vice versa (exclude lines where the device is common) the files look like this example. 04/09/2010,13:11:52,Authen ...
1
vote
4answers
223 views

Alternative databases to use when putting IIS Logs into a database using LogParser

We have run some scripts that use LogParser to dump our IIS logs into a SQL Server database. We can then query this to get simple stats on hits, usage etc. It's also good when linking it to error log ...
1
vote
5answers
261 views

Static Logger in separate thread?

I've made my Logger, that logs a string, a static class with a static so I can call it from my entire project without having to make an instance of it. quite nice, but I want to make it run in a ...
1
vote
1answer
375 views

IIS log analysis - how to retrieve referer information

As per this MSDN article: W3C Extended Log File Format (IIS 6.0) It says cs(Referrer) contains the REFERER information that can be read from the IIS log files. I am trying to display the log ...
1
vote
5answers
1k views

Automatically download log file from Unix server to Windows machine

I have a Unix server on which a continuously running application generates a large text log. (aprox. 100megs an hour). My main development machine is a Windows computer and to see what's going on ...
1
vote
1answer
94 views

How can I add extra information to IIS logfile though ISAPI filter?

I am writing an ISAPI filter which provides authentication services. I would like to ensure that any requests I allow through have some additional information logged in the IIS logfile. This will ...
1
vote
2answers
583 views

log_errors_max_len = 1024 in php.ini, but php log keeps growing

As the title says, I've set the max length for the php error log, but it seems to keep growing much much larger than 1024. I am using the correct php.ini, I've restarted apache, etc. The permissions ...
1
vote
2answers
2k views

IIS 6 Logs M.I.A

I'm trying to find my IIS log files and I seem to be having a problem. First off I've gone into IIS and right clicked on the site in question and selected properties... Under the Web Site tab I have ...
1
vote
2answers
123 views

SQL Server LOG Data recovery

I was wondering how you can recover data from your logfile. I'm using sql 2005 (full backup). The problem is that a service cleared my data last night (which it shouldn't have). and now I want to ...
0
votes
2answers
24 views

Tool to count stacktraces in a logfile

Is there a tool that is able to collect and count (Java) stacktraces in a large logfile, such that you get an overview which errors occur most often?
0
votes
3answers
55 views

Parsing Apache logs efficiently in PHP

Ok, this is the scenario: I need to parse my logs to find how many times image thumbnails have been downloaded without actually watching the "large image" page... This is basically a hotlink ...
0
votes
1answer
41 views

Creating log file on windows mobile 6

I'm writing a program on windows mobile 6 in C# and I want it to collect data from GPS-module every second. What is the simplest way to store it on the phone? I'm thinking about either txt or XML ...
0
votes
1answer
63 views

How can i use freopen() to redirect stdout & stdin in thread vise log-file in multi-thread application?

Extened question from In multi thread application how can i redirect stderr & stdout in separate file as per thread? see some how i want to keep all printf and error/warning message produced in ...
0
votes
1answer
33 views

Does UI Spy produce a log file?

I had UI Spy (UISpy.exe) crash. I closed the program and didn't even look at the stack trace in the error message. Does UI Spy produce a log? Is there a way to retrieve this previous failure if there ...

1 2