(defn generate-mbean-info [clj-bean]
(MBeanInfo. (.. clj-bean getClass getName) ; class name
"Clojure Dynamic MBean" ; description
(jmx/map->attribute-infos @(.state clj-bean)) ; attributes
nil ; constructors
nil ; operations
nil))
Comments top
No comments for generate-mbean-info. Log in to add a comment.