Liking cljdoc? Tell your friends :D

active.clojure.logger.timed-metric

Common functionality to ease logging of timed metrics.

Common functionality to ease logging of timed metrics.
raw docstring

cancel-metric-timercljmacro

(cancel-metric-timer ?timer-name-or-metric)
(cancel-metric-timer ?metric ?more)

Cancels a metric timer. It can either be identified by a timer name returned by start-metric-timer or by current namespace, metric, and (optional) addtional context map.

Cancels a metric timer.  It can either be identified by a timer name
returned by [[start-metric-timer]] or by current namespace, metric, and
(optional) addtional context map.
sourceraw docstring

cancel-metric-timer-1clj

(cancel-metric-timer-1 timer-name)

Cancels a metric timer, identified by timer-name.

Cancels a metric timer, identified by `timer-name`.
sourceraw docstring

log-time-metric!cljmacro

(log-time-metric! ?log-metric-fn! ?body)
source

log-timed-metricclj

(log-timed-metric timer-name timer)

Monadic command for logging a timed metric.

Monadic command for logging a timed metric.
sourceraw docstring

log-timed-metric-timerclj

(log-timed-metric-timer rec__7086__auto__)
(log-timed-metric-timer data__7087__auto__ v__7088__auto__)

Lens for the timer field from a [[LogTimedMetric]] record. See active.clojure.logger.timed-metric/log-timed-metric.

Lens for the `timer` field from a [[LogTimedMetric]] record. See [[active.clojure.logger.timed-metric/log-timed-metric]].
sourceraw docstring

log-timed-metric-timer-nameclj

(log-timed-metric-timer-name rec__7086__auto__)
(log-timed-metric-timer-name data__7087__auto__ v__7088__auto__)

Lens for the timer-name field from a [[LogTimedMetric]] record. See active.clojure.logger.timed-metric/log-timed-metric.

Lens for the `timer-name` field from a [[LogTimedMetric]] record. See [[active.clojure.logger.timed-metric/log-timed-metric]].
sourceraw docstring

log-timed-metric?clj

(log-timed-metric? thing)

Is object a LogTimedMetric record? See active.clojure.logger.timed-metric/log-timed-metric.

Is object a `LogTimedMetric` record? See [[active.clojure.logger.timed-metric/log-timed-metric]].
sourceraw docstring

logging-timingcljmacro

(logging-timing ?metric ?m)
(logging-timing ?metric ?more ?m)

A monadic command that executes m and returns its result, and also makes a debug log message about the time it took to execute it, where the message contains the given metric as name and help string and more.

A monadic command that executes `m` and returns its result, and
also makes a debug log message about the time it took to execute
it, where the message contains the given `metric` as name and
help string and `more`.
sourceraw docstring

logging-timing*clj

(logging-timing* origin metric m)
(logging-timing* origin metric more m)
source

make-timer-nameclj

(make-timer-name namespace metric map)

Construct a TimerName record.

namespace (String): access via active.clojure.logger.timed-metric/timer-name-namespace metric (Name of the metric that will be logged.): access via active.clojure.logger.timed-metric/timer-name-metric map (Map with log context info, keywords to strings.): access via active.clojure.logger.timed-metric/timer-name-map

Construct a `TimerName` record.

`namespace` (String): access via [[active.clojure.logger.timed-metric/timer-name-namespace]]
`metric` (Name of the metric that will be logged.): access via [[active.clojure.logger.timed-metric/timer-name-metric]]
`map` (Map with log context info, keywords to strings.): access via [[active.clojure.logger.timed-metric/timer-name-map]]
sourceraw docstring

run-timed-metrics-as-gaugesclj

(run-timed-metrics-as-gauges run-any env state m)
source

run-timed-metrics-as-histogramsclj

(run-timed-metrics-as-histograms run-any env state m)
source

start-metric-timercljmacro

(start-metric-timer ?metric & [?more])

Starts a metric timer, identified by metric and more.

more is a map that is merged with the log context that's already active, if present.

Returns a timer-name object that can be fed to cancel-metric-timer or stop-and-log-metric-timer.

Starts a metric timer, identified by `metric` and `more`.

`more` is a map that is merged with the log context that's already active,
if present.

Returns a timer-name object that can be fed to
[[cancel-metric-timer]] or [[stop-and-log-metric-timer]].
sourceraw docstring

start-metric-timer-1clj

(start-metric-timer-1 ns metric more)

Starts a metric timer, identified by ns, metric and more.

more is a map that is merged with the log context that's already active, if present.

Starts a metric timer, identified by `ns`, `metric` and `more`.

`more` is a map that is merged with the log context that's already active,
if present.
sourceraw docstring

stop-and-log-metric-timercljmacro

(stop-and-log-metric-timer ?timer-name-or-metric)
(stop-and-log-metric-timer ?metric ?more)

Stops a metric timer and logs the time. The timer can either be identified by a timer name returned by start-metric-timer or by current namespace, metric, and (optional) addtional context map.

Returns the elapsed time in milliseconds.

Stops a metric timer and logs the time.  The timer can either be identified by a timer name
returned by [[start-metric-timer]] or by current namespace, metric, and
(optional) addtional context map.

Returns the elapsed time in milliseconds.
sourceraw docstring

stop-and-log-metric-timer-1clj

(stop-and-log-metric-timer-1 timer-name)

Stops a metric timer and logs the time as a metric.

Stops a metric timer and logs the time as a metric.
sourceraw docstring

stop-metric-timerclj

(stop-metric-timer timer-name)
source

timed-metrics-as-gauges-command-configclj

source

timed-metrics-as-histograms-command-configclj

source

timer-name-mapclj

(timer-name-map rec__7086__auto__)
(timer-name-map data__7087__auto__ v__7088__auto__)

Lens for the map field (Map with log context info, keywords to strings.) from a [[TimerName]] record. See active.clojure.logger.timed-metric/make-timer-name.

Lens for the `map` field (Map with log context info, keywords to strings.) from a [[TimerName]] record. See [[active.clojure.logger.timed-metric/make-timer-name]].
sourceraw docstring

timer-name-metricclj

(timer-name-metric rec__7086__auto__)
(timer-name-metric data__7087__auto__ v__7088__auto__)

Lens for the metric field (Name of the metric that will be logged.) from a [[TimerName]] record. See active.clojure.logger.timed-metric/make-timer-name.

Lens for the `metric` field (Name of the metric that will be logged.) from a [[TimerName]] record. See [[active.clojure.logger.timed-metric/make-timer-name]].
sourceraw docstring

timer-name-namespaceclj

(timer-name-namespace rec__7086__auto__)
(timer-name-namespace data__7087__auto__ v__7088__auto__)

Lens for the namespace field (String) from a [[TimerName]] record. See active.clojure.logger.timed-metric/make-timer-name.

Lens for the `namespace` field (String) from a [[TimerName]] record. See [[active.clojure.logger.timed-metric/make-timer-name]].
sourceraw docstring

timer-name?clj

(timer-name? thing)

Is object a TimerName record? See active.clojure.logger.timed-metric/make-timer-name.

Is object a `TimerName` record? See [[active.clojure.logger.timed-metric/make-timer-name]].
sourceraw docstring

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

× close