Sha256: 74ceb3d159a49925a1ccd8bb8aecd81b85bcd218569422973ca000a9d41fb4d6

Contents?: true

Size: 1.3 KB

Versions: 8

Compression:

Stored size: 1.3 KB

Contents

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

  <h1>CPU</h1>
  <div id="chart-1" class="chart" style="margin-bottom: 20px;">Loading...</div>
  <script>
    new Chartkick.LineChart("chart-1", <%= json_escape(cpu_usage_path(path_options).to_json).html_safe %>, {max: 100, colors: ["#5bc0de"]})
  </script>

  <h1>Load</h1>
  <div id="chart-2" class="chart" style="margin-bottom: 20px;">Loading...</div>
  <script>
    new Chartkick.LineChart("chart-2", <%= json_escape(load_stats_path(path_options).to_json).html_safe %>, {colors: ["#5bc0de", "#d9534f"]})
  </script>

  <h1>Connections</h1>
  <div id="chart-3" class="chart" style="margin-bottom: 20px;">Loading...</div>
  <script>
    new Chartkick.LineChart("chart-3", <%= json_escape(connection_stats_path(path_options).to_json).html_safe %>, {colors: ["#5bc0de"]})
  </script>

  <% if @database.replica? %>
    <h1>Replication Lag</h1>
    <div id="chart-4" class="chart" style="margin-bottom: 20px;">Loading...</div>
    <script>
      new Chartkick.LineChart("chart-4", <%= json_escape(replication_lag_stats_path(path_options).to_json).html_safe %>, {colors: ["#5bc0de"]})
    </script>
  <% end %>
</div>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
pghero-2.3.0 app/views/pg_hero/home/system.html.erb
pghero-2.2.1 app/views/pg_hero/home/system.html.erb
pghero-2.2.0 app/views/pg_hero/home/system.html.erb
pghero-2.1.1 app/views/pg_hero/home/system.html.erb
pghero-2.1.0 app/views/pg_hero/home/system.html.erb
pghero-2.0.8 app/views/pg_hero/home/system.html.erb
pghero-2.0.7 app/views/pg_hero/home/system.html.erb
pghero-2.0.6 app/views/pg_hero/home/system.html.erb