Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/frasermolyneux-archive/poc-ais-demo
This repository generates resources for a demo of Azure Integration Services
https://github.com/frasermolyneux-archive/poc-ais-demo
azure azure-integration-services azure-pipelines github-actions terraform
Last synced: 5 days ago
JSON representation
This repository generates resources for a demo of Azure Integration Services
- Host: GitHub
- URL: https://github.com/frasermolyneux-archive/poc-ais-demo
- Owner: frasermolyneux-archive
- License: gpl-3.0
- Created: 2023-05-26T12:02:26.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-08T11:45:19.000Z (about 1 year ago)
- Last Synced: 2024-04-29T04:25:02.224Z (8 months ago)
- Topics: azure, azure-integration-services, azure-pipelines, github-actions, terraform
- Language: HCL
- Homepage:
- Size: 1000 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# POC - __summary title__
Add a __Proof of concept summary__ here.
---
## Architecture
Add an __architecture diagram__ here.
List the __architecture components__ here.
---
## Further Considerations
Naturally, this is a limited architecture for the POC with many additional considerations required. Here are a few as a starting point:
List the __further architecture considerations__ here.
---
## POC Scenarios
List the __POC Scenarios__ here.
---
## KQL Examples
```kql
union *
| extend meta = case(
customDimensions.prop__properties has "trackedProperties", parse_json(tostring(customDimensions.prop__properties)).trackedProperties,
customDimensions has "trackedProperties", todynamic(tostring(customDimensions.trackedProperties)), todynamic(customDimensions))
| where meta.InterfaceId == "ID_VTB02"
| where meta.LicensePlate == "HHH HHHH"
| where meta.MessageId == "24c9955c-f535-4f79-be8a-b9e45d47d180"
``````kql
let operationIds = union *
| extend meta = case(
customDimensions.prop__properties has "trackedProperties", parse_json(tostring(customDimensions.prop__properties)).trackedProperties,
customDimensions has "trackedProperties", todynamic(tostring(customDimensions.trackedProperties)), todynamic(customDimensions))
| where meta.InterfaceId == "ID_VTB02"
| where meta.LicensePlate == "HHH HHHH"
| where meta.MessageId == "24c9955c-f535-4f79-be8a-b9e45d47d180"
| distinct operation_Id;
union * | where operation_Id in (operationIds) | order by timestamp asc
```