diff options
Diffstat (limited to 'doctor_tests/inspector/base.py')
-rw-r--r-- | doctor_tests/inspector/base.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/doctor_tests/inspector/base.py b/doctor_tests/inspector/base.py index a6eae451..967dc9ba 100644 --- a/doctor_tests/inspector/base.py +++ b/doctor_tests/inspector/base.py @@ -16,6 +16,24 @@ class BaseInspector(object): def __init__(self, conf, log): self.conf = conf self.log = log + self._host_down_time = None + self._vm_down_time = None + + @property + def host_down_time(self): + return self._host_down_time + + @host_down_time.setter + def host_down_time(self, host_down_time): + self._host_down_time = host_down_time + + @property + def vm_down_time(self): + return self._vm_down_time + + @vm_down_time.setter + def vm_down_time(self, vm_down_time): + self._vm_down_time = vm_down_time @abc.abstractmethod def get_inspector_url(self): |