TelnetHelper.telnetHelperconfig database table
The TelnetHelper.telnetHelperconfig database table configures the operation of the Telnet Helper.
The TelnetHelper.telnetHelperconfig database table is described in the following table.
Column name |
Constraints |
Data type |
Description |
|---|---|---|---|
m_HelperDbTimeout |
UNIQUE |
Long64 |
The helper database timeout, that is, how long before the database expires. |
optional |
Integer |
Sets the debug level of the helper, printing to m_HelperLogfile. |
|
optional |
Object type varbinds |
List of helper inputs that do not query the database. This field overrides m_HelperDoWeQuery. |
|
optional |
Object type varbinds |
List of helper inputs that never store data in the Helper Server databases. This field overrides m_HelperDoWeStore. |
|
optional |
Object type varbinds |
List of helper inputs that always query the database before querying the network. If the item is found in the database then the network is not queried. |
|
optional |
Object type varbinds |
List of helper inputs that always store data
in the Helper Server database. This field overrides |
|
|
Integer |
Indicates whether the Helper Server queries
its database or whether it queries the network using a helper:
|
|
|
Integer |
Indicates whether the Helper Server stores any
replies from the helpers in its database:
|
|
optional |
Text |
The full path and file for the logfile of the current helper. |
|
|
Long64 |
The helper request timeout, that is, how long before each request expires. |
|
|
Long64 |
The default helper start-up timeout, that is, the maximum time to wait for a helper to start up when requested. |
Telnet helper database configuration
The following example insert gives a typical configuration of the Telnet helper database.
insert into TelnetHelper.TelnetHelperConfig
(
m_HelperDbTimeout,
m_HelperReqTimeout,
m_HelperStartupTimeout,
m_HelperDoWeQuery,
m_HelperDoWeStore
)
values
(
259200, 1200, 90, 0, 0
);