DetectorType
- Last UpdatedMar 10, 2025
- 1 minute read
Contains one row for each type of event detector.
|
Column |
Data Type |
Description |
|---|---|---|
|
(PK) DetectorTypeKey |
int NOT NULL |
The unique identifier of a particular type of detector. Event tags and detectors are linked by means of this key. The event system relies on the following values, which are added during installation: 1 = System; 2 = External event; 3 = Generic SQL; 4 = Analog specific value; 5 = Discrete specific value; 6 = Time-based (schedule). This value is automatically generated when a new detector is created. |
|
Name |
nvarchar(33) NOT NULL |
The name given to the type of detector. |
|
Description |
nvarchar(50) NULL |
The description of the detector. |
|
EditorClassName |
nvarchar(80) NULL |
The name by which the component is referenced by a client application, such as the Operations Control Management Console, in order to provide a visual representation. |
|
DetectorClassName |
nvarchar(80) NULL |
The name by which the detector component (COM object) is referenced in the system in order to perform the detection. |
|
ExecutionMode |
tinyint NOT NULL |
Used to specify the manner in which the detector executes. 0 = Executed cyclically by the event subsystem according to the event tag scan rate; 1 = Asynchronous and triggered by an external mechanism. The default is 0. |