Monitoring OLVM (Oracle KVM)

@andreas-doehler , could you please tell me if you had some time to check the ovirt plugin :slight_smile:

I have no systems with ovirt virtualization at the moment and so i cannot look for this problem. Sorry

@andreas-doehler , ok thank you :slight_smile: . I will update this thread if I am able to find a solution.

Based on the below forum,

I was able to solve the “df_check_filesystem_single” error by modifying check_default_parameters to df.FILESYSTEM_DEFAULT_PARAMS

Before.

register.check_plugin(
    name='ovirt_storage_domains',
    service_name='oVirt Storage Domain %s',
    discovery_function=discovery_ovirt_storage_domains,
    check_function=check_ovirt_storage_domains,
    check_ruleset_name="ovirt_storage_domains",
    check_default_parameters=df.FILESYSTEM_DEFAULT_LEVELS,
)

After,

register.check_plugin(
    name='ovirt_storage_domains',
    service_name='oVirt Storage Domain %s',
    discovery_function=discovery_ovirt_storage_domains,
    check_function=check_ovirt_storage_domains,
    check_ruleset_name="ovirt_storage_domains",
    check_default_parameters=df.FILESYSTEM_DEFAULT_PARAMS,
)

Thank you,
Benson Thomas

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed. Contact an admin if you think this should be re-opened.