Add Azure benchmark analytics dashboard and seeding infrastructure#2163
Merged
Add Azure benchmark analytics dashboard and seeding infrastructure#2163
Conversation
143e1cb to
64a756a
Compare
Contributor
There was a problem hiding this comment.
Pull request overview
Adds Azure as a supported benchmark provider and introduces Superset asset bundles plus server-side seeding code to create/import an “Azure Benchmark” analytics dashboard (OPS-3973).
Changes:
- Added
AZUREto the sharedBenchmarkProvidersenum and routed provider handling to an Azure dashboard seeder. - Introduced Azure benchmark dashboard seeding (virtual datasets + dashboard import + embedding enablement + registry upsert).
- Added Superset dashboard asset bundle for the Azure benchmark dashboard (database/datasets/charts/dashboard metadata).
Reviewed changes
Copilot reviewed 18 out of 18 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| packages/shared/src/lib/benchmark/benchmark-providers.ts | Adds AZURE provider enum value used for routing. |
| packages/server/api/src/app/openops-analytics/benchmark/benchmark-dashboard-service.ts | Routes BenchmarkProviders.AZURE to the new Azure seeding flow. |
| packages/server/api/src/app/openops-analytics/benchmark/create-azure-benchmark-dashboard.ts | Implements Azure dashboard seeding orchestration (datasets, import, embedding, registry). |
| packages/server/api/src/app/openops-analytics/benchmark/create-azure-benchmark-datasets.ts | Creates Azure-specific virtual datasets used by the dashboard. |
| packages/server/api/src/assets/azure-benchmark-dashboard/metadata.yaml | Superset asset bundle metadata for Azure dashboard export. |
| packages/server/api/src/assets/azure-benchmark-dashboard/databases/openops_tables_connection.yaml | Superset database asset placeholder for import mapping. |
| packages/server/api/src/assets/azure-benchmark-dashboard/datasets/openops_tables_connection/Azure_Benchmark_Timeseries.yaml | Superset dataset asset definition for Azure benchmark timeseries. |
| packages/server/api/src/assets/azure-benchmark-dashboard/datasets/openops_tables_connection/Azure_Benchmark_Opportunities.yaml | Superset dataset asset definition for Azure benchmark opportunities. |
| packages/server/api/src/assets/azure-benchmark-dashboard/datasets/openops_tables_connection/Azure_Benchmark_KPI_efficiency.yaml | Superset dataset asset definition for Azure KPI/efficiency dataset. |
| packages/server/api/src/assets/azure-benchmark-dashboard/dashboards/Azure_Benchmark_3.yaml | Superset dashboard layout/config for “Azure Benchmark”. |
| packages/server/api/src/assets/azure-benchmark-dashboard/charts/Azure_Unified_Cost_Efficiency_Metric_10.yaml | Superset “Unified Cost Efficiency” big number chart config for Azure. |
| packages/server/api/src/assets/azure-benchmark-dashboard/charts/Azure_Total_Opportunities_16.yaml | Superset “Total Opportunities” big number chart config for Azure. |
| packages/server/api/src/assets/azure-benchmark-dashboard/charts/Azure_Top_opportunities_to_address_15.yaml | Superset top opportunities table chart config for Azure. |
| packages/server/api/src/assets/azure-benchmark-dashboard/charts/Azure_Monthly_Amortized_Cost_Over_Time_12.yaml | Superset monthly amortized cost chart config for Azure. |
| packages/server/api/src/assets/azure-benchmark-dashboard/charts/Azure_Estimated_Monthly_Savings_13.yaml | Superset estimated monthly savings big number chart config for Azure. |
| packages/server/api/src/assets/azure-benchmark-dashboard/charts/Azure_By_Service_14.yaml | Superset “By Service” aggregation table chart config for Azure. |
| packages/server/api/src/assets/azure-benchmark-dashboard/charts/Azure_By_Region_9.yaml | Superset “By Region” aggregation table chart config for Azure. |
| packages/server/api/src/assets/azure-benchmark-dashboard/charts/Azure_By_Account_11.yaml | Superset “By Account” aggregation table chart config for Azure. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
ravikiranvm
approved these changes
Mar 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Fixes OPS-3973, OPS-3942.