feat: stabilize HarborForge monitor sidecar plugin #2

Merged
hzhang merged 10 commits from feat/telemetry-sidecar-v2 into main 2026-03-20 09:18:37 +00:00
Showing only changes of commit 55b17e35ea - Show all commits

View File

@@ -148,12 +148,12 @@ export default function register(api: PluginAPI, rawConfig: PluginConfig | Plugi
}
// Hook into Gateway lifecycle
api.on('gateway:start', () => {
api.on('gateway_start', () => {
logger.info('Gateway starting, starting telemetry server...');
startSidecar();
});
api.on('gateway:stop', () => {
api.on('gateway_stop', () => {
logger.info('Gateway stopping, stopping telemetry server...');
stopSidecar();
});