From cba6f5be48af22117eb20ff6632701c46f13fb43 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 15 Sep 2023 16:51:04 -0400 Subject: [PATCH] Fix wording of non-coordinator state --- node-daemon/plugins/disk | 2 +- node-daemon/plugins/dpkg | 2 +- node-daemon/plugins/edac | 2 +- node-daemon/plugins/ipmi | 2 +- node-daemon/plugins/lbvt | 2 +- node-daemon/plugins/load | 2 +- node-daemon/plugins/nics | 2 +- node-daemon/plugins/psql | 2 +- node-daemon/plugins/zkpr | 2 +- node-daemon/pvcnoded/objects/MonitoringInstance.py | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/node-daemon/plugins/disk b/node-daemon/plugins/disk index f585e6fd..9f8eb8a0 100644 --- a/node-daemon/plugins/disk +++ b/node-daemon/plugins/disk @@ -104,7 +104,7 @@ class MonitoringPluginScript(MonitoringPlugin): """ run(): Perform the check actions and return a PluginResult object - The {coordinator_state} can be used to check if this is a "primary" coordinator, "secondary" coordinator, or "hypervisor" (non-coordinator) + The {coordinator_state} can be used to check if this is a "primary" coordinator, "secondary" coordinator, or "client" (non-coordinator) """ # Re-run setup each time to ensure the disk details are current diff --git a/node-daemon/plugins/dpkg b/node-daemon/plugins/dpkg index 1562ebc9..3abbdcf0 100644 --- a/node-daemon/plugins/dpkg +++ b/node-daemon/plugins/dpkg @@ -66,7 +66,7 @@ class MonitoringPluginScript(MonitoringPlugin): """ run(): Perform the check actions and return a PluginResult object - The {coordinator_state} can be used to check if this is a "primary" coordinator, "secondary" coordinator, or "hypervisor" (non-coordinator) + The {coordinator_state} can be used to check if this is a "primary" coordinator, "secondary" coordinator, or "client" (non-coordinator) """ # Run any imports first diff --git a/node-daemon/plugins/edac b/node-daemon/plugins/edac index c996b76b..6967ee20 100644 --- a/node-daemon/plugins/edac +++ b/node-daemon/plugins/edac @@ -64,7 +64,7 @@ class MonitoringPluginScript(MonitoringPlugin): """ run(): Perform the check actions and return a PluginResult object - The {coordinator_state} can be used to check if this is a "primary" coordinator, "secondary" coordinator, or "hypervisor" (non-coordinator) + The {coordinator_state} can be used to check if this is a "primary" coordinator, "secondary" coordinator, or "client" (non-coordinator) """ # Run any imports first diff --git a/node-daemon/plugins/ipmi b/node-daemon/plugins/ipmi index 1d9f2ff0..27d45889 100644 --- a/node-daemon/plugins/ipmi +++ b/node-daemon/plugins/ipmi @@ -64,7 +64,7 @@ class MonitoringPluginScript(MonitoringPlugin): """ run(): Perform the check actions and return a PluginResult object - The {coordinator_state} can be used to check if this is a "primary" coordinator, "secondary" coordinator, or "hypervisor" (non-coordinator) + The {coordinator_state} can be used to check if this is a "primary" coordinator, "secondary" coordinator, or "client" (non-coordinator) """ # Run any imports first diff --git a/node-daemon/plugins/lbvt b/node-daemon/plugins/lbvt index 6f0707c8..6c7bdc88 100644 --- a/node-daemon/plugins/lbvt +++ b/node-daemon/plugins/lbvt @@ -64,7 +64,7 @@ class MonitoringPluginScript(MonitoringPlugin): """ run(): Perform the check actions and return a PluginResult object - The {coordinator_state} can be used to check if this is a "primary" coordinator, "secondary" coordinator, or "hypervisor" (non-coordinator) + The {coordinator_state} can be used to check if this is a "primary" coordinator, "secondary" coordinator, or "client" (non-coordinator) """ # Run any imports first diff --git a/node-daemon/plugins/load b/node-daemon/plugins/load index c521a614..5806a627 100644 --- a/node-daemon/plugins/load +++ b/node-daemon/plugins/load @@ -64,7 +64,7 @@ class MonitoringPluginScript(MonitoringPlugin): """ run(): Perform the check actions and return a PluginResult object - The {coordinator_state} can be used to check if this is a "primary" coordinator, "secondary" coordinator, or "hypervisor" (non-coordinator) + The {coordinator_state} can be used to check if this is a "primary" coordinator, "secondary" coordinator, or "client" (non-coordinator) """ # Run any imports first diff --git a/node-daemon/plugins/nics b/node-daemon/plugins/nics index b46e0400..1975bc05 100644 --- a/node-daemon/plugins/nics +++ b/node-daemon/plugins/nics @@ -65,7 +65,7 @@ class MonitoringPluginScript(MonitoringPlugin): """ run(): Perform the check actions and return a PluginResult object - The {coordinator_state} can be used to check if this is a "primary" coordinator, "secondary" coordinator, or "hypervisor" (non-coordinator) + The {coordinator_state} can be used to check if this is a "primary" coordinator, "secondary" coordinator, or "client" (non-coordinator) """ # Run any imports first diff --git a/node-daemon/plugins/psql b/node-daemon/plugins/psql index 856ea7a8..53994039 100644 --- a/node-daemon/plugins/psql +++ b/node-daemon/plugins/psql @@ -61,7 +61,7 @@ class MonitoringPluginScript(MonitoringPlugin): """ run(): Perform the check actions and return a PluginResult object - The {coordinator_state} can be used to check if this is a "primary" coordinator, "secondary" coordinator, or "hypervisor" (non-coordinator) + The {coordinator_state} can be used to check if this is a "primary" coordinator, "secondary" coordinator, or "client" (non-coordinator) """ # Run any imports first diff --git a/node-daemon/plugins/zkpr b/node-daemon/plugins/zkpr index b0064b12..6a5171a4 100644 --- a/node-daemon/plugins/zkpr +++ b/node-daemon/plugins/zkpr @@ -64,7 +64,7 @@ class MonitoringPluginScript(MonitoringPlugin): """ run(): Perform the check actions and return a PluginResult object - The {coordinator_state} can be used to check if this is a "primary" coordinator, "secondary" coordinator, or "hypervisor" (non-coordinator) + The {coordinator_state} can be used to check if this is a "primary" coordinator, "secondary" coordinator, or "client" (non-coordinator) """ # Run any imports first diff --git a/node-daemon/pvcnoded/objects/MonitoringInstance.py b/node-daemon/pvcnoded/objects/MonitoringInstance.py index cef8444d..ae348672 100644 --- a/node-daemon/pvcnoded/objects/MonitoringInstance.py +++ b/node-daemon/pvcnoded/objects/MonitoringInstance.py @@ -178,7 +178,7 @@ class MonitoringPlugin(object): """ run(): Run the plugin, returning a PluginResult object - The {coordinator_state} can be used to check if this is a "primary" coordinator, "secondary" coordinator, or "hypervisor" (non-coordinator) + The {coordinator_state} can be used to check if this is a "primary" coordinator, "secondary" coordinator, or "client" (non-coordinator) """ return self.plugin_result