├── .github └── workflows │ └── dashboard.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── azure.yaml ├── docs ├── CopilotDashboard.png ├── CopilotDashboard.vsdx ├── dashboard.jpeg └── dashboard_2025.png ├── infra ├── README.md ├── main.bicep ├── main.parameters.json └── resources.bicep └── src ├── background ├── .gitignore ├── DataIngestion.sln └── DataIngestion │ ├── DataIngestion.csproj │ ├── Functions │ ├── CopilotMetricsIngestion.cs │ └── CopilotSeatsIngestion.cs │ ├── GithubMetricsApiOptions.cs │ ├── Models │ ├── CopilotMetrics.cs │ ├── CopilotSeats.cs │ └── GitHubModels.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Services │ ├── GitHubCopilotMetricsClient.cs │ ├── GitHubCopilotSeatsClient.cs │ └── Helpers.cs │ ├── TestData │ └── metrics.json │ └── host.json └── dashboard ├── .env.example ├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── favicon.ico ├── globals.css ├── layout.tsx ├── loading.tsx ├── page.tsx └── seats │ ├── loading.tsx │ └── page.tsx ├── components.json ├── components └── ui │ ├── accordion.tsx │ ├── alert-dialog.tsx │ ├── alert.tsx │ ├── aspect-ratio.tsx │ ├── avatar.tsx │ ├── badge.tsx │ ├── breadcrumb.tsx │ ├── button.tsx │ ├── calendar.tsx │ ├── card.tsx │ ├── carousel.tsx │ ├── chart.tsx │ ├── checkbox.tsx │ ├── collapsible.tsx │ ├── command.tsx │ ├── context-menu.tsx │ ├── data-picker.tsx │ ├── data-table-column-header.tsx │ ├── data-table-export-options.tsx │ ├── data-table-faceted-filter.tsx │ ├── data-table-toolbar.tsx │ ├── data-table-view-options.tsx │ ├── data-table.tsx │ ├── dialog.tsx │ ├── drawer.tsx │ ├── dropdown-menu.tsx │ ├── form.tsx │ ├── hover-card.tsx │ ├── input-otp.tsx │ ├── input.tsx │ ├── label.tsx │ ├── menubar.tsx │ ├── navigation-menu.tsx │ ├── pagination.tsx │ ├── popover.tsx │ ├── progress.tsx │ ├── radio-group.tsx │ ├── resizable.tsx │ ├── scroll-area.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── sheet.tsx │ ├── skeleton.tsx │ ├── slider.tsx │ ├── sonner.tsx │ ├── switch.tsx │ ├── table.tsx │ ├── tabs.tsx │ ├── textarea.tsx │ ├── toast.tsx │ ├── toaster.tsx │ ├── toggle-group.tsx │ ├── toggle.tsx │ ├── tooltip.tsx │ └── use-toast.ts ├── features ├── app-header │ ├── app-header.tsx │ ├── main-nav-item.tsx │ └── theme-toggle.tsx ├── common │ ├── chart-header.tsx │ ├── error-page.tsx │ ├── models.tsx │ ├── response-error.ts │ ├── server-action-response.ts │ └── theme-provider.tsx ├── dashboard │ ├── charts │ │ ├── acceptance-rate.test.ts │ │ ├── acceptance-rate.tsx │ │ ├── active-users.test.ts │ │ ├── active-users.tsx │ │ ├── chart-header.tsx │ │ ├── chat-acceptance-rate.tsx │ │ ├── common.ts │ │ ├── editor.tsx │ │ ├── language.tsx │ │ ├── stats-card.tsx │ │ ├── stats.tsx │ │ ├── total-chat-suggestions-and-acceptances.tsx │ │ ├── total-code-line-suggestions-and-acceptances.tsx │ │ └── total-suggestions-and-acceptances.tsx │ ├── dashboard-page.tsx │ ├── dashboard-state.tsx │ ├── filter │ │ ├── date-filter.tsx │ │ ├── dropdown-filter.tsx │ │ ├── header-filter.tsx │ │ ├── time-frame-toggle.tsx │ │ └── weekend-filter.tsx │ └── header.tsx ├── page-header │ └── page-header.tsx └── seats │ ├── filters │ └── date-filter.tsx │ ├── header.tsx │ ├── seats-list.tsx │ ├── seats-page.tsx │ ├── seats-state.tsx │ └── stats │ ├── stats-card.tsx │ └── stats.tsx ├── lib └── utils.ts ├── next.config.mjs ├── package-lock.json ├── package.json ├── postcss.config.mjs ├── public └── copilot.png ├── services ├── copilot-metrics-service.ts ├── copilot-seat-service.ts ├── cosmos-db-service.ts ├── dashboard-actions.ts ├── env-service.ts └── sample-data.tsx ├── tailwind.config.ts ├── tsconfig.json ├── types └── type.ts ├── utils ├── data-mapper.ts └── helpers.ts └── vitest.config.ts /.github/workflows/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/.github/workflows/dashboard.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/azure.yaml -------------------------------------------------------------------------------- /docs/CopilotDashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/docs/CopilotDashboard.png -------------------------------------------------------------------------------- /docs/CopilotDashboard.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/docs/CopilotDashboard.vsdx -------------------------------------------------------------------------------- /docs/dashboard.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/docs/dashboard.jpeg -------------------------------------------------------------------------------- /docs/dashboard_2025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/docs/dashboard_2025.png -------------------------------------------------------------------------------- /infra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/infra/README.md -------------------------------------------------------------------------------- /infra/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/infra/main.bicep -------------------------------------------------------------------------------- /infra/main.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/infra/main.parameters.json -------------------------------------------------------------------------------- /infra/resources.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/infra/resources.bicep -------------------------------------------------------------------------------- /src/background/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/background/.gitignore -------------------------------------------------------------------------------- /src/background/DataIngestion.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/background/DataIngestion.sln -------------------------------------------------------------------------------- /src/background/DataIngestion/DataIngestion.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/background/DataIngestion/DataIngestion.csproj -------------------------------------------------------------------------------- /src/background/DataIngestion/Functions/CopilotMetricsIngestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/background/DataIngestion/Functions/CopilotMetricsIngestion.cs -------------------------------------------------------------------------------- /src/background/DataIngestion/Functions/CopilotSeatsIngestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/background/DataIngestion/Functions/CopilotSeatsIngestion.cs -------------------------------------------------------------------------------- /src/background/DataIngestion/GithubMetricsApiOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/background/DataIngestion/GithubMetricsApiOptions.cs -------------------------------------------------------------------------------- /src/background/DataIngestion/Models/CopilotMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/background/DataIngestion/Models/CopilotMetrics.cs -------------------------------------------------------------------------------- /src/background/DataIngestion/Models/CopilotSeats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/background/DataIngestion/Models/CopilotSeats.cs -------------------------------------------------------------------------------- /src/background/DataIngestion/Models/GitHubModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/background/DataIngestion/Models/GitHubModels.cs -------------------------------------------------------------------------------- /src/background/DataIngestion/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/background/DataIngestion/Program.cs -------------------------------------------------------------------------------- /src/background/DataIngestion/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/background/DataIngestion/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/background/DataIngestion/Services/GitHubCopilotMetricsClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/background/DataIngestion/Services/GitHubCopilotMetricsClient.cs -------------------------------------------------------------------------------- /src/background/DataIngestion/Services/GitHubCopilotSeatsClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/background/DataIngestion/Services/GitHubCopilotSeatsClient.cs -------------------------------------------------------------------------------- /src/background/DataIngestion/Services/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/background/DataIngestion/Services/Helpers.cs -------------------------------------------------------------------------------- /src/background/DataIngestion/TestData/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/background/DataIngestion/TestData/metrics.json -------------------------------------------------------------------------------- /src/background/DataIngestion/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/background/DataIngestion/host.json -------------------------------------------------------------------------------- /src/dashboard/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/.env.example -------------------------------------------------------------------------------- /src/dashboard/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /src/dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/.gitignore -------------------------------------------------------------------------------- /src/dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/README.md -------------------------------------------------------------------------------- /src/dashboard/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/app/favicon.ico -------------------------------------------------------------------------------- /src/dashboard/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/app/globals.css -------------------------------------------------------------------------------- /src/dashboard/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/app/layout.tsx -------------------------------------------------------------------------------- /src/dashboard/app/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/app/loading.tsx -------------------------------------------------------------------------------- /src/dashboard/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/app/page.tsx -------------------------------------------------------------------------------- /src/dashboard/app/seats/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/app/seats/loading.tsx -------------------------------------------------------------------------------- /src/dashboard/app/seats/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/app/seats/page.tsx -------------------------------------------------------------------------------- /src/dashboard/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components.json -------------------------------------------------------------------------------- /src/dashboard/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/button.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/card.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/carousel.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/chart.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/command.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/data-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/data-picker.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/data-table-column-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/data-table-column-header.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/data-table-export-options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/data-table-export-options.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/data-table-faceted-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/data-table-faceted-filter.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/data-table-toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/data-table-toolbar.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/data-table-view-options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/data-table-view-options.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/data-table.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/form.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/input.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/label.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/menubar.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/pagination.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/resizable.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/select.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/table.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/toggle.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/dashboard/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/components/ui/use-toast.ts -------------------------------------------------------------------------------- /src/dashboard/features/app-header/app-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/app-header/app-header.tsx -------------------------------------------------------------------------------- /src/dashboard/features/app-header/main-nav-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/app-header/main-nav-item.tsx -------------------------------------------------------------------------------- /src/dashboard/features/app-header/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/app-header/theme-toggle.tsx -------------------------------------------------------------------------------- /src/dashboard/features/common/chart-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/common/chart-header.tsx -------------------------------------------------------------------------------- /src/dashboard/features/common/error-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/common/error-page.tsx -------------------------------------------------------------------------------- /src/dashboard/features/common/models.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/common/models.tsx -------------------------------------------------------------------------------- /src/dashboard/features/common/response-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/common/response-error.ts -------------------------------------------------------------------------------- /src/dashboard/features/common/server-action-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/common/server-action-response.ts -------------------------------------------------------------------------------- /src/dashboard/features/common/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/common/theme-provider.tsx -------------------------------------------------------------------------------- /src/dashboard/features/dashboard/charts/acceptance-rate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/dashboard/charts/acceptance-rate.test.ts -------------------------------------------------------------------------------- /src/dashboard/features/dashboard/charts/acceptance-rate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/dashboard/charts/acceptance-rate.tsx -------------------------------------------------------------------------------- /src/dashboard/features/dashboard/charts/active-users.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/dashboard/charts/active-users.test.ts -------------------------------------------------------------------------------- /src/dashboard/features/dashboard/charts/active-users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/dashboard/charts/active-users.tsx -------------------------------------------------------------------------------- /src/dashboard/features/dashboard/charts/chart-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/dashboard/charts/chart-header.tsx -------------------------------------------------------------------------------- /src/dashboard/features/dashboard/charts/chat-acceptance-rate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/dashboard/charts/chat-acceptance-rate.tsx -------------------------------------------------------------------------------- /src/dashboard/features/dashboard/charts/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/dashboard/charts/common.ts -------------------------------------------------------------------------------- /src/dashboard/features/dashboard/charts/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/dashboard/charts/editor.tsx -------------------------------------------------------------------------------- /src/dashboard/features/dashboard/charts/language.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/dashboard/charts/language.tsx -------------------------------------------------------------------------------- /src/dashboard/features/dashboard/charts/stats-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/dashboard/charts/stats-card.tsx -------------------------------------------------------------------------------- /src/dashboard/features/dashboard/charts/stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/dashboard/charts/stats.tsx -------------------------------------------------------------------------------- /src/dashboard/features/dashboard/charts/total-chat-suggestions-and-acceptances.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/dashboard/charts/total-chat-suggestions-and-acceptances.tsx -------------------------------------------------------------------------------- /src/dashboard/features/dashboard/charts/total-code-line-suggestions-and-acceptances.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/dashboard/charts/total-code-line-suggestions-and-acceptances.tsx -------------------------------------------------------------------------------- /src/dashboard/features/dashboard/charts/total-suggestions-and-acceptances.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/dashboard/charts/total-suggestions-and-acceptances.tsx -------------------------------------------------------------------------------- /src/dashboard/features/dashboard/dashboard-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/dashboard/dashboard-page.tsx -------------------------------------------------------------------------------- /src/dashboard/features/dashboard/dashboard-state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/dashboard/dashboard-state.tsx -------------------------------------------------------------------------------- /src/dashboard/features/dashboard/filter/date-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/dashboard/filter/date-filter.tsx -------------------------------------------------------------------------------- /src/dashboard/features/dashboard/filter/dropdown-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/dashboard/filter/dropdown-filter.tsx -------------------------------------------------------------------------------- /src/dashboard/features/dashboard/filter/header-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/dashboard/filter/header-filter.tsx -------------------------------------------------------------------------------- /src/dashboard/features/dashboard/filter/time-frame-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/dashboard/filter/time-frame-toggle.tsx -------------------------------------------------------------------------------- /src/dashboard/features/dashboard/filter/weekend-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/dashboard/filter/weekend-filter.tsx -------------------------------------------------------------------------------- /src/dashboard/features/dashboard/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/dashboard/header.tsx -------------------------------------------------------------------------------- /src/dashboard/features/page-header/page-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/page-header/page-header.tsx -------------------------------------------------------------------------------- /src/dashboard/features/seats/filters/date-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/seats/filters/date-filter.tsx -------------------------------------------------------------------------------- /src/dashboard/features/seats/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/seats/header.tsx -------------------------------------------------------------------------------- /src/dashboard/features/seats/seats-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/seats/seats-list.tsx -------------------------------------------------------------------------------- /src/dashboard/features/seats/seats-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/seats/seats-page.tsx -------------------------------------------------------------------------------- /src/dashboard/features/seats/seats-state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/seats/seats-state.tsx -------------------------------------------------------------------------------- /src/dashboard/features/seats/stats/stats-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/seats/stats/stats-card.tsx -------------------------------------------------------------------------------- /src/dashboard/features/seats/stats/stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/features/seats/stats/stats.tsx -------------------------------------------------------------------------------- /src/dashboard/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/lib/utils.ts -------------------------------------------------------------------------------- /src/dashboard/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/next.config.mjs -------------------------------------------------------------------------------- /src/dashboard/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/package-lock.json -------------------------------------------------------------------------------- /src/dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/package.json -------------------------------------------------------------------------------- /src/dashboard/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/postcss.config.mjs -------------------------------------------------------------------------------- /src/dashboard/public/copilot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/public/copilot.png -------------------------------------------------------------------------------- /src/dashboard/services/copilot-metrics-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/services/copilot-metrics-service.ts -------------------------------------------------------------------------------- /src/dashboard/services/copilot-seat-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/services/copilot-seat-service.ts -------------------------------------------------------------------------------- /src/dashboard/services/cosmos-db-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/services/cosmos-db-service.ts -------------------------------------------------------------------------------- /src/dashboard/services/dashboard-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/services/dashboard-actions.ts -------------------------------------------------------------------------------- /src/dashboard/services/env-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/services/env-service.ts -------------------------------------------------------------------------------- /src/dashboard/services/sample-data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/services/sample-data.tsx -------------------------------------------------------------------------------- /src/dashboard/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/tailwind.config.ts -------------------------------------------------------------------------------- /src/dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/tsconfig.json -------------------------------------------------------------------------------- /src/dashboard/types/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/types/type.ts -------------------------------------------------------------------------------- /src/dashboard/utils/data-mapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/utils/data-mapper.ts -------------------------------------------------------------------------------- /src/dashboard/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/utils/helpers.ts -------------------------------------------------------------------------------- /src/dashboard/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/copilot-metrics-dashboard/HEAD/src/dashboard/vitest.config.ts --------------------------------------------------------------------------------