<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE lire:report-spec PUBLIC
  "-//LogReport.ORG//DTD Lire Report Specification Markup Language V2.0//EN"
  "http://www.logreport.org/LRSML/2.0/lrsml.dtd">
<lire:report-spec xmlns:lire="http://www.logreport.org/LRSML/"
 superservice="firewall" id="top-dst-by-msg">

 <lire:title>Top Messages Firewall Report</lire:title>
 <lire:description>
  <para>This report shows the top destination IPs that are the target of
   the messages (IDS alerts or others) generated by the firewall.
  </para>
 </lire:description>

 <lire:param-spec>
  <lire:param name="msgs_to_show" type="int">
   <lire:description>
    <para>This parameter controls the number of messages to show in
     the report.</para>
   </lire:description>
  </lire:param>

  <lire:param name="ips_to_show" type="int">
   <lire:description>
    <para>This parameter controls the number of destination IPS to list
     with each message.
    </para>
   </lire:description>
  </lire:param>
 </lire:param-spec>


 <lire:display-spec>
  <lire:title>Destination IPs by Message, Top $ips_to_show, Top
  $msgs_to_show messages</lire:title>
 </lire:display-spec>

 <lire:filter-spec>
  <lire:ne arg1="$msg" arg2="-"/>
 </lire:filter-spec>

 <lire:report-calc-spec>
  <lire:group sort="-msg_count" limit="$msgs_to_show">
   <lire:field name="msg"/>

   <lire:group sort="-msg_count" limit="$ips_to_show">
    <lire:field name="to_ip"/>

    <lire:sum name="msg_count" field="count" label="Count"/>
    <lire:sum name="msg_count_ratio" field="count" ratio="table" label="% Total"/>
    <lire:sum name="msg_count_group_ratio" field="count" ratio="group" label="% Message"/>
   </lire:group>
  </lire:group>
 </lire:report-calc-spec>

</lire:report-spec>

<!--
Keep this comment at the end of the file
Local variables:
mode: xml
-->
