Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
self
/
root
/
srv
/
admin
/
htdocs
/
rockmongo
/
themes
/
default
/
views
/
server
/
//proc/self/root/srv/admin/htdocs/rockmongo/themes/default/views/server/replication.php
<div class="operation"> <?php render_server_menu("replication"); ?> </div> <table bgcolor="#cccccc" cellpadding="2" cellspacing="1" width="600"> <tr> <th colspan="2"><?php hm("repstatus"); ?> (db.getReplicationInfo())</th> </tr> <?php foreach ($status as $param=>$value):?> <tr bgcolor="#fffeee"> <td width="120" valign="top"><?php h($param);?></td> <td><?php h($value);?></td> </tr> <?php endforeach; ?> </table> <?php if(!empty($me)): ?> <div class="gap"></div> <table bgcolor="#cccccc" cellpadding="2" cellspacing="1" width="600"> <tr> <th colspan="2"><?php hm("me"); ?> (<a href="<?php h(url("collection.index", array( "db" => "local", "collection" => "me" ))); ?>">local.me</a>)</th> </tr> <?php foreach ($me as $param => $value):?> <tr bgcolor="#fffeee"> <td width="120" valign="top"><?php h($param);?></td> <td><?php h($value);?></td> </tr> <?php endforeach; ?> </table> <?php endif; ?> <?php if(!empty($slaves)): ?> <div class="gap"></div> <table bgcolor="#cccccc" cellpadding="2" cellspacing="1" width="600"> <tr> <th colspan="2"><?php hm("slaves"); ?> (<a href="<?php h(url("collection.index", array( "db" => "local", "collection" => "slaves" ))); ?>">local.slaves</a>)</th> </tr> <?php foreach ($slaves as $slave):?> <tr bgcolor="#cfffff"> <td colspan="2"><?php h($slave["_id"]); ?></td> </tr> <?php foreach ($slave as $param => $value):?> <tr bgcolor="#fffeee"> <td width="120" valign="top"><?php h($param);?></td> <td><?php h($value);?></td> </tr> <?php endforeach; ?> <?php endforeach; ?> </table> <?php endif; ?> <?php if(!empty($masters)): ?> <div class="gap"></div> <table bgcolor="#cccccc" cellpadding="2" cellspacing="1" width="600"> <tr> <th colspan="2"><?php hm("masters"); ?> (<a href="<?php h(url("collection.index", array( "db" => "local", "collection" => "sources" ))); ?>">local.sources</a>)</th> </tr> <?php foreach ($masters as $master):?> <tr bgcolor="#cfffff"> <td colspan="2"><?php h($master["_id"]); ?></td> </tr> <?php foreach ($master as $param => $value):?> <tr bgcolor="#fffeee"> <td width="120" valign="top"><?php h($param);?></td> <td><?php h($value);?></td> </tr> <?php endforeach; ?> <?php endforeach; ?> </table> <?php endif; ?>