예제 #1
0
파일: utils.py 프로젝트: inettgmbh/checkmk
 def missing_single_infos(self) -> Set[str]:
     """Returns infos that are neither configured nor available through HTTP variables"""
     if not self.has_context():
         return set()
     return visuals.get_missing_single_infos(self.single_infos(), self.context)
예제 #2
0
파일: utils.py 프로젝트: inettgmbh/checkmk
 def unconfigured_single_infos(self) -> Set[str]:
     """Returns infos that are not set by the dashlet config"""
     if not self.has_context():
         return set()
     return visuals.get_missing_single_infos(self.single_infos(), self._dashlet_spec["context"])