Skip to content
Snippets Groups Projects
Commit 9b4f1237 authored by Hunter Schuler's avatar Hunter Schuler Committed by Patrick Godwin
Browse files

[lloidhandler.py] Implement pipeline latency monitoring for stages using all ifos

parent 1da32836
No related branches found
No related tags found
1 merge request!29Latency monitoring refactor
......@@ -664,9 +664,12 @@ class LatencyTracker(object):
self.verbose = verbose
# recent pipeline stage latencies
pipeline_stages = ["datasource", "whitening", "snrSlice"]
self.pipeline_history = {stage: {instrument: deque(maxlen = 20) for instrument in instruments} for stage in pipeline_stages}
ifo_pipe_stages = ["datasource", "whitening", "snrSlice"]
all_ifo_stages = ["itacac"]
self.pipeline_history = {stage: {instrument: deque(maxlen = 20) for instrument in instruments} for stage in ifo_pipe_stages}
for stage in all_ifo_stages:
self.pipeline_history[stage] = {"all": deque(maxlen = 20)}
# iterate over pipeline stages, look for the
# stage element that should provide the latencies, and
# connect handlers to collect the latencies
......
......@@ -729,6 +729,7 @@ def mkLLOIDmulti(pipeline, detectors, banks, psd, psd_fft_length = 32, ht_gate_t
#
assert any(itacac_dict.values())
itacac_dict[list(itacac_dict.keys())[0]] = pipeparts.mklatency(pipeline, itacac_dict[list(itacac_dict.keys())[0]], name = "all_itacac_latency", silent = True)
if verbose:
for bank_id, head in itacac_dict.items():
# FIXME Not sure why we need a queue here, but without
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment