mirror of
https://github.com/opinkerfi/nagios-plugins.git
synced 2024-11-05 10:03:45 +01:00
Update check_ipa_replication
Fix this slice so it gets the correct value.
This commit is contained in:
parent
51c659990b
commit
f774b44b47
@ -46,9 +46,9 @@ except Exception, e:
|
|||||||
# Loop through replication agreements
|
# Loop through replication agreements
|
||||||
for rhost in replication:
|
for rhost in replication:
|
||||||
plugin.add_summary("Replica %s Status: %s" % (rhost[1]['nsDS5ReplicaHost'][0], rhost[1]['nsds5replicaLastUpdateStatus'][0]))
|
plugin.add_summary("Replica %s Status: %s" % (rhost[1]['nsDS5ReplicaHost'][0], rhost[1]['nsds5replicaLastUpdateStatus'][0]))
|
||||||
if rhost[1]['nsds5replicaLastUpdateStatus'][0][:2] == "0 ":
|
if rhost[1]['nsds5replicaLastUpdateStatus'][0][7:8] == "0":
|
||||||
plugin.status(ok)
|
plugin.status(ok)
|
||||||
elif rhost[1]['nsds5replicaLastUpdateStatus'][0][:2] == "1 ":
|
elif rhost[1]['nsds5replicaLastUpdateStatus'][0][7:8] == "1":
|
||||||
# Busy Replica is not an error, its "unknown" (but its "ok" for now)
|
# Busy Replica is not an error, its "unknown" (but its "ok" for now)
|
||||||
plugin.status(ok)
|
plugin.status(ok)
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user