mirror of
https://github.com/alexreinert/homematic_check_mk.git
synced 2023-10-10 13:37:02 +02:00
Fixed some regascript issues when Gewerk Monitored does not exist
This commit is contained in:
parent
c12aa0652d
commit
13d1e92fac
@ -106,7 +106,7 @@ proc get_homematic_check_result { } {
|
||||
|
||||
foreach (_svcId, dom.GetObject(ID_SERVICES).EnumUsedIDs()) {
|
||||
_svc = dom.GetObject(_svcId);
|
||||
if (_svc.AlState() == asOncoming) {
|
||||
if (_svc && _svc.AlState() == asOncoming) {
|
||||
_dp = dom.GetObject(_svc.AlTriggerDP());
|
||||
_ch = dom.GetObject(_dp.Channel());
|
||||
_dev = dom.GetObject(_ch.Device());
|
||||
@ -115,18 +115,21 @@ proc get_homematic_check_result { } {
|
||||
}
|
||||
}
|
||||
|
||||
foreach (_chId, dom.GetObject("Monitored").EnumUsedIDs()) {
|
||||
_ch = dom.GetObject(_chId);
|
||||
_svc = dom.GetObject("Monitored");
|
||||
if (_svc) {
|
||||
foreach (_chId, _svc.EnumUsedIDs()) {
|
||||
_ch = dom.GetObject(_chId);
|
||||
|
||||
_dev = dom.GetObject(_ch.Device());
|
||||
WriteLine(_ch.Name() # ";HSSTYPE;" # _dev.HssType());
|
||||
_dev = dom.GetObject(_ch.Device());
|
||||
WriteLine(_ch.Name() # ";HSSTYPE;" # _dev.HssType());
|
||||
|
||||
foreach (_dpId, _ch.DPs()) {
|
||||
_dp = dom.GetObject(_dpId);
|
||||
foreach (_dpId, _ch.DPs()) {
|
||||
_dp = dom.GetObject(_dpId);
|
||||
|
||||
if (_dp.Value()) {
|
||||
_name = _dp.Name().StrValueByIndex(".", 2);
|
||||
WriteLine(_ch.Name() # ";" # _name # ";" # _dp.Value() # ";" # _dp.Timestamp());
|
||||
if (_dp.Value()) {
|
||||
_name = _dp.Name().StrValueByIndex(".", 2);
|
||||
WriteLine(_ch.Name() # ";" # _name # ";" # _dp.Value() # ";" # _dp.Timestamp());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user