Page 1 of 1

incidents

Posted: 08 Aug 2011 10:16
by mboehringer
dear colleagues...

i'd need to write the incidents continously for a few weeks ( without outfall queue etc.). is a R.9.0 appliance, so i don't think it'd bother the performance ( just about 250 users ). could anyone get me a hint how to change that if possible @ all...

thanks in advance & best regards

Markus

Re: incidents

Posted: 09 Aug 2011 02:57
by tot3nkopf
You need Omnivista with Alarms license.

Re: incidents

Posted: 06 Sep 2011 10:26
by Egidio
Hallo Markus

you can also use a linux script like

Code: Select all

grep `date -u '+%d/%m/%y'` /usr4/incid/inc-3.txt |sort > /usr4/incid/daily/inc`date -u +%y%m%d`.txt
grep `date -u '+%d/%m/%y'` /usr4/incid/inc-2.txt |sort >> /usr4/incid/daily/inc`date -u +%y%m%d`.txt
grep `date -u '+%d/%m/%y'` /usr4/incid/inc-1.txt |sort >> /usr4/incid/daily/inc`date -u +%y%m%d`.txt
grep `date -u '+%d/%m/%y'` /usr4/incid/inc.txt |sort >> /usr4/incid/daily/inc`date -u +%y%m%d`.txt

and run it by cronjob at night before 1 o'clock
(works this way only in Germany because of UTC!)
that gives you one file per day in a subdir called 'daily'
with all incidents of the last day even if 3 times shutdown occured.

I have my a4400 send me an email every mornig with a summary of last days incidents

hth

Br.Egidio