Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
a9340e64
Commit
a9340e64
authored
7 years ago
by
yvesn
Browse files
Options
Downloads
Patches
Plain Diff
SSDM-6073: looking for symlinks in storeroot-dir and listing their mount points in ELN admin page
parent
4bfb3884
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
openbis_standard_technologies/dist/core-plugins/eln-lims/1/dss/reporting-plugins/eln-lims-api/script.py
+17
-3
17 additions, 3 deletions
...s/eln-lims/1/dss/reporting-plugins/eln-lims-api/script.py
with
17 additions
and
3 deletions
openbis_standard_technologies/dist/core-plugins/eln-lims/1/dss/reporting-plugins/eln-lims-api/script.py
+
17
−
3
View file @
a9340e64
...
...
@@ -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
=
{}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment