Trisul Hub Configuration File

All configuration parameters for the Trisul Hub are stored in a single XML file called trisulHubConfig.xml.

Location:


/usr/local/etc/trisul-hub/domain0/hub0/trisulHubConfig.xml

for context named data1 the path would be …hub0/context_data1/trisulHubConfig.xml

Root privileges needed to edit

Sections

Click on a section to see the config parameters inside that section.
Section What part of trisul does it configure
App The hub process level params
Logging Logging policy – file sizes and rotation
StatsEngine Database cluster tuning
Server For TRP – server parameters
Probes List of probes allowed to connect and mapping to layers
DBTasks Setting for various database maintenance tasks

App

Settings for the Trisul daemon process

Commonly modified parameters are Setuid, TrisulMode, LicenseFile
Parameters Defaults Description
User trisul.trisul Which user/group should trisul run as after dropping root privileges.
TempFolder /tmp
DBRoot /usr/local/var/lib/trisul-hub/ domain0/hub0/context0 The base directory under which Trisul stores all its data.
TrafficDBRoot /usr/local/var/lib/trisul/domain0 /hub0/context0/meters The directory under which Trisul stores traffic and flow statistics.
ConfigDB /usr/local/var/lib/trisul/ domain0/hub0/context0/ config/TRISULCONFIG.SQDB Location of the configuration database.
BinDirectory /usr/local/bin Where trisul looks for executable binaries
DataDirectory /usr/local/share/trisul-hub Data files
LicenseFile /usr/local/etc/trisul-hub/LicenseKey.txt Location of the license file.
DebugMode false Debug mode is used when trying to develop LUA probe scripts. If DebugMode == True then all streaming metrics from all probes are just sunk to /dev/null. Hence this is used for probe testing

Logging

The two components in a Hub node are flushers and query servers. This section configures their log files with prefix fs and qs respectively.

Parameters Defaults Description
Logdir /usr/local/var/log/trisul Where the log files are stored.
Logfile ns-???.log Log file pattern. The default is ns-001.log, ns-002.log, etc.
LogRotateSize 5000000 Size of each log file is allowed to grow to this size before Trisul moves to the next file.
LogRotateCount 5 The number of files in the log ring.
FlusherLogFile fs-???.log log file pattern.
FlusherLogLevel DEBUG All messages higher than this level are logged. The available log levels in order of severity (most severe one first is).
EMERG
FATAL
ALERT
CRIT
ERROR
WARN — this level after a few weeks of smooth running
NOTICE
INFO
DEBUG — Recommended default level
FlusherLogRotateSize 5000000 Max size of each log file
FlusherogRotateCount 5 Number of files in ring
TrpLogFile qs-???.log log file pattern.
TrpLogLevel DEBUG log level
TrpLogRotateSize 5000000 Max size of each log file
TrpogRotateCount 5 Number of files in ring

StatsEngine

Controls the database storage and retention policy for Trisul.

Parameters Defaults Description
FTSFlushBudget 5 Trisul FTS (Full Text Resources) need to complete the Flush operation within these many seconds. Since Trisul is a Real time system, we have a total about about 60 seconds for the entire snapshot window to flush.
JournalMode WAL Trisul Resources are stored in SQLITE3 leaf nodes.
OfflineAnalysisQueueSize 2000000 When importing PCAPs or other offline formats, this parameter controls the Hi Water mark of the items on the queue of the Hub. This helps to control memory usage on the Hub Node.

SlicePolicy

Controls data location and retention policy.

Parameters Defaults Description
SliceWindow DAILY How much data is contained in a single slice. The available choices are :
HOURLY From 00 Min to 59 Min every hour
DAILY From 12:00 AM to 11:59 PM every day

Operational

Parameters Defaults Description
SliceCount 32 32 slices are kept in the operational area. Combined with the default SliceWindow of DAILY. This means 32 days worth of data in the oper area. Slices older than 32 days will slide over to the reference area.

Reference

Parameters Defaults Description
SliceCount 32 Controls how many slices are kept in the reference area. If you set this to 0, the slices will then move straight from operational to archive.

