chore: remove Baselime monitoring integration and dependencies (#348)

- Deleted `@kit/baselime` package and its related files.
- Removed Baselime service registration from monitoring in API services.
- Cleared `registerInstrumentation`, hooks, provider components, and server utilities associated with Baselime.
- Updated package dependencies to exclude `@kit/baselime`.
This commit is contained in:
Giancarlo Buomprisco
2025-08-30 16:24:14 +07:00
committed by GitHub
parent caf86ce09b
commit b3acbbe801
16 changed files with 13 additions and 1078 deletions

View File

@@ -16,15 +16,6 @@ const instrumentationRegistry = createRegistry<
NonNullable<MonitoringProvider>
>();
// Register the 'baselime' instrumentation provider
instrumentationRegistry.register('baselime', async () => {
const { registerInstrumentation } = await import(
'@kit/baselime/instrumentation'
);
return { register: registerInstrumentation };
});
// Register the 'sentry' instrumentation provider with a no-op registration, since Sentry v8 sets up automatically
instrumentationRegistry.register('sentry', () => {
return {