Add auditor for resource pool, pserver and cpu/memory/port/interface for pserver...
[pti/o2.git] / o2ims / service / watcher / pserver_cpu_watcher.py
index b18ead6..51a5a76 100644 (file)
 #  See the License for the specific language governing permissions and\r
 #  limitations under the License.\r
 \r
-from o2ims.service.client.base_client import BaseClient\r
-# from o2ims.service.unit_of_work import AbstractUnitOfWork\r
+from o2ims.domain.stx_object import StxGenericModel\r
+from o2common.service.client.base_client import BaseClient\r
+# from o2common.service.unit_of_work import AbstractUnitOfWork\r
 from o2ims.service.watcher.resource_watcher import ResourceWatcher\r
 from o2ims.domain import commands\r
-from o2ims.service.messagebus import MessageBus\r
+from o2common.service.messagebus import MessageBus\r
 \r
 from o2common.helper import o2logging\r
 logger = o2logging.get_logger(__name__)\r
@@ -30,10 +31,8 @@ class PServerCpuWatcher(ResourceWatcher):
     def _targetname(self):\r
         return "pserver_cpu"\r
 \r
-    def _probe(self, parent: object = None):\r
-        hostid = parent.id if parent else None\r
+    def _probe(self, parent: StxGenericModel):\r
+        hostid = parent.id\r
         newmodels = self._client.list(hostid=hostid)\r
-        # for newmodel in newmodels:\r
-        #     super()._compare_and_update(newmodel)\r
-        # return newmodels\r
-        return [commands.UpdatePserverCpu(m) for m in newmodels]\r
+        return [commands.UpdatePserverCpu(data=m, parentid=hostid)\r
+                for m in newmodels]\r