mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2026-09-22 19:22:25 +01:00
fb250259ed
* perf: remove deprecated copilot feature, add ARM timeouts, fix race conditions - Remove entire QueryCopilot feature (~50 files deleted, ~30 files cleaned) - Remove CopilotConfigured and SampleDataLoaded metric phases - Fix DatabaseTreeRendered 76% stuck rate (remove one-shot guard in useMetricPhases) - Add 8s default timeout to ARM requests (AbortController-based) - Fix MSAL token forceRefresh (true -> false, use cache) - Add concurrency limit of 5 to collection loading in Explorer - Remove orphaned SampleDataClient.ts and queryCopilotSampleData.json - Clean up dead sampleDataConnectionInfo field from UserContext * Clean up copilot and optimize initialization * Clean up copilot and optimize initialization
25 lines
895 B
TypeScript
25 lines
895 B
TypeScript
import MetricScenario from "./MetricEvents";
|
|
import { ApplicationMetricPhase, CommonMetricPhase, ScenarioConfig } from "./ScenarioConfig";
|
|
|
|
export const scenarioConfigs: Record<MetricScenario, ScenarioConfig> = {
|
|
[MetricScenario.ApplicationLoad]: {
|
|
requiredPhases: [
|
|
ApplicationMetricPhase.PlatformConfigured,
|
|
ApplicationMetricPhase.ExplorerInitialized,
|
|
CommonMetricPhase.Interactive,
|
|
],
|
|
deferredPhases: [ApplicationMetricPhase.ExplorerInitialized],
|
|
timeoutMs: 10000,
|
|
},
|
|
[MetricScenario.DatabaseLoad]: {
|
|
requiredPhases: [
|
|
ApplicationMetricPhase.DatabasesFetched,
|
|
ApplicationMetricPhase.CollectionsLoaded,
|
|
ApplicationMetricPhase.DatabaseTreeRendered,
|
|
CommonMetricPhase.Interactive,
|
|
],
|
|
deferredPhases: [ApplicationMetricPhase.CollectionsLoaded, ApplicationMetricPhase.DatabaseTreeRendered],
|
|
timeoutMs: 10000,
|
|
},
|
|
};
|