Support Forum
The Forums are a place to find answers on a range of Fortinet products from peers and product experts.
Mikael_A
New Contributor II

Total number of intrusions blocked/total

Hello!

Is there any way to easy see the total number of intrusions blocked vs the detected total?

Right now, without any breakdown we have the and the Intrusions Detected/By Types & Intrusions Blocked. The problem is that we manually have to add the Blocked up to the total in the Detected section per Intrusion. Just to make sure it´s 100% blocked vs detedted. Or we have to look @the Intrusions Monitored section to see if that is empty.

 

1 REPLY 1
hzhao_FTNT
Staff
Staff

Hi there, you can create a pie chart based on below query:

log type: attack

select (case when (nullifna(attack) is not null and action in ('deny', 'blocked', 'reset', 'dropped')) then 'Blocked' when nullifna(attack) is not null then 'Detected' else 'Others' end) as status, count(*) as total_num from $log where $filter and nullifna(attack) is not null group by status

 

regards,

hz

Labels
Top Kudoed Authors