API | Wiki | Latest releases | Slack channel
Telemere is a next-generation replacement for Timbre. It handles structured and traditional logging, tracing, and basic performance monitoring with a simple unified API.
It helps enable Clojure/Script systems that are observable, robust, and debuggable - and it represents the refinement and culmination of ideas brewing over 12+ years in Timbre, Tufte, Truss, etc.
[Terminology] Telemetry derives from the Greek tele (remote) and metron (measure). It refers to the collection of in situ (in position) data, for transmission to other systems for monitoring/analysis. Logs are the most common form of software telemetry. So think of telemetry as the superset of logging-like activities that help monitor and understand (software) systems.
2024-05-23
v1.0.0-beta13
: release info (for early adopters/feedback)See here for earlier releases.
See for intro and usage:
(require '[taoensso.telemere :as t])
(t/log! {:id ::my-id, :data {:x1 :x2}} "My message") %>
;; 2024-04-11T10:54:57.202869Z INFO LOG Schrebermann.local examples(56,1) ::my-id - My message
;; data: {:x1 :x2}
(t/log! "This will send a `:log` signal to the Clj/s console")
(t/log! :info "This will do the same, but only when the current level is >= `:info`")
;; Easily construct messages
(let [x "constructed"] (t/log! :info ["Here's a" x "message!"]))
;; Attach an id
(t/log! {:level :info, :id ::my-id} "This signal has an id")
;; Attach arb user data
(t/log! {:level :info, :data {:x :y}} "This signal has structured data")
;; Capture for debug/testing
(t/with-signal (t/log! "This will be captured"))
;; => {:keys [location level id data msg_ ...]}
;; `:let` bindings available to `:data` and message, only paid for
;; when allowed by minimum level and other filtering criteria
(t/log!
{:level :info
:let [expensive-metric1 (last (for [x (range 100), y (range 100)] (* x y)))]
:data {:metric1 expensive-metric1}}
["Message with metric value:" expensive-metric1])
;; With sampling 50% and 1/sec rate limiting
(t/log!
{:sample-rate 0.5
:rate-limit {"1 per sec" [1 1000]}}
"This signal will be sampled and rate limited")
;;; A quick taste of filtering...
(t/set-ns-filter! {:disallow "taoensso.*" :allow "taoensso.sente.*"}) ; Set namespace filter
(t/set-id-filter! {:allow #{::my-particular-id "my-app/*"}}) ; Set id filter
(t/set-min-level! :warn) ; Set minimum level
(t/set-min-level! :log :debug) ; Set minimul level for `:log` signals
;; Set minimum level for `:event` signals originating in the "taoensso.sente.*" ns
(t/set-min-level! :event "taoensso.sente.*" :warn)
See examples.cljc for more REPL-ready snippets.
See relevant docstrings (links below) for usage info-
Name | Signal kind | Main arg | Optional arg | Returns |
---|---|---|---|---|
log! | :log | msg | opts /level | Signal allowed? |
event! | :event | id | opts /level | Signal allowed? |
error! | :error | error | opts /id | Given error |
trace! | :trace | form | opts /id | Form result |
spy! | :spy | form | opts /level | Form result |
catch->error! | :error | form | opts /id | Form value or given fallback |
signal! | <arb> | opts | - | Depends on opts |
Help is available without leaving your IDE:
Var | Help with |
---|---|
help:signal-creators | Creating signals |
help:signal-options | Signal options |
help:signal-content | Signal content (map given to middleware/handlers) |
help:filters | Signal and handler filters |
help:handlers | Signal handlers |
help:handler-dispatch-options | Signal handler dispatch options |
help:environmental-config | Config via JVM properties, environment variables, or classpath resources. |
See linked docstrings below for features and usage:
Name | Platform | Output target | Output format |
---|---|---|---|
handler:console | Clj | *out* or *err* | edn/JSON or human-readable |
handler:console | Cljs | Browser console | edn/JSON or human-readable |
handler:console-raw | Cljs | Browser console | Raw signals for cljs-devtools, etc. |
handler:file | Clj | File/s on disk | edn/JSON or human-readable |
handler:open-telemetry-logger | Clj | OpenTelemetry Java client | LogRecord |
handler:postal | Clj | Email (via postal) | edn/JSON or human-readable |
handler:slack | Clj | Slack (via clj-slack) | edn/JSON or human-readable |
handler:tcp-socket | Clj | TCP socket | edn/JSON or human-readable |
handler:udp-socket | Clj | UDP socket | edn/JSON or human-readable |
See here for more/upcoming handlers, community handlers, info on writing your own handlers, etc.
Telemere is highly optimized and offers terrific performance at any scale:
Compile-time filtering? | Runtime filtering? | Time? | Trace? | nsecs |
---|---|---|---|---|
✓ (elide) | - | - | - | 0 |
- | ✓ | - | - | 200 |
- | ✓ | ✓ | - | 280 |
- | ✓ | ✓ | ✓ | 650 |
Measurements:
Tip: Telemere offers extensive per-call and per-handler filtering, sampling, and rate-limiting. Use these to ensure that you're not capturing useless/low-value information in production. See here for more tips!
You can help support continued work on this project, thank you!! 🙏
Copyright © 2023-2024 Peter Taoussanis.
Licensed under EPL 1.0 (same as Clojure).
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close