mirror of https://github.com/status-im/timbre.git
Update core appenders
Note Carmine appender output change for `query-entries` util.
This commit is contained in:
parent
e5b95cbd75
commit
682fa62334
19
README.md
19
README.md
|
@ -151,10 +151,13 @@ This is the biggest win over Java logging IMO. **All** of Timbre's behaviour is
|
|||
:context ; *context* value at log time (see `with-context`)
|
||||
:profile-stats ; From `profile` macro
|
||||
|
||||
**NB** - any keys not specifically documented here should be
|
||||
considered private / subject to change without notice.
|
||||
|
||||
MIDDLEWARE
|
||||
Middleware are simple (fn [data]) -> ?data fns (applied left->right) that
|
||||
transform the data map dispatched to appender fns. If any middleware returns
|
||||
nil, NO dispatching will occur (i.e. the event will be filtered).
|
||||
transform the data map dispatched to appender fns. If any middleware
|
||||
returns nil, NO dispatch will occur (i.e. the event will be filtered).
|
||||
|
||||
The `example-config` source code contains further settings and details.
|
||||
See also `set-config!`, `merge-config!`, `set-level!`."
|
||||
|
@ -238,12 +241,14 @@ lein uberjar # Compile jar ''
|
|||
```
|
||||
|
||||
This gives us a high-performance Redis appender:
|
||||
* **All raw logging args are preserved** in serialized form (**even errors!**)
|
||||
* Only the most recent instance of each **unique entry** is kept (hash fn used to determine uniqueness is configurable)
|
||||
* Configurable number of entries to keep per log level
|
||||
* **Log is just a value**: a vector of Clojure maps: **query+manipulate with standard seq fns**: group-by hostname, sort/filter by ns & severity, explore exception stacktraces, filter by raw arguments, stick into or query with **Datomic**, etc.
|
||||
* **All raw logging args are preserved** in serialized form (even errors).
|
||||
* Configurable number of entries to keep per log level.
|
||||
* Only the most recent instance of each **unique entry** is kept.
|
||||
* Resulting **log is just a Clojure value**: a vector of log entries (maps).
|
||||
|
||||
A simple query utility is provided: `car-appender/query-entries`.
|
||||
Clojure has a rich selection of built-in and 3rd party tools for querying values like this.
|
||||
|
||||
See also `car-appender/query-entries`.
|
||||
|
||||
#### Email ([Postal]) appender
|
||||
|
||||
|
|
|
@ -1,49 +1,69 @@
|
|||
(ns taoensso.timbre.appenders.carmine
|
||||
"Carmine (Redis) appender. Requires https://github.com/ptaoussanis/carmine."
|
||||
{:author "Peter Taoussanis"}
|
||||
"Carmine (Redis) appender.
|
||||
Requires https://github.com/ptaoussanis/carmine."
|
||||
{:author "Peter Taoussanis (@ptaoussanis)"}
|
||||
(:require [taoensso.carmine :as car]
|
||||
[taoensso.nippy :as nippy]
|
||||
[taoensso.timbre :as timbre]
|
||||
[taoensso.encore :as enc :refer (have have?)]))
|
||||
|
||||
(defn- sha48
|
||||
"Truncated 160bit SHA hash (48bit Long). Redis can store small collections of
|
||||
these quite efficiently."
|
||||
"Truncated 160bit SHA hash (48bit Long). Redis can store small
|
||||
collections of these quite efficiently."
|
||||
[x] (-> (str x)
|
||||
(org.apache.commons.codec.digest.DigestUtils/shaHex)
|
||||
(.substring 0 11)
|
||||
(Long/parseLong 16)))
|
||||
|
||||
(comment (sha48 {:key "I'm gonna get hashed!"}))
|
||||
(comment (enc/qb 10000 (sha48 "I'm gonna get hashed!")))
|
||||
|
||||
(defn default-keyfn [level] {:pre [(have? string? level)]}
|
||||
(str "carmine:timbre:default:" level))
|
||||
|
||||
(defn carmine-appender
|
||||
"Returns a Carmine Redis appender (experimental, subject to change):
|
||||
* All raw logging args are preserved in serialized form (even Throwables!).
|
||||
* Only the most recent instance of each unique entry is kept (uniqueness
|
||||
determined by data-hash-fn).
|
||||
* Configurable number of entries to keep per logging level.
|
||||
* Log is just a value: a vector of Clojure maps: query+manipulate with
|
||||
standard seq fns: group-by hostname, sort/filter by ns & severity, explore
|
||||
exception stacktraces, filter by raw arguments, etc. Datomic and `core.logic`
|
||||
also offer interesting opportunities here.
|
||||
|
||||
See accompanying `query-entries` fn to return deserialized log entries."
|
||||
[& [{:keys [conn-opts keyfn nentries-by-level]
|
||||
:or {keyfn default-keyfn
|
||||
nentries-by-level {:trace 50
|
||||
(defn default-keyfn [level] (str "timbre:carmine:" (name level)))
|
||||
(def default-nentries-by-level
|
||||
{:trace 50
|
||||
:debug 50
|
||||
:info 50
|
||||
:warn 100
|
||||
:error 100
|
||||
:fatal 100
|
||||
:report 100}}}]]
|
||||
:report 100})
|
||||
|
||||
{:pre [(have? string? (keyfn "test"))
|
||||
(have? [:ks>= timbre/ordered-levels] nentries-by-level)
|
||||
(have? [:and integer? #(<= 0 % 100000)] :in (vals nentries-by-level))]}
|
||||
(defn default-entry-fn "(fn [data])-><db-entry>"
|
||||
[data]
|
||||
(let [{:keys [instant level vargs hostname_ timestamp_
|
||||
context ?err ?ns-str ?file ?line ?msg-fmt profile-stats]}
|
||||
data]
|
||||
(enc/assoc-some
|
||||
{:instant instant
|
||||
:level level
|
||||
:vargs vargs
|
||||
:hostname (force hostname_)
|
||||
;; :timestamp (force timestamp_)
|
||||
}
|
||||
:context context
|
||||
:?err ?err
|
||||
:?ns-str ?ns-str
|
||||
:?file ?file
|
||||
:?line ?line
|
||||
:?msg-fmt ?msg-fmt
|
||||
:profile-stats profile-stats)))
|
||||
|
||||
(defn carmine-appender
|
||||
"Alpha, subject to change.
|
||||
|
||||
Returns a Carmine Redis appender:
|
||||
* All raw logging args are preserved in serialized form (even errors).
|
||||
* Configurable number of entries to keep per logging level.
|
||||
* Only the most recent instance of each unique entry is kept.
|
||||
* Resulting log is just a Clojure value: a vector of log entries (maps).
|
||||
|
||||
See also `query-entries`."
|
||||
[& [{:keys [conn-opts keyfn entry-fn nentries-by-level]
|
||||
:or {keyfn default-keyfn
|
||||
entry-fn default-entry-fn
|
||||
nentries-by-level default-nentries-by-level}}]]
|
||||
|
||||
(have? string? (keyfn :info))
|
||||
(have? integer? (nentries-by-level :info))
|
||||
|
||||
{:enabled? true
|
||||
:async? false
|
||||
|
@ -52,30 +72,23 @@
|
|||
:output-fn :inherit
|
||||
:fn
|
||||
(fn [data]
|
||||
(let [{:keys [level instant data-hash-fn]} data
|
||||
entry-hash (sha48 (data-hash-fn data))
|
||||
entry (merge
|
||||
{:instant instant
|
||||
:level level
|
||||
:?ns-str (:?ns-str data)
|
||||
:hostname @(:hostname_ data)
|
||||
:vargs @(:vargs_ data)
|
||||
:?err @(:?err_ data)}
|
||||
(when-let [pstats (:profile-stats data)]
|
||||
{:profile-stats pstats}))
|
||||
(let [{:keys [level instant hash_]} data
|
||||
entry-hash (sha48 (force hash_))
|
||||
entry (entry-fn data)
|
||||
|
||||
k-zset (keyfn (name level))
|
||||
k-zset (keyfn level)
|
||||
k-hash (str k-zset ":entries")
|
||||
udt (.getTime ^java.util.Date instant) ; Use as zscore
|
||||
nmax-entries (nentries-by-level level)]
|
||||
nmax-entries (long (nentries-by-level level))]
|
||||
|
||||
(when (> nmax-entries 0)
|
||||
(car/wcar conn-opts
|
||||
(binding [nippy/*final-freeze-fallback* nippy/freeze-fallback-as-str]
|
||||
(binding [nippy/*final-freeze-fallback*
|
||||
nippy/freeze-fallback-as-str]
|
||||
(car/hset k-hash entry-hash entry))
|
||||
(car/zadd k-zset udt entry-hash)
|
||||
|
||||
(when (< (rand) 0.01) ; Occasionally GC
|
||||
(when (< ^double (rand) 0.01) ; Occasionally GC
|
||||
;; This is necessary since we're doing zset->entry-hash->entry
|
||||
;; rather than zset->entry. We want the former for the control
|
||||
;; it gives us over what should constitute a 'unique' entry.
|
||||
|
@ -97,41 +110,39 @@
|
|||
;;;; Query utils
|
||||
|
||||
(defn query-entries
|
||||
"Alpha - subject to change!
|
||||
Returns latest `n` log entries by level as an ordered vector of deserialized
|
||||
maps. Normal sequence fns can be used to query/transform entries. Datomic and
|
||||
core.logic are also useful!"
|
||||
"Alpha, subject to change.
|
||||
Returns latest `n` log entries by level as an ordered vector of
|
||||
deserialized maps."
|
||||
[conn-opts level & [n asc? keyfn]]
|
||||
{:pre [(have? [:or nil? [:and integer? #(<= 1 % 100000)]] n)]}
|
||||
(have? [:or nil? integer?] n)
|
||||
(let [keyfn (or keyfn default-keyfn)
|
||||
k-zset (keyfn (name level))
|
||||
k-zset (keyfn level)
|
||||
k-hash (str k-zset ":entries")
|
||||
|
||||
entries-zset ; [{:hash _ :level _ :instant _} ...]
|
||||
(->>
|
||||
zset-maps ; [{:level _ :instant _ :entry <hash>} ...]
|
||||
(let [-kvs
|
||||
(car/wcar conn-opts
|
||||
(if asc? (car/zrange k-zset 0 (if n (dec n) -1) :withscores)
|
||||
(car/zrevrange k-zset 0 (if n (dec n) -1) :withscores)))
|
||||
(partition 2) ; Reconstitute :level, :instant keys:
|
||||
(reduce (fn [v [entry-hash score]]
|
||||
(conj v {:level level
|
||||
:instant (java.util.Date. (-> score car/as-long long))
|
||||
:hash entry-hash}))
|
||||
[]))
|
||||
(if asc?
|
||||
(car/zrange k-zset 0 (if n (dec n) -1) :withscores)
|
||||
(car/zrevrange k-zset 0 (if n (dec n) -1) :withscores)))]
|
||||
|
||||
entries-hash ; [{_}-or-ex {_}-or-ex ...]
|
||||
(when-let [hashes (seq (mapv :hash entries-zset))]
|
||||
(if-not (next hashes) ; Careful!
|
||||
(car/wcar conn-opts :as-pipeline (apply car/hget k-hash hashes))
|
||||
(car/wcar conn-opts (apply car/hmget k-hash hashes))))]
|
||||
(persistent!
|
||||
(enc/reduce-kvs
|
||||
(fn [acc entry-hash udt-score]
|
||||
(conj! acc
|
||||
{:level level
|
||||
:instant (java.util.Date. (enc/as-int udt-score))
|
||||
:entry entry-hash}))
|
||||
(transient [])
|
||||
-kvs)))
|
||||
|
||||
(mapv (fn [m1 m2-or-ex]
|
||||
(if (instance? Exception m2-or-ex)
|
||||
;; Should be rare but can happen (e.g. due to faulty Nippy
|
||||
;; extensions or inconsistently-unserializable args):
|
||||
(-> (assoc m1 :entry-ex m2-or-ex) (dissoc :hash))
|
||||
(-> (merge m1 m2-or-ex) (dissoc :hash))))
|
||||
entries-zset entries-hash)))
|
||||
entries-by-hash ; [<{}-or-ex> <{}-or-ex> ...]
|
||||
(when-let [hashes (seq (map :entry zset-maps))]
|
||||
(if (next hashes) ; Careful!
|
||||
(car/wcar conn-opts (apply car/hmget k-hash hashes))
|
||||
(car/wcar conn-opts :as-pipeline (apply car/hget k-hash hashes))))]
|
||||
|
||||
(mapv (fn [zset-m entry] (assoc zset-m :entry entry)) zset-maps entries-by-hash)))
|
||||
|
||||
;;;; Deprecated
|
||||
|
||||
|
@ -144,15 +155,15 @@
|
|||
|
||||
(comment
|
||||
(timbre/with-merged-config {:appenders {:carmine (carmine-appender)}}
|
||||
(timbre/info "Hello1" "Hello2"))
|
||||
(timbre/info "foo" "bar"))
|
||||
|
||||
(car/wcar {} (car/keys (default-keyfn "*")))
|
||||
(count (car/wcar {} (car/hgetall (default-keyfn "info:entries"))))
|
||||
|
||||
(car/wcar {} (car/del (default-keyfn "info")
|
||||
(default-keyfn "info:entries")))
|
||||
|
||||
(car/wcar {} (car/hgetall (default-keyfn "info:entries")))
|
||||
|
||||
(count (query-entries {} :info 2))
|
||||
(count (query-entries {} :info 2 :asc)))
|
||||
(count (query-entries {} :info 5))
|
||||
(count (query-entries {} :info 5 :asc))
|
||||
|
||||
(car/wcar {}
|
||||
(car/del
|
||||
(default-keyfn "info")
|
||||
(default-keyfn "info:entries"))))
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
(ns taoensso.timbre.appenders.core
|
||||
"Core Timbre appenders without any special dependency requirements.
|
||||
These can be aliased into the main Timbre ns for convenience."
|
||||
{:author "Peter Taoussanis"}
|
||||
{:author "Peter Taoussanis (@ptaoussanis)"}
|
||||
#+clj
|
||||
(:require
|
||||
[clojure.string :as str]
|
||||
|
@ -43,15 +43,17 @@
|
|||
:output-fn :inherit
|
||||
:fn
|
||||
(fn [data]
|
||||
(let [{:keys [output-fn]} data]
|
||||
#+cljs (println (output-fn data))
|
||||
(let [{:keys [output_]} data]
|
||||
#+cljs (println (force output_))
|
||||
#+clj
|
||||
(let [stream (case stream
|
||||
(let [stream
|
||||
(case stream
|
||||
:auto (if (:error? data) *err* *out*)
|
||||
:*out* *out*
|
||||
:*err* *err*
|
||||
stream)]
|
||||
(binding [*out* stream] (println (output-fn data))))))}))
|
||||
|
||||
(binding [*out* stream] (println (force output_))))))}))
|
||||
|
||||
(comment (println-appender))
|
||||
|
||||
|
@ -77,10 +79,10 @@
|
|||
:output-fn :inherit
|
||||
:fn
|
||||
(fn [data]
|
||||
(let [{:keys [output-fn]} data]
|
||||
(let [{:keys [output_]} data]
|
||||
(try ; To allow TTL-memoization of dir creator
|
||||
(ensure-spit-dir-exists! fname)
|
||||
(spit fname (str (output-fn data) "\n") :append true)
|
||||
(spit fname (str (force output_) "\n") :append true)
|
||||
(catch java.io.IOException _))))})
|
||||
|
||||
(comment (spit-appender))
|
||||
|
@ -102,8 +104,7 @@
|
|||
;; (Ref. https://goo.gl/IZzkQB) to get accurate line numbers in all
|
||||
;; browsers w/o the need for Blackboxing?
|
||||
|
||||
[& [{:keys [raw-output?]} ; Undocumented (experimental)
|
||||
]]
|
||||
[& [opts]]
|
||||
{:enabled? true
|
||||
:async? false
|
||||
:min-level nil
|
||||
|
@ -126,20 +127,20 @@
|
|||
js/console.log))]
|
||||
|
||||
(fn [data]
|
||||
(let [{:keys [level output-fn vargs_]} data
|
||||
vargs @vargs_
|
||||
[v1 vnext] (enc/vsplit-first vargs)
|
||||
logger (level->logger level)]
|
||||
(let [logger (level->logger (:level data))]
|
||||
|
||||
(if (or raw-output? (enc/kw-identical? v1 :timbre/raw)) ; Undocumented
|
||||
(let [output (output-fn (assoc data
|
||||
:msg_ (delay "")
|
||||
:?err_ (delay nil)))
|
||||
;; [<output> <raw-error> <raw-arg1> <raw-arg2> ...]:
|
||||
args (->> vnext (cons @(:?err_ data)) (cons output))]
|
||||
(if (or (:raw-console? data)
|
||||
(get-in data [:?meta :raw-console?])) ; Undocumented
|
||||
(let [output
|
||||
((:output-fn data)
|
||||
(assoc data
|
||||
:msg_ ""
|
||||
:?err nil))
|
||||
;; (<output> <raw-error> <raw-arg1> <raw-arg2> ...):
|
||||
args (->> (:vargs data) (cons (:?err data)) (cons output))]
|
||||
|
||||
(.apply logger js/console (into-array args)))
|
||||
(.call logger js/console (output-fn data))))))
|
||||
(.call logger js/console (force (:output_ data)))))))
|
||||
|
||||
(fn [data] nil))})
|
||||
|
||||
|
|
|
@ -14,6 +14,8 @@
|
|||
;; Timbre's `project.clj` to include the necessary dependencies under
|
||||
;; the `:test` profile
|
||||
|
||||
;; TODO Please mark any implementation vars as ^:private
|
||||
|
||||
(defn example-appender ; Appender constructor
|
||||
"Docstring to explain any special opts to influence appender construction,
|
||||
etc. Returns the appender map."
|
||||
|
@ -36,40 +38,47 @@
|
|||
[100 (enc/ms :hours 1)] ; 100 calls/hour
|
||||
]
|
||||
|
||||
:output-fn :inherit ; or a custom (fn [data-map]) -> string
|
||||
:output-fn :inherit ; or a custom (fn [data]) -> string
|
||||
|
||||
;; The actual appender (fn [data-map]) -> possible side effects
|
||||
;; The actual appender (fn [data]) -> possible side effects
|
||||
:fn
|
||||
(fn [data-map]
|
||||
(let [;; See `timbre/example-config` for info on all available keys:
|
||||
{:keys [instant level ?err_ vargs_ output-fn
|
||||
config ; Entire Timbre config map in effect
|
||||
appender ; Entire appender map in effect
|
||||
]}
|
||||
data-map
|
||||
(fn [data]
|
||||
(let [{:keys
|
||||
[instant level output_
|
||||
;; ... lots more stuff, see `timbre/example-config`
|
||||
]} data
|
||||
|
||||
?err @?err_ ; An error, or nil
|
||||
vargs @vargs_ ; Vector of raw logging args
|
||||
|
||||
;; You'll often want an output string with ns, timestamp, vargs, etc.
|
||||
;; A (fn [data]) -> string formatter is provided under the :output-fn
|
||||
;; key, defined as:
|
||||
;; You'll often want an output string with ns, timestamp, vargs,
|
||||
;; etc. A (fn [data]) -> string formatter is provided under the
|
||||
;; :output-fn data key, defined as:
|
||||
;; `(or (:output-fn <this appender's map>)
|
||||
;; (:output-fn <user's config map)
|
||||
;; timbre/default-output-fn)`
|
||||
;;
|
||||
;; Users therefore get a standardized way to control appender ouput
|
||||
;; formatting for all participating appenders. See
|
||||
;; This gives users a standardized way to control appender
|
||||
;; ouput formatting for all participating appenders. See
|
||||
;; `taoensso.timbre/default-output-fn` source for details.
|
||||
;;
|
||||
output-str (output-fn data-map)]
|
||||
;; In general, appenders should try use one of the following for
|
||||
;; their output string if they can:
|
||||
;; 1. (force (:output_ data)) ; 1st choice, allows output to be
|
||||
;; ; cached + shared between
|
||||
;; ; participating appenders
|
||||
;; 2. ((:output-fn data) data) ; 2nd choice, if you need to
|
||||
;; ; modify the `data` arg provided
|
||||
;; ; to the output-fn
|
||||
;; 3. Create your own adhoc output from stuff in `data`. This
|
||||
;; may be necessary if your appender is writing to a db, etc.
|
||||
;; and requires some unique non-string output format.
|
||||
;; See `timbre/default-output-fn` for ideas.
|
||||
|
||||
;; This is where we produce our logging side effects. In this case
|
||||
;; we'll just call `println`:
|
||||
output-str (force output_)]
|
||||
|
||||
;; This is where we produce our logging side effects.
|
||||
;; In this case we'll just call `println`:
|
||||
(println output-str)))}))
|
||||
|
||||
(comment
|
||||
|
||||
;; Create an example appender with default options:
|
||||
(example-appender)
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
(ns taoensso.timbre.appenders.postal
|
||||
"Email (Postal) appender. Requires https://github.com/drewr/postal."
|
||||
{:author "Peter Taoussanis"}
|
||||
{:author "Peter Taoussanis (@ptaoussanis)"}
|
||||
(:require [clojure.string :as str]
|
||||
[io.aviso.exception :as aviso-ex]
|
||||
[postal.core :as postal]
|
||||
|
@ -23,11 +23,13 @@
|
|||
:min-level :warn ; Elevated
|
||||
:rate-limit [[5 (enc/ms :mins 2)]
|
||||
[50 (enc/ms :hours 24)]]
|
||||
:output-fn :inherit
|
||||
:output-fn (partial timbre/default-output-fn
|
||||
{:stacktrace-fonts {}})
|
||||
:fn
|
||||
(fn [data]
|
||||
(let [{:keys [output-fn]} data
|
||||
output-str (binding [aviso-ex/*fonts* {}] (output-fn data))]
|
||||
(let [{:keys [output_]} data
|
||||
output-str (force output_)]
|
||||
|
||||
(postal/send-message
|
||||
(assoc postal-config
|
||||
:subject (-> output-str
|
||||
|
|
Loading…
Reference in New Issue