Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/dalgona/load_log
- Owner: Dalgona
- License: mit
- Created: 2016-12-04T15:25:19.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-04-10T15:24:59.000Z (over 5 years ago)
- Last Synced: 2024-10-30T16:56:23.667Z (17 days ago)
- Language: Elixir
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.