├── .gitignore ├── Images ├── 01 - Gateway Monitoring Architecture.png ├── 01_PlatformObservabilityArchitecture.png ├── 02 - New Eventstream.png ├── 02_Notebook_Builtin_Resources_Example.png ├── 03 - Custom App Eventstream.png ├── 04 - Lakehouse.png ├── 05 - Gateway Report Data Logic.png ├── 06 - Connect to KQL Database.png ├── 07 - Select Eventhouse Table.png ├── 08 - Select Mapping.png ├── 09 - Connect to KQL Database Report.png ├── 10 - Select Eventhouse Table Report.png ├── 11 - PBIT Parameters.png ├── 12 - Select Mapping Report.png ├── 13 - Report Gateway Information.png ├── 14 - Report Jobs.png ├── 15 - Report Job Details.png ├── 16 - Report Queries.png ├── 17 - Report Running Jobs.png └── 18 - Report System Information.png ├── LICENSE ├── README.md ├── config └── deployment_order.json ├── gateway ├── PBI Report │ └── Gateway Monitor.pbit ├── PowerShellScript │ ├── Get-DataGatewayInfo.cmd │ ├── Get-DataGatewayInfo.ps1 │ ├── Install-DataGatewayAuto.cmd │ ├── Install-DataGatewayAuto.ps1 │ ├── Run-GatewayHeartbeat.cmd │ ├── Run-GatewayHeartbeat.ps1 │ ├── Run-UploadGatewayLogs.cmd │ ├── Run-UploadGatewayLogs.ps1 │ ├── Setup-UpdateConfiguration.cmd │ ├── Setup-UpdateConfiguration.ps1 │ └── modules │ │ ├── UploadGatewayLogs.psm1 │ │ └── Utils.psm1 └── TaskSchedulers │ ├── Gateway-Heartbeat.xml │ ├── Gateway-NodeInfo.xml │ └── Gateway-Upload Logs.xml ├── setup ├── Gateway Config.ipynb └── Platform Monitoring Setup.ipynb └── src ├── ActivityEvents ├── Activity Events.KQLDatabase │ ├── .platform │ ├── DatabaseProperties.json │ └── DatabaseSchema.kql ├── Monitoring Audit Logs.Notebook │ ├── .platform │ └── notebook-content.py ├── Platform Activities.KQLDashboard │ ├── .platform │ └── RealTimeDashboard.json └── Refresh Activity Events.DataPipeline │ ├── .platform │ └── pipeline-content.json ├── Core ├── Fabric Platform Monitoring.Eventhouse │ ├── .platform │ └── EventhouseProperties.json └── Platform Monitoring.VariableLibrary │ ├── .platform │ ├── settings.json │ ├── valueSets │ └── Production.json │ └── variables.json ├── Gateway ├── Gateway Monitoring.KQLDashboard │ ├── .platform │ └── RealTimeDashboard.json ├── Gateway Monitoring.KQLDatabase │ ├── .platform │ ├── DatabaseProperties.json │ └── DatabaseSchema.kql ├── Gateway Monitoring.Report │ ├── .platform │ ├── StaticResources │ │ ├── RegisteredResources │ │ │ ├── Gateway_Monitoring126513412014013.json │ │ │ ├── Mashup_profiles_Background89013578270551088898.png │ │ │ ├── Mashup_profiles_Background89015504288993930075.png │ │ │ ├── Mashup_profiles_Background89019264769051534385.png │ │ │ ├── Requests_Background8022619583811181878256453692.png │ │ │ ├── gateway-monitoring-solution-ba6590567192205818.png │ │ │ └── gateway-monitoring-solution-ba7587701345820725.png │ │ └── SharedResources │ │ │ └── BaseThemes │ │ │ └── CY24SU08.json │ ├── definition.pbir │ └── report.json ├── Gateway Monitoring.SemanticModel │ ├── .platform │ ├── definition.pbism │ └── definition │ │ ├── cultures │ │ └── en-US.tmdl │ │ ├── database.tmdl │ │ ├── expressions.tmdl │ │ ├── model.tmdl │ │ ├── relationships.tmdl │ │ └── tables │ │ ├── Calendar.tmdl │ │ ├── DateTableTemplate_1248dd8b-d642-4c21-8f3c-638ea14b43a2.tmdl │ │ ├── Execution Measures.tmdl │ │ ├── Gateway Node Info.tmdl │ │ ├── LocalDateTable_21295484-02b4-41dc-a118-481a9522f4e8.tmdl │ │ ├── LocalDateTable_758ae1f6-73ea-4834-a83d-5f63daa0003d.tmdl │ │ ├── LocalDateTable_806bfee6-7282-4e7c-bc5c-1f501d4227f2.tmdl │ │ ├── Param - Counters Measure.tmdl │ │ ├── Period.tmdl │ │ ├── Query Connections.tmdl │ │ ├── Query Execution.tmdl │ │ └── System Counters.tmdl ├── GatewayMonitoringHeartbeat.Eventstream │ ├── .platform │ ├── eventstream.json │ └── eventstreamProperties.json └── GatewayMonitoringReports.Eventstream │ ├── .platform │ ├── eventstream.json │ └── eventstreamProperties.json └── Inventory ├── Monitoring Extraction Inventory.Notebook ├── .platform └── notebook-content.py ├── Monitoring Extraction Refreshables.Notebook ├── .platform └── notebook-content.py ├── Monitoring Extraction Scanner.Notebook ├── .platform └── notebook-content.py ├── Platform Inventory.KQLDatabase ├── .platform ├── DatabaseProperties.json └── DatabaseSchema.kql ├── Platform Monitoring.KQLDashboard ├── .platform └── RealTimeDashboard.json ├── Refresh Inventory.DataPipeline ├── .platform └── pipeline-content.json ├── Refresh Refreshables.DataPipeline ├── .platform └── pipeline-content.json └── Refresh Scanner API.DataPipeline ├── .platform └── pipeline-content.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/01 - Gateway Monitoring Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/Images/01 - Gateway Monitoring Architecture.png -------------------------------------------------------------------------------- /Images/01_PlatformObservabilityArchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/Images/01_PlatformObservabilityArchitecture.png -------------------------------------------------------------------------------- /Images/02 - New Eventstream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/Images/02 - New Eventstream.png -------------------------------------------------------------------------------- /Images/02_Notebook_Builtin_Resources_Example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/Images/02_Notebook_Builtin_Resources_Example.png -------------------------------------------------------------------------------- /Images/03 - Custom App Eventstream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/Images/03 - Custom App Eventstream.png -------------------------------------------------------------------------------- /Images/04 - Lakehouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/Images/04 - Lakehouse.png -------------------------------------------------------------------------------- /Images/05 - Gateway Report Data Logic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/Images/05 - Gateway Report Data Logic.png -------------------------------------------------------------------------------- /Images/06 - Connect to KQL Database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/Images/06 - Connect to KQL Database.png -------------------------------------------------------------------------------- /Images/07 - Select Eventhouse Table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/Images/07 - Select Eventhouse Table.png -------------------------------------------------------------------------------- /Images/08 - Select Mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/Images/08 - Select Mapping.png -------------------------------------------------------------------------------- /Images/09 - Connect to KQL Database Report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/Images/09 - Connect to KQL Database Report.png -------------------------------------------------------------------------------- /Images/10 - Select Eventhouse Table Report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/Images/10 - Select Eventhouse Table Report.png -------------------------------------------------------------------------------- /Images/11 - PBIT Parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/Images/11 - PBIT Parameters.png -------------------------------------------------------------------------------- /Images/12 - Select Mapping Report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/Images/12 - Select Mapping Report.png -------------------------------------------------------------------------------- /Images/13 - Report Gateway Information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/Images/13 - Report Gateway Information.png -------------------------------------------------------------------------------- /Images/14 - Report Jobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/Images/14 - Report Jobs.png -------------------------------------------------------------------------------- /Images/15 - Report Job Details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/Images/15 - Report Job Details.png -------------------------------------------------------------------------------- /Images/16 - Report Queries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/Images/16 - Report Queries.png -------------------------------------------------------------------------------- /Images/17 - Report Running Jobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/Images/17 - Report Running Jobs.png -------------------------------------------------------------------------------- /Images/18 - Report System Information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/Images/18 - Report System Information.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/README.md -------------------------------------------------------------------------------- /config/deployment_order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/config/deployment_order.json -------------------------------------------------------------------------------- /gateway/PBI Report/Gateway Monitor.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/gateway/PBI Report/Gateway Monitor.pbit -------------------------------------------------------------------------------- /gateway/PowerShellScript/Get-DataGatewayInfo.cmd: -------------------------------------------------------------------------------- 1 | pwsh -File ".\Get-DataGatewayInfo.ps1" -------------------------------------------------------------------------------- /gateway/PowerShellScript/Get-DataGatewayInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/gateway/PowerShellScript/Get-DataGatewayInfo.ps1 -------------------------------------------------------------------------------- /gateway/PowerShellScript/Install-DataGatewayAuto.cmd: -------------------------------------------------------------------------------- 1 | pwsh -File ".\Install-DataGatewayAuto.ps1" -------------------------------------------------------------------------------- /gateway/PowerShellScript/Install-DataGatewayAuto.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/gateway/PowerShellScript/Install-DataGatewayAuto.ps1 -------------------------------------------------------------------------------- /gateway/PowerShellScript/Run-GatewayHeartbeat.cmd: -------------------------------------------------------------------------------- 1 | pwsh -File ".\Run-GatewayHeartbeat.ps1" -------------------------------------------------------------------------------- /gateway/PowerShellScript/Run-GatewayHeartbeat.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/gateway/PowerShellScript/Run-GatewayHeartbeat.ps1 -------------------------------------------------------------------------------- /gateway/PowerShellScript/Run-UploadGatewayLogs.cmd: -------------------------------------------------------------------------------- 1 | pwsh -File ".\Run-UploadGatewayLogs.ps1" -------------------------------------------------------------------------------- /gateway/PowerShellScript/Run-UploadGatewayLogs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/gateway/PowerShellScript/Run-UploadGatewayLogs.ps1 -------------------------------------------------------------------------------- /gateway/PowerShellScript/Setup-UpdateConfiguration.cmd: -------------------------------------------------------------------------------- 1 | pwsh -File ".\Setup-UpdateConfiguration.ps1" -------------------------------------------------------------------------------- /gateway/PowerShellScript/Setup-UpdateConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/gateway/PowerShellScript/Setup-UpdateConfiguration.ps1 -------------------------------------------------------------------------------- /gateway/PowerShellScript/modules/UploadGatewayLogs.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/gateway/PowerShellScript/modules/UploadGatewayLogs.psm1 -------------------------------------------------------------------------------- /gateway/PowerShellScript/modules/Utils.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/gateway/PowerShellScript/modules/Utils.psm1 -------------------------------------------------------------------------------- /gateway/TaskSchedulers/Gateway-Heartbeat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/gateway/TaskSchedulers/Gateway-Heartbeat.xml -------------------------------------------------------------------------------- /gateway/TaskSchedulers/Gateway-NodeInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/gateway/TaskSchedulers/Gateway-NodeInfo.xml -------------------------------------------------------------------------------- /gateway/TaskSchedulers/Gateway-Upload Logs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/gateway/TaskSchedulers/Gateway-Upload Logs.xml -------------------------------------------------------------------------------- /setup/Gateway Config.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/setup/Gateway Config.ipynb -------------------------------------------------------------------------------- /setup/Platform Monitoring Setup.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/setup/Platform Monitoring Setup.ipynb -------------------------------------------------------------------------------- /src/ActivityEvents/Activity Events.KQLDatabase/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/ActivityEvents/Activity Events.KQLDatabase/.platform -------------------------------------------------------------------------------- /src/ActivityEvents/Activity Events.KQLDatabase/DatabaseProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/ActivityEvents/Activity Events.KQLDatabase/DatabaseProperties.json -------------------------------------------------------------------------------- /src/ActivityEvents/Activity Events.KQLDatabase/DatabaseSchema.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/ActivityEvents/Activity Events.KQLDatabase/DatabaseSchema.kql -------------------------------------------------------------------------------- /src/ActivityEvents/Monitoring Audit Logs.Notebook/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/ActivityEvents/Monitoring Audit Logs.Notebook/.platform -------------------------------------------------------------------------------- /src/ActivityEvents/Monitoring Audit Logs.Notebook/notebook-content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/ActivityEvents/Monitoring Audit Logs.Notebook/notebook-content.py -------------------------------------------------------------------------------- /src/ActivityEvents/Platform Activities.KQLDashboard/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/ActivityEvents/Platform Activities.KQLDashboard/.platform -------------------------------------------------------------------------------- /src/ActivityEvents/Platform Activities.KQLDashboard/RealTimeDashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/ActivityEvents/Platform Activities.KQLDashboard/RealTimeDashboard.json -------------------------------------------------------------------------------- /src/ActivityEvents/Refresh Activity Events.DataPipeline/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/ActivityEvents/Refresh Activity Events.DataPipeline/.platform -------------------------------------------------------------------------------- /src/ActivityEvents/Refresh Activity Events.DataPipeline/pipeline-content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/ActivityEvents/Refresh Activity Events.DataPipeline/pipeline-content.json -------------------------------------------------------------------------------- /src/Core/Fabric Platform Monitoring.Eventhouse/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Core/Fabric Platform Monitoring.Eventhouse/.platform -------------------------------------------------------------------------------- /src/Core/Fabric Platform Monitoring.Eventhouse/EventhouseProperties.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/Core/Platform Monitoring.VariableLibrary/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Core/Platform Monitoring.VariableLibrary/.platform -------------------------------------------------------------------------------- /src/Core/Platform Monitoring.VariableLibrary/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Core/Platform Monitoring.VariableLibrary/settings.json -------------------------------------------------------------------------------- /src/Core/Platform Monitoring.VariableLibrary/valueSets/Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Core/Platform Monitoring.VariableLibrary/valueSets/Production.json -------------------------------------------------------------------------------- /src/Core/Platform Monitoring.VariableLibrary/variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Core/Platform Monitoring.VariableLibrary/variables.json -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.KQLDashboard/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.KQLDashboard/.platform -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.KQLDashboard/RealTimeDashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.KQLDashboard/RealTimeDashboard.json -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.KQLDatabase/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.KQLDatabase/.platform -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.KQLDatabase/DatabaseProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.KQLDatabase/DatabaseProperties.json -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.KQLDatabase/DatabaseSchema.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.KQLDatabase/DatabaseSchema.kql -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.Report/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.Report/.platform -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.Report/StaticResources/RegisteredResources/Gateway_Monitoring126513412014013.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Gateway Monitoring" 3 | } -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.Report/StaticResources/RegisteredResources/Mashup_profiles_Background89013578270551088898.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.Report/StaticResources/RegisteredResources/Mashup_profiles_Background89013578270551088898.png -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.Report/StaticResources/RegisteredResources/Mashup_profiles_Background89015504288993930075.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.Report/StaticResources/RegisteredResources/Mashup_profiles_Background89015504288993930075.png -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.Report/StaticResources/RegisteredResources/Mashup_profiles_Background89019264769051534385.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.Report/StaticResources/RegisteredResources/Mashup_profiles_Background89019264769051534385.png -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.Report/StaticResources/RegisteredResources/Requests_Background8022619583811181878256453692.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.Report/StaticResources/RegisteredResources/Requests_Background8022619583811181878256453692.png -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.Report/StaticResources/RegisteredResources/gateway-monitoring-solution-ba6590567192205818.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.Report/StaticResources/RegisteredResources/gateway-monitoring-solution-ba6590567192205818.png -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.Report/StaticResources/RegisteredResources/gateway-monitoring-solution-ba7587701345820725.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.Report/StaticResources/RegisteredResources/gateway-monitoring-solution-ba7587701345820725.png -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.Report/StaticResources/SharedResources/BaseThemes/CY24SU08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.Report/StaticResources/SharedResources/BaseThemes/CY24SU08.json -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.Report/definition.pbir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.Report/definition.pbir -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.Report/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.Report/report.json -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.SemanticModel/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.SemanticModel/.platform -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.SemanticModel/definition.pbism: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.SemanticModel/definition.pbism -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.SemanticModel/definition/cultures/en-US.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.SemanticModel/definition/cultures/en-US.tmdl -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.SemanticModel/definition/database.tmdl: -------------------------------------------------------------------------------- 1 | database 2 | compatibilityLevel: 1567 3 | 4 | -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.SemanticModel/definition/expressions.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.SemanticModel/definition/expressions.tmdl -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.SemanticModel/definition/model.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.SemanticModel/definition/model.tmdl -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.SemanticModel/definition/relationships.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.SemanticModel/definition/relationships.tmdl -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.SemanticModel/definition/tables/Calendar.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.SemanticModel/definition/tables/Calendar.tmdl -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.SemanticModel/definition/tables/DateTableTemplate_1248dd8b-d642-4c21-8f3c-638ea14b43a2.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.SemanticModel/definition/tables/DateTableTemplate_1248dd8b-d642-4c21-8f3c-638ea14b43a2.tmdl -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.SemanticModel/definition/tables/Execution Measures.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.SemanticModel/definition/tables/Execution Measures.tmdl -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.SemanticModel/definition/tables/Gateway Node Info.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.SemanticModel/definition/tables/Gateway Node Info.tmdl -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.SemanticModel/definition/tables/LocalDateTable_21295484-02b4-41dc-a118-481a9522f4e8.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.SemanticModel/definition/tables/LocalDateTable_21295484-02b4-41dc-a118-481a9522f4e8.tmdl -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.SemanticModel/definition/tables/LocalDateTable_758ae1f6-73ea-4834-a83d-5f63daa0003d.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.SemanticModel/definition/tables/LocalDateTable_758ae1f6-73ea-4834-a83d-5f63daa0003d.tmdl -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.SemanticModel/definition/tables/LocalDateTable_806bfee6-7282-4e7c-bc5c-1f501d4227f2.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.SemanticModel/definition/tables/LocalDateTable_806bfee6-7282-4e7c-bc5c-1f501d4227f2.tmdl -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.SemanticModel/definition/tables/Param - Counters Measure.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.SemanticModel/definition/tables/Param - Counters Measure.tmdl -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.SemanticModel/definition/tables/Period.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.SemanticModel/definition/tables/Period.tmdl -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.SemanticModel/definition/tables/Query Connections.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.SemanticModel/definition/tables/Query Connections.tmdl -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.SemanticModel/definition/tables/Query Execution.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.SemanticModel/definition/tables/Query Execution.tmdl -------------------------------------------------------------------------------- /src/Gateway/Gateway Monitoring.SemanticModel/definition/tables/System Counters.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/Gateway Monitoring.SemanticModel/definition/tables/System Counters.tmdl -------------------------------------------------------------------------------- /src/Gateway/GatewayMonitoringHeartbeat.Eventstream/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/GatewayMonitoringHeartbeat.Eventstream/.platform -------------------------------------------------------------------------------- /src/Gateway/GatewayMonitoringHeartbeat.Eventstream/eventstream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/GatewayMonitoringHeartbeat.Eventstream/eventstream.json -------------------------------------------------------------------------------- /src/Gateway/GatewayMonitoringHeartbeat.Eventstream/eventstreamProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/GatewayMonitoringHeartbeat.Eventstream/eventstreamProperties.json -------------------------------------------------------------------------------- /src/Gateway/GatewayMonitoringReports.Eventstream/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/GatewayMonitoringReports.Eventstream/.platform -------------------------------------------------------------------------------- /src/Gateway/GatewayMonitoringReports.Eventstream/eventstream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/GatewayMonitoringReports.Eventstream/eventstream.json -------------------------------------------------------------------------------- /src/Gateway/GatewayMonitoringReports.Eventstream/eventstreamProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Gateway/GatewayMonitoringReports.Eventstream/eventstreamProperties.json -------------------------------------------------------------------------------- /src/Inventory/Monitoring Extraction Inventory.Notebook/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Inventory/Monitoring Extraction Inventory.Notebook/.platform -------------------------------------------------------------------------------- /src/Inventory/Monitoring Extraction Inventory.Notebook/notebook-content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Inventory/Monitoring Extraction Inventory.Notebook/notebook-content.py -------------------------------------------------------------------------------- /src/Inventory/Monitoring Extraction Refreshables.Notebook/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Inventory/Monitoring Extraction Refreshables.Notebook/.platform -------------------------------------------------------------------------------- /src/Inventory/Monitoring Extraction Refreshables.Notebook/notebook-content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Inventory/Monitoring Extraction Refreshables.Notebook/notebook-content.py -------------------------------------------------------------------------------- /src/Inventory/Monitoring Extraction Scanner.Notebook/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Inventory/Monitoring Extraction Scanner.Notebook/.platform -------------------------------------------------------------------------------- /src/Inventory/Monitoring Extraction Scanner.Notebook/notebook-content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Inventory/Monitoring Extraction Scanner.Notebook/notebook-content.py -------------------------------------------------------------------------------- /src/Inventory/Platform Inventory.KQLDatabase/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Inventory/Platform Inventory.KQLDatabase/.platform -------------------------------------------------------------------------------- /src/Inventory/Platform Inventory.KQLDatabase/DatabaseProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Inventory/Platform Inventory.KQLDatabase/DatabaseProperties.json -------------------------------------------------------------------------------- /src/Inventory/Platform Inventory.KQLDatabase/DatabaseSchema.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Inventory/Platform Inventory.KQLDatabase/DatabaseSchema.kql -------------------------------------------------------------------------------- /src/Inventory/Platform Monitoring.KQLDashboard/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Inventory/Platform Monitoring.KQLDashboard/.platform -------------------------------------------------------------------------------- /src/Inventory/Platform Monitoring.KQLDashboard/RealTimeDashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Inventory/Platform Monitoring.KQLDashboard/RealTimeDashboard.json -------------------------------------------------------------------------------- /src/Inventory/Refresh Inventory.DataPipeline/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Inventory/Refresh Inventory.DataPipeline/.platform -------------------------------------------------------------------------------- /src/Inventory/Refresh Inventory.DataPipeline/pipeline-content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Inventory/Refresh Inventory.DataPipeline/pipeline-content.json -------------------------------------------------------------------------------- /src/Inventory/Refresh Refreshables.DataPipeline/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Inventory/Refresh Refreshables.DataPipeline/.platform -------------------------------------------------------------------------------- /src/Inventory/Refresh Refreshables.DataPipeline/pipeline-content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Inventory/Refresh Refreshables.DataPipeline/pipeline-content.json -------------------------------------------------------------------------------- /src/Inventory/Refresh Scanner API.DataPipeline/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Inventory/Refresh Scanner API.DataPipeline/.platform -------------------------------------------------------------------------------- /src/Inventory/Refresh Scanner API.DataPipeline/pipeline-content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecotte/Fabric-Monitoring-RTI/HEAD/src/Inventory/Refresh Scanner API.DataPipeline/pipeline-content.json --------------------------------------------------------------------------------