Question : CISCO IPS MANAGER EXPRESS EVENT DASHBOARD IS EMPTY

Recently I upgraded cisco ASA 5520 - AIP-SSM-10 image  to 7.03 (E4) . earlier it was running on 7.02 (E3) .  everything is working aftter the upgrade ,except gadgets in Event dash boards. expecially top attacker,top signatures etc.
showing " no data available to display"

But if i generate a report seprately  then I can see all the hits. only the event dash board gadgets are not getting any inputs.

see the attached image for details
is there any work around to solve this issue.
Attachments:
 
IME SCREEN SHOT
IME SCREEN SHOT
 

Answer : CISCO IPS MANAGER EXPRESS EVENT DASHBOARD IS EMPTY

There are a couple of ways to do this

For character strings:
  * --- Is It In The Search String ---
  cThisMonth = "July"
  INLIST(cThisMonth,'July','August','September')
        or
  * --- Is It In The Search String ---
  cThisString = 'ABC'
  cThisString $  "UYTUYTOILHKGUABCLKLJKJK")
        or
   * --- Find How Often It Occurs In The Search String ---
  cThisString = 'ABC'
  OCCURS(cThisString,  "UYTUYTOILHKGUABCLKLJKJK")
        or
   * --- Find Where It Occurs In The Search String ---
   cThisString = 'ABC'
  AT(cThisString,   "UYTUYTOILHKGUABCLKLJKJK")

For numbers
  * --- Is It In The Search Number List ---
  nThisNumber = 12
 INLIST(nThisNumber,1,2,3,4,5,6,7,10,11,12,13,14)

You should look into your VFP Help files for further explanation of each function / operator.

Good Luck

Random Solutions  
 
programming4us programming4us