Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```