Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dalgona/load_log

A simple OTP application written in Elixir that records CPU load average data
https://github.com/dalgona/load_log

Last synced: about 15 hours ago
JSON representation

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

Awesome Lists containing this project

README

        

# 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`.

```elixir
defp deps do
[ ...
{:load_log, "~> 0.1.0"},
... ]
end
```

2. Add `:load_log` into the application list.

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

# LICENSE

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