Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
icinga-plugins
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cscf
icinga-plugins
Commits
b49c4283
Commit
b49c4283
authored
3 years ago
by
root
Browse files
Options
Downloads
Patches
Plain Diff
Added environment variables to check_hadoop_df
parent
a8ee7e90
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
check_hadoop_df
+5
-1
5 additions, 1 deletion
check_hadoop_df
with
5 additions
and
1 deletion
check_hadoop_df
+
5
−
1
View file @
b49c4283
...
...
@@ -32,11 +32,15 @@ STATE_LABEL = {
# Default exit code
EXIT_CODE
=
STATE_OK
py_env
=
os
.
environ
.
copy
()
py_env
[
'
JAVA_HOME
'
]
=
'
/usr/lib/jvm/java-8-oracle
'
py_env
[
'
HADOOP_HOME
'
]
=
'
/usr/lib/hadoop
'
def
hadoop_query_df
():
try
:
data
=
{}
hadoop
=
subprocess
.
Popen
([
"
hadoop
"
,
"
fs
"
,
"
-df
"
],
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
STDOUT
)
hadoop
=
subprocess
.
Popen
([
"
hadoop
"
,
"
fs
"
,
"
-df
"
],
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
STDOUT
,
env
=
py_env
)
# Format the output data from CSV to an array of dicts for ease-of-use
hadoopStd
=
str
(
hadoop
.
stdout
.
read
(),
'
UTF8
'
)
...
...
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