load_log v0.1.0 LoadLog

This module defines LoadLog application.

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

Configuration

You can customize some settings by modifying config/config.exs file:

config :load_log, max_items: 1440
config :load_log, interval: 60000
  • max_items

    The maximum number of items this application can hold. If the number of logged data exceeds this upper limit, the oldest data will be trimmed.

  • interval

    A peroid of time between each data in milliseconds.

Summary

Functions

Starts the LoadLog application

Functions

start(type, args)

Starts the LoadLog application.