FortiSIEM
FortiSIEM provides Security Information and Event Management (SIEM) and User and Entity Behavior Analytics (UEBA)
calvinc97
Staff
Staff
Article Id 370268
Description This article describes how to distinguish Node Types in the FortiSIEM backend.
Scope

FortiSIEM.

Solution

The below lists the information identification of the node types in the FortiSIEM backend:

 

Supervisor ----> nodetype = 0 

Worker      ----> nodetype = 1

Collector    ----> nodetype = 2

 

Run the CLI commands below in supervisor SSH:

 

# psql -U phoenix -d phoenixdb

# select host_ip, host_name, nodetype from ph_health_status;

 

Example Output:

 

host_ip | host_name | nodetype
-------------+------------------+----------
10.47.48.10 | supercollector | 2
10.47.48.8 | fsiem_supervisor | 0
10.47.48.7 | az_col1 | 2
10.47.48.9 | fsiem_worker | 1
10.47.48.11 | supercollector1 | 2

Contributors