Sha256: 7e05695bf1591a4ce89cf471f465caec6e39c7612efe2bf7a392df55fb89e656

Contents?: true

Size: 850 Bytes

Versions: 7

Compression:

Stored size: 850 Bytes

Contents

<div class="content">
  <p id="periods">
    <% @periods.each do |name, options| %>
      <%= link_to name, system_path(options) %>
    <% end %>
  </p>
  <% path_options = {duration: params[:duration], period: params[:period]} %>

  <h1>CPU</h1>
  <div style="margin-bottom: 20px;"><%= line_chart cpu_usage_path(path_options), max: 100, colors: ["#5bc0de"] %></div>

  <h1>Load</h1>
  <div style="margin-bottom: 20px;"><%= line_chart load_stats_path(path_options), colors: ["#5bc0de", "#d9534f"] %></div>

  <h1>Connections</h1>
  <div style="margin-bottom: 20px;"><%= line_chart connection_stats_path(path_options), colors: ["#5bc0de"] %></div>

  <% if @database.replica? %>
    <h1>Replication Lag</h1>
    <div style="margin-bottom: 20px;"><%= line_chart replication_lag_stats_path(path_options), colors: ["#5bc0de"] %></div>
  <% end %>
</div>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
pghero-1.6.2 app/views/pg_hero/home/system.html.erb
pghero-1.6.1 app/views/pg_hero/home/system.html.erb
pghero-1.6.0 app/views/pg_hero/home/system.html.erb
pghero-1.5.3 app/views/pg_hero/home/system.html.erb
pghero-1.5.2 app/views/pg_hero/home/system.html.erb
pghero-1.5.1 app/views/pg_hero/home/system.html.erb
pghero-1.5.0 app/views/pg_hero/home/system.html.erb