Global Security Forum

Security Global Forum

Our mission is to provide clients with an online user community of industry peers and IBM experts, to exchange tips and tricks, best practices, and product knowledge. We hope the information you find here helps you maximize the value of your IBM Security solutions.

 View Only
  • 1.  Eps generated by a network in siem qradar

    Posted Tue February 14, 2023 11:40 AM

    Hey guys,

    I would like some help, I would like to know how many EPS a network sends to qRadar, but I would just like to know how many mps this particular network sends.

    For example, I have the 1010.0.x/24 network, but I couldn't generate a query that brings the average EPS correctly.

    Thanks already for the help.

    My regards.

    André



    ------------------------------
    André Dombrosque
    Service IT Security
    São Paulo
    ------------------------------


  • 2.  RE: Eps generated by a network in siem qradar

    Posted Wed February 15, 2023 05:29 AM

    This one should give you an overview for the last 6h grouped by SourceNetwork

    SELECT FULLNETWORKNAME(SourceIP, DomainID) as 'SourceNetwork',  
    UniqueCount("logsourceid") AS 'LogSources (Unique Count)', 
    UniqueCount(qid) AS 'Event Name (Unique Count)', 
    UniqueCount(category) AS 'Low Level Category (Unique Count)', 
    UniqueCount("sourceIP") AS 'Source IP (Unique Count)', 
    UniqueCount("destinationIP") AS 'Destination IP (Unique Count)', 
    UniqueCount("destinationPort") AS 'Destination Port (Unique Count)', 
    UniqueCount("userName") AS 'Username (Unique Count)', 
    MAX("magnitude") AS 'Magnitude (Maximum)', 
    SUM("eventCount") AS 'Event Count (Sum)', 
    SUM("eventCount") / (6*60*60) as "EPS" 
    from events 
    GROUP BY SourceNetwork
    order by "Event Count (Sum)" 
    desc last 6 hours



    ------------------------------
    Dusan VIDOVIC
    ------------------------------



  • 3.  RE: Eps generated by a network in siem qradar

    Posted Wed February 15, 2023 08:16 AM

    Hello Mr.VIDOVIC,

    Thank you for your help, the query informed worked.

    Best Regards,



    ------------------------------
    André Dombrosque
    Service IT Security
    São Paulo
    ------------------------------