The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
15 views

Decyphering header of log files

I'm currently stripping thousands of log files from a game, that currently is in Beta, so I can't give any information about it at the moment. I can work with the files properly, but there's always a ...
1
vote
2answers
61 views

Parsing huge logfiles in Node.js - read in line-by-line

I need to do some parsing of large (5-10 Gb)logfiles in Javascript/Node.js (I'm using Cube). The logline looks something like: 10:00:43.343423 I'm a friendly log message. There are 5 cats, and 7 ...
1
vote
5answers
103 views

Loop within loop python

I have a log file with several hundred thousand lines. I am looping through these lines to find any line with some specific text, for example: !!event!!. Then, once an !!event!! line is found, I ...
1
vote
1answer
160 views

dataset of intrusion detection for apache log

FOUND ON : HoneyNet Project. in scan31 and scan34 PHPIDS have a filter rules to detect attack pattern in web access log file. I want to ask how do I know that PHPIDS can detect the attack (xss, ...
0
votes
0answers
158 views

Zabbix: Monitoring VSFTPD logs (timestamp format)

I am trying to monitor vsftd log files using Zabbix, so I can check the upload rate in files per minute. The challenge that I am facing is defining the timestamp format under the Zabbix log item. The ...
0
votes
0answers
65 views

Own server IP multiple times in apache domain log

My sites are slowing down on my VPS and RAM usage is creeping up every now and then. I'm getting my own VPS server's IP (eg 212.212.212.212) showing up multiple times in my Apache Domain Access Log ...
25
votes
1answer
842 views

How can I tell when my dataset in R is going to be too large?

I am going to be undertaking some logfile analyses in R (unless I can't do it in R), and I understand that my data needs to fit in RAM (unless I use some kind of fix like an interface to a keyval ...
0
votes
0answers
33 views

Argparse and Directory Scanning

I am writing an argparse to sort through a bunch of information I parsed in another program I wrote. I have written a function that specifies a time range for the parser to search through logs with. ...
0
votes
0answers
95 views

How to make a textfile from multiple txt files?

I need help for an assignment... i have a large text file, which has a date, user login name and the PC no. where the user logged in from. The other files are similair, but it registers the software ...
4
votes
1answer
202 views

Exception Log Analysis Tools or Techniques

I'm logging Exceptions, and it would be nice if there were some tools or technique to perform some analysis of the Exception logs, can anyone recommend any? I'm imagining something with some kind of ...
0
votes
1answer
206 views

How to short in excel by name and date

I'm trying to make an automatic way to short an excel file field by name and date. I will explain what I'm trying to do: I have an excel file where there is the log text of many users that have ...
0
votes
3answers
141 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
1answer
88 views

DNN Site Traffic

We recently launched a web site developed with DNN. Analyzing the log files, I see files with .axd extension as resources accessed together with pages. The problem is that I see a heavy traffic on ...
2
votes
1answer
1k views

How do I create a graph in Zabbix with a calucated field based on the count of log entries?

I have an item setup to monitor fatal errors, and I want to add another item so that it calculates the count of the fatal errors and graphs them. Using this key: ...
0
votes
3answers
72 views

Regex to match certain lines, except when they have certain words (limited regex vocab available)

I'm using a log tailing app (BareTailPro) that highlights rows which match regular expressions. I currently have the filter set to just error (ignore case on) which returns, for example: 25/07/2011 ...
0
votes
3answers
3k views

Android device's log file

using logcat I can see the log messages generated by my app in the emulator. How can I read/retrieve the same log file but this time from the device the app is running on ? The device is not attached ...
10
votes
3answers
2k views

Logfile analysis in R?

I know there are other tools around like awstats or splunk, but I wonder whether there is some serious (web)server logfile analysis going on in R. I might not be the first thought to do it in R, but ...
2
votes
2answers
1k views

Is there any “generic log file analyzer/editor”?

I am asking because I am sick of watching tab separated log files everyday like this: 164.56.95.119:18260 24986 2011-03-13 16:10:02.532 -5 JobQueueReceiver JSM 6019 4 ...
0
votes
1answer
245 views

General Log file viewer [closed]

I am looking for a good tool for viewing logfiles of all kinds. Should be easy to avoid seeing certain lines, perhaps with filters and/or collapsing XML etc.
5
votes
4answers
925 views

Searching huge log files

Troubleshooting, analyzing & filtering log files is by far one of the most laborious daily jobs. My issue is searching through a log file, which could be well over 4 gigs in size. Simply loading ...
0
votes
1answer
286 views

Web log file analysis software to measure search crawlers

I need to analyze the search engine crawling going on in my site. Is there a good tool for this? I've tried AWStats and Sawmill. But both of those give me very limited insight into the crawling. I ...
1
vote
2answers
166 views

How do I handle large amounts of logfile data for display in dynamic charts?

I have a lot of logfile data that I want to display dynamic graphs from, for basically arbitrary time periods, optionally filtered or aggregated by different columns (that I could pregenerate). I'm ...
4
votes
1answer
631 views

What do the square brackets in LaTeX logs mean?

I'm currently working on a parser that reads complete LaTeX logs. Most of the log format is, though weird, easy to figure out, but these square brackets are puzzling me. Here's an example from near ...
0
votes
1answer
409 views

LogParser query to grab only external IP addresses from IIS logs?

I tried this question over at ServerFault and didn't have any luck, so I thought I'd try here. I'm working on a public website that is used by both external visitors and internal employees. I'm ...
6
votes
3answers
3k views

extracting error information from rails log files

i am developing on 5 different rails projects, plus also refactoring some (moving from older rails versions to 2.3) - what is the best way to extract the error information from the logfiles, so i can ...
0
votes
2answers
654 views

How to read log-files over network real fast?

I'm using Delphi 2007 and have an application that read log-files from several places over an internal network and display exceptions. Those directories sometimes contains thousands of log-files. The ...
5
votes
2answers
3k views

How is MapReduce a good method to analyse http server logs?

I've been looking at MapReduce for a while, and it seems to be a very good way to implement fault-tolerant distributed computing. I read a lot of papers and articles on that topic, installed Hadoop on ...
0
votes
2answers
595 views

Tool to put HTTP log file into database (with defined schema)?

So, I want to put the past year or so of Tomcat Combined Format files into a database. There are zillions and zillions of hits. (The plan is to run bespoke and ad hoc queries against it, and match ...
5
votes
4answers
10k views

Perfmon File Analysis Tools

I have a bunch of perfmon files that have captured information over a period of time. Whats the best tool to crunch this information? Idealy I'd like to be able to see avg stats per hour for the ...
18
votes
10answers
4k views

Software for Webserver Log Analysis?

Can I get some recommendations (preferably with some reasons) for good log analysis software for Apache 2.2 access log files? I have heard of Webalizer and AWStats, but have never really used any of ...