Adds collection of VM status metric in OpenStack infra plugin
[osm/MON.git] / osm_mon / collector / infra_collectors / base.py
index 6f137d0..586169a 100644 (file)
 # For those usages not covered by the Apache License, Version 2.0 please
 # contact: bdiaz@whitestack.com or glavado@whitestack.com
 ##
+from typing import List
+
+from osm_mon.collector.metric import Metric
 
 
 class BaseInfraCollector:
-    pass
+
+    def collect(self) -> List[Metric]:
+        pass