You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New latency monitoring for trigger is introduced with #342.
Some issues:
currently updating latency for each TX object, which for TPs is more often than reasonably useful and adds an overhead
in cases where the rates are high, we are effectively comparing different objects when we publish our latency_in and latency_out. The latency out will be the latest (TX+1) object that was made while the latency in is the newest incoming TX object. We report the values at the same time, but they do not refer to the same object anymore (different base of comparison). While this is still useful latency reporting, it can produce 'weird' cases for the online monitoring.
possible improvements:
using condition variables for updating
adding some kind of prescaling / a rate check for the updates
The text was updated successfully, but these errors were encountered:
New latency monitoring for trigger is introduced with #342.
Some issues:
possible improvements:
The text was updated successfully, but these errors were encountered: