Sponsored Content
Full Discussion: filter errors in log
Top Forums UNIX for Advanced & Expert Users filter errors in log Post 302253190 by nobo on Friday 31st of October 2008 06:34:02 AM
Old 10-31-2008
Yes, many.

Here is something I use to give me summaries of iptables action by port #:

Code:
[root@gna ~]# cat bin/portActivity
#! /bin/bash
LOGFILE='/var/log/messages'
[ -n "$1" ] && LOGFILE=$1
egrep 'iptables' $LOGFILE | egrep -v 'PROTO=2' | sed 's/DF//' | awk '{ print $22}' \
| cut -b '5-' | sort -n | uniq -c | awk '{ print "port " $2 " had " $1 " hits" }'
[root@gna ~]# portActivity | head
port 21 had 15 hits
port 22 had 36 hits
port 23 had 20 hits
port 52 had 2 hits
port 53 had 1 hits
port 57 had 3 hits
port 60 had 2 hits
port 80 had 9 hits
port 110 had 1 hits
port 111 had 1 hits
[root@gna ~]#

YMWV depending on how your firewall logs stuff.

Learn the toolbox!

nobo
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

grep a log file to filter previous dates

Hi, I have problem of filtering a log file from my perl script. #cat /data/pinpe.csv_20070731 | nawk -v FS=, '{print $1','$18','$22','$26}' | grep -w 100 | grep -w 1 | nawk '{print $4}' Below is the output: 2009-06-16 2009-01-29 2009-06-02 2008-03-05 2007-08-05 2007-09-24... (5 Replies)
Discussion started by: pinpe
5 Replies

2. Shell Programming and Scripting

redirect errors to log file

I am working on a generic script that will run a shell script with the arguments passed and redirect errors to one file, and all other output to another file. Then if there is anything in the error file it emails the error to me, otherwise it exits. The advantage for this approach is that I... (0 Replies)
Discussion started by: gandolf989
0 Replies

3. Shell Programming and Scripting

To filter a log file

Hi All, I have a log File and i have to make a report in desired format.can anybody help me......... log file ------ <<<<< BESI14 >>>>> <RLGAP:CELL=ALL; CELL CHANNEL GROUP ALLOCATION DATA CELL CHGR SAS ODPDCHLIMIT BUNYM18 0 MULTI 100 -------- desired format... (1 Reply)
Discussion started by: dattatraya
1 Replies

4. Shell Programming and Scripting

track the errors in log file

OS: SuSE Linux Enterprise Server 10 Goal: To track the errors in log file, If they exits users will be notify by email. We have a script below: SrchKey="SRVE0242I:" LogFile=/PATHtemOut.log MailTo="DN@mail.com http:// ! -f PATH/alert.last && touch PATH/alert.last egrep $SrchKey $LogFile... (3 Replies)
Discussion started by: sdhn1900
3 Replies

5. UNIX for Dummies Questions & Answers

Log in as root and it errors out

Hello I tried to log in as root, through console access, and this is what I got. >root ksh: root: not found Can you tell me why I got this and what causes it. Thanks. (2 Replies)
Discussion started by: iamnew2solaris
2 Replies

6. Solaris

about log errors

How would you truncate a log file that is growing too large if you don't have space to compress it or to move it somewhere else? How would you do it? (2 Replies)
Discussion started by: rajaramrnb
2 Replies

7. Linux

Filter log file contents between date

Hi, Could you please provide me command to filter contents between date in a log file? Say for example, in a log file I want to capture contents between date May 01 from 5am to 9 am. OS -- Linux Regards, Maddy (1 Reply)
Discussion started by: Maddy123
1 Replies

8. Shell Programming and Scripting

Outputting Errors to a Log file

Good Morning, Every so often, I have copy scripts that to don't complete, but I don't immediately know why. It usually ends up being a permissions issue or a length issue. The scripts edit a log file, so I'd like to include any copy errors/issues in that file to check if the copies... (4 Replies)
Discussion started by: Stellaman1977
4 Replies

9. Shell Programming and Scripting

Can we filter the below log data into CSV format?

HI , I m looking for help here!!! Can we filter the below log data into CSV format ? timestamp INFO <text > - Some text Drive .. Need a format of separate field such as 1 2 3 4 ... (2 Replies)
Discussion started by: MohSalNiz
2 Replies

10. UNIX for Beginners Questions & Answers

Filter records from a log file based on timestamp

Dear Experts, I have a log file that contains a timestamp, I would like to filter record from that file based on timestamp. For example refer below file - cat sample.txt Jan 19 20:51:48 mukul-Vostro-14-3468 systemd: pam_unix(systemd-user:session): session opened for user root by (uid=0)... (6 Replies)
Discussion started by: mukulverma2408
6 Replies
cachefsstat(1M) 					  System Administration Commands					   cachefsstat(1M)

NAME
cachefsstat - Cache File System statistics SYNOPSIS
/usr/bin/cachefsstat [-z] [path...] DESCRIPTION
The cachefsstat command displays statistical information about the cache file system mounted on path. The statistical information includes cache hits and misses, consistency checking, and modification operations. If path is not specified, all mounted cache file systems are used. cachefsstat can also be used to reinitialize this information (see -z option). The statistical information has the following format: <cache hit rate> <consistency checks> <modifies> where: hit rate The percentage of cache hits over the total number of attempts, followed by the actual numbers of hits and misses. consistency checks The number of consistency checks performed, followed by the number that passed, and the number that failed. modifies The number of modify operations, including writes, creates, etc. OPTIONS
The following option is supported: -z Zero (reinitialize) statistics. Execute cachefsstat -z before executing cachefsstat again to gather statistics on the cache per- formance. This option can only be use by the superuser. The statistics printed reflect those just before the statistics are reinitialized. USAGE
See largefile(5) for the description of the behavior of cachefsstat when encountering files greater than or equal to 2 Gbyte (2**31 bytes). EXAMPLES
Example 1: Using cachefsstat The following example shows the cachefsstat command run on file system /test: example# cachefsstat /test /test cache hit rate: 100% (0 hits, 0 misses) consistency checks: 0 (0 pass, 0 fail) modifies: 0 garbage collection: 0 EXIT STATUS
The following exit values are returned: 0 Successful completion. non-zero An error occurred. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWcsu | +-----------------------------+-----------------------------+ SEE ALSO
cachefslog(1M), cachefswssize(1M), cfsadmin(1M), attributes(5), largefile(5) SunOS 5.10 9 Oct 2003 cachefsstat(1M)
All times are GMT -4. The time now is 08:06 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy