package core

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. uptime : Core_kernel.Time.Span.t;
    (*

    time since boot

    *)
  2. load1 : int;
    (*

    load average over the last minute

    *)
  3. load5 : int;
    (*

    load average over the last 5 minutes

    *)
  4. load15 : int;
    (*

    load average over the last 15 minutes

    *)
  5. total_ram : int;
    (*

    total usable main memory

    *)
  6. free_ram : int;
    (*

    available memory size

    *)
  7. shared_ram : int;
    (*

    amount of shared memory

    *)
  8. buffer_ram : int;
    (*

    memory used by buffers

    *)
  9. total_swap : int;
    (*

    total swap page size

    *)
  10. free_swap : int;
    (*

    available swap space

    *)
  11. procs : int;
    (*

    number of current processes

    *)
  12. totalhigh : int;
    (*

    Total high memory size

    *)
  13. freehigh : int;
    (*

    Available high memory size

    *)
  14. mem_unit : int;
    (*

    Memory unit size in bytes

    *)
}

Result of sysinfo syscall (man 2 sysinfo)

include sig ... end
val t_of_sexp : Sexplib.Sexp.t -> t
val sexp_of_t : t -> Sexplib.Sexp.t
val __bin_read_t__ : (int -> t) Core_kernel.Bin_prot.Read.reader
val sysinfo : (unit -> t) Core_kernel.Or_error.t
OCaml

Innovation. Community. Security.