Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed show logs from all nodes checkbox #315

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions modules/monitoring/helpers/showlog.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,6 @@ public static function show_log_entries($options)
$args[] = '--reverse';
}

if (!empty($options['all_nodes'])) {
$args[] = '--all-nodes';
}

# invoke a hard limit in case the user didn't set any.
# This will prevent php from exiting with an out-of-memory
# error, and will also stop users' browsers from hanging
Expand Down
1 change: 0 additions & 1 deletion modules/monitoring/views/showlog/showlog.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
<label><?php echo form::checkbox('hide_logrotation', 1, isset($options['hide_logrotation'])).' '._('Hide logrotation messages'); ?></label><br />
<?php echo $is_authorized ? '<label>'.form::checkbox('hide_commands', 1, isset($options['hide_commands'])).' '._('Hide external commands').'</label><br />' : ''; ?>
<label><?php echo form::checkbox('parse_forward', 1, isset($options['parse_forward'])).' '._('Older entries first'); ?></label><br />
<label><?php echo form::checkbox('all_nodes', 1, isset($options['all_nodes'])).' '._('Show logs from all nodes'); ?></label><br />
</td>
<td class="showlog_options">
<table>
Expand Down