godcrm/backend/services/monitoring/index.js
GOD CRM Release f89e074dd1
Some checks failed
CI / Lint / Typecheck / Test / Build (push) Has been cancelled
CI / PostgreSQL Integration Tests (push) Has been cancelled
GOD CRM — public scrubbed snapshot
Governed substrate for autonomous agents: scoped identity (passports),
audited actions, MCP workspace. Infra IPs and secrets redacted for public release.
2026-08-10 04:01:45 +03:00

29 lines
919 B
JavaScript

/**
* monitoring/index.js
* Barrel export for MonitoringService
*/
export { initMonitoringTables } from './init.js';
export { ingestEvents, handleFeedback } from './ingestion.js';
export { getRuns, getRunById, getRunFeedback } from './queries.js';
export { getAnalyticsSummary, getTopModels, cleanOldData } from './analytics.js';
export { createMonitoringRouter } from './router.js';
// Default export for backward compatibility
import { initMonitoringTables } from './init.js';
import { ingestEvents } from './ingestion.js';
import { getRuns, getRunById, getRunFeedback } from './queries.js';
import { getAnalyticsSummary, getTopModels, cleanOldData } from './analytics.js';
import { createMonitoringRouter } from './router.js';
export default {
initMonitoringTables,
ingestEvents,
getRuns,
getRunById,
getRunFeedback,
getAnalyticsSummary,
getTopModels,
cleanOldData,
createMonitoringRouter
};