Creating a graph diagram
[ 1 Overview ] [ 2 How to create a graph diagram ] [ 3 Example ]
After querying the necessary data in the search window, click the gear icon on the toolbar and select Charts → Diagrams → Graph diagram to start building your graph.
Overview
During the creation process of the graph, each field you add to the workspace (that is, every group of nodes in the final graph) is represented as an object defined by 3 factors: type, name and attributes.
How to create a graph diagram
Example
In the following example, we will create a graph diagram using the data from the following query:
from netstat.netflow.lt
select mmcoordinates(srcIp) as srcPos,
mmcoordinates(dstIp) as dstPos,
mmcountry(srcIp) as srcCountry,
mmcountry(dstIp) as dstCountry
group every 5m by srcIp, dstIp, srcPos, dstPos, srcCountry, dstCountry
every 5m
select count() as count
For a use case on how to build a graph diagram to detect and analyze accesses to malicious sites, see the Monitor intranet traffic to dangerous websites use case.