diff --git a/slic/core/acquisition/broker/restapi.py b/slic/core/acquisition/broker/restapi.py index 82b2985d..eb359829 100644 --- a/slic/core/acquisition/broker/restapi.py +++ b/slic/core/acquisition/broker/restapi.py @@ -185,6 +185,11 @@ class BrokerSlowAPI(BaseAPI): response = self.get("get_jfctrl_monitor", params, *args, **kwargs) return response.get("parameters") + def get_detector_pings(self, detector, *args, **kwargs): + params = {"detector_name": detector} + response = self.get("get_detector_pings", params, *args, **kwargs) + return response.get("pings") + def get_detector_status(self, detector, *args, **kwargs): params = {"detector_name": detector} response = self.get("get_detector_status", params, *args, **kwargs)