### Machine Insight V2.0 Migration Wizard Steps Source: https://context7.com/industrial-edge/machine-insight-getting-started/llms.txt Follow these steps to migrate PLC configurations from older Machine Insight versions to V2.0 using the one-time migration wizard. Ensure all necessary components are configured before starting. ```text # Migration wizard steps (Machine Insight V2.0 entry page): Step 1 — Get Data: Click "Get Data" > Opens Common Configurator Configure the SIMATIC S7+ Connector (see section above) Step 2 — Alarm Channel: Click "Alarm Channel" > Opens IIH Essentials Define asset hierarchy and alarm channels (see section above) Step 3 — Data Migration (optional, one-time only): - Select all PLCs that need to be transferred - Map each PLC to a dedicated asset - Click "Validate" (asset must have a source and alarm channel configured) - Click "Start Migration" after successful validation - Data transfer runs in the background # WARNING: This step can only be performed ONCE. # Ensure ALL required PLCs are selected before starting migration. Step 4 — Configuration: Click "App Configuration" > Configure status mappings and asset configurations # Post-migration: # Manually uninstall the old "Machine Insight Configurator" app from the IED. # It is no longer needed in V2.0. ``` -------------------------------- ### Configure Databus (MQTT Broker) in IEM Source: https://context7.com/industrial-edge/machine-insight-getting-started/llms.txt Steps to configure the Databus in Industrial Edge Management (IEM). Ensure a dedicated user and topic are created before proceeding. Permissions for the user should include Publish and Subscribe. ```bash # Steps to configure Databus in IEM: # 1. Open Industrial Edge Management (IEM) # 2. Navigate to: Data Connections > Databus # 3. Select the target IED and launch the Databus configurator Databus configuration: User: edge Password: edge Topic: ie/# Permission: Publish and Subscribe # 4. Deploy the configuration and wait for the job to complete successfully ``` -------------------------------- ### Configure SIMATIC S7+ Connector - Enable Tag Publishing Source: https://context7.com/industrial-edge/machine-insight-getting-started/llms.txt Enable tag publishing to the Databus for specific tags within the SIMATIC S7+ Connector configuration. This ensures that selected process data is sent to the MQTT broker. ```bash # Step 3 — Enable tag publishing to Databus: # For each required tag (e.g., machine state variable): # Select parameter > Edit > Activate "Publish on the databus" > Set acquisition cycle > Save ``` -------------------------------- ### Configure SIMATIC S7+ Connector - Add Data Source Source: https://context7.com/industrial-edge/machine-insight-getting-started/llms.txt Add a new data source for the SIMATIC S7+ Connector in the Common Configurator. This involves specifying PLC details and importing tag information. Ensure 'Provide PLC alarms' is enabled during creation, as it cannot be added later. ```bash # Step 2 — Add a data source (PLC connection): # Common Configurator > Get data > SIMATIC S7+ Connector > Tags > Add new data source Data source settings: Import method: Add from file (Export.zip from SIMATIC SCADA Export for TIA Portal) PLC name: # e.g., CPU_1515F-2 IP address: # e.g., 192.168.1.10 Option: Provide PLC alarms # MUST be enabled at creation time Acquisition cycle: ``` -------------------------------- ### Configure SIMATIC S7+ Connector - Deploy Configuration Source: https://context7.com/industrial-edge/machine-insight-getting-started/llms.txt Deploy the SIMATIC S7+ Connector configuration after setting up data sources and enabling tag publishing. This action applies the settings to the connected PLCs. ```bash # Step 4 — Deploy configuration: # Select all configured PLCs > Click "Deploy" # IMPORTANT: PLC alarms can ONLY be activated during data source creation. # They cannot be added after the data source is saved. ``` -------------------------------- ### Configure IIH Essentials - Databus Connection Source: https://context7.com/industrial-edge/machine-insight-getting-started/llms.txt Configure the Databus connection settings within IIH Essentials. This allows IIH Essentials to connect to the MQTT broker and receive data from the PLC. ```bash # Step 1 — Configure Databus connection in IIH Essentials: # IIH Essentials > Settings > Databus settings Databus service name: ie-databus:1883 Username: edge Password: edge ``` -------------------------------- ### Configure IIH Essentials - Create Alarm Channel Source: https://context7.com/industrial-edge/machine-insight-getting-started/llms.txt Create an alarm channel for an asset in IIH Essentials. It is critical to select only ONE PLC source per alarm channel to ensure correct device status display in Machine Insight. ```bash # Step 4 — Create an alarm channel for the asset: # IIH Essentials > [select asset] > Alarms > Create first alarm channel Alarm channel settings: Name: # e.g., PLC_AlarmChannel Connector: SIMATIC S7 Plus Connector Source: # CRITICAL: Select ONLY ONE source per alarm channel. # Multiple sources will prevent device status from displaying in Machine Insight. ``` -------------------------------- ### Machine Insight V2.0 System Requirements Source: https://context7.com/industrial-edge/machine-insight-getting-started/llms.txt Lists the required software stack versions for a fully functional Machine Insight V2.0 deployment, including IEM, IED components, PLC models, and engineering tools. ```yaml # Required software stack for Machine Insight V2.0 industrial_edge_management: IEM version: "V1.5.5-2 or V1.16.11" components: - Databus Configurator: "V3.0.0" - Common Connector Configurator: "V1.10.1-2" industrial_edge_device: IED OS: "simatic-ipc-ied-os-2.1.0-22" components: - Databus: "V3.0.0" - SIMATIC S7+ Connector: "V1.4.0" # Minimum: >= V1.4 - IIH Essentials: "V1.11.0" - Common Configurator: "V1.11.1" - Registry Service: "V1.11.0" - Common Import Converter: "V2.2.0" - Machine Insight: "V2.0.0" plc: supported_models: - "S7-1500 series (e.g., CPU 1515F-2)" # V2.0 ONLY supports S7-1500 max_connected_plcs: 8 engineering: tia_portal: "V16" simatic_scada_export: "V2.0 (for TIA Portal V16)" client: browser: "Google Chrome >= V72" constraints: - "All apps must run on the SAME IED" - "PLC and IED must be on the same network" - "SIMATIC SCADA Export (.zip) of TIA project required for connector setup" ``` -------------------------------- ### Configure Asset for Machine Insight Source: https://context7.com/industrial-edge/machine-insight-getting-started/llms.txt Link a specific PLC variable (machine status) to a defined status mapping for a given asset. This configuration enables Machine Insight to generate asset-specific dashboards. ```text Asset configuration example: Asset: CPU 1515F-2 PN Parameter: MachineState # The PLC variable published via S7+ Connector Status mapping: ProductionStatusMapping ``` -------------------------------- ### Configure SIMATIC S7+ Connector - Databus Credentials Source: https://context7.com/industrial-edge/machine-insight-getting-started/llms.txt Set Databus credentials within the Common Configurator app on the IED. This step is crucial for the SIMATIC S7+ Connector to communicate with the Databus. ```bash # Step 1 — Set Databus credentials in Common Configurator: # Open IED web interface > Common Configurator > Settings > Databus credentials Databus service name: ie-databus:1883 Data Publisher: Username: edge Password: edge Data Subscriber: Username: edge Password: edge ``` -------------------------------- ### Configure IIH Essentials - Activate SIMATIC S7+ Connector Source: https://context7.com/industrial-edge/machine-insight-getting-started/llms.txt Activate the SIMATIC S7+ Connector within IIH Essentials. This enables IIH Essentials to pull data from the connector, which is receiving data from the PLC. ```bash # Step 2 — Activate the SIMATIC S7+ Connector: # IIH Essentials > Connectors > SIMATIC S7 Plus Connector > Activate > Save ``` -------------------------------- ### Configure IIH Essentials - Add Machine State Variable Source: https://context7.com/industrial-edge/machine-insight-getting-started/llms.txt Add the machine state PLC variable to an asset within IIH Essentials. This links the specific PLC data point to a defined asset in the IIH Essentials structure. ```bash # Step 3 — Add the machine state PLC variable to an asset: # IIH Essentials > Assets & Connectivity > [select asset] > Create first variable # > SIMATIC S7 Plus Connector > [select machine state parameter] > Add variable ``` -------------------------------- ### Configure Status Mapping for Machine Insight Source: https://context7.com/industrial-edge/machine-insight-getting-started/llms.txt Define custom labels and colors for PLC integer values representing machine states. This mapping is used in asset configuration to visualize machine status on dashboards. ```text Status mapping example: Name: ProductionStatusMapping Description: Maps PLC integer values to production states (optional) Value | Label | Color -------+--------------+-------- 0 | Stopped | Red 1 | Running | Green 2 | Maintenance | Yellow 3 | Error | Orange ``` -------------------------------- ### Accessing Machine Insight Dashboards Source: https://context7.com/industrial-edge/machine-insight-getting-started/llms.txt Navigate to the auto-generated Gantt chart dashboard for a configured asset via the IED web interface. The dashboard visualizes machine status, device status, and alarms. ```text # Access path: # IED Web Interface > Machine Insight > My Plant (left-side menu) # > Navigate to configured asset (e.g., "CPU 1515F-2 PN") # > Dashboard is displayed Dashboard components: Gantt chart rows: - Machine status: Visualized using PLC variable + configured status mapping colors - Device status: PLC online/offline/error state - Notifications: Icons for incoming alarms (aggregated if multiple events occur rapidly) Log book tabs: - Device Alarms: 4 latest incoming PLC alarms (click "View Log Book" for full history) - Device Updates: 4 latest PLC changes (SW program, hardware, firmware, textlist, safety updates) Interactive features: - Zoom: Zoom into the Gantt chart for detailed time-range views - Hover: Tooltip shows event description for each notification icon - Details: Click "Details" for in-depth machine and device status information - Legend: Click "Legend" for an overview of status colors and notification icons # NOTE: The dashboard does NOT auto-refresh over time. # It is plotted up to the last access of the asset. # Device status polling frequency: 15 seconds. ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.