Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 797 Bytes

A1-Architecture.md

File metadata and controls

36 lines (28 loc) · 797 Bytes

Architecture of the solution

servicebus-csharp-function-dataverse

graph TB
    subgraph Function Apps
        sbTrigger
    end

    subgraph Service Bus
        sb(Queue)
        sb-->|On message add|sbTrigger(Queue Trigger)
    end

    subgraph Azure Monitor
        ai(Application Insights)
        la(Log Analytics workspace)
        sbTrigger-->|2. Message and logged in user id|ai
        ai-->la
    end

    subgraph Power Platform
        dataverse(Dataverse)
        sbTrigger-->|1. Get logged in user details|dataverse
    end

Loading