UNPKG

server-man

Version:

Web UI dashboard for PM2 admins

1 lines 2.31 kB
<div class=row ng-controller=ApplicationListController><div class=col-lg-12><rd-widget><rd-widget-header icon=fa-tasks title=Applications><input type=text class=form-control placeholder=Search></rd-widget-header><rd-widget-body classes=no-padding>{{}}<div class=table-responsive><table class="table table-hover"><thead><tr><th>Name</th><th>Mode</th><th>PID</th><th>Status</th><th>Uptime</th><th>Restarts</th><th>Unstable Restarts</th><th>Created On</th><th>Memory</th><th>CPU</th><th>Operations</th></tr></thead><tbody><tr ng-repeat="process in dashboard.processes" ng-class="{success:process.pm2_env.status==='online',danger:process.pm2_env.status!=='online'}"><td><a href=#/applicationData/{{process.pm_id}}><span ng-bind=process.name></span></a></td><td><span ng-bind=process.pm2_env.exec_mode></span></td><td><span ng-bind=process.pid></span></td><td><span class=text-success ng-if="process.pm2_env.status==='online'" tooltip={{process.pm2_env.status}} tooltip-placement=bottom><i class="fa fa-check"></i></span> <span class=text-danger ng-if="process.pm2_env.status!=='online'" tooltip={{process.pm2_env.status}} tooltip-placement=bottom><i class="fa fa-warning"></i></span></td><td><span ng-bind=process.pm2_env.pm_uptime|duration:true></span></td><td><span ng-bind=process.pm2_env.restart_time></span></td><td><span ng-bind=process.pm2_env.unstable_restarts></span></td><td><span ng-bind=process.pm2_env.created_at|date></span></td><td><span ng-bind=process.monit.memory|memory></span></td><td><span ng-bind="process.monit.cpu+'%'"></span></td><td><button class="btn btn-primary btn-circle" ng-click=start(process.pm_id) ng-if="process.pm2_env.status!=='online'" tooltip=Start tooltip-placement=bottom><i class="fa fa-play"></i></button> <button class="btn btn-warning btn-circle" ng-click=stop(process.pm_id) ng-if="process.pm2_env.status==='online'" tooltip=Stop tooltip-placement=bottom><i class="fa fa-stop"></i></button> <button class="btn btn-primary btn-circle" tooltip-placement=bottom tooltip=Restart ng-click=restart(process.pm_id)><i class="fa fa-refresh"></i></button> <button class="btn btn-danger btn-circle" ng-click=delete(process.pm_id) tooltip-placement=bottom tooltip=Delete><i class="fa fa-trash"></i></button></td></tr></tbody></table></div></rd-widget-body></rd-widget></div></div>