Hierarchical topology in Kibana Graph - Is it possible to construct a hierarchical topology?

Is it possible to construct a hierarchical topology, and if so, how do users pass data for that?

1 Like

You can try using Graphs as shown in the picture below.

Or you can use the Vega Visualization type to construct a similar kind of view.

Thank you for your quick reply, Yes, I'm trying to use the Graph Feature in Kibana for hierarchical topology, but I'm having trouble figuring out how to transfer the data with parent-child relationships.
Eg:

[{
    "number": "1",
    "name": "John",
    "Category": "Sales",
    "date": "2022-12-12T04:13:47Z"
},
{
     "number": "2",
    "name": "Jorge",
    "Category": "Manager",
    "date": "2022-12-12T04:13:47Z"
},
{
    "number": "3",
    "name": "Games",
    "Category": "Pricing",
    "date": "2022-12-12T04:13:47Z"
},
{
    "number": "4",
    "name": "Gilbert",
    "Category": "Pricing",
    "date": "2022-12-12T04:13:47Z"
},
{
    "number": "5",
    "name": "Dan",
    "Category": "Billing",
    "date": "2022-12-12T04:13:47Z"
}]

Note : Here People under Manager category is parent and people under Sales & Pricing category are child, and people under billing are child of Pricing category.

Help me on how to pass the data for this parent-child relationship based on graph pattern.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.