Korchmenuk Nickolay wrote:

grep FOUND clamd.log | cut -d \ -f 2 | sort | uniq -c


grep FOUND clamd.log | cut -d \ -f 2 | sort | uniq -c | awk '{print $2,$1}'


grep FOUND clamd.log | awk '{print $8}' | sort | uniq -c | sort -k1nr,1

Who's next? ;-)


me :-)
top10 from clamd.log
--------------------
grep FOUND clamd.log | awk '{print $8}' | sort | uniq -c | sort -r | head

top from clamd.log for current day
--------------------
grep FOUND clamd.log | grep \"$(date -j \"+%b %e\")\" | grep \"$(date -j \"+%Y\")\" | 
awk '{print $8}' | sort | uniq -c | sort -r

virus variations counter
-----------------------
grep FOUND clamd.log | awk '{print $8}' | sort | uniq | wc -l



With all these good answer, I find it amazing that no one actually answered the real question :
Is anyone using mrtg to gather stats on spam/virus activity?


So, I created something using php and rrdtool (not mrtg, but similar).
Why php? Because I like it best :)

Even though it IS written in PHP, it is intended (for now) as command line application,
not web based application. Changing it would be a simple thing though.


You'll need cgi or cli version of php with rrdtool as either built in or loadable module.
Creating this is a little hard, since by default rrdtool is not a php extension.
So I created static linux php binary ready to use.


It's available at http://clamav.or.id/contrib/clamd-stat

RRD files are stored under rra, and graphs are stored under html/graph.

These script is in very early stage of development, but should be enough
for those who want mrtg-like graph showing the number of viruses.
Any comment, help, or patch is appreciated.

Regards,

Fajar
--
Please avoid sending me Microsoft Office attachments.
See http://www.newsforge.com/software/04/03/27/0134204.shtml


------------------------------------------------------- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click _______________________________________________ Clamav-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/clamav-users

Reply via email to