bangalore-clj

https://www.meetup.com/Bangalore-Clojure-User-Group/
sreenath.n 2016-09-05T08:14:26.000005Z

@kumarshantanu : yes! https://github.com/multunus/dashboard-clj

Shantanu Kumar 2016-09-05T09:16:02.000007Z

@sreenath.n Have you tried using https://github.com/walmartlabs/system-viz with dashboard-clj yet? I was wondering if there’s a simpler way to just extract the dependency-graph and integrate with https://github.com/kumarshantanu/lein-viz

sreenath.n 2016-09-05T14:29:42.000009Z

@kumarshantanu : I haven’t tried system-viz yet. But, stuart sierra component can give us dependency-graph. Would that be sufficient? This is what I got when I tried,

(com.stuartsierra.component/dependency-graph system (keys system))
;; #com.stuartsierra.dependency.MapDependencyGraph{:dependencies {:server #{:websocket}}, :dependents {:websocket #{:server}}}

Shantanu Kumar 2016-09-05T17:15:53.000012Z

@sreenath.n Thanks! Turns out it is easy to build a graph that lein-viz can use: {:graph (:dependencies (component/dependency-graph system (keys system)))}