home.html 565 B

1234567891011121314151617
  1. {% extends "base.html" %}
  2. {% block css %}
  3. <link rel="stylesheet" href="/css/home.css">
  4. {% end %}
  5. {% block main %}
  6. <p>
  7. sysvitals is Linux system monitoring as a service. Think hosted <a href="http://munin-monitoring.org/" target="_blank">Munin</a>, but way faster, prettier, and easier.
  8. </p>
  9. <p>
  10. The <a href="/client/sysvitals_client">client</a> sends CPU, memory, network, and disk usage data to the sysvitals API once a minute.
  11. </p>
  12. <p>
  13. The site queries that same API to draw pretty <del>pictures</del> <a href="/servers">graphs</a>.
  14. </p>
  15. {% end %}