
The AVEVA Insight connector integrates with AVEVA Insight (formerly Wonderware Online) Historian to bring electrical energy and power monitoring data into the Mapped graph. The connector retrieves time-series data from configured historian tags and creates electrical metering entities with their associated sensors at the building level.
Potential use cases include:
You will need an API token to authenticate with the AVEVA Insight Historian API. This token should have read permissions for the historian tags you wish to monitor.
Enter the token in the Auth section of the connector configuration. The connector will validate the token by querying the Historian API before proceeding.
The connector uses place mappings to associate historian tags with buildings in your Mapped graph. Under the Mapping tab in the connector configuration, the connector will retrieve available tags from the Historian API (filtered to energy and power-related metrics) for mapping.
In order to select a place mapping, all these fields much be completed in a row in the place mapping table:
The connector automatically classifies tags based on their naming convention:

| Connector Concept | Mapped Type | Relationships |
|---|---|---|
| Historian Tag (.KWatts suffix) | Electrical_Meter | hasLocation Building, hasPoint Electric_Power_Sensor |
| Historian Tag (.Energy suffix) | Electrical_Meter | hasLocation Building, hasPoint Electric_Energy_Sensor |
| Historian Tag value (.KWatts) | Electric_Power_Sensor | isPointOf Electrical_Meter |
| Historian Tag value (.Energy) | Electric_Energy_Sensor | isPointOf Electrical_Meter |
Type Details:
Use this query to view the latest time series for all Electrical Meters within a building.
Request ResponseCopy1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25{ buildings(filter: {id: {eq: "BLDG5o26DguWKu5T9nRvSYn5Em"}}) { things(filter: {exactType: {eq: "Electrical_Meter"}}) { id name exactType points { id name exactType unit { id name description } series(latest: true) { value { float64Value } timestamp ingestionTime } } } }