OEE:GUI: Linked Monitor Features

Features

The Monitor allows operations staff to see the health of the MES with respect to call frequency, latency, and connectivity.

View Statistics on MES Monitor Component

Show equipment hierarchy on current server as well as several monitoring details (DB stats, live analysis).

  • Examine various analysis response times, as well as object load and save times for various parts of the object model.

  • Look at your previous Live Analysis runs (example image to the right).

  • Using the script below, measure the duration of a Live Analysis:
    • Start a Custom Timer.
    • Run Analysis.
    • Stop the timer.

Script to Time a Live Analysis

Code
#Create a Custom Timer
timer = system.mes.monitor.start("exampleAnalysisTimer")  

#Execute Analysis Example
system.mes.analysis.executeAnalysis()

#Stop the timer
timer.end()