mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-18 12:17:05 +02:00
20 lines
558 B
Plaintext
20 lines
558 B
Plaintext
- page_title t('fluentd.common.recent_errors', days: @error_duration_days) do
|
|
- link_to raw_log_daemon_path(@fluentd), class: "btn btn-primary pull-right" do
|
|
= icon('fa-download')
|
|
= t('fluentd.common.raw_log_link')
|
|
|
|
.row
|
|
.col-xs-12
|
|
- @errors.each do |error|
|
|
.panel.panel-default
|
|
.panel-heading
|
|
%h4= error[:subject]
|
|
- if error[:notes].present?
|
|
.panel-body
|
|
%ul
|
|
- error[:notes].each do |stack|
|
|
%li= stack
|
|
- if @errors.empty?
|
|
%p= t('.error_is_empty')
|
|
|