(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?})(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?})(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?})(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?})(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?})(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)))
(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?})(runtime-bean)gives information about the system runtime
(object/to-map (runtime-bean))
gives information about the system runtime (object/to-map (runtime-bean))
(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))
cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |