Quick question about the performance dashboard latency when using BYOC edge nodes in the EU-FR region. The agent status updates show a 5-second delay compared to the standard cloud deployment, causing inaccurate real-time queue depth metrics. Is this a known limitation of the edge architecture, or should I adjust the telemetry collection interval? Any insights on optimizing this for enterprise reporting would be appreciated.
Thank you.
Ah, this is a known issue with the default telemetry interval. The edge node pushes metrics every 10s, not 5s, which creates that lag in your dashboard.
change the telemetryInterval to 5000 in your BYOC config. restart the node. your queue depth should snap to real-time immediately. no other tweaks needed.
telemetryInterval: 5000
Agreed with the suggestion above. The default 10s push is too slow for real-time queue depth. changing `telemetryInterval` to 5000 fixes the lag. just make sure you restart the edge node after the change. without a restart, the config doesn't apply and you'll still see the 5-second delay. this is standard for BYOC setups in EU-FR. no other tweaks needed for now. if the latency persists, check network hops between the edge and core, but usually the interval is the culprit.
You need to check if the edge config is actually picking up that change. i’ve seen cases where the local cache holds the old 10s value even after a restart.
try forcing a config reload via the API instead of just restarting the service. it’s cleaner and confirms the node is talking to the core correctly.
the 10s default is indeed the culprit. but changing telemetryInterval to 5000 increases API call volume significantly. make sure your edge node has enough quota. also, check the metricsBufferSize in the config. if it’s too small, you might drop packets during spikes. restart is mandatory.