Changes between Version 3 and Version 4 of ZeusInterface
- Timestamp:
- Mar 26, 2007, 10:56:56 AM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ZeusInterface
v3 v4 9 9 * '''__!ZeusLiveMessage__''' - This variable is continuously updated by Zeus to indicate it is alive and running 10 10 * '''__!ZeusError__''' - If Zeus operation is stopped because of the error this variable contains textual description of the error. Otherwise (if Zeus running in normal state) it contains empty string. 11 * '''__!ZeusLogGroups__''' - Provides information about all LogGroups configured within Zeus. Please, find format description below.11 * '''__!ZeusLogGroups__''' - Provides information about all !LogGroups configured within Zeus. Please, find format description below. 12 12 * '''__!ZeusDisable__''' - A boolean variable used to completely disable data logging. The logging is disabled If the variable value is true . 13 13 * '''__!ZeusCommand__''' - This variable is used to change Zeus configuration. The supported commands are listed below. 14 14 15 = Format of ZeusLogGroups Variable = 15 = Format of !ZeusLogGroups Variable = 16 The description is a text variable containing descriptions of separate !LogGroups separated (and terminated) by ';' sign: 17 {{{ 18 <LogGroup1>;<LogGroup2>;<LogGroup3>; 19 }}} 20 For each !LogGroup the ''Database ID'', ''Name'', ''Update Interval'' (in seconds) and ''On/Off Status'' are specified. The following format is used: 21 {{{ 22 <ID>,<LogGroup Name>,<Update Interval>,<Status> 23 }}} 16 24 25 The fields are separated by comas. To indicate ''On State'' the value of ''1'' should be specified in Status field and ''0'' is used for ''Off State''. The following example describes two !LogGroups: ''First Group'' and ''Second Group''. Both are switched on. The first one is updated once a second and second one - once a minute. 26 {{{ 27 1,First Group,1,1;2,Second Group,60,1; 28 }}} 29 17 30 = Supported Commands = 31