Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F547615
PhabricatorDaemonManagementStatusWorkflow.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorDaemonManagementStatusWorkflow.php
View Options
<?php
final
class
PhabricatorDaemonManagementStatusWorkflow
extends
PhabricatorDaemonManagementWorkflow
{
protected
function
didConstruct
()
{
$this
->
setName
(
'status'
)
->
setSynopsis
(
pht
(
'Show daemon processes on this host.'
));
}
public
function
execute
(
PhutilArgumentParser
$args
)
{
$process_refs
=
$this
->
getOverseerProcessRefs
();
if
(!
$process_refs
)
{
$instance
=
$this
->
getInstance
();
if
(
$instance
!==
null
)
{
$this
->
logInfo
(
pht
(
'NO DAEMONS'
),
pht
(
'There are no running daemon processes for the current '
.
'instance ("%s").'
,
$instance
));
}
else
{
$this
->
logInfo
(
pht
(
'NO DAEMONS'
),
pht
(
'There are no running daemon processes.'
));
}
return
1
;
}
$table
=
id
(
new
PhutilConsoleTable
())
->
addColumns
(
array
(
'pid'
=>
array
(
'title'
=>
pht
(
'PID'
),
),
'command'
=>
array
(
'title'
=>
pht
(
'Command'
),
),
));
foreach
(
$process_refs
as
$process_ref
)
{
$table
->
addRow
(
array
(
'pid'
=>
$process_ref
->
getPID
(),
'command'
=>
$process_ref
->
getCommand
(),
));
}
$table
->
draw
();
return
0
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 1:35 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
98282
Default Alt Text
PhabricatorDaemonManagementStatusWorkflow.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment