Skip to content
Draft
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
b549a44
adding the initial project
butlfrazp Feb 8, 2023
4a375e0
adding the location to the deploy script
butlfrazp Feb 8, 2023
e7f955b
update to root readme
butlfrazp Feb 8, 2023
5660440
adding location to the deploy bash script sample
butlfrazp Feb 8, 2023
49ef4f5
Feature/update to root readme (#2)
butlfrazp Feb 8, 2023
8c280b8
Merge branch 'feature/adding-core-platform' into feature/update-to-ro…
butlfrazp Feb 8, 2023
a349592
removing reference to some extensions
butlfrazp Feb 8, 2023
3dd1f5c
update to readme to add tech used and architecture
butlfrazp Feb 8, 2023
bf36e54
update to solution overview
butlfrazp Feb 8, 2023
9bbd5f8
adding meta model license
butlfrazp Feb 8, 2023
d16e341
removing recommended extensions
butlfrazp Feb 8, 2023
330effd
update to the readmes for the model data flow and streaming data flow
butlfrazp Feb 8, 2023
cbaa4f7
update to aas streaming data sample data
butlfrazp Feb 8, 2023
c1cc871
removing references to the test folder
butlfrazp Feb 9, 2023
4882c04
Update README.md
butlfrazp Feb 9, 2023
a12518e
removing unused project references
butlfrazp Feb 9, 2023
97421c7
removing unused nuget references
butlfrazp Feb 9, 2023
4c8ce08
update to namespace of functions
butlfrazp Feb 9, 2023
6f58c3a
Merge branch 'feature/adding-core-platform' of https://github.com/Azu…
butlfrazp Feb 9, 2023
d5b4543
update to factory model data changed sample
butlfrazp Feb 9, 2023
97ae9eb
update to remove always trigger and blob retention
butlfrazp Feb 9, 2023
8d6dcdd
Update tools/AasFactory.EventHubSimulator/sample.local.settings.json
butlfrazp Feb 9, 2023
85a5259
adding nuget.config
butlfrazp Feb 9, 2023
b9a52e4
updating temp license file
butlfrazp Feb 9, 2023
45f9c7f
adding section on updating local.settings.json file for the function …
butlfrazp Feb 9, 2023
33eeb70
update list numbering
butlfrazp Feb 9, 2023
16bf731
update to the deploy script sample
butlfrazp Feb 9, 2023
a237296
update for rendered numbering and removing local.settings.json section
butlfrazp Feb 9, 2023
b0280fb
adding the resource group name
butlfrazp Feb 10, 2023
74d1038
removing overwrite flag in blob upload
butlfrazp Feb 10, 2023
8df20ff
adding section on ensuring the deploy script runs without errors
butlfrazp Feb 10, 2023
5b97561
adding section on factory.json file
butlfrazp Feb 10, 2023
be4ca4d
update to add more detail on the amount of time Model Data Flow will …
butlfrazp Feb 10, 2023
7c014f3
adding note that this solution is not production ready
butlfrazp Feb 10, 2023
b870241
fixing numbering
butlfrazp Feb 10, 2023
01a3463
update to teh chaos testing doc to remove the reference to the story
butlfrazp Feb 10, 2023
3b67b7a
Merge branch 'feature/adding-core-platform' into feature/update-to-ro…
butlfrazp Feb 10, 2023
ea347bb
Merge branch 'main' into feature/update-to-root-readme
butlfrazp Feb 10, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# AAS Factory Azure Integrations <!-- omit in toc -->

- [Solution Overview](#solution-overview)
- [Architecture](#architecture)
- [Technologies Used](#technologies-used)
- [How to use the sample](#how-to-use-the-sample)
- [Prerequisites](#prerequisites)
- [Software pre-requisites](#software-pre-requisites)
Expand All @@ -21,6 +24,24 @@ The folder structure for this repo is as below:
- tools:
any tools and components that may be used during the development (such as event hub event producer)

## Solution Overview

This solution has two different flows (Model Data Flow and Streaming Data Flow). Model Data Flow takes in a definition of a factory, converts the data to a JSON AAS representation, and creates the AAS in Azure Digital Twins (ADT).
Streaming Data Flow takes in the telemetry data, converts the data into a lightweight AAS representation, and updates the properties in ADT.

### Architecture

![Overall Architecture](./docs/assets/Swimlane%20-%20overall%20process.png)

More on the overall architecture can be found [here](./docs/architecture.md).

### Technologies Used

- [Azure Data Explorer](https://azure.microsoft.com/en-au/products/data-explorer/)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- [Azure Data Explorer](https://azure.microsoft.com/en-au/products/data-explorer/)
- [Azure Digital Twins](https://azure.microsoft.com/en-au/products/digital-twins/)
- [Azure Data Explorer](https://azure.microsoft.com/en-au/products/data-explorer/)

- [Azure Event Hubs](https://azure.microsoft.com/en-au/products/event-hubs/)
- [Azure Functions](https://azure.microsoft.com/en-au/products/functions/)
- [Azure Storage Account](https://azure.microsoft.com/en-au/products/storage/data-lake-storage/)

## How to use the sample

### Prerequisites
Expand Down