:mulog/trace-id
to base event with a flake (192 bit time-ordered unique id)μ/trace
function api change. (BREAKING CHANGE)
result*
function you will have change the code as follow:;; before
(μ/trace ::availability
[:product-id product-id, :order order-id, :user user-id]
(fn [{:keys [status]}] {:http-status status}) ;; THIS CHANGED
(product-availability product-id))
;; after
(μ/trace ::availability
{:pairs [:product-id product-id, :order order-id, :user user-id]
:capture (fn [{:keys [status]}] {:http-status status})}
(product-availability product-id))
μ/trace
uses without the result*
function are NOT AFFECTED.
mulog-kakfa
.
mulog-kakfa
doesn't require Kafka-2.5.0 specifically,
therefore if you need to use a different version, just exclude
the dependency.:inline
publishersCan you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close