Archive

For long term storage mostly for compliance purposes.

Parameters Defaults Description
SliceCount 32 Controls how many slices are kept in the archive area. If you set this to 0, slices move directly to /dev/null (ie are deleted).

Flushers

This section controls how many backend flushers are used. The default number of flushers used by Trisul is TWO. This is an advanced tuning parameter. You can increase the number of flushers up to eight for large to very large deployments of Trisul.

Parameters Defaults Description
ServerImage Path to trisul_flushd
PIDFile Where the PID for the running trisul_flushd process is stored
AutoStart true Automatically start flushd process
ControlChannel Internal IPC channel
Flushers For each flusher instance specify the connection and DB instance number. Sequentially from 0..8 (MAX)

Server

Controls the TRP Server Process used for database querying functionality. The process that provides the query API is called trisul_trpd@

Parameters Defaults Description
ZmqConnection The port running the TRP Protocol where you can connect and query the trisul database. By default, this is an IPC socket ipc:///usr/local/var/lib/trisul-hub/domain0/hub0/context0/run/trp_0. You can change this parameter to allow a remote TCP connection.

Example: To allow queries using TCP Port 12004


  1. Change this parameter to tcp://10.0.0.23:12004 where 10.0.0.23 is the IP address of the HUB node

  2. Then restart the context like so trisulctl_hub restart context default@hub0

PIDFile Where the PID of the running trisul_trpd process is stored
NumServers 6 Number of backend servers to start.
ParallelQueries false Whether parallel queries must be turned on for all queries. The defautl is false, use this only when you have the database stored on different spindles.

Probes

Add probes that are allowed to connect to this context.

Each probe is a line with the following details.

Parameters Defaults Description
Layer Layer number allocated to the probe.
ProbeID ProbeID eg, probe0 this probe must be authenticated by a CURVE certificate earlier for the domain this hub belongs to. See trisulctl_hub install probe

DBTasks

Control the various database maintenance tasks.

Archiver

Archiver is responsible for sliding old data.

Parameters Defaults Description
Enable TRUE Archiving is enabled

SummSlice

Slices data is summarized so that reporting on total entities are fast.

Parameters Defaults Description
Enable TRUE Archiving is enabled

CacheBuild

Used in large deployments. Frequently used keys are separately indexed to improve large time window time series operations.

Parameters Defaults Description
Enable TRUE Archiving is enabled
TopKeyCount 25 The top 25 keys in each metric can be selected for faster retrieval
InKeyCount 100 In addition to the toppers, these many keys can be selected for caching

ResolveIP

This section controls the automatic IP address resolver.

How IP Address resolution works

  • In Packet Capture mode , all IP address to hostnames are harvested from DNS packets automatically
  • In Netflow mode , the most important IP addresses that appears in “topper lists” are resolved using DNS lookup.

The section ResolveIP is shown below.



    <ResolveIP>
        <Enable> True </Enable>
        <Debug> True </Debug>
        <Candidates>
            <Internal>100</Internal>
            <External>25</External>
        </Candidates>
        <AlwaysRefreshInternal>false</AlwaysRefreshInternal>
        <AlwaysRefreshExternal>false</AlwaysRefreshExternal>
    </ResolveIP>

Parameters Defaults Description
Enable TRUE Most important / visible IPs are resolved using DNS lookup
Debug TRUE Prints resolved IPs for debugging purposes in t_resolveip.log file
Candidates Number of Top-K items per meter for Internal IPs vs External IPs. Internal IPs are those which fall into your Home Network
AlwaysRefreshExternal false Do a full refresh of External IPs. Normally, the resolver does not keep trying to resolve IPs that fail to resolve or those IPs which have already been recently resolved.
AlwaysRefreshInternal false Do a full refresh of Internal IPs. Use this option if you have an enterprise with dynamically changing IP → User names.

CleanPersist

Older data that persist over a long period of time are actively aged out. The algoritm is random deletion of 5-10% of the keys.

Parameters Defaults Description
Enable TRUE Archiving is enabled