Event Log

Version 5.1 by Mark Kohlmann on 2020/04/08 04:43

SHOWRUNNER™'s event log logs system activities to text files and/or the console.  The event log is disabled by default but it can be enabled if desired.  We do not recommend leaving logging on unless necessary.

Setup

  • If saving to files, insert an SD card or use a USB memory card
  • Connect to the text console (SSH Recommended)
  • Enable event log methods
    • Enable Logging to Console: sr eventlog console true
    • Enable Logging to File: sr eventlog file true
  • Enable event log: sr eventlog true
  • Files are saved by default to: \RM\ShowRunner\(ProcessorHostname)\Log\EventLog
  • View the Event Log Status: sr eventlog status

RMC3>sr eventlog status
+----------------+-----------------------------------------+
| Property       | Value                                   |
+----------------+-----------------------------------------+
| Enabled        | False                                   |
+----------------+-----------------------------------------+
| Log to Console | True                                    |
+----------------+-----------------------------------------+
| Log to File    | True                                    |
+----------------+-----------------------------------------+
| Log File Path  | \RM\ShowRunner\CI-SJC-RMC3\Log\EventLog |
+----------------+-----------------------------------------+

File Format

  • File is saved in a csv (comma separated values) format
  • Files are saved incrementally: EventLog_2020-02-21T11-56-21_###.csv where 2020-02-21T11-56-21 is the program start time and ### is the index of the file, starting at 000.
  • Once the file reaches 2MB it will automatically be zipped and a new file will be created and the index will be incremented.
  • Text qualifier is not used.
  • Columns:
    AppID,Timestamp,Type,GlobalId,Name,Message,Value
    • AppID - The app number on the control system that logged the message
    • Timestamp - Timestamp of the log entry in YYYY-MM-DDTHH:MM:SSTZ format. Example: 2020-02-21T11:57:21-06:00
    • Type - Type of object logging the message
    • GlobalId - Unique Id of the object logging the message
    • Name - Name of the object logging the message
    • Message - Type of value to expect
    • Value - Current state of the type

Notes

  • Before removing the SD card stop the event log: sr eventlog off

Examples