├── .gitignore ├── CODE_OF_CONDUCT.md ├── FabricASEngineAnalytics ├── FabricASEngineAnalytics.pbit ├── README.md ├── media │ ├── model-view.png │ ├── page-command-executesql.png │ ├── page-command-partition.png │ ├── page-command-requestid.png │ ├── page-execution.png │ ├── page-query.png │ ├── page-refresh-details.png │ ├── parameters.png │ ├── refresh-history-error.png │ └── refresh-history.png └── src │ ├── FabricASEngineAnalytics.pbip │ ├── Report │ ├── .platform │ ├── StaticResources │ │ ├── RegisteredResources │ │ │ └── BYOLA_theme_for_text_font_and_15502500500271732.json │ │ └── SharedResources │ │ │ └── BaseThemes │ │ │ └── CY23SU08.json │ ├── definition.pbir │ └── report.json │ └── SemanticModel │ ├── .pbi │ └── editorSettings.json │ ├── .platform │ ├── definition.pbism │ ├── definition │ ├── cultures │ │ └── en-US.tmdl │ ├── database.tmdl │ ├── expressions.tmdl │ ├── model.tmdl │ ├── relationships.tmdl │ └── tables │ │ ├── Artifact.tmdl │ │ ├── Calendar.tmdl │ │ ├── EventText.tmdl │ │ ├── ExecutionMetrics.tmdl │ │ └── Progress Report.tmdl │ └── diagramLayout.json ├── LICENSE ├── PBIASEngine ├── PBIASEngine.pbit ├── README.md ├── media │ ├── dataset-refresh-detail.png │ ├── dataset-refreshes.png │ ├── engine-activities.png │ ├── engine-activity-details.png │ ├── er-diagram.png │ ├── error-detail.png │ ├── error-summary.png │ ├── filters.png │ ├── help.png │ ├── info-and-back.png │ ├── nav-bar.png │ ├── parameters.png │ ├── pop-up-filter.png │ ├── query-detail.png │ ├── query-history.png │ ├── query-statistics.png │ ├── smart-narrative.png │ ├── template-app-as-engine-flow.png │ ├── user-activities.png │ ├── user-detail.png │ └── workspace-summary.png └── src │ ├── PBIASEngine.pbip │ ├── Report │ ├── .platform │ ├── CustomVisuals │ │ ├── asTimeline3ECFC8FDEB264A3ABB1C0E31EC19FE14 │ │ │ ├── package.json │ │ │ └── resources │ │ │ │ └── asTimeline3ECFC8FDEB264A3ABB1C0E31EC19FE14.pbiviz.json │ │ └── violinPlot4D46EB9EB3A141D9BA2289793175D971 │ │ │ ├── package.json │ │ │ └── resources │ │ │ └── violinPlot4D46EB9EB3A141D9BA2289793175D971.pbiviz.json │ ├── StaticResources │ │ ├── RegisteredResources │ │ │ ├── BYOLA_theme_for_text_font_and_8157194500740776.json │ │ │ ├── Clear46186915240648263.png │ │ │ ├── DrillThrough4519775870623095.png │ │ │ ├── Eraser9995041644693476.png │ │ │ ├── Filters3982434512946227.png │ │ │ ├── FiltersOverlay05548328819046544.png │ │ │ ├── SmartNarrative16318307671685095.png │ │ │ ├── cancel8811649851757009.png │ │ │ ├── cross8824017840019251.png │ │ │ ├── filter29327967117947322.png │ │ │ └── navBarNew6822195200430698.png │ │ └── SharedResources │ │ │ └── BaseThemes │ │ │ └── CY21SU02.json │ ├── definition.pbir │ └── report.json │ └── SemanticModel │ ├── .pbi │ └── editorSettings.json │ ├── .platform │ ├── definition.pbism │ ├── definition │ ├── cultures │ │ └── en-US.tmdl │ ├── database.tmdl │ ├── expressions.tmdl │ ├── model.tmdl │ ├── relationships.tmdl │ └── tables │ │ ├── Calendar.tmdl │ │ ├── Child page.tmdl │ │ ├── Current page.tmdl │ │ ├── EndDateTable.tmdl │ │ ├── EndTime.tmdl │ │ ├── GetWorkspaceId.tmdl │ │ ├── Last Refresh.tmdl │ │ ├── Operation.tmdl │ │ ├── Parent page.tmdl │ │ ├── Query Duration Segment.tmdl │ │ ├── Refresh Duration Segment.tmdl │ │ ├── Report Measures.tmdl │ │ ├── Scenario.tmdl │ │ ├── StartDateTable.tmdl │ │ ├── StartTime.tmdl │ │ ├── Suboperation - Aggregations.tmdl │ │ ├── Suboperation - Query.tmdl │ │ ├── Suboperation - Refresh.tmdl │ │ ├── Time.tmdl │ │ ├── Timeline Visual Columns.tmdl │ │ ├── Top N Selector.tmdl │ │ └── User.tmdl │ └── diagramLayout.json ├── README.md ├── SECURITY.md ├── SUPPORT.md └── scripts └── BYOLA-AdminConnectToWorkspace.ps1 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /FabricASEngineAnalytics/FabricASEngineAnalytics.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/FabricASEngineAnalytics.pbit -------------------------------------------------------------------------------- /FabricASEngineAnalytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/README.md -------------------------------------------------------------------------------- /FabricASEngineAnalytics/media/model-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/media/model-view.png -------------------------------------------------------------------------------- /FabricASEngineAnalytics/media/page-command-executesql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/media/page-command-executesql.png -------------------------------------------------------------------------------- /FabricASEngineAnalytics/media/page-command-partition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/media/page-command-partition.png -------------------------------------------------------------------------------- /FabricASEngineAnalytics/media/page-command-requestid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/media/page-command-requestid.png -------------------------------------------------------------------------------- /FabricASEngineAnalytics/media/page-execution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/media/page-execution.png -------------------------------------------------------------------------------- /FabricASEngineAnalytics/media/page-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/media/page-query.png -------------------------------------------------------------------------------- /FabricASEngineAnalytics/media/page-refresh-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/media/page-refresh-details.png -------------------------------------------------------------------------------- /FabricASEngineAnalytics/media/parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/media/parameters.png -------------------------------------------------------------------------------- /FabricASEngineAnalytics/media/refresh-history-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/media/refresh-history-error.png -------------------------------------------------------------------------------- /FabricASEngineAnalytics/media/refresh-history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/media/refresh-history.png -------------------------------------------------------------------------------- /FabricASEngineAnalytics/src/FabricASEngineAnalytics.pbip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/src/FabricASEngineAnalytics.pbip -------------------------------------------------------------------------------- /FabricASEngineAnalytics/src/Report/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/src/Report/.platform -------------------------------------------------------------------------------- /FabricASEngineAnalytics/src/Report/StaticResources/RegisteredResources/BYOLA_theme_for_text_font_and_15502500500271732.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/src/Report/StaticResources/RegisteredResources/BYOLA_theme_for_text_font_and_15502500500271732.json -------------------------------------------------------------------------------- /FabricASEngineAnalytics/src/Report/StaticResources/SharedResources/BaseThemes/CY23SU08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/src/Report/StaticResources/SharedResources/BaseThemes/CY23SU08.json -------------------------------------------------------------------------------- /FabricASEngineAnalytics/src/Report/definition.pbir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/src/Report/definition.pbir -------------------------------------------------------------------------------- /FabricASEngineAnalytics/src/Report/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/src/Report/report.json -------------------------------------------------------------------------------- /FabricASEngineAnalytics/src/SemanticModel/.pbi/editorSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/src/SemanticModel/.pbi/editorSettings.json -------------------------------------------------------------------------------- /FabricASEngineAnalytics/src/SemanticModel/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/src/SemanticModel/.platform -------------------------------------------------------------------------------- /FabricASEngineAnalytics/src/SemanticModel/definition.pbism: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/src/SemanticModel/definition.pbism -------------------------------------------------------------------------------- /FabricASEngineAnalytics/src/SemanticModel/definition/cultures/en-US.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/src/SemanticModel/definition/cultures/en-US.tmdl -------------------------------------------------------------------------------- /FabricASEngineAnalytics/src/SemanticModel/definition/database.tmdl: -------------------------------------------------------------------------------- 1 | database 2 | compatibilityLevel: 1567 3 | 4 | -------------------------------------------------------------------------------- /FabricASEngineAnalytics/src/SemanticModel/definition/expressions.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/src/SemanticModel/definition/expressions.tmdl -------------------------------------------------------------------------------- /FabricASEngineAnalytics/src/SemanticModel/definition/model.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/src/SemanticModel/definition/model.tmdl -------------------------------------------------------------------------------- /FabricASEngineAnalytics/src/SemanticModel/definition/relationships.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/src/SemanticModel/definition/relationships.tmdl -------------------------------------------------------------------------------- /FabricASEngineAnalytics/src/SemanticModel/definition/tables/Artifact.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/src/SemanticModel/definition/tables/Artifact.tmdl -------------------------------------------------------------------------------- /FabricASEngineAnalytics/src/SemanticModel/definition/tables/Calendar.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/src/SemanticModel/definition/tables/Calendar.tmdl -------------------------------------------------------------------------------- /FabricASEngineAnalytics/src/SemanticModel/definition/tables/EventText.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/src/SemanticModel/definition/tables/EventText.tmdl -------------------------------------------------------------------------------- /FabricASEngineAnalytics/src/SemanticModel/definition/tables/ExecutionMetrics.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/src/SemanticModel/definition/tables/ExecutionMetrics.tmdl -------------------------------------------------------------------------------- /FabricASEngineAnalytics/src/SemanticModel/definition/tables/Progress Report.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/src/SemanticModel/definition/tables/Progress Report.tmdl -------------------------------------------------------------------------------- /FabricASEngineAnalytics/src/SemanticModel/diagramLayout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/FabricASEngineAnalytics/src/SemanticModel/diagramLayout.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/LICENSE -------------------------------------------------------------------------------- /PBIASEngine/PBIASEngine.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/PBIASEngine.pbit -------------------------------------------------------------------------------- /PBIASEngine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/README.md -------------------------------------------------------------------------------- /PBIASEngine/media/dataset-refresh-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/media/dataset-refresh-detail.png -------------------------------------------------------------------------------- /PBIASEngine/media/dataset-refreshes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/media/dataset-refreshes.png -------------------------------------------------------------------------------- /PBIASEngine/media/engine-activities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/media/engine-activities.png -------------------------------------------------------------------------------- /PBIASEngine/media/engine-activity-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/media/engine-activity-details.png -------------------------------------------------------------------------------- /PBIASEngine/media/er-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/media/er-diagram.png -------------------------------------------------------------------------------- /PBIASEngine/media/error-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/media/error-detail.png -------------------------------------------------------------------------------- /PBIASEngine/media/error-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/media/error-summary.png -------------------------------------------------------------------------------- /PBIASEngine/media/filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/media/filters.png -------------------------------------------------------------------------------- /PBIASEngine/media/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/media/help.png -------------------------------------------------------------------------------- /PBIASEngine/media/info-and-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/media/info-and-back.png -------------------------------------------------------------------------------- /PBIASEngine/media/nav-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/media/nav-bar.png -------------------------------------------------------------------------------- /PBIASEngine/media/parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/media/parameters.png -------------------------------------------------------------------------------- /PBIASEngine/media/pop-up-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/media/pop-up-filter.png -------------------------------------------------------------------------------- /PBIASEngine/media/query-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/media/query-detail.png -------------------------------------------------------------------------------- /PBIASEngine/media/query-history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/media/query-history.png -------------------------------------------------------------------------------- /PBIASEngine/media/query-statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/media/query-statistics.png -------------------------------------------------------------------------------- /PBIASEngine/media/smart-narrative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/media/smart-narrative.png -------------------------------------------------------------------------------- /PBIASEngine/media/template-app-as-engine-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/media/template-app-as-engine-flow.png -------------------------------------------------------------------------------- /PBIASEngine/media/user-activities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/media/user-activities.png -------------------------------------------------------------------------------- /PBIASEngine/media/user-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/media/user-detail.png -------------------------------------------------------------------------------- /PBIASEngine/media/workspace-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/media/workspace-summary.png -------------------------------------------------------------------------------- /PBIASEngine/src/PBIASEngine.pbip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/PBIASEngine.pbip -------------------------------------------------------------------------------- /PBIASEngine/src/Report/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/Report/.platform -------------------------------------------------------------------------------- /PBIASEngine/src/Report/CustomVisuals/asTimeline3ECFC8FDEB264A3ABB1C0E31EC19FE14/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/Report/CustomVisuals/asTimeline3ECFC8FDEB264A3ABB1C0E31EC19FE14/package.json -------------------------------------------------------------------------------- /PBIASEngine/src/Report/CustomVisuals/asTimeline3ECFC8FDEB264A3ABB1C0E31EC19FE14/resources/asTimeline3ECFC8FDEB264A3ABB1C0E31EC19FE14.pbiviz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/Report/CustomVisuals/asTimeline3ECFC8FDEB264A3ABB1C0E31EC19FE14/resources/asTimeline3ECFC8FDEB264A3ABB1C0E31EC19FE14.pbiviz.json -------------------------------------------------------------------------------- /PBIASEngine/src/Report/CustomVisuals/violinPlot4D46EB9EB3A141D9BA2289793175D971/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/Report/CustomVisuals/violinPlot4D46EB9EB3A141D9BA2289793175D971/package.json -------------------------------------------------------------------------------- /PBIASEngine/src/Report/CustomVisuals/violinPlot4D46EB9EB3A141D9BA2289793175D971/resources/violinPlot4D46EB9EB3A141D9BA2289793175D971.pbiviz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/Report/CustomVisuals/violinPlot4D46EB9EB3A141D9BA2289793175D971/resources/violinPlot4D46EB9EB3A141D9BA2289793175D971.pbiviz.json -------------------------------------------------------------------------------- /PBIASEngine/src/Report/StaticResources/RegisteredResources/BYOLA_theme_for_text_font_and_8157194500740776.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/Report/StaticResources/RegisteredResources/BYOLA_theme_for_text_font_and_8157194500740776.json -------------------------------------------------------------------------------- /PBIASEngine/src/Report/StaticResources/RegisteredResources/Clear46186915240648263.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/Report/StaticResources/RegisteredResources/Clear46186915240648263.png -------------------------------------------------------------------------------- /PBIASEngine/src/Report/StaticResources/RegisteredResources/DrillThrough4519775870623095.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/Report/StaticResources/RegisteredResources/DrillThrough4519775870623095.png -------------------------------------------------------------------------------- /PBIASEngine/src/Report/StaticResources/RegisteredResources/Eraser9995041644693476.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/Report/StaticResources/RegisteredResources/Eraser9995041644693476.png -------------------------------------------------------------------------------- /PBIASEngine/src/Report/StaticResources/RegisteredResources/Filters3982434512946227.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/Report/StaticResources/RegisteredResources/Filters3982434512946227.png -------------------------------------------------------------------------------- /PBIASEngine/src/Report/StaticResources/RegisteredResources/FiltersOverlay05548328819046544.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/Report/StaticResources/RegisteredResources/FiltersOverlay05548328819046544.png -------------------------------------------------------------------------------- /PBIASEngine/src/Report/StaticResources/RegisteredResources/SmartNarrative16318307671685095.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/Report/StaticResources/RegisteredResources/SmartNarrative16318307671685095.png -------------------------------------------------------------------------------- /PBIASEngine/src/Report/StaticResources/RegisteredResources/cancel8811649851757009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/Report/StaticResources/RegisteredResources/cancel8811649851757009.png -------------------------------------------------------------------------------- /PBIASEngine/src/Report/StaticResources/RegisteredResources/cross8824017840019251.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/Report/StaticResources/RegisteredResources/cross8824017840019251.png -------------------------------------------------------------------------------- /PBIASEngine/src/Report/StaticResources/RegisteredResources/filter29327967117947322.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/Report/StaticResources/RegisteredResources/filter29327967117947322.png -------------------------------------------------------------------------------- /PBIASEngine/src/Report/StaticResources/RegisteredResources/navBarNew6822195200430698.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/Report/StaticResources/RegisteredResources/navBarNew6822195200430698.png -------------------------------------------------------------------------------- /PBIASEngine/src/Report/StaticResources/SharedResources/BaseThemes/CY21SU02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/Report/StaticResources/SharedResources/BaseThemes/CY21SU02.json -------------------------------------------------------------------------------- /PBIASEngine/src/Report/definition.pbir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/Report/definition.pbir -------------------------------------------------------------------------------- /PBIASEngine/src/Report/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/Report/report.json -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/.pbi/editorSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/.pbi/editorSettings.json -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/.platform -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition.pbism: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition.pbism -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/cultures/en-US.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/cultures/en-US.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/database.tmdl: -------------------------------------------------------------------------------- 1 | database 2 | compatibilityLevel: 1567 3 | 4 | -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/expressions.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/expressions.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/model.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/model.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/relationships.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/relationships.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/tables/Calendar.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/tables/Calendar.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/tables/Child page.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/tables/Child page.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/tables/Current page.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/tables/Current page.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/tables/EndDateTable.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/tables/EndDateTable.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/tables/EndTime.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/tables/EndTime.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/tables/GetWorkspaceId.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/tables/GetWorkspaceId.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/tables/Last Refresh.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/tables/Last Refresh.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/tables/Operation.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/tables/Operation.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/tables/Parent page.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/tables/Parent page.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/tables/Query Duration Segment.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/tables/Query Duration Segment.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/tables/Refresh Duration Segment.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/tables/Refresh Duration Segment.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/tables/Report Measures.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/tables/Report Measures.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/tables/Scenario.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/tables/Scenario.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/tables/StartDateTable.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/tables/StartDateTable.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/tables/StartTime.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/tables/StartTime.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/tables/Suboperation - Aggregations.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/tables/Suboperation - Aggregations.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/tables/Suboperation - Query.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/tables/Suboperation - Query.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/tables/Suboperation - Refresh.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/tables/Suboperation - Refresh.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/tables/Time.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/tables/Time.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/tables/Timeline Visual Columns.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/tables/Timeline Visual Columns.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/tables/Top N Selector.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/tables/Top N Selector.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/definition/tables/User.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/definition/tables/User.tmdl -------------------------------------------------------------------------------- /PBIASEngine/src/SemanticModel/diagramLayout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/PBIASEngine/src/SemanticModel/diagramLayout.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /scripts/BYOLA-AdminConnectToWorkspace.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-LogAnalytics-Template-Reports/HEAD/scripts/BYOLA-AdminConnectToWorkspace.ps1 --------------------------------------------------------------------------------