Dalgona / load_log

A simple OTP application written in Elixir that records CPU load average data

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LoadLog

LoadLog is a simple OTP application that records CPU load average data.

Please refer to the documentation for usage and configuration.

Usage

  1. Add :load_log into deps in your mix.exs.

    defp deps do
      [ ...
       {:load_log, "~> 0.1.0"},
        ... ]
    end
  2. Add :load_log into the application list.

    def application do
      [applications: [:load_log, ... ],
       ... ]
    end

LICENSE

MIT License. Please read LICENSE file for the full text.

About

A simple OTP application written in Elixir that records CPU load average data

License:MIT License


Languages

Language:Elixir 100.0%