{ "custom": {}, "params": { "tagProps": [ "", "value", "value", "value", "value", "value", "value", "value", "value", "value" ] }, "propConfig": { "params.tagProps": { "paramDirection": "input", "persistent": true } }, "props": { "defaultSize": { "height": 447, "width": 917 } }, "root": { "children": [ { "children": [ { "children": [ { "children": [ { "meta": { "name": "Spacer1" }, "position": { "basis": "20px" }, "type": "ia.display.label" }, { "meta": { "name": "NameField" }, "position": { "basis": "50px" }, "props": { "text": "NAME" }, "type": "ia.display.label" }, { "meta": { "name": "Spacer" }, "position": { "basis": "100px" }, "type": "ia.display.label" }, { "meta": { "name": "DeviceName" }, "position": { "basis": "205px" }, "propConfig": { "props.text": { "binding": { "config": { "path": "view.params.tagProps[0]" }, "type": "property" } } }, "props": { "style": { "classes": "Text-Styles/Ariel-Bold-12pt" } }, "type": "ia.display.label" } ], "meta": { "name": "Name" }, "position": { "basis": "35px" }, "props": { "style": { "classes": "PopUp-Styles/InfoLabel" } }, "type": "ia.container.flex" }, { "children": [ { "meta": { "name": "Spacer1" }, "position": { "basis": "20px" }, "type": "ia.display.label" }, { "meta": { "name": "NameField" }, "position": { "basis": "50px" }, "props": { "text": "STATUS" }, "type": "ia.display.label" }, { "meta": { "name": "Spacer" }, "position": { "basis": "100px" }, "type": "ia.display.label" }, { "meta": { "name": "Priority" }, "position": { "basis": "205px" }, "propConfig": { "props.style.classes": { "binding": { "config": { "expression": "{/root.custom.state}" }, "transforms": [ { "fallback": "State-Styles/State0", "inputType": "scalar", "mappings": [ { "input": 1, "output": "State-Styles/Background-Fill/State1" }, { "input": 2, "output": "State-Styles/Background-Fill/State2" }, { "input": 3, "output": "State-Styles/Background-Fill/State3" }, { "input": 4, "output": "State-Styles/Background-Fill/State4" }, { "input": 5, "output": "State-Styles/Background-Fill/State5" }, { "input": 6, "output": "State-Styles/Background-Fill/State6" }, { "input": 0, "output": "State-Styles/State0" } ], "outputType": "style-list", "type": "map" } ], "type": "expr" } }, "props.text": { "binding": { "config": { "expression": "{/root.custom.state}" }, "transforms": [ { "fallback": "", "inputType": "scalar", "mappings": [ { "input": 1, "output": "Aborted" }, { "input": 2, "output": "Stopped" }, { "input": 3, "output": "Process alarm" }, { "input": 4, "output": "Warning" }, { "input": 5, "output": "Running" } ], "outputType": "scalar", "type": "map" } ], "type": "expr" } } }, "props": { "style": { "textAlign": "left" } }, "type": "ia.display.label" } ], "meta": { "name": "Priority" }, "position": { "basis": "35px" }, "props": { "style": { "classes": "PopUp-Styles/InfoLabel" } }, "type": "ia.container.flex" }, { "children": [ { "meta": { "name": "NameField" }, "position": { "basis": "82px" }, "type": "ia.display.label" } ], "meta": { "name": "Priority_0" }, "position": { "basis": "35px" }, "props": { "style": { "classes": "PopUp-Styles/InfoLabel" } }, "type": "ia.container.flex" } ], "meta": { "name": "FlexContainer_0" }, "position": { "basis": "100px", "grow": 1 }, "props": { "direction": "column" }, "type": "ia.container.flex" } ], "meta": { "name": "Info_tab" }, "position": { "tabIndex": 1 }, "props": { "direction": "column" }, "type": "ia.container.flex" }, { "children": [ { "custom": { "delay": 2000 }, "events": { "component": { "onRowDoubleClick": { "config": { "script": "\tnavigation.alarm_navigation.navigate_to_alarm(self, event)" }, "scope": "G", "type": "script" } } }, "meta": { "name": "AlarmTable" }, "position": { "basis": "623px", "grow": 1 }, "propConfig": { "custom.run_update": { "binding": { "config": { "path": "view.params.tagProps[9]" }, "type": "property" } }, "custom.update": { "binding": { "config": { "expression": "now({this.custom.delay})" }, "type": "expr" }, "onChange": { "enabled": null, "script": "\timport time\n\tfrom datetime import datetime\n\tstartTime \u003d datetime.now()\n\t\n\tdef convert(duration):\n\t\tsecs \u003d duration/1000\n\t\treturn time.strftime(\"%H:%M:%S\", time.gmtime(secs))\n\t\n\tdef empty_table():\n\t\treturn [[]]\n\n\talarms_data \u003d []\n\talarms_critical \u003d []\n\talarms_high \u003d []\n\talarms_medium \u003d []\n\talarms_low \u003d []\n\talarms_diagnostic \u003d []\n\talarm_temp_dict \u003d {}\n\tstyle_props_critical \u003d {\"classes\":\"Alarms-Styles/Critical\"}\n\tstyle_props_high \u003d {\"classes\":\"Alarms-Styles/High\"}\n\tstyle_props_medium \u003d {\"classes\":\"Alarms-Styles/Medium\"}\n\tstyle_props_low \u003d {\"classes\":\"Alarms-Styles/Low\"}\n\tstyle_props_diagnostic \u003d {\"classes\":\"Alarms-Styles/Diagnostic\"}\n\n\tif self.custom.run_update:\n\t\tif system.tag.exists(\"System/ActiveAlarms\"):\n\t\t\t\t\n\t\t\talarm_data \u003d system.tag.readBlocking([\"System/ActiveAlarms\"])\n\t\t\talarm_data \u003d alarm_data[0].value\n\t\t\tdecode_alarm_data \u003d system.util.jsonDecode(alarm_data)\n\t\t\tdevice_name \u003d self.view.params.tagProps[0]\n\t\n\t\t\tif len(decode_alarm_data) \u003e 0:\n\t\n\t\t\t\tfor i in decode_alarm_data:\n\t\t\t\t\tif str(decode_alarm_data[i][\"DisplayPath\"]).startswith(device_name):\n\t\t\t\t\t\tif decode_alarm_data[i].get(\"Priority\") \u003d\u003d 4:\n\t\t\t\t\t\t\tstyle_class \u003d style_props_critical\n\t\t\t\t\t\t\tseverity \u003d \"4. Critical\"\n\t\t\t\t\t\t\tkey \u003d \"Critical\"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\telif decode_alarm_data[i].get(\"Priority\") \u003d\u003d 3:\n\t\t\t\t\t\t\tstyle_class \u003d style_props_high\n\t\t\t\t\t\t\tseverity \u003d \"3. High\"\n\t\t\t\t\t\t\tkey \u003d \"High\"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\telif decode_alarm_data[i].get(\"Priority\") \u003d\u003d 2:\n\t\t\t\t\t\t\tstyle_class \u003d style_props_medium\n\t\t\t\t\t\t\tseverity \u003d \"2. Medium\"\n\t\t\t\t\t\t\tkey \u003d \"Medium\"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\telif decode_alarm_data[i].get(\"Priority\") \u003d\u003d 1:\n\t\t\t\t\t\t\tstyle_class \u003d style_props_low\n\t\t\t\t\t\t\tseverity \u003d \"1. Low\"\n\t\t\t\t\t\t\tkey \u003d \"Low\"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\telif decode_alarm_data[i].get(\"Priority\") \u003d\u003d 0:\n\t\t\t\t\t\t\tstyle_class \u003d style_props_diagnostic\n\t\t\t\t\t\t\tseverity \u003d \"0. Warning\"\n\t\t\t\t\t\t\tkey \u003d \"Diagnostic\"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\tduration \u003d decode_alarm_data[i].get(\"Duration\")\n\t\t\t\t\t\tconverted_time \u003d convert(duration)\n\t\t\t\t\t\tdisplay_path \u003d decode_alarm_data[i].get(\"DisplayPath\")\n\t\t\t\t\t\ttime_stamp \u003d decode_alarm_data[i].get(\"TimeStamp\")\n\t\t\t\t\t\tudt_path \u003d decode_alarm_data[i].get(\"UDT_tag\")\n\t\t\t\t\t\tvendor_id \u003d decode_alarm_data[i].get(\"AddInfo\")\n\t\t\t\t\t\tname \u003d decode_alarm_data[i].get(\"Name\")\n\t\t\t\t\t\talarm_id \u003d i\n\t\t\t\t\t\t\n\t\t\t\t\t\trow\u003d row_builder.build_row(DisplayPath \u003d display_path, Duration \u003d converted_time,\n\t\t\t\t\t\tSeverity \u003d severity, Timestamp \u003d time_stamp, VendorId \u003d vendor_id,\n\t\t\t\t\t\tName \u003d name, AlarmId \u003d alarm_id, StyleClass \u003d style_class)\n\t\t\t\t\t\t\n\t\t\t\t\t\tif alarm_temp_dict.get(udt_path,\"None\") \u003d\u003d \"None\":\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\talarm_temp_dict[udt_path]\u003d {}\n\t\t\t\t\t\t\n\t\t\t\t\t\tif alarm_temp_dict.get(udt_path,{}).get(key,\"None\") \u003d\u003d \"None\":\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\talarm_temp_dict[udt_path][key]\u003d[]\n\t\t\t\t\t\t\n\t#\t\t\t\t\t\tsystem.perspective.print(alarm_temp_dict)\n\t\t\t\t\t\talarm_temp_dict[udt_path][key].append(row)\n\t\t\t\t\t\t\n\t\t\t\t\n\t\t\t\tfor i in alarm_temp_dict:\n\t#\t\t\t\t\tsystem.perspective.print(alarm_temp_dict[i].get(\"Critical\",\"None\"))\t\t\t\t\n\t\t\t\t\tif alarm_temp_dict[i].get(\"Critical\",\"None\") !\u003d \"None\":\n\t\t\t\t\t\talarms_critical +\u003d alarm_temp_dict[i].get(\"Critical\")\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telif alarm_temp_dict[i].get(\"High\",\"None\") !\u003d \"None\":\n\t\t\t\t\t\talarms_high +\u003d alarm_temp_dict[i].get(\"High\")\n\t\t\t\t\t\n\t\t\t\t\telif alarm_temp_dict[i].get(\"Medium\",\"None\") !\u003d \"None\":\n\t\t\t\t\t\talarms_medium +\u003d alarm_temp_dict[i].get(\"Medium\")\n\t\t\t\t\t\n\t\t\t\t\telif alarm_temp_dict[i].get(\"Low\",\"None\") !\u003d \"None\":\n\t\t\t\t\t\talarms_low +\u003d alarm_temp_dict[i].get(\"Low\")\n\t\t\t\t\t\n\t\t\t\t\telif alarm_temp_dict[i].get(\"Diagnostic\",\"None\") !\u003d \"None\":\n\t\t\t\t\t\talarms_diagnostic +\u003d alarm_temp_dict[i].get(\"Diagnostic\")\n\t\t\t\t\t\t\n\t\t\t\talarms_data \u003d alarms_critical + alarms_high + alarms_medium + alarms_low + alarms_diagnostic\n\t#\t\t\t\tsystem.perspective.print(alarms_data)\n\t\t\t\tself.props.data \u003d alarms_data\n\t\t\t\t\t\n\t\t\t\t\n\t\telse:\n\t\t\tself.props.data \u003d empty_table()" } } }, "props": { "columns": [ { "align": "center", "boolean": "checkbox", "dateFormat": "MM/DD/YYYY", "editable": false, "field": "Name", "footer": { "align": "center", "justify": "left", "style": { "classes": "" }, "title": "" }, "header": { "align": "center", "justify": "left", "style": { "classes": "" }, "title": "" }, "justify": "auto", "number": "value", "numberFormat": "0,0.##", "progressBar": { "bar": { "color": "", "style": { "classes": "" } }, "max": 100, "min": 0, "track": { "color": "", "style": { "classes": "" } }, "value": { "enabled": true, "format": "0,0.##", "justify": "center", "style": { "classes": "" } } }, "render": "auto", "resizable": true, "sort": "none", "sortable": true, "strictWidth": false, "style": { "classes": "" }, "toggleSwitch": { "color": { "selected": "", "unselected": "" } }, "viewParams": {}, "viewPath": "", "visible": true, "width": 100 }, { "align": "center", "boolean": "checkbox", "dateFormat": "MM/DD/YYYY", "editable": false, "field": "Duration", "footer": { "align": "center", "justify": "left", "style": { "classes": "" }, "title": "" }, "header": { "align": "center", "justify": "left", "style": { "classes": "" }, "title": "" }, "justify": "auto", "number": "value", "numberFormat": "0,0.##", "progressBar": { "bar": { "color": "", "style": { "classes": "" } }, "max": 100, "min": 0, "track": { "color": "", "style": { "classes": "" } }, "value": { "enabled": true, "format": "0,0.##", "justify": "center", "style": { "classes": "" } } }, "render": "auto", "resizable": true, "sort": "none", "sortable": true, "strictWidth": false, "style": { "classes": "" }, "toggleSwitch": { "color": { "selected": "", "unselected": "" } }, "viewParams": {}, "viewPath": "", "visible": true, "width": 50 }, { "align": "center", "boolean": "checkbox", "dateFormat": "MM/DD/YYYY", "editable": false, "field": "Severity", "footer": { "align": "center", "justify": "left", "style": { "classes": "" }, "title": "" }, "header": { "align": "center", "justify": "left", "style": { "classes": "" }, "title": "" }, "justify": "auto", "number": "value", "numberFormat": "0,0.##", "progressBar": { "bar": { "color": "", "style": { "classes": "" } }, "max": 100, "min": 0, "track": { "color": "", "style": { "classes": "" } }, "value": { "enabled": true, "format": "0,0.##", "justify": "center", "style": { "classes": "" } } }, "render": "auto", "resizable": true, "sort": "none", "sortable": true, "strictWidth": false, "style": { "classes": "" }, "toggleSwitch": { "color": { "selected": "", "unselected": "" } }, "viewParams": {}, "viewPath": "", "visible": true, "width": 50 }, { "align": "center", "boolean": "checkbox", "dateFormat": "MM/DD/YYYY", "editable": false, "field": "Timestamp", "footer": { "align": "center", "justify": "left", "style": { "classes": "" }, "title": "" }, "header": { "align": "center", "justify": "left", "style": { "classes": "" }, "title": "" }, "justify": "auto", "number": "value", "numberFormat": "0,0.##", "progressBar": { "bar": { "color": "", "style": { "classes": "" } }, "max": 100, "min": 0, "track": { "color": "", "style": { "classes": "" } }, "value": { "enabled": true, "format": "0,0.##", "justify": "center", "style": { "classes": "" } } }, "render": "auto", "resizable": true, "sort": "none", "sortable": true, "strictWidth": false, "style": { "classes": "" }, "toggleSwitch": { "color": { "selected": "", "unselected": "" } }, "viewParams": {}, "viewPath": "", "visible": true, "width": "" }, { "align": "center", "boolean": "checkbox", "dateFormat": "MM/DD/YYYY", "editable": false, "field": "VendorId", "footer": { "align": "center", "justify": "left", "style": { "classes": "" }, "title": "" }, "header": { "align": "center", "justify": "left", "style": { "classes": "" }, "title": "" }, "justify": "auto", "number": "value", "numberFormat": "0,0.##", "progressBar": { "bar": { "color": "", "style": { "classes": "" } }, "max": 100, "min": 0, "track": { "color": "", "style": { "classes": "" } }, "value": { "enabled": true, "format": "0,0.##", "justify": "center", "style": { "classes": "" } } }, "render": "auto", "resizable": true, "sort": "none", "sortable": true, "strictWidth": false, "style": { "classes": "" }, "toggleSwitch": { "color": { "selected": "", "unselected": "" } }, "viewParams": {}, "viewPath": "", "visible": true, "width": "" }, { "align": "center", "boolean": "checkbox", "dateFormat": "MM/DD/YYYY", "editable": false, "field": "AlarmId", "footer": { "align": "center", "justify": "left", "style": { "classes": "" }, "title": "" }, "header": { "align": "center", "justify": "left", "style": { "classes": "" }, "title": "" }, "justify": "auto", "number": "value", "numberFormat": "0,0.##", "progressBar": { "bar": { "color": "", "style": { "classes": "" } }, "max": 100, "min": 0, "track": { "color": "", "style": { "classes": "" } }, "value": { "enabled": true, "format": "0,0.##", "justify": "center", "style": { "classes": "" } } }, "render": "auto", "resizable": true, "sort": "none", "sortable": true, "strictWidth": false, "style": { "classes": "" }, "toggleSwitch": { "color": { "selected": "", "unselected": "" } }, "viewParams": {}, "viewPath": "", "visible": false, "width": "" } ], "data": [ { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "9ffc0e5d-8cf1-4a0d-9521-594bd55387cd" }, "DisplayPath": { "value": "PLC01_1510_11_49/OPC/inAlarms0/5_Chute not active" }, "Duration": { "value": "00:06:59" }, "Name": { "value": "5_Chute not active" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-12 11:54:32" }, "VendorId": { "value": "\u003d01+1510.11.49" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "29a021f5-cd24-4cc3-bc8b-50ba99e5fb0a" }, "DisplayPath": { "value": "PLC60_1220_44_01/OPC/inAlarms0/0_Photo eye blocked" }, "Duration": { "value": "02:17:50" }, "Name": { "value": "0_Photo eye blocked" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-12 09:43:40" }, "VendorId": { "value": "\u003d60+1220.44.01-B206.0" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "f0b4bb7e-8a90-4a37-b2b1-1b40a8b22da9" }, "DisplayPath": { "value": "PLC09_1010_51_02/OPC/inAlarms0/0_Photo eye blocked" }, "Duration": { "value": "01:19:36" }, "Name": { "value": "0_Photo eye blocked" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-12 10:41:55" }, "VendorId": { "value": "\u003d09+1010.51.02-B811.6" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "31041a1d-0e60-49df-8343-4dc8fd71addc" }, "DisplayPath": { "value": "PLC08_2050_15_09/OPC/inAlarms0/8_Slack chain detection" }, "Duration": { "value": "12:06:12" }, "Name": { "value": "8_Slack chain detection" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-11 23:55:18" }, "VendorId": { "value": "\u003d08+2050.15.09" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "0af8e42f-3b41-4dd0-a5c9-31457343d138" }, "DisplayPath": { "value": "PLC40_1300_01_01/OPC/inAlarms0/0_Error rate at update too high" }, "Duration": { "value": "03:51:00" }, "Name": { "value": "0_Error rate at update too high" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-12 08:10:30" }, "VendorId": { "value": "\u003d40+1300.01.01-B602.2" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "279c06bb-fa62-452f-8cb6-7821e26db4b9" }, "DisplayPath": { "value": "PLC02_1510_11_01/OPC/inAlarms0/5_Chute not active" }, "Duration": { "value": "02:29:59" }, "Name": { "value": "5_Chute not active" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-10 09:31:32" }, "VendorId": { "value": "\u003d02+1510.11.01" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "e7fa9539-2805-4f6f-8906-3aa3ccbb5baa" }, "DisplayPath": { "value": "PLC51_1211_91_02/OPC/inAlarms0/1_Local motor starter error" }, "Duration": { "value": "00:05:26" }, "Name": { "value": "1_Local motor starter error" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-12 11:56:04" }, "VendorId": { "value": "\u003d51+1211.91.02-M1" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "cd60a658-cc9e-4c6c-a344-02f64cac30d3" }, "DisplayPath": { "value": "PLC70/OPC/inAlarms0/23_Power supply contactor error" }, "Duration": { "value": "02:29:59" }, "Name": { "value": "23_Power supply contactor error" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-10 09:31:31" }, "VendorId": { "value": "\u003d70+S01-KM003" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "e48406f1-f292-4e31-9eb6-16a04441b3aa" }, "DisplayPath": { "value": "PLC71/OPC/inAlarms0/0_Profinet node fault" }, "Duration": { "value": "02:29:59" }, "Name": { "value": "0_Profinet node fault" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-10 09:31:32" }, "VendorId": { "value": "\u003d71+PN212-A001" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "7187a1cd-c430-4dd4-bf8b-44edb5fe2206" }, "DisplayPath": { "value": "PLC71/OPC/inAlarms0/2_ASI-Gateway error" }, "Duration": { "value": "02:29:59" }, "Name": { "value": "2_ASI-Gateway error" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-10 09:31:32" }, "VendorId": { "value": "\u003d71+S01-A001" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "3f4afc70-4fd2-41b6-89e8-394644027469" }, "DisplayPath": { "value": "PLC71/OPC/inAlarms0/4_ASI-Gateway error" }, "Duration": { "value": "02:29:59" }, "Name": { "value": "4_ASI-Gateway error" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-10 09:31:32" }, "VendorId": { "value": "\u003d71+S01-A002" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "015c963c-eb92-4d86-b322-ef5ffaecd98d" }, "DisplayPath": { "value": "PLC09_1010_23_33/OPC/inAlarms0/0_Photo eye blocked" }, "Duration": { "value": "00:17:41" }, "Name": { "value": "0_Photo eye blocked" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-12 11:43:49" }, "VendorId": { "value": "\u003d09+1010.23.33-B222.0" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "e647c74c-a952-45bb-b18b-8e6c32fee8ef" }, "DisplayPath": { "value": "PLC60_1220_44_05/OPC/inAlarms0/0_Photo eye blocked" }, "Duration": { "value": "04:24:23" }, "Name": { "value": "0_Photo eye blocked" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-12 07:37:08" }, "VendorId": { "value": "\u003d60+1220.44.05-B206.4" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "0bc4bfed-efed-4310-ba28-e43fcf8df3e4" }, "DisplayPath": { "value": "ARSAW1408/OPC/inAlarms2/6_Photo eye blocked" }, "Duration": { "value": "00:04:06" }, "Name": { "value": "6_Photo eye blocked" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-12 11:57:24" }, "VendorId": { "value": "\u003dARSAW1408+05.22-B109.6" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "c62ab15f-7552-4ee8-bb3a-75ec1fb471ef" }, "DisplayPath": { "value": "PLC1000_1100_06_91/OPC/inAlarms0/2_No-Read rate at reading system too high" }, "Duration": { "value": "00:10:44" }, "Name": { "value": "2_No-Read rate at reading system too high" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-12 11:50:46" }, "VendorId": { "value": "\u003dP1000+1100.06.91.E01-U1" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "030d8d08-02a9-4dfa-a4a4-80d4300e9a1e" }, "DisplayPath": { "value": "ARSAW1404/OPC/inAlarms2/2_Photo eye blocked" }, "Duration": { "value": "00:06:24" }, "Name": { "value": "2_Photo eye blocked" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-12 11:55:07" }, "VendorId": { "value": "\u003dARSAW1404+05.13-B111.1" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "3a194b9f-8fdf-4b1e-b728-33174d7b3f04" }, "DisplayPath": { "value": "ARSAW1404/OPC/inAlarms2/3_Photo eye blocked" }, "Duration": { "value": "00:05:56" }, "Name": { "value": "3_Photo eye blocked" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-12 11:55:34" }, "VendorId": { "value": "\u003dARSAW1404+05.14-B111.2" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "47014921-2fe8-4c02-8658-27bf3d2bc0d3" }, "DisplayPath": { "value": "PLC02_1510_11_14/OPC/inAlarms0/5_Chute not active" }, "Duration": { "value": "00:11:34" }, "Name": { "value": "5_Chute not active" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-12 11:49:56" }, "VendorId": { "value": "\u003d02+1510.11.14" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "d53caa27-7164-446b-8673-3ce152946046" }, "DisplayPath": { "value": "PLC1000_1100_06_01/OPC/inAlarms0/0_Error rate at update too high" }, "Duration": { "value": "00:01:46" }, "Name": { "value": "0_Error rate at update too high" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-12 11:59:44" }, "VendorId": { "value": "\u003dP1000+1100.06.01-B202.2" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "29c088ad-f890-4e99-8452-45792542255d" }, "DisplayPath": { "value": "PLC01_1510_11_32/OPC/inAlarms0/5_Chute not active" }, "Duration": { "value": "00:13:37" }, "Name": { "value": "5_Chute not active" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-12 11:47:53" }, "VendorId": { "value": "\u003d01+1510.11.32" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "66d7fd3a-ade4-4d6b-98bd-f3e782ee94da" }, "DisplayPath": { "value": "PLC01_1510_11_35/OPC/inAlarms0/5_Chute not active" }, "Duration": { "value": "00:10:21" }, "Name": { "value": "5_Chute not active" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-12 11:51:09" }, "VendorId": { "value": "\u003d01+1510.11.35" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "43f91251-1782-49c3-b45a-0c70978778a1" }, "DisplayPath": { "value": "PLC66_1220_63_40/OPC/inAlarms0/7_Photo eye blocked" }, "Duration": { "value": "00:02:49" }, "Name": { "value": "7_Photo eye blocked" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-12 11:58:41" }, "VendorId": { "value": "\u003d66+1220.63.40-B205.4" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "d4c3e86d-5cab-47de-8562-48b4fc5c063b" }, "DisplayPath": { "value": "ARSAW1501/OPC/inAlarms2/2_Photo eye blocked" }, "Duration": { "value": "00:25:20" }, "Name": { "value": "2_Photo eye blocked" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-12 11:36:10" }, "VendorId": { "value": "\u003dARSAW1501+05.13-B111.1" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "a992380e-6a60-4388-9fc1-b76b052a3641" }, "DisplayPath": { "value": "PLC02_1510_87_15/OPC/inAlarms0/5_Chute not active" }, "Duration": { "value": "00:17:01" }, "Name": { "value": "5_Chute not active" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-12 11:44:29" }, "VendorId": { "value": "\u003d02+1510.87.15" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "4457c4eb-9a49-463b-ba28-362fda48ce12" }, "DisplayPath": { "value": "PLC20_1200_22_01/OPC/inAlarms0/5_Chain over length detection" }, "Duration": { "value": "04:43:25" }, "Name": { "value": "5_Chain over length detection" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-12 07:18:05" }, "VendorId": { "value": "\u003d20+1200.22.01" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "706a7319-3b58-4e57-ad89-d97f8aee67c1" }, "DisplayPath": { "value": "PLC09_1010_13_31/OPC/inAlarms0/0_Photo eye blocked" }, "Duration": { "value": "00:11:09" }, "Name": { "value": "0_Photo eye blocked" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-12 11:50:21" }, "VendorId": { "value": "\u003d09+1010.13.31-B122.6" } } }, { "style": { "classes": "Alarms-Styles/High" }, "value": { "AlarmId": { "value": "70bbd7ad-80fb-4c24-9a95-9d93ab13c85f" }, "DisplayPath": { "value": "PLC66_1220_64_07/OPC/inAlarms0/0_Photo eye blocked" }, "Duration": { "value": "02:30:02" }, "Name": { "value": "0_Photo eye blocked" }, "Severity": { "value": "3. High" }, "Timestamp": { "value": "2022-08-10 09:31:28" }, "VendorId": { "value": "\u003d66+1220.64.07-B206.6" } } }, { "style": { "classes": "Alarms-Styles/Medium" }, "value": { "AlarmId": { "value": "645b753f-c602-4e63-a841-e54160a602ba" }, "DisplayPath": { "value": "SLAM302/OPC/ActiveEvents_0/Both Printers 1 Label Stop" }, "Duration": { "value": "01:41:34" }, "Name": { "value": "Both Printers 1 Label Stop" }, "Severity": { "value": "2. Medium" }, "Timestamp": { "value": "2022-08-12 10:19:56" }, "VendorId": { "value": "" } } }, { "style": { "classes": "Alarms-Styles/Medium" }, "value": { "AlarmId": { "value": "ddf12c1a-3faa-48c8-a3c9-62105eade741" }, "DisplayPath": { "value": "SLAM305/OPC/ActiveEvents_1/Printer 2 Fault" }, "Duration": { "value": "01:22:45" }, "Name": { "value": "Printer 2 Fault" }, "Severity": { "value": "2. Medium" }, "Timestamp": { "value": "2022-08-12 10:38:45" }, "VendorId": { "value": "" } } }, { "style": { "classes": "Alarms-Styles/Medium" }, "value": { "AlarmId": { "value": "27d184d3-66b7-4309-a045-b7830a662fc9" }, "DisplayPath": { "value": "SLAM305/OPC/ActiveEvents_0/Printer 1 Fault" }, "Duration": { "value": "01:22:45" }, "Name": { "value": "Printer 1 Fault" }, "Severity": { "value": "2. Medium" }, "Timestamp": { "value": "2022-08-12 10:38:45" }, "VendorId": { "value": "" } } }, { "style": { "classes": "Alarms-Styles/Medium" }, "value": { "AlarmId": { "value": "8017709f-b8b6-4d83-9d30-b4d858c5c522" }, "DisplayPath": { "value": "PLC1000_1100_35_01/OPC/inAlarms0/2_Stop button pushed" }, "Duration": { "value": "00:03:01" }, "Name": { "value": "2_Stop button pushed" }, "Severity": { "value": "2. Medium" }, "Timestamp": { "value": "2022-08-12 11:58:29" }, "VendorId": { "value": "\u003dP1000+1100.35.01.B01-KA2.11A-S521.2" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "563c8152-fde4-4616-b5e3-3cb1a004bb75" }, "DisplayPath": { "value": "PLC09_1010_32_40/OPC/inAlarms0/6_Full 25%" }, "Duration": { "value": "23:25:42" }, "Name": { "value": "6_Full 25%" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-11 12:35:48" }, "VendorId": { "value": "\u003d09+1010.32.40-B304.6" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "78f1c489-0e24-423c-a2cb-7614d18c8e4b" }, "DisplayPath": { "value": "PLC09_1010_32_40/OPC/inAlarms0/2_Full 75%" }, "Duration": { "value": "12:00:57" }, "Name": { "value": "2_Full 75%" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-12 00:00:33" }, "VendorId": { "value": "\u003d09+1010.32.40-B304.4" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "fbbb85b0-d18d-4d36-8168-94b0187b3809" }, "DisplayPath": { "value": "PLC09_1010_32_40/OPC/inAlarms0/4_Full 50%" }, "Duration": { "value": "02:29:58" }, "Name": { "value": "4_Full 50%" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-10 09:31:32" }, "VendorId": { "value": "\u003d09+1010.32.40-B304.5" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "921e2af7-cd0a-481a-aa63-062881e93aa6" }, "DisplayPath": { "value": "PLC09_1010_32_40/OPC/inAlarms0/0_Full 100%" }, "Duration": { "value": "00:10:33" }, "Name": { "value": "0_Full 100%" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-12 11:50:57" }, "VendorId": { "value": "\u003d09+1010.32.40-B304.2" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "14d1d1d8-0c28-4c96-95cb-4aeb5d326b0e" }, "DisplayPath": { "value": "SLAM306/OPC/ActiveEvents_0/Upstream Not Running" }, "Duration": { "value": "00:05:16" }, "Name": { "value": "Upstream Not Running" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-12 11:56:14" }, "VendorId": { "value": "" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "89bba546-f28d-489d-8a5d-908990fc0c2c" }, "DisplayPath": { "value": "PLC09_1010_12_40/OPC/inAlarms0/6_Full 25%" }, "Duration": { "value": "00:33:01" }, "Name": { "value": "6_Full 25%" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-12 11:28:29" }, "VendorId": { "value": "\u003d09+1010.12.40-B104.6" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "c06c4c9a-693b-4e44-b28d-1cc883f46581" }, "DisplayPath": { "value": "PLC09_1010_12_40/OPC/inAlarms0/4_Full 50%" }, "Duration": { "value": "01:23:43" }, "Name": { "value": "4_Full 50%" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-12 10:37:48" }, "VendorId": { "value": "\u003d09+1010.12.40-B104.5" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "33550149-53b7-4490-8d39-06c9cee5ce63" }, "DisplayPath": { "value": "PLC09_1010_12_40/OPC/inAlarms0/2_Full 75%" }, "Duration": { "value": "01:19:44" }, "Name": { "value": "2_Full 75%" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-12 10:41:47" }, "VendorId": { "value": "\u003d09+1010.12.40-B104.4" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "15b4dc66-968b-4b13-9fdd-43e1e887e4b1" }, "DisplayPath": { "value": "PLC09_1010_12_40/OPC/inAlarms0/0_Full 100%" }, "Duration": { "value": "00:04:37" }, "Name": { "value": "0_Full 100%" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-12 11:56:53" }, "VendorId": { "value": "\u003d09+1010.12.40-B104.2" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "5bf89243-965b-4049-a5b4-65e0cdffbf9a" }, "DisplayPath": { "value": "PLC1000_1100_10_25/OPC/inAlarms0/0_Full 25%" }, "Duration": { "value": "00:01:10" }, "Name": { "value": "0_Full 25%" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-12 12:00:20" }, "VendorId": { "value": "\u003dP1000+1100.10.25-B323.1" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "63c21fc9-5b3a-4f3f-9076-90145af9d833" }, "DisplayPath": { "value": "PLC1000_1100_32_13/OPC/inAlarms0/0_Full 75%" }, "Duration": { "value": "00:00:38" }, "Name": { "value": "0_Full 75%" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-12 12:00:52" }, "VendorId": { "value": "\u003dP1000+1100.32.13-B503.4" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "08756b9a-24cd-4f90-b7a2-98d0d74b873d" }, "DisplayPath": { "value": "PLC1000_1100_04_25/OPC/inAlarms0/0_Full 25%" }, "Duration": { "value": "00:02:00" }, "Name": { "value": "0_Full 25%" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-12 11:59:30" }, "VendorId": { "value": "\u003dP1000+1100.04.25-B122.0" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "46ca2c01-03cd-47c2-9576-feb03e4ef9ca" }, "DisplayPath": { "value": "PLC1000_1100_10_17/OPC/inAlarms0/0_Full 50%" }, "Duration": { "value": "00:00:58" }, "Name": { "value": "0_Full 50%" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-12 12:00:32" }, "VendorId": { "value": "\u003dP1000+1100.10.17-B321.1" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "349731d9-7024-41d8-8345-9438180bfafe" }, "DisplayPath": { "value": "PLC1000_1100_04_17/OPC/inAlarms0/0_Full 50%" }, "Duration": { "value": "00:01:34" }, "Name": { "value": "0_Full 50%" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-12 11:59:56" }, "VendorId": { "value": "\u003dP1000+1100.04.17-B121.0" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "e21645ca-8629-4117-8f6c-ac980405c027" }, "DisplayPath": { "value": "PLC1000_1100_23_30/OPC/inAlarms0/0_Full 25%" }, "Duration": { "value": "00:25:44" }, "Name": { "value": "0_Full 25%" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-12 11:35:46" }, "VendorId": { "value": "\u003dP1000+1100.23.30-B412.3" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "cb7576ba-218a-4630-98e2-cf8a99313f43" }, "DisplayPath": { "value": "PLC09_3040_22_60/OPC/inAlarms0/2_Full 25%" }, "Duration": { "value": "00:15:03" }, "Name": { "value": "2_Full 25%" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-12 11:46:27" }, "VendorId": { "value": "\u003d09+3040.22.60-B721.4" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "b2802772-4aed-4722-b300-812843fd49d8" }, "DisplayPath": { "value": "PLC1000_1100_33_10/OPC/inAlarms0/0_Full 50%" }, "Duration": { "value": "00:00:38" }, "Name": { "value": "0_Full 50%" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-12 12:00:52" }, "VendorId": { "value": "\u003dP1000+1100.33.10-B509.3" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "1fd3ac98-2636-4ba1-8ff5-2edef1b446f2" }, "DisplayPath": { "value": "PLC09_2040_22_60/OPC/inAlarms0/0_Full 50%" }, "Duration": { "value": "00:00:55" }, "Name": { "value": "0_Full 50%" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-12 12:00:35" }, "VendorId": { "value": "\u003d09+2040.22.60-B621.2" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "f5303a9d-3b13-482b-a73d-0c31f8138ea5" }, "DisplayPath": { "value": "PLC09_2040_22_60/OPC/inAlarms0/2_Full 25%" }, "Duration": { "value": "03:19:12" }, "Name": { "value": "2_Full 25%" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-12 08:42:19" }, "VendorId": { "value": "\u003d09+2040.22.60-B621.4" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "cb8ee399-0e56-48ad-b1df-2b9a3a7c4acf" }, "DisplayPath": { "value": "PLC09_1010_22_40/OPC/inAlarms0/4_Full 50%" }, "Duration": { "value": "00:31:56" }, "Name": { "value": "4_Full 50%" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-12 11:29:34" }, "VendorId": { "value": "\u003d09+1010.22.40-B204.5" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "fc2ea1bd-3565-4c2e-b401-9c66dea60498" }, "DisplayPath": { "value": "PLC09_1010_22_40/OPC/inAlarms0/0_Full 100%" }, "Duration": { "value": "00:01:07" }, "Name": { "value": "0_Full 100%" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-12 12:00:23" }, "VendorId": { "value": "\u003d09+1010.22.40-B204.2" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "714b2ff3-75d9-4980-9f5f-02ab18a1ec78" }, "DisplayPath": { "value": "PLC09_1010_22_40/OPC/inAlarms0/6_Full 25%" }, "Duration": { "value": "00:32:55" }, "Name": { "value": "6_Full 25%" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-12 11:28:35" }, "VendorId": { "value": "\u003d09+1010.22.40-B204.6" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "f3a117e7-bd0c-4d71-8000-3e739f332484" }, "DisplayPath": { "value": "PLC09_1010_22_40/OPC/inAlarms0/2_Full 75%" }, "Duration": { "value": "00:07:37" }, "Name": { "value": "2_Full 75%" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-12 11:53:53" }, "VendorId": { "value": "\u003d09+1010.22.40-B204.4" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "e2baa964-eb4c-4a92-933d-3b5e2d1664e0" }, "DisplayPath": { "value": "PLC1000_1100_33_22/OPC/inAlarms0/0_Full 25%" }, "Duration": { "value": "00:02:35" }, "Name": { "value": "0_Full 25%" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-12 11:58:55" }, "VendorId": { "value": "\u003dP1000+1100.33.22-B512.3" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "3a380b2a-08f4-4fff-97f9-961e70d55736" }, "DisplayPath": { "value": "PLC1000_1100_08_19/OPC/inAlarms0/0_Full 25%" }, "Duration": { "value": "00:03:05" }, "Name": { "value": "0_Full 25%" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-12 11:58:25" }, "VendorId": { "value": "\u003dP1000+1100.08.19-B305.5" } } }, { "style": { "classes": "Alarms-Styles/Low" }, "value": { "AlarmId": { "value": "8e868e64-edcb-405f-b8af-dfbb81344088" }, "DisplayPath": { "value": "PLC1000_1100_08_13/OPC/inAlarms0/0_Full 50%" }, "Duration": { "value": "00:03:01" }, "Name": { "value": "0_Full 50%" }, "Severity": { "value": "1. Low" }, "Timestamp": { "value": "2022-08-12 11:58:29" }, "VendorId": { "value": "\u003dP1000+1100.08.13-B304.1" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "854d4883-9957-40dc-8590-5bdf800cd9ec" }, "DisplayPath": { "value": "PLC01_1510_11_45/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "01:03:05" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 10:58:25" }, "VendorId": { "value": "\u003d01+1510.11.45-B211.7" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "4e0e235c-40b2-43e1-8df0-05acd23f42cc" }, "DisplayPath": { "value": "PLC01_1510_11_44/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "02:26:44" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 09:34:46" }, "VendorId": { "value": "\u003d01+1510.11.44-B211.3" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "7f19e592-3937-4b82-b1a0-080f18028e58" }, "DisplayPath": { "value": "PLC01_1510_11_47/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "00:17:59" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:43:31" }, "VendorId": { "value": "\u003d01+1510.11.47-B212.7" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "40d2a84f-674c-4e2e-b1f3-cda897a7edc5" }, "DisplayPath": { "value": "FSC10_OFZ_1500_73_CH_1500_73_04/OPC/inAlarms0/3.Chute Full" }, "Duration": { "value": "00:10:26" }, "Name": { "value": "3.Chute Full" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:51:04" }, "VendorId": { "value": "CH-1500.73.04" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "0454374e-7fbf-49d9-b1cc-7f639a953a8d" }, "DisplayPath": { "value": "PLC01_1510_11_48/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "00:26:03" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:35:27" }, "VendorId": { "value": "\u003d01+1510.11.48-B213.3" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "3dd7ef75-ab85-4614-a3ac-372003761dda" }, "DisplayPath": { "value": "FSC10_OFZ_1500_73_CH_1500_73_01/OPC/inAlarms0/3.Chute Full" }, "Duration": { "value": "00:13:42" }, "Name": { "value": "3.Chute Full" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:47:48" }, "VendorId": { "value": "CH-1500.73.01" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "d3da023c-ce0e-4cbc-8201-f3976d89e128" }, "DisplayPath": { "value": "PLC02_1510_88_11/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "00:06:35" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:54:56" }, "VendorId": { "value": "\u003d02+1510.88.11-B323.3" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "d45a6985-c242-4645-b3ac-ab34e5a2462b" }, "DisplayPath": { "value": "PLC65_1220_53_40/OPC/inAlarms0/4_Full 50%" }, "Duration": { "value": "00:04:48" }, "Name": { "value": "4_Full 50%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:56:42" }, "VendorId": { "value": "\u003d65+1220.53.40-B205.4" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "374d4319-4ae0-4111-8093-880f26803e23" }, "DisplayPath": { "value": "PLC65_1220_53_40/OPC/inAlarms0/6_Full 25%" }, "Duration": { "value": "01:40:44" }, "Name": { "value": "6_Full 25%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 10:20:46" }, "VendorId": { "value": "\u003d65+1220.53.40-B205.5" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "22bff280-17a1-4e40-bf84-a35fb602c8c7" }, "DisplayPath": { "value": "PLC01_1510_11_41/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "00:34:06" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:27:24" }, "VendorId": { "value": "\u003d01+1510.11.41-B209.7" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "7b1adf51-09b5-44ca-aadd-f883865350e5" }, "DisplayPath": { "value": "FSC10_TRZ_1500_01_CAS_1500_01_382/OPC/inAlarms0/18.Item Blocked for Sorting" }, "Duration": { "value": "01:27:29" }, "Name": { "value": "18.Item Blocked for Sorting" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 10:34:01" }, "VendorId": { "value": "CAS-1500.01.382" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "438cb2f7-4b48-468f-9e18-39a03b093f5c" }, "DisplayPath": { "value": "PLC71_1260_73_40/OPC/inAlarms0/0_Full 100%" }, "Duration": { "value": "02:29:59" }, "Name": { "value": "0_Full 100%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-10 09:31:31" }, "VendorId": { "value": "\u003d71+1260.73.40-B206.2" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "85680dc1-f7ba-4da9-9d60-ba600b049882" }, "DisplayPath": { "value": "PLC01_1510_11_59/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "00:00:23" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 12:01:07" }, "VendorId": { "value": "\u003d01+1510.11.59-B220.3" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "13e31396-f540-4b19-9d68-a55ba579e03b" }, "DisplayPath": { "value": "FSC10_TRZ_1500_01_CAS_1500_01_138/OPC/inAlarms0/18.Item Blocked for Sorting" }, "Duration": { "value": "00:00:02" }, "Name": { "value": "18.Item Blocked for Sorting" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 12:01:28" }, "VendorId": { "value": "CAS-1500.01.138" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "ea6d6012-5d3d-42e5-8396-f1f2b6a95476" }, "DisplayPath": { "value": "FSC10_TRZ_1500_01_CAS_1500_01_255/OPC/inAlarms0/16.CAS automatic offline" }, "Duration": { "value": "00:24:47" }, "Name": { "value": "16.CAS automatic offline" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-10 11:36:43" }, "VendorId": { "value": "CAS-1500.01.255" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "397c2848-56a9-4c5f-8fc9-830395c649e2" }, "DisplayPath": { "value": "PLC01_1510_11_50/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "00:00:59" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 12:00:31" }, "VendorId": { "value": "\u003d01+1510.11.50-B214.3" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "eae02a75-c090-4863-b71e-0966519e1a04" }, "DisplayPath": { "value": "FSC10_TRZ_1500_01_CAS_1500_01_010/OPC/inAlarms0/18.Item Blocked for Sorting" }, "Duration": { "value": "00:00:37" }, "Name": { "value": "18.Item Blocked for Sorting" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 12:00:53" }, "VendorId": { "value": "CAS-1500.01.010" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "cbb9023a-17f8-42c7-83d2-e433bb9ec8b7" }, "DisplayPath": { "value": "PLC01_1510_11_51/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "00:55:15" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:06:16" }, "VendorId": { "value": "\u003d01+1510.11.51-B214.7" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "43fc342e-6b83-410d-9bab-ee00e1be9bbe" }, "DisplayPath": { "value": "FSC10_TRZ_1500_01_CAS_1500_01_493/OPC/inAlarms0/16.CAS automatic offline" }, "Duration": { "value": "00:24:36" }, "Name": { "value": "16.CAS automatic offline" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-10 11:36:55" }, "VendorId": { "value": "CAS-1500.01.493" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "1b509e3c-efa5-4201-b23f-4b33f9d64c17" }, "DisplayPath": { "value": "FSC10_TRZ_1500_01_CAS_1500_01_493/OPC/inAlarms0/18.Item Blocked for Sorting" }, "Duration": { "value": "00:00:23" }, "Name": { "value": "18.Item Blocked for Sorting" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 12:01:07" }, "VendorId": { "value": "CAS-1500.01.493" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "6dd055ef-d8b3-4eb9-b7c6-cd3cdec1998a" }, "DisplayPath": { "value": "FSC10_IFZ_1500_56_CH_1500_56_09/OPC/inAlarms0/1.Bin contains item" }, "Duration": { "value": "00:04:00" }, "Name": { "value": "1.Bin contains item" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:57:30" }, "VendorId": { "value": "CH-1500.56.09" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "5e625e5b-8f9b-4608-91f1-f01fda8d3f66" }, "DisplayPath": { "value": "PLC66_1220_26_20/OPC/inAlarms0/0_Full 25%" }, "Duration": { "value": "00:00:18" }, "Name": { "value": "0_Full 25%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 12:01:12" }, "VendorId": { "value": "\u003d66+1220.26.20-B122.2" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "755fd504-7ed5-4583-a2ae-43c48a7cdc93" }, "DisplayPath": { "value": "PLC03_1251_32_03/OPC/inAlarms0/0_Full 100%" }, "Duration": { "value": "02:29:58" }, "Name": { "value": "0_Full 100%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-10 09:31:32" }, "VendorId": { "value": "\u003d03+1251.32.03-B204.3" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "4f86d055-66b7-4a68-b4c1-9cf704674418" }, "DisplayPath": { "value": "FSC10_TRZ_1500_01_CAS_1500_01_206/OPC/inAlarms0/16.CAS automatic offline" }, "Duration": { "value": "00:24:48" }, "Name": { "value": "16.CAS automatic offline" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-10 11:36:42" }, "VendorId": { "value": "CAS-1500.01.206" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "c297c3da-c8d3-4035-b734-b4aeb855a353" }, "DisplayPath": { "value": "PLC64_1230_43_40/OPC/inAlarms0/6_Full 25%" }, "Duration": { "value": "02:41:22" }, "Name": { "value": "6_Full 25%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 09:20:08" }, "VendorId": { "value": "\u003d64+1230.43.40-B205.5" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "670a4052-ee28-4124-9d96-8c679b19ee1b" }, "DisplayPath": { "value": "PLC64_1230_43_40/OPC/inAlarms0/4_Full 50%" }, "Duration": { "value": "00:03:07" }, "Name": { "value": "4_Full 50%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:58:23" }, "VendorId": { "value": "\u003d64+1230.43.40-B205.4" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "fa29dd21-fcd5-43b0-babd-4743e6f37226" }, "DisplayPath": { "value": "PLC64_1230_43_40/OPC/inAlarms0/2_Full 75%" }, "Duration": { "value": "02:41:00" }, "Name": { "value": "2_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 09:20:30" }, "VendorId": { "value": "\u003d64+1230.43.40-B204.3" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "bcf1f256-7cc7-46eb-95e1-425bf8b34dec" }, "DisplayPath": { "value": "PLC64_1230_43_40/OPC/inAlarms0/0_Full 100%" }, "Duration": { "value": "00:01:20" }, "Name": { "value": "0_Full 100%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 12:00:10" }, "VendorId": { "value": "\u003d64+1230.43.40-B204.2" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "9cbe00a0-c9f9-4167-85e4-8e71c015bc47" }, "DisplayPath": { "value": "PLC01_1510_81_03/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "02:29:58" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-10 09:31:32" }, "VendorId": { "value": "\u003d01+1510.81.03-B303.3" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "0b49a15e-5338-4fea-abb2-64694c6be89a" }, "DisplayPath": { "value": "PLC01_1510_81_04/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "00:04:25" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:57:05" }, "VendorId": { "value": "\u003d01+1510.81.04-B303.7" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "e4a40063-c29d-4d52-91bc-02f89b0db027" }, "DisplayPath": { "value": "PLC01_1510_81_05/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "00:05:23" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:56:07" }, "VendorId": { "value": "\u003d01+1510.81.05-B304.3" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "4f803ae4-b11a-414a-b540-1d26de70d332" }, "DisplayPath": { "value": "PLC01_1510_81_05/OPC/inAlarms0/1_Full 100%" }, "Duration": { "value": "00:00:31" }, "Name": { "value": "1_Full 100%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 12:00:59" }, "VendorId": { "value": "\u003d01+1510.81.05-B304.2" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "286b8c5f-08c7-490e-bc83-6e695e8a9cf8" }, "DisplayPath": { "value": "PLC01_1510_81_01/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "23:49:59" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-11 12:11:31" }, "VendorId": { "value": "\u003d01+1510.81.01-B302.3" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "3a586506-b523-493f-8979-3418052bb5fe" }, "DisplayPath": { "value": "PLC01_1510_81_02/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "02:29:58" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-10 09:31:32" }, "VendorId": { "value": "\u003d01+1510.81.02-B302.7" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "29742c35-ec12-4660-b080-d8a347e65f4f" }, "DisplayPath": { "value": "PLC60_1220_43_40/OPC/inAlarms0/4_Full 50%" }, "Duration": { "value": "12:30:12" }, "Name": { "value": "4_Full 50%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-11 23:31:18" }, "VendorId": { "value": "\u003d60+1220.43.40-B205.4" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "f08d921d-38cc-4356-b762-b031986cd4d3" }, "DisplayPath": { "value": "PLC60_1220_43_40/OPC/inAlarms0/2_Full 75%" }, "Duration": { "value": "03:02:44" }, "Name": { "value": "2_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 08:58:46" }, "VendorId": { "value": "\u003d60+1220.43.40-B204.3" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "da2bd9bf-2361-4f69-90db-ec1e432dfbd2" }, "DisplayPath": { "value": "PLC60_1220_43_40/OPC/inAlarms0/0_Full 100%" }, "Duration": { "value": "00:00:24" }, "Name": { "value": "0_Full 100%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 12:01:06" }, "VendorId": { "value": "\u003d60+1220.43.40-B204.2" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "e87e2a68-96ea-4ff5-b6db-09160dc7dbf2" }, "DisplayPath": { "value": "PLC60_1220_43_40/OPC/inAlarms0/6_Full 25%" }, "Duration": { "value": "12:41:17" }, "Name": { "value": "6_Full 25%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-11 23:20:14" }, "VendorId": { "value": "\u003d60+1220.43.40-B205.5" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "dff5603a-642d-4b5b-95fa-d4f87cf849a0" }, "DisplayPath": { "value": "FSC10_OFZ_1500_73_CH_1500_73_18/OPC/inAlarms0/3.Chute Full" }, "Duration": { "value": "00:07:05" }, "Name": { "value": "3.Chute Full" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:54:25" }, "VendorId": { "value": "CH-1500.73.18" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "94f23ca5-a383-4f4e-8b92-8b2b92d3364a" }, "DisplayPath": { "value": "FSC10_TRZ_1500_01_CAS_1500_01_030/OPC/inAlarms0/18.Item Blocked for Sorting" }, "Duration": { "value": "00:00:44" }, "Name": { "value": "18.Item Blocked for Sorting" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 12:00:46" }, "VendorId": { "value": "CAS-1500.01.030" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "4652cb60-2cb8-44a8-99cc-3ae1c0462099" }, "DisplayPath": { "value": "FSC10_OFZ_1500_73_CH_1500_73_10/OPC/inAlarms0/3.Chute Full" }, "Duration": { "value": "00:08:32" }, "Name": { "value": "3.Chute Full" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:52:58" }, "VendorId": { "value": "CH-1500.73.10" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "946a62fa-dfb6-416e-9960-f44a0721e1cd" }, "DisplayPath": { "value": "FSC10_OFZ_1500_71_CH_1500_71_01/OPC/inAlarms0/3.Chute Full" }, "Duration": { "value": "00:24:55" }, "Name": { "value": "3.Chute Full" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-10 11:36:35" }, "VendorId": { "value": "CH-1500.71.01" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "c00c25ea-e79e-4d73-b5f6-82c9d4a0b865" }, "DisplayPath": { "value": "FSC10_OFZ_1500_40_AM1/Expressions/Quality/Tag quality error" }, "Duration": { "value": "00:24:55" }, "Name": { "value": "Tag quality error" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-10 11:36:35" }, "VendorId": { "value": "\"One or more tags has bad quality.\"" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "8bc107e6-e1ca-4b63-9608-f1e17067b48f" }, "DisplayPath": { "value": "M1000/Expressions/Quality/Tag quality error" }, "Duration": { "value": "02:30:16" }, "Name": { "value": "Tag quality error" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-10 09:31:14" }, "VendorId": { "value": "\"One or more tags has bad quality.\"" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "f9b13207-66be-4d89-837b-c7468667c273" }, "DisplayPath": { "value": "FSC10_OFZ_1500_79_CH_1500_79_15/OPC/inAlarms0/3.Chute Full" }, "Duration": { "value": "00:17:07" }, "Name": { "value": "3.Chute Full" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:44:23" }, "VendorId": { "value": "CH-1500.79.15" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "00a1494e-b5bd-445a-89cc-9092f3eb1125" }, "DisplayPath": { "value": "FSC10_TRZ_1500_01_CAS_1500_01_229/OPC/inAlarms0/18.Item Blocked for Sorting" }, "Duration": { "value": "00:00:35" }, "Name": { "value": "18.Item Blocked for Sorting" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 12:00:55" }, "VendorId": { "value": "CAS-1500.01.229" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "a9d01ff6-e4c6-42ab-a317-57d5fa104d0a" }, "DisplayPath": { "value": "FSC10_TRZ_1500_01_CAS_1500_01_503/OPC/inAlarms0/18.Item Blocked for Sorting" }, "Duration": { "value": "00:00:07" }, "Name": { "value": "18.Item Blocked for Sorting" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 12:01:23" }, "VendorId": { "value": "CAS-1500.01.503" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "55a32ec8-90a8-494f-8635-f1bef05f68e9" }, "DisplayPath": { "value": "FSC10_TRZ_1500_01_CAS_1500_01_224/OPC/inAlarms0/16.CAS automatic offline" }, "Duration": { "value": "00:24:48" }, "Name": { "value": "16.CAS automatic offline" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-10 11:36:42" }, "VendorId": { "value": "CAS-1500.01.224" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "cbfadbdb-ac4a-40da-abbd-def9685097ed" }, "DisplayPath": { "value": "PLC03_1251_50_15/OPC/inAlarms0/1_Plug not plugged" }, "Duration": { "value": "02:30:02" }, "Name": { "value": "1_Plug not plugged" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-10 09:31:28" }, "VendorId": { "value": "\u003d03+1251.50.15-G1" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "ecfc9406-f3d3-4876-88bb-04390af3ceda" }, "DisplayPath": { "value": "PLC03_1251_50_12/OPC/inAlarms0/1_Plug not plugged" }, "Duration": { "value": "02:29:59" }, "Name": { "value": "1_Plug not plugged" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-10 09:31:32" }, "VendorId": { "value": "\u003d03+1251.50.12-G1" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "e7eb3c1b-3b7e-45d5-adeb-684e1674a078" }, "DisplayPath": { "value": "FSC10_OFZ_1500_75_CH_1500_75_05/OPC/inAlarms0/3.Chute Full" }, "Duration": { "value": "00:00:35" }, "Name": { "value": "3.Chute Full" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 12:00:55" }, "VendorId": { "value": "CH-1500.75.05" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "d149d26e-b48b-4d19-984f-b2219c80b591" }, "DisplayPath": { "value": "PLC03_1251_50_09/OPC/inAlarms0/1_Plug not plugged" }, "Duration": { "value": "02:29:59" }, "Name": { "value": "1_Plug not plugged" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-10 09:31:32" }, "VendorId": { "value": "\u003d03+1251.50.09-G1" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "7d24df29-18c5-44be-bba5-15a5ad3df72e" }, "DisplayPath": { "value": "FSC10_OFZ_1500_71_CH_1500_71_14/OPC/inAlarms0/3.Chute Full" }, "Duration": { "value": "00:11:41" }, "Name": { "value": "3.Chute Full" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:49:50" }, "VendorId": { "value": "CH-1500.71.14" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "990229a8-4019-4fa5-9785-04834affaea6" }, "DisplayPath": { "value": "PLC66_1220_24_30/OPC/inAlarms0/4_Full 50%" }, "Duration": { "value": "00:30:41" }, "Name": { "value": "4_Full 50%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:30:49" }, "VendorId": { "value": "\u003d66+1220.24.30-B119.0" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "fd270f76-7a6a-453a-b22d-10ed814270d5" }, "DisplayPath": { "value": "PLC47_1210_08_01/OPC/inAlarms0/2_Area is not empty" }, "Duration": { "value": "01:46:57" }, "Name": { "value": "2_Area is not empty" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 10:14:33" }, "VendorId": { "value": "\u003d47+1210.08.01-BE307.0" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "8df1dbd6-c1e1-42db-9698-fd89563916b1" }, "DisplayPath": { "value": "PLC02_1510_11_30/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "00:00:31" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 12:00:59" }, "VendorId": { "value": "\u003d02+1510.11.30-B220.7" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "53e2d15e-23bf-4a87-91b0-c1789a2d86aa" }, "DisplayPath": { "value": "PLC25_1210_01_01/OPC/inAlarms0/2_Area is not empty" }, "Duration": { "value": "04:12:43" }, "Name": { "value": "2_Area is not empty" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 07:48:47" }, "VendorId": { "value": "\u003d25+1210.01.01-BE307.0" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "7cbb5255-339e-463d-9917-aeb232fc2337" }, "DisplayPath": { "value": "FSC10_IFZ_1500_54_CH_1500_54_09/OPC/inAlarms0/1.Bin contains item" }, "Duration": { "value": "00:01:13" }, "Name": { "value": "1.Bin contains item" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 12:00:17" }, "VendorId": { "value": "CH-1500.54.09" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "891eda89-5a56-4da2-835d-00da69673cc6" }, "DisplayPath": { "value": "FSC10_TRZ_1500_01_CAS_1500_01_450/OPC/inAlarms0/16.CAS automatic offline" }, "Duration": { "value": "00:24:38" }, "Name": { "value": "16.CAS automatic offline" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-10 11:36:52" }, "VendorId": { "value": "CAS-1500.01.450" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "dfa68a57-ceb1-4c51-ad44-4d3e3768cde9" }, "DisplayPath": { "value": "PLC70_1260_31_02/OPC/inAlarms0/1_Plug not plugged" }, "Duration": { "value": "02:29:59" }, "Name": { "value": "1_Plug not plugged" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-10 09:31:31" }, "VendorId": { "value": "\u003d70+1260.31.02-G1" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "98aaaa33-9f9b-4685-83c4-ab226638dbd3" }, "DisplayPath": { "value": "FSC10_IFZ_1500_60_BF_1500_60_01/OPC/inAlarms0/5.Speed difference" }, "Duration": { "value": "00:00:01" }, "Name": { "value": "5.Speed difference" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 12:01:30" }, "VendorId": { "value": "BF-1500.60.01" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "9f44974d-29a8-4cda-8c05-1ac3c36bfa25" }, "DisplayPath": { "value": "PLC08_1280_14_40/OPC/inAlarms0/2_Full 50%" }, "Duration": { "value": "02:29:59" }, "Name": { "value": "2_Full 50%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-10 09:31:31" }, "VendorId": { "value": "\u003d08+1280.14.40-B219.5" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "bdee063d-e1e5-4900-bfed-550c8376f3e4" }, "DisplayPath": { "value": "FSC10_TRZ_1500_01_CAS_1500_01_609/OPC/inAlarms0/16.CAS automatic offline" }, "Duration": { "value": "00:24:32" }, "Name": { "value": "16.CAS automatic offline" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-10 11:36:58" }, "VendorId": { "value": "CAS-1500.01.609" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "2fd54271-08f9-41e5-b740-84b1532ab584" }, "DisplayPath": { "value": "FSC10_TRZ_1500_01_CAS_1500_01_128/OPC/inAlarms0/18.Item Blocked for Sorting" }, "Duration": { "value": "00:00:59" }, "Name": { "value": "18.Item Blocked for Sorting" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 12:00:31" }, "VendorId": { "value": "CAS-1500.01.128" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "133b5915-dcf7-4565-becb-9ced98576d96" }, "DisplayPath": { "value": "FSC10_TRZ_1500_01_CAS_1500_01_128/OPC/inAlarms0/16.CAS automatic offline" }, "Duration": { "value": "00:24:50" }, "Name": { "value": "16.CAS automatic offline" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-10 11:36:40" }, "VendorId": { "value": "CAS-1500.01.128" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "d6f2a2ce-d65b-4d7b-aaed-859ea44cebb0" }, "DisplayPath": { "value": "FSC10_TRZ_1500_01_CAS_1500_01_487/OPC/inAlarms0/18.Item Blocked for Sorting" }, "Duration": { "value": "00:06:01" }, "Name": { "value": "18.Item Blocked for Sorting" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:55:29" }, "VendorId": { "value": "CAS-1500.01.487" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "d30d38ae-95c6-40a2-8adb-d653932c90f4" }, "DisplayPath": { "value": "FSC10_TRZ_1500_01_CAS_1500_01_488/OPC/inAlarms0/18.Item Blocked for Sorting" }, "Duration": { "value": "00:06:00" }, "Name": { "value": "18.Item Blocked for Sorting" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:55:30" }, "VendorId": { "value": "CAS-1500.01.488" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "22a6a9e5-3f5d-45ea-8d9d-1023baaf380b" }, "DisplayPath": { "value": "PLC02_1510_11_07/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "00:03:10" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:58:20" }, "VendorId": { "value": "\u003d02+1510.11.07-B208.3" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "eba08435-1562-4299-9c1b-68b772151c1a" }, "DisplayPath": { "value": "FSC10_OFZ_1500_78_CH_1500_78_05/OPC/inAlarms0/3.Chute Full" }, "Duration": { "value": "00:02:44" }, "Name": { "value": "3.Chute Full" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:58:46" }, "VendorId": { "value": "CH-1500.78.05" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "295e057f-99ec-46b3-83d0-01f175608357" }, "DisplayPath": { "value": "FSC10_ACZ_1500_57_BF_1500_57_02/OPC/inAlarms0/5.Speed difference" }, "Duration": { "value": "00:04:40" }, "Name": { "value": "5.Speed difference" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:56:51" }, "VendorId": { "value": "BF-1500.57.02" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "051823b0-7e26-45f6-b05d-57c1919387a4" }, "DisplayPath": { "value": "INBOUND/RECEIVE/Test_Tag/Expressions/Quality/Tag quality error" }, "Duration": { "value": "02:30:15" }, "Name": { "value": "Tag quality error" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-10 09:31:15" }, "VendorId": { "value": "\"One or more tags has bad quality.\"" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "beddd156-0145-4827-9081-933c65b80b1b" }, "DisplayPath": { "value": "PLC02_1510_11_10/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "00:00:15" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 12:01:15" }, "VendorId": { "value": "\u003d02+1510.11.10-B209.7" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "2b4f72a0-f52b-46f4-a32e-a5b9ad2f6adb" }, "DisplayPath": { "value": "PLC02_1510_11_15/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "01:08:02" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 10:53:28" }, "VendorId": { "value": "\u003d02+1510.11.15-B212.3" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "9b95634f-1f6d-4c7f-8099-1abdaea31058" }, "DisplayPath": { "value": "PLC03_1251_22_03/OPC/inAlarms0/0_Full 100%" }, "Duration": { "value": "02:29:58" }, "Name": { "value": "0_Full 100%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-10 09:31:32" }, "VendorId": { "value": "\u003d03+1251.22.03-B202.3" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "c3f32389-61f0-4687-a00c-50b49015d028" }, "DisplayPath": { "value": "FSC10_IFZ_1500_30_CH_1500_30_09/OPC/inAlarms0/1.Bin contains item" }, "Duration": { "value": "00:19:55" }, "Name": { "value": "1.Bin contains item" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:41:35" }, "VendorId": { "value": "CH-1500.30.09" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "f8381bfa-7e1a-4850-b641-94087a4a5c35" }, "DisplayPath": { "value": "PLC01_1510_82_14/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "00:00:15" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 12:01:15" }, "VendorId": { "value": "\u003d01+1510.82.14-B324.7" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "45624aff-c8e3-4510-8d0a-4dcb7bf9ba13" }, "DisplayPath": { "value": "PLC01_1510_11_34/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "00:00:27" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 12:01:03" }, "VendorId": { "value": "\u003d01+1510.11.34-B206.3" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "07102021-c79e-4828-9475-28db828a2365" }, "DisplayPath": { "value": "PLC02_1510_87_12/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "00:00:47" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 12:00:43" }, "VendorId": { "value": "\u003d02+1510.87.12-B307.7" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "9604e5b3-14e0-400e-96e1-f22a70a91b00" }, "DisplayPath": { "value": "FSC10_TRZ_1500_01_CAS_1500_01_352/OPC/inAlarms0/16.CAS automatic offline" }, "Duration": { "value": "00:24:43" }, "Name": { "value": "16.CAS automatic offline" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-10 11:36:47" }, "VendorId": { "value": "CAS-1500.01.352" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "3ebfbb2a-a78a-4599-b3ff-c84058ed4525" }, "DisplayPath": { "value": "PLC03_1251_50_06/OPC/inAlarms0/1_Plug not plugged" }, "Duration": { "value": "02:29:59" }, "Name": { "value": "1_Plug not plugged" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-10 09:31:32" }, "VendorId": { "value": "\u003d03+1251.50.06-G1" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "3307a2c0-be8d-4f86-812a-13e4be1d9709" }, "DisplayPath": { "value": "PLC02_1510_11_24/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "00:11:20" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:50:10" }, "VendorId": { "value": "\u003d02+1510.11.24-B216.7" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "fb3dd482-20cc-4fbe-9451-4f3b90672994" }, "DisplayPath": { "value": "PLC02_1510_87_06/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "00:02:42" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:58:48" }, "VendorId": { "value": "\u003d02+1510.87.06-B304.7" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "6b78811d-b0c7-4d8a-9f36-9781a103f126" }, "DisplayPath": { "value": "PLC02_1510_11_23/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "01:09:41" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 10:51:49" }, "VendorId": { "value": "\u003d02+1510.11.23-B216.3" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "3b027050-6f4e-4ea7-9c66-43d9bbb8ab67" }, "DisplayPath": { "value": "PLC02_1510_11_27/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "00:40:01" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:21:30" }, "VendorId": { "value": "\u003d02+1510.11.27-B219.3" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "c3ec2aca-77d0-4bdc-88c4-21b65873182b" }, "DisplayPath": { "value": "PLC02_1510_11_26/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "00:08:53" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:52:38" }, "VendorId": { "value": "\u003d02+1510.11.26-B218.7" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "134ccefa-2375-4e82-92ea-50641d5cc51d" }, "DisplayPath": { "value": "PLC01_1510_82_01/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "02:29:58" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-10 09:31:32" }, "VendorId": { "value": "\u003d01+1510.82.01-B318.3" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "d50e3617-282b-48ce-aead-ecef5ae33d7a" }, "DisplayPath": { "value": "PLC01_1510_82_02/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "00:07:11" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:54:19" }, "VendorId": { "value": "\u003d01+1510.82.02-B318.7" } } }, { "style": { "classes": "Alarms-Styles/Diagnostic" }, "value": { "AlarmId": { "value": "ec0a50f8-79e8-4233-b7ae-ebf6d00e7d10" }, "DisplayPath": { "value": "PLC01_1510_82_03/OPC/inAlarms0/3_Full 75%" }, "Duration": { "value": "00:47:03" }, "Name": { "value": "3_Full 75%" }, "Severity": { "value": "0. Warning" }, "Timestamp": { "value": "2022-08-12 11:14:27" }, "VendorId": { "value": "\u003d01+1510.82.03-B319.3" } } } ], "resizeMode": "fixed", "rows": { "highlight": { "color": "#FFFF47" } }, "selection": { "mode": "multiple interval" }, "virtualized": false }, "type": "ia.display.table" } ], "meta": { "name": "Active_tab" }, "type": "ia.container.flex" }, { "children": [ { "events": { "component": { "onRowDoubleClick": [ { "config": { "script": "\trow \u003d event.value\n\tcustom_view \u003d row.get(\"path\",\"none\")\n\tif custom_view !\u003d \"None\":\n\t\tequipment_id \u003d custom_view.split(\"/\")[1]\n\t\turl_to_navigate \u003d \"/CustomView/%s/\" % (equipment_id,)\n\t\tsystem.perspective.navigate(page \u003d url_to_navigate)\n\t\tsystem.perspective.sendMessage(\"plc-to-display\", payload \u003d {\"device\":\"none\",\"show_controls\":False,\"area\":\"none\"}, scope \u003d \"page\")\n\t\tsystem.perspective.closePopup(id\u003d \"StatusPopUP\")\n\t" }, "scope": "G", "type": "script" }, { "config": { "draggable": true, "id": "W1H0Nole", "modal": false, "overlayDismiss": false, "resizable": true, "showCloseIcon": true, "title": "InfoPopUp", "type": "close", "viewPath": "PopUp-Views/Controller-Equipment/Information", "viewportBound": false }, "scope": "C", "type": "popup" } ] } }, "meta": { "name": "Views_list" }, "position": { "basis": "915px", "grow": 1 }, "propConfig": { "props.data": { "binding": { "config": { "path": "/root.custom.views_data" }, "type": "property" } } }, "type": "ia.display.table" } ], "meta": { "name": "Views" }, "position": { "tabIndex": 2 }, "type": "ia.container.flex" } ], "custom": { "views_data": [ { "path": "Custom-Views/Detail" } ] }, "events": { "system": { "onStartup": { "config": { "script": "\tproject_info \u003d system.perspective.getProjectInfo()\n\tself.custom.views_data \u003d project_info\n\tviews \u003d project_info.get(\"views\")\n\tequipment_id \u003d self.view.params.tagProps[0]\n\tviews_data \u003d [i for i in views if i[\"path\"].startswith(\"Custom-Views/\"+ equipment_id)]\n\tself.custom.views_data \u003d views_data\n\t\n\t" }, "scope": "G", "type": "script" } } }, "meta": { "name": "root", "tooltip": { "enabled": true } }, "propConfig": { "custom.active_alarms": { "binding": { "config": { "expression": "{./Active_tab/AlarmTable.props.data}" }, "transforms": [ { "code": "\treturn len(value)", "type": "script" } ], "type": "expr" } }, "custom.state": { "binding": { "config": { "fallbackDelay": 2.5, "mode": "indirect", "references": { "0": "{view.params.tagProps[0]}" }, "tagPath": "{0}/Expressions/Status" }, "type": "tag" } } }, "props": { "menuStyle": { "fontWeight": "bold" }, "tabs": [ "Alarms", "Info", "Views" ] }, "type": "ia.container.tab" } }