Liking cljdoc? Tell your friends :D

lucid.system.jvm


class-loading-beanclj

(class-loading-bean)

gives information about class loading

(object/to-map (class-loading-bean)) => (contains {:loaded-class-count number? :total-loaded-class-count number? :unloaded-class-count number? :verbose? checks/boolean?})

gives information about class loading

(object/to-map (class-loading-bean))
=> (contains {:loaded-class-count number?
              :total-loaded-class-count number?
              :unloaded-class-count number?
              :verbose? checks/boolean?})
raw docstring

compilation-beanclj

(compilation-bean)

gives information about compilation

(object/to-map (compilation-bean)) => (contains {:name string? :total-compilation-time number? :compilation-time-monitoring-supported? checks/boolean?})

gives information about compilation

(object/to-map (compilation-bean))
=> (contains {:name string?
              :total-compilation-time number?
              :compilation-time-monitoring-supported? checks/boolean?})
raw docstring

gc-beanclj

(gc-bean)

gives information about the garbage collector

(object/to-map (first (gc-bean))) => (contains {:collection-count number? :collection-time number?})

gives information about the garbage collector

(object/to-map (first (gc-bean)))
=> (contains {:collection-count number?
              :collection-time number?})
raw docstring

jvm-mapclj


memory-beanclj

(memory-bean)

gives information about the system memory

(object/to-map (memory-bean)) => (contains-in {:heap-memory-usage {:committed number? :init number? :max number? :used number?} :non-heap-memory-usage {:committed number? :init number? :max number? :used number?} :object-pending-finalization-count number? :verbose? checks/boolean?})

gives information about the system memory

(object/to-map (memory-bean))
=> (contains-in {:heap-memory-usage
                 {:committed number?
                  :init number?
                  :max number?
                  :used number?}
                :non-heap-memory-usage
                 {:committed  number?
                  :init number?
                  :max number?
                  :used number?}
                 :object-pending-finalization-count number?
                 :verbose? checks/boolean?})
raw docstring

memory-manager-beanclj

(memory-manager-bean)

gives information about the memory manager

(object/to-map (first (memory-manager-bean))) => (contains-in {:memory-pool-names [string?], :name string? :valid? checks/boolean?})

gives information about the memory manager

(object/to-map (first (memory-manager-bean)))
=> (contains-in {:memory-pool-names [string?],
                 :name string?
                 :valid? checks/boolean?})
raw docstring

memory-pool-beanclj

(memory-pool-bean)

gives information about the memory pool

(object/to-map (first (memory-pool-bean)))

gives information about the memory pool

(object/to-map (first (memory-pool-bean)))
raw docstring

os-beanclj

(os-bean)

gives information about the operating system

(object/to-map (os-bean)) => (contains {:arch string? :available-processors number? :name string? :system-load-average number? :version string?})

gives information about the operating system

(object/to-map (os-bean))
=> (contains {:arch string?
              :available-processors number?
              :name string?
              :system-load-average number?
              :version string?})
raw docstring

runtime-beanclj

(runtime-bean)

gives information about the system runtime

(object/to-map (runtime-bean))

gives information about the system runtime

(object/to-map (runtime-bean))
raw docstring

thread-beanclj

(thread-bean)

gives information about the current thread executor

(object/to-map (thread-bean))

gives information about the current thread executor

(object/to-map (thread-bean))
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close