Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "BaSyx / Documentation / Components / DataBridge / Features / AAS Endpoint"

(Created page with "= AAS = The AAS Server can be integrated with DataBridge. The AAS component can be configured as a Data Sink in the DataBridge. == Configuration == To configure AAS Server in...")
 
(Working Example)
Line 22: Line 22:
  
 
== Working Example ==
 
== Working Example ==
The integration example with MQTT as a data source, JSONata as a transformer, and '''AAS''' as a data sink is on [https://github.com/eclipse-basyx/basyx-databridge/tree/main/basyx.components.databridge.examples/basyx.components.databridge.examples.mqtt-jsonata-aas GitHub DataBridge Example].
+
The integration example with MQTT as a data source, JSONata as a transformer, and '''AAS''' as a data sink is on [https://github.com/eclipse-basyx/basyx-databridge/tree/main/databridge.examples/databridge.examples.mqtt-jsonata-aas GitHub DataBridge Example].

Revision as of 03:03, 10 May 2023

AAS

The AAS Server can be integrated with DataBridge. The AAS component can be configured as a Data Sink in the DataBridge.

Configuration

To configure AAS Server in DataBridge you need to provide the unique id, endpoint of the Submodel and idShort path.

Sample Configuration

[
	{
		"uniqueId": "ConnectedSubmodel/ConnectedPropertyA",
		"submodelEndpoint": "http://localhost:4001/shells/TestUpdatedDeviceAAS/aas/submodels/ConnectedSubmodel/submodel",
		"idShortPath": "ConnectedPropertyA"
	}
]

Similarly, you can configure multiple AAS sinks inside the configuration file.

Naming Convention

The name of the AAS configuration file should be aasserver.json.

Working Example

The integration example with MQTT as a data source, JSONata as a transformer, and AAS as a data sink is on GitHub DataBridge Example.

Back to the top