2025-03-05 12:49:32 +01:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
from collections import Counter
|
|
|
|
import json
|
|
|
|
import shlex
|
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
|
|
|
|
buckets = []
|
|
|
|
bucket_count = {}
|
|
|
|
containers = {}
|
|
|
|
exit = 0
|
2025-03-05 14:15:45 +01:00
|
|
|
base_message = "OK: no duplicate mounts"
|
|
|
|
perf_data = ""
|
2025-03-05 12:49:32 +01:00
|
|
|
|
|
|
|
get_containers = subprocess.Popen('/usr/local/bin/get_containers', stdout=subprocess.PIPE).stdout.read()
|
|
|
|
containers = get_containers.decode().splitlines()
|
|
|
|
|
|
|
|
for container in containers:
|
|
|
|
list_command = f"/usr/local/bin/nocc {container} files_external:list --all --show-password --output json"
|
|
|
|
command = shlex.split(list_command)
|
|
|
|
mount_data_byte = subprocess.Popen(command, stdout=subprocess.PIPE).stdout.read()
|
|
|
|
mount_data = json.loads(mount_data_byte.decode())
|
|
|
|
for items in mount_data:
|
|
|
|
buckets.append(items["configuration"]["bucket"])
|
|
|
|
bucket_count = dict(Counter(buckets))
|
2025-03-05 14:15:45 +01:00
|
|
|
for k, v in bucket_count.items():
|
2025-03-05 12:49:32 +01:00
|
|
|
if v > 1:
|
2025-03-05 14:15:45 +01:00
|
|
|
base_message = "WARNING: buckets with multiple mounts |"
|
|
|
|
perf_data += f" {k}={v}"
|
2025-03-05 12:49:32 +01:00
|
|
|
# lets do exit 0 for now
|
|
|
|
# exit = 1
|
2025-03-05 14:15:45 +01:00
|
|
|
print(base_message + perf_data)
|
2025-03-05 12:49:32 +01:00
|
|
|
sys.exit(exit)
|