matoH12 / checkmk-nextcloud

checkmk plugin for nextcloud.
6 stars 0 forks source link

CMK 2.2 compatibility #7

Open fuf42 opened 11 months ago

fuf42 commented 11 months ago

Hi,

seems, that "RulespecGroupIntegrateOtherServices" moved in checkmk 2.2. I solved this like that in nextcloud_data_extension.py:

try:
  from cmk.gui.plugins.wato.active_checks import (
    RulespecGroupIntegrateOtherServices,
  )
except:
  from cmk.gui.plugins.wato.active_checks.common import (
    RulespecGroupIntegrateOtherServices,
  )

Christian