From ce3518471c4853d1a51cff5a913de479b1b496ea Mon Sep 17 00:00:00 2001 From: Ramesh Nachimuthu Date: Mon, 26 May 2014 12:15:13 +0530 Subject: autoConfig:Support for force syncing specific fields in service config Currently Auto-config won't update any service configurations in nagios. It always adds or deletes services configurations but no update. With the following bugs we have the need to update few values in service configuration. Hence adding the support to update specific fields in service config. All the fields in the list config_generator.SERVICE_FIELDS_TO_FORCE_SYNC will be force updated during auto configuration. With this patch only '_VOL_NAME' and 'notes' field will be updated. Change-Id: I6003ade375d2f0d6e7dee97ef05f7a9af4ce6ffd Bug-Url: https://bugzilla.redhat.com/1099093 Bug-Url: https://bugzilla.redhat.com/1099328 Signed-off-by: Ramesh Nachimuthu Reviewed-on: http://review.gluster.org/7868 Reviewed-by: Sahina Bose --- plugins/config_generator.py | 35 ++++++++++++++++++++--------------- plugins/discovery.py | 23 ++++++++++++++++++++++- 2 files changed, 42 insertions(+), 16 deletions(-) diff --git a/plugins/config_generator.py b/plugins/config_generator.py index acb7fff..1d0ed37 100644 --- a/plugins/config_generator.py +++ b/plugins/config_generator.py @@ -34,6 +34,11 @@ CHANGE_MODE_ADD = "ADD" CHANGE_MODE_REMOVE = "REMOVE" CHANGE_MODE_UPDATE = "UPDATE" GENERATED_BY_AUTOCONFIG = "__GENERATED_BY_AUTOCONFIG" +VOL_NAME = '_VOL_NAME' +BRICK_DIR = '_BRICK_DIR' +HOST_UUID = '_HOST_UUID' +NOTES = 'notes' +SERVICE_FIELDS_TO_FORCE_SYNC = [VOL_NAME, NOTES] class GlusterNagiosConfManager: @@ -58,7 +63,7 @@ class GlusterNagiosConfManager: if services: host['host_services'] = services if uuid: - host['_HOST_UUID'] = uuid + host[HOST_UUID] = uuid return host def __createVolumeUtilizationService(self, volume, clusterName): @@ -67,11 +72,11 @@ class GlusterNagiosConfManager: volumeService['use'] = 'gluster-service-with-graph' serviceDesc = 'Volume Utilization - %s' % (volume['name']) volumeService['service_description'] = serviceDesc - volumeService['_VOL_NAME'] = volume['name'] + volumeService[VOL_NAME] = volume['name'] checkCommand = 'check_vol_utilization!%s!%s!70!90' % \ (clusterName, volume['name']) volumeService['check_command'] = checkCommand - volumeService['notes'] = "Volume type : %s" % (volume['type']) + volumeService[NOTES] = "Volume type : %s" % (volume['type']) return volumeService def __createVolumeStatusService(self, volume, clusterName): @@ -80,11 +85,11 @@ class GlusterNagiosConfManager: volumeService['use'] = 'gluster-service-without-graph' serviceDesc = 'Volume Status - %s' % (volume['name']) volumeService['service_description'] = serviceDesc - volumeService['_VOL_NAME'] = volume['name'] + volumeService[VOL_NAME] = volume['name'] checkCommand = 'check_vol_status!%s!%s' % \ (clusterName, volume['name']) volumeService['check_command'] = checkCommand - volumeService['notes'] = "Volume type : %s" % (volume['type']) + volumeService[NOTES] = "Volume type : %s" % (volume['type']) return volumeService def __createVolumeQuotaStatusService(self, volume, clusterName): @@ -93,11 +98,11 @@ class GlusterNagiosConfManager: volumeService['use'] = 'gluster-service-without-graph' serviceDesc = 'Volume Quota - %s' % (volume['name']) volumeService['service_description'] = serviceDesc - volumeService['_VOL_NAME'] = volume['name'] + volumeService[VOL_NAME] = volume['name'] checkCommand = 'check_vol_quota_status!%s!%s' % \ (clusterName, volume['name']) volumeService['check_command'] = checkCommand - volumeService['notes'] = "Volume type : %s" % (volume['type']) + volumeService[NOTES] = "Volume type : %s" % (volume['type']) return volumeService def __createVolumeHealStatusService(self, volume, clusterName): @@ -106,7 +111,7 @@ class GlusterNagiosConfManager: volumeService['use'] = 'gluster-service-without-graph' serviceDesc = 'Volume Self-Heal - %s' % (volume['name']) volumeService['service_description'] = serviceDesc - volumeService['_VOL_NAME'] = volume['name'] + volumeService[VOL_NAME] = volume['name'] checkCommand = 'check_vol_heal_status!%s!%s' % \ (clusterName, volume['name']) volumeService['check_command'] = checkCommand @@ -118,7 +123,7 @@ class GlusterNagiosConfManager: volumeService['use'] = 'gluster-service-without-graph' serviceDesc = 'Volume Geo-Replication - %s' % (volume['name']) volumeService['service_description'] = serviceDesc - volumeService['_VOL_NAME'] = volume['name'] + volumeService[VOL_NAME] = volume['name'] checkCommand = 'check_vol_georep_status!%s!%s' % \ (clusterName, volume['name']) volumeService['check_command'] = checkCommand @@ -180,9 +185,9 @@ class GlusterNagiosConfManager: brickService['host_name'] = hostName serviceDesc = "Brick Utilization - %s" % brick['brickpath'] brickService['service_description'] = serviceDesc - brickService['_BRICK_DIR'] = brick['brickpath'] - brickService['_VOL_NAME'] = brick['volumeName'] - brickService['notes'] = "Volume : %s" % (brick['volumeName']) + brickService[BRICK_DIR] = brick['brickpath'] + brickService[VOL_NAME] = brick['volumeName'] + brickService[NOTES] = "Volume : %s" % (brick['volumeName']) return brickService def __createBrickStatusService(self, brick, hostName): @@ -191,9 +196,9 @@ class GlusterNagiosConfManager: brickService['host_name'] = hostName serviceDesc = "Brick - %s" % brick['brickpath'] brickService['service_description'] = serviceDesc - brickService['_BRICK_DIR'] = brick['brickpath'] - brickService['_VOL_NAME'] = brick['volumeName'] - brickService['notes'] = "Volume : %s" % (brick['volumeName']) + brickService[BRICK_DIR] = brick['brickpath'] + brickService[VOL_NAME] = brick['volumeName'] + brickService[NOTES] = "Volume : %s" % (brick['volumeName']) return brickService #Create all Brick related service here. diff --git a/plugins/discovery.py b/plugins/discovery.py index 5f29225..514dc22 100755 --- a/plugins/discovery.py +++ b/plugins/discovery.py @@ -34,6 +34,7 @@ from config_generator import CHANGE_MODE_ADD from config_generator import CHANGE_MODE_REMOVE from config_generator import CHANGE_MODE_UPDATE from config_generator import GENERATED_BY_AUTOCONFIG +from config_generator import SERVICE_FIELDS_TO_FORCE_SYNC #Discovers volumes info one by one. @@ -175,6 +176,22 @@ def findDeletedServices(host): return deletedService +#Looks for changes in the interesting service config fields. These fields +#will be force synced without preserving user changes. All these fields +#are list as part of config_generator.SERVICE_FIELDS_TO_FORCE_SYNC +def findChangeInService(newService, oldService): + changes = {} + for field in SERVICE_FIELDS_TO_FORCE_SYNC: + if newService.get(field) != oldService.get(field): + if not changes: + changes['service_description'] = \ + newService['service_description'] + changes['host_name'] = newService['host_name'] + changes['changeMode'] = CHANGE_MODE_UPDATE + changes[field] = newService.get(field) + return changes + + #Check if auto config is changed. IP address in the check command will change #when user runs the auto config using different host. def findChangeInAutoConfig(newService, oldService): @@ -192,7 +209,7 @@ def findChangeInAutoConfig(newService, oldService): return None -#Find all Added/Deleted services in the given host. +#Find all Added/Updated/Deleted services in the given host. #Note: 'Cluster Auto Config' is a special service. When user runs the #auto-config using different host instead what is used previously then we #have to update the host ip in existing auto-config service. @@ -208,6 +225,10 @@ def findServiceDelta(host): changes = findChangeInAutoConfig(service, serviceConfig) if changes: serviceDelta.append(changes) + else: + changes = findChangeInService(service, serviceConfig) + if changes: + serviceDelta.append(changes) serviceDelta.extend(findDeletedServices(host)) return serviceDelta -- cgit