Maor Lipchuk has uploaded a new change for review. Change subject: core: [wip] Setting audit log message scheduler ......................................................................
core: [wip] Setting audit log message scheduler Setting audit log message scheduler to be printed every 12 hours instead of every 10 minutes. Change-Id: Ide22a78282ff330627a37d2b777e07c3d7021861 Signed-off-by: Maor Lipchuk <[email protected]> Bug-Url:https://bugzilla.redhat.com/910894 --- M backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/AuditLogType.java M backend/manager/modules/dal/src/main/resources/bundles/AuditLogMessages.properties 2 files changed, 3 insertions(+), 3 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/32/16732/1 diff --git a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/AuditLogType.java b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/AuditLogType.java index f6d659f..53d0d65 100644 --- a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/AuditLogType.java +++ b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/AuditLogType.java @@ -673,8 +673,8 @@ STORAGE_DOMAIN_ERROR(996), REFRESH_REPOSITORY_FILE_LIST_FAILED(997), REFRESH_REPOSITORY_FILE_LIST_SUCCEEDED(998), - STORAGE_ALERT_VG_METADATA_CRITICALLY_FULL(999, AuditLogTimeInterval.MINUTE.getValue() * 10), - STORAGE_ALERT_SMALL_VG_METADATA(1000, AuditLogTimeInterval.MINUTE.getValue() * 10), + STORAGE_ALERT_VG_METADATA_CRITICALLY_FULL(999, AuditLogTimeInterval.HOUR.getValue() * 12), + STORAGE_ALERT_SMALL_VG_METADATA(1000, AuditLogTimeInterval.HOUR.getValue() * 12), USER_ATTACH_STORAGE_DOMAINS_TO_POOL(1002), USER_ATTACH_STORAGE_DOMAINS_TO_POOL_FAILED(1003), STORAGE_DOMAIN_TASKS_ERROR(1004), diff --git a/backend/manager/modules/dal/src/main/resources/bundles/AuditLogMessages.properties b/backend/manager/modules/dal/src/main/resources/bundles/AuditLogMessages.properties index f247d0d..547c30e 100644 --- a/backend/manager/modules/dal/src/main/resources/bundles/AuditLogMessages.properties +++ b/backend/manager/modules/dal/src/main/resources/bundles/AuditLogMessages.properties @@ -549,7 +549,7 @@ IMPORTEXPORT_FAILED_TO_IMPORT_TEMPLATE=Failed to read Template '${Template}' OVF, it may be corrupted CANNOT_HIBERNATE_RUNNING_VMS_AFTER_CLUSTER_CPU_UPGRADE=Hibernation of VMs after CPU upgrade of Cluster ${VdsGroup} is not supported. Please stop and restart those VMs in case you wish to hibernate them STORAGE_ALERT_VG_METADATA_CRITICALLY_FULL=The system has reached the 80% watermark on the VG metadata area size on ${StorageDomainName}.\nThis is due to a high number of Vdisks or large Vdisks size allocated on this specific VG. -STORAGE_ALERT_SMALL_VG_METADATA=The allocated VG metadata area size is smaller than 50MB on ${StorageDomainName},\nwhich might limit its capacity (the number of Vdisks and/or their size).\nPlease refer to the GSS knowledge base to understand the issue and how to resolve it. +STORAGE_ALERT_SMALL_VG_METADATA=The allocated VG metadata area size is smaller than 50,000KB on ${StorageDomainName},\nwhich might limit its capacity (the number of Vdisks and/or their size).\nPlease refer to the GSS knowledge base to understand the issue and how to resolve it. RELOAD_CONFIGURATIONS_SUCCESS=System Configurations reloaded successfully. RELOAD_CONFIGURATIONS_FAILURE=System Configurations failed to reload. USER_ACCOUNT_DISABLED_OR_LOCKED=User ${UserName} cannot login, as it got disabled or locked. Please contact the system administrator. -- To view, visit http://gerrit.ovirt.org/16732 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ide22a78282ff330627a37d2b777e07c3d7021861 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Maor Lipchuk <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
