Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
ISPConfig 3
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
Container Registry
Model registry
Operate
Environments
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
Helmo
ISPConfig 3
Commits
a5fe2742
Commit
a5fe2742
authored
13 years ago
by
xaver
Browse files
Options
Downloads
Patches
Plain Diff
Fixed #1390 - Added 3ware controller (was my script i use 3ware)
parent
0141fd39
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
server/lib/classes/monitor_tools.inc.php
+55
-0
55 additions, 0 deletions
server/lib/classes/monitor_tools.inc.php
with
55 additions
and
0 deletions
server/lib/classes/monitor_tools.inc.php
+
55
−
0
View file @
a5fe2742
...
...
@@ -1035,6 +1035,61 @@ class monitor_tools {
}
}
}
/*
* 3ware Controller
*/
system
(
'which tw_cli'
,
$retval
);
if
(
$retval
===
0
)
{
$data
[
'output'
]
=
shell_exec
(
'tw_cli info c0'
);
$state
=
'ok'
;
foreach
(
$data
[
'output'
]
as
$item
)
{
if
(
strpos
(
$item
,
'RAID'
)
!==
false
)
{
if
(
strpos
(
$item
,
' VERIFYING '
)
!==
false
)
{
$this
->
_setState
(
$state
,
'info'
);
}
else
if
(
strpos
(
$item
,
' MIGRATE-PAUSED '
)
!==
false
)
{
$this
->
_setState
(
$state
,
'info'
);
}
else
if
(
strpos
(
$item
,
' MIGRATING '
)
!==
false
)
{
$this
->
_setState
(
$state
,
'ok'
);
}
else
if
(
strpos
(
$item
,
' INITIALIZING '
)
!==
false
)
{
$this
->
_setState
(
$state
,
'info'
);
}
else
if
(
strpos
(
$item
,
' INIT-PAUSED '
)
!==
false
)
{
$this
->
_setState
(
$state
,
'info'
);
}
else
if
(
strpos
(
$item
,
' REBUILDING '
)
!==
false
)
{
$this
->
_setState
(
$state
,
'info'
);
}
else
if
(
strpos
(
$item
,
' REBUILD-PAUSED '
)
!==
false
)
{
$this
->
_setState
(
$state
,
'warning'
);
}
else
if
(
strpos
(
$item
,
' RECOVERY '
)
!==
false
)
{
$this
->
_setState
(
$state
,
'warning'
);
}
else
if
(
strpos
(
$item
,
' DEGRADED '
)
!==
false
)
{
$this
->
_setState
(
$state
,
'critical'
);
}
else
if
(
strpos
(
$item
,
' UNKNOWN '
)
!==
false
)
{
$this
->
_setState
(
$state
,
'critical'
);
}
else
if
(
strpos
(
$item
,
' OK '
)
!==
false
)
{
$this
->
_setState
(
$state
,
'ok'
);
}
else
if
(
strpos
(
$item
,
' OPTIMAL '
)
!==
false
)
{
$this
->
_setState
(
$state
,
'ok'
);
}
else
{
$this
->
_setState
(
$state
,
'critical'
);
}
}
}
}
/*
* Return the Result
...
...
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