Skip to content
Snippets Groups Projects
Commit a9340e64 authored by yvesn's avatar yvesn
Browse files

SSDM-6073: looking for symlinks in storeroot-dir and listing their mount points in ELN admin page

parent 4bfb3884
No related branches found
No related tags found
No related merge requests found
......@@ -362,9 +362,23 @@ def getFeaturesFromFeatureVector(tr, parameters, tableBuilder):
def getDiskSpace(tr, parameters, tableBuilder):
storerootDir = getConfigParameterAsString("storeroot-dir")
df = subprocess.check_output(["df", '-h', storerootDir])
diskSpaceValues = extractDiskSpaceValues(df)
return getJsonForData([diskSpaceValues])
diskSpaceValues = []
diskSpaceValues.append(getDiskSpaceForDirectory(storerootDir))
# The storeroot-dir might contain symlinks to different volumes.
# So we want to resolve them and show all relevant mount points.
findLinks = subprocess.check_output(["find", storerootDir, "-type", "l"])
mountPoints = []
for symlink in findLinks.splitlines():
linkPath = os.path.realpath(symlink)
if os.path.exists(linkPath):
diskSpaceForDir = getDiskSpaceForDirectory(linkPath)
if diskSpaceForDir not in diskSpaceValues:
diskSpaceValues.append(diskSpaceForDir)
return getJsonForData(diskSpaceValues)
def getDiskSpaceForDirectory(dir):
df = subprocess.check_output(["df", '-h', dir])
return extractDiskSpaceValues(df)
def extractDiskSpaceValues(df):
values = {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